Changes between Version 2 and Version 3 of DoxygenPlugin


Ignore:
Timestamp:
Dec 28, 2005, 6:38:26 AM (18 years ago)
Author:
Jason Parks
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DoxygenPlugin

    v2 v3  
    4343=== Configuring Doxygen ===
    4444
     45The only configuration tag that is required in to make this plugin work is '{{{GENERATE_HTML}}}'. Since this plugin just embeds the html pages generated be doxygen you will probably want to define a custom header and footer.
     46
    4547{{{
     48HTML_HEADER            = TracHeader.html
     49HTML_FOOTER            = TracFooter.html
    4650}}}
     51
     52These files must contain something, a blank line is sufficient, or doxygen will put in the defaults. My TracHeader.html contains the following:
     53{{{
     54<style type="text/css">
     55        h1 { text-align: center; }
     56</style>
     57}}}
     58
     59and my TracFooter.html contains a blank line.
     60
     61To enable the search option the {{{SEARCHENGINE}}} tag must be set to 'YES'.
    4762
    4863== Author/Contributors ==