Changes between Version 36 and Version 37 of ErlangShellInterface


Ignore:
Timestamp:
May 31, 2013, 12:00:17 PM (11 years ago)
Author:
manualwiki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ErlangShellInterface

    v36 v37  
    107107See [[StartUp| Starting the tool]] for further details. 
    108108 
    109 {{{#!comment 
     109 
    110110The [[PosModes| positioning mode]] of the database can be converted by calling 
    111111 
     
    118118* '''abs''': converting database to absolute positioning mode.\\ 
    119119* '''rel''': converting database to relative positioning mode.\\ 
    120 }}} 
     120 
    121121 
    122122== Inspecting the graph == 
     
    275275ri:print_dep/1 
    276276}}} 
    277 {{{#!comment 
     277 
    2782783. For drawing smart graph: 
    279279{{{#!erlang 
    280280ri:generate_smart_graph/1 
    281281}}} 
    282 }}} 
     282 
    283283 
    284284==== Options ==== 
     
    301301    The file path of the generated {{{.dot}}} graph description. Unless it is a non-existing absolute path, the graph will be placed into the {{{./dep_files}}} directory. This option is only available when using {{{draw_dep}}}. 
    302302 
    303 {{{#!comment 
     303 
    304304The parameter of the smart graph generation is a proplist setting the options of the generation and of the analysis. The available options are: 
    305305 * {{{dependency_level (mod | func) }}} 
     
    314314ri:generate_smart_graph([{dependency_level, mod}, {output_path, "/tmp/example_smart_graph.html"}, {dependency_options, DepOpts}]). 
    315315}}} 
    316 }}} 
     316 
    317317 
    318318You can specify entities either with their identifier or with graph nodes (such as {{{{'$gn', func, 123}}}}). Modules can be specified with their names as atoms (e.g. 'mnesia'), while functions are specified by their MFA descriptor as a string (e.g. "io:format/2") 
     
    377377}}} 
    378378 
    379 {{{#!comment 
     379 
    380380* Drawing a smart graph by giving the output path. 
    381381{{{#!erlang 
     
    393393"Open a browser and go to file:///home/aszabo/Dokumentumok/refactorerl/trunk/tool/data/sq_g3IAA2QAFXJlZmFjdG9yZXJsQGxvY2FsaG9zdAMAABJVAAAAAAAAAAA.html to see the result." 
    394394}}} 
    395 }}} 
     395 
    396396 
    397397=== Function block dependencies ===