Commit 0d0eec1d authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.2.2-20001001

parent 6778bfcd
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.2
DOXYGEN Version 1.2.2-20001001


Please read the installation section of the manual for instructions.
Please read the installation section of the manual for instructions.


--------
--------
Dimitri van Heesch (24 September 2000)
Dimitri van Heesch (01 October 2000)
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.2
DOXYGEN Version 1.2.2-20001001


Please read INSTALL for compilation instructions.
Please read INSTALL for compilation instructions.


@@ -7,4 +7,4 @@ The latest version of doxygen can be obtained at


Enjoy,
Enjoy,


Dimitri van Heesch (24 September 2000)
Dimitri van Heesch (01 October 2000)
+1 −1
Original line number Original line Diff line number Diff line
1.2.2
1.2.2-20001001
+16 −14
Original line number Original line Diff line number Diff line
@@ -775,26 +775,27 @@ void init()
                    "information to generate all constant output in the proper language. \n"
                    "information to generate all constant output in the proper language. \n"
                    "The default language is English, other supported languages are: \n"
                    "The default language is English, other supported languages are: \n"
                    "Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, \n"
                    "Dutch, French, Italian, Czech, Swedish, German, Finnish, Japanese, \n"
                    "Korean, Hungarian, Spanish, Romanian, Russian, Croatian, Polish, and \n"
                    "Korean, Hungarian, Spanish, Romanian, Russian, Croatian, Polish, \n"
                    "Portuguese.\n"
                    "Portuguese and Slovene.\n"
                   );
                   );
  ConfigString::addFixedValue("outputLanguage","English");
  ConfigString::addFixedValue("outputLanguage","Croatian");
  ConfigString::addFixedValue("outputLanguage","Czech");
  ConfigString::addFixedValue("outputLanguage","Dutch");
  ConfigString::addFixedValue("outputLanguage","Dutch");
  ConfigString::addFixedValue("outputLanguage","English");
  ConfigString::addFixedValue("outputLanguage","French");
  ConfigString::addFixedValue("outputLanguage","French");
  ConfigString::addFixedValue("outputLanguage","Italian");
  ConfigString::addFixedValue("outputLanguage","Czech");
  ConfigString::addFixedValue("outputLanguage","Swedish");
  ConfigString::addFixedValue("outputLanguage","German");
  ConfigString::addFixedValue("outputLanguage","Finnish");
  ConfigString::addFixedValue("outputLanguage","Finnish");
  ConfigString::addFixedValue("outputLanguage","German");
  ConfigString::addFixedValue("outputLanguage","Hungarian");
  ConfigString::addFixedValue("outputLanguage","Hungarian");
  ConfigString::addFixedValue("outputLanguage","Italian");
  ConfigString::addFixedValue("outputLanguage","Japanese");
  ConfigString::addFixedValue("outputLanguage","Japanese");
  ConfigString::addFixedValue("outputLanguage","Korean");
  ConfigString::addFixedValue("outputLanguage","Korean");
  ConfigString::addFixedValue("outputLanguage","Spanish");
  ConfigString::addFixedValue("outputLanguage","Romanian");
  ConfigString::addFixedValue("outputLanguage","Romanian");
  ConfigString::addFixedValue("outputLanguage","Russian");
  ConfigString::addFixedValue("outputLanguage","Russian");
  ConfigString::addFixedValue("outputLanguage","Croatian");
  ConfigString::addFixedValue("outputLanguage","Polish");
  ConfigString::addFixedValue("outputLanguage","Polish");
  ConfigString::addFixedValue("outputLanguage","Portuguese");
  ConfigString::addFixedValue("outputLanguage","Portuguese");
  ConfigString::addFixedValue("outputLanguage","Slovene");
  ConfigString::addFixedValue("outputLanguage","Spanish");
  ConfigString::addFixedValue("outputLanguage","Swedish");
  ConfigBool::add(  "extractAllFlag",
  ConfigBool::add(  "extractAllFlag",
                    "EXTRACT_ALL",
                    "EXTRACT_ALL",
                    "FALSE",
                    "FALSE",
@@ -956,12 +957,13 @@ void init()
                 );
                 );
  ConfigBool::add(  "autoBriefFlag",
  ConfigBool::add(  "autoBriefFlag",
                    "JAVADOC_AUTOBRIEF",
                    "JAVADOC_AUTOBRIEF",
                    "TRUE",
                    "FALSE",
                    "javadoc comments behaves as Qt comments.",
                    "should javadoc comments behaves as Qt comments.",
                    "If the JAVADOC_AUTOBRIEF tag is set to YES (the default) then Doxygen \n"
                    "If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen \n"
                    "will interpret the first line (until the first dot) of a JavaDoc-style \n"
                    "will interpret the first line (until the first dot) of a JavaDoc-style \n"
                    "comment as the brief description. If set to NO, the Javadoc-style will \n"
                    "comment as the brief description. If set to NO, the JavaDoc \n"
                    "behave just like the Qt-style comments. \n"
                    "comments  will behave just like the Qt-style comments (thus requiring an \n"
                    "explict @brief command for a brief description. \n"
                 );
                 );
  ConfigBool::add(  "inheritDocsFlag",
  ConfigBool::add(  "inheritDocsFlag",
                    "INHERIT_DOCS",
                    "INHERIT_DOCS",
+5 −1
Original line number Original line Diff line number Diff line
@@ -69,6 +69,10 @@
  \par Note 2: 
  \par Note 2: 
    For JavaDoc compatibility a \# may be used instead of a :: in 
    For JavaDoc compatibility a \# may be used instead of a :: in 
    the patterns above.
    the patterns above.
  \par Note 3:
    In the documentation of a class containing a member foo, 
    a reference to a global variable is made using ::foo, whereas \#foo
    will link to the member.


  For non overloaded members the argument list may be omitted.
  For non overloaded members the argument list may be omitted.


@@ -111,7 +115,7 @@ typedef struct StructName TypeName
  \par Example:
  \par Example:
  \verbinclude restypedef.cpp
  \verbinclude restypedef.cpp
  \htmlonly
  \htmlonly
  Click <a href="$(DOXYGEN_DOCDIR)/examples/restypedef/html/restypedef.cpp.html">here</a> 
  Click <a href="$(DOXYGEN_DOCDIR)/examples/restypedef/html/restypedef_cpp.html">here</a> 
  for the corresponding HTML documentation that is generated by Doxygen.
  for the corresponding HTML documentation that is generated by Doxygen.
  \endhtmlonly
  \endhtmlonly
*/
*/
Loading