Changes between Version 72 and Version 73 of DoxygenPlugin


Ignore:
Timestamp:
Feb 12, 2016, 1:50:54 PM (8 years ago)
Author:
Committo-Ergo-Sum
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DoxygenPlugin

    v72 v73  
    149149|| `index`      || Default index page to pick in the generated documentation. || main.html ||
    150150|| `wiki_index` || Wiki page to use as the default page for the Doxygen main page. If set, supersedes the [doxygen] index option. ||   ||
    151 || `encoding`   || Default encoding used by the generated documentation files. ''(Since 0.10)''. || utf-8 (iso-8859-1 in versions <= 0.11) ||
     151|| `encoding`   || Default encoding used by the generated documentation files. ''(Since 0.10)''. || utf-8 (iso-8859-1 in versions <= 0.11)||
    152152|| `ext`        || Space separated list of extensions for doxygen managed files. ''(deprecated after version 0.11)'' || htm html png ||
    153153|| `source_ext` || Space separated list of source files extensions.  ''(deprecated after version 0.11)''  || idl odl java cs py php php4 inc phtml m cpp cxx c hpp hxx h ||
     
    163163=== Configuring Doxygen
    164164
    165 The configuration settings in the Doxyfile that are required to make this plugin work are
    166 [http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_generate_html GENERATE_HTML]
    167 and
    168 [http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_searchenginel SEARCHENGINE]
    169 both to YES. Note that calls to the search engine used by Doxygen will be hijacked by
    170 the Trac search engine.
     165To make this plugin work, you have to set to YES the following items in the Doxyfile:
     166[http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_generate_html GENERATE_HTML],
     167[http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_searchenginel SEARCHENGINE],
     168[http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_server_based_search SERVER_BASED_SEARCH] and
     169[http://www.stack.nl/~dimitri/doxygen/manual/config.html#cfg_external_search EXTERNAL_SEARCH].
     170Note that calls to the search engine used by Doxygen will be hijacked by the Trac search engine.
    171171
    172172You may replace the standard Doxygen header and footer HTML by your own
     
    193193The `documentation_target` part is used for specifying what Doxygen generated content will be displayed when following the link.
    194194It must be a name for which a documentation was produced by Doxygen, depending on the way you ran it.
    195 Most of the time, it will be a function, a classe, a file etc.
     195Most of the time, it will be a function, a class, a file etc.
    196196Technically, it must be the content of a `field` tag having a `name` attribute equals to `name` in the `searchdata_file`.
     197If the name is empty, the link leads to the main page of the documentation.
    197198
    198199Some examples:
    199200{{{
    200201[doxygen:foo] # Link to the documentation of the function (or class etc) foo in the main documentation.
    201 [doxygen:SecondProject/foo] similarly for another documentation
     202[doxygen:SecondProject/foo] similarly for another documentation.
     203[doxygen:] or [doxygen:/] Main page of the documentation.
     204[doxygen:SecondProject/] Main page of the second project documentation.
    202205}}}
    203206