Commit 26ded37d authored by dimitri's avatar dimitri
Browse files

Release-1.2.1-20000829

parent 8726fc64
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.1
DOXYGEN Version 1.2.1-20000829

Please read the installation section of the manual for instructions.

--------
Dimitri van Heesch (13 August 2000)
Dimitri van Heesch (29 August 2000)
+2 −2
Original line number Diff line number Diff line
DOXYGEN Version 1.2.1
DOXYGEN Version 1.2.1-20000829

Please read INSTALL for compilation instructions.

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

Enjoy,

Dimitri van Heesch (13 August 2000)
Dimitri van Heesch (29 August 2000)
+1 −1
Original line number Diff line number Diff line
1.2.1
1.2.1-20000829
+14 −0
Original line number Diff line number Diff line
@@ -813,6 +813,20 @@ void checkConfig()
    s=Config::includePath.next();
  }

  // check aliases
  s=Config::aliasList.first();
  while (s)
  {
    QRegExp re("[a-z_A-Z][a-z_A-Z0-9]*[ \t]*=");
    QCString alias=s;
    alias=alias.stripWhiteSpace();
    if (alias.find(re)!=0)
    {
      err("Illegal alias format `%s'. Use \"name=value\"\n",alias.data());
    }
    s=Config::aliasList.next();
  }
  
  // check dot path
  if (!Config::dotPath.isEmpty())
  {
+12 −0
Original line number Diff line number Diff line
@@ -1014,6 +1014,18 @@ void init()
                    "disable (NO) the test list. This list is created by putting \\test \n"
                    "commands in the documentation.\n"
                 );
  ConfigList::add(  "aliasList",
                    "ALIASES",
                    "",
                    "list of aliases",
                    "This tag can be used to specify a number of aliases that acts \n"
                    "as commands in the documentation. An alias has the form \"\\name=value\". \n"
                    "For example adding \"sideeffect=\\par Side Effects:\\n\" will allow you to \n"
                    "put the command \\sideeffect (or @sideeffect) in the documentation, which \n"
                    "will result in a user defined paragraph with heading \"Side Effects:\". \n"
                    "You can put \\n's in the value part of an alias to insert newlines. \n" 
                    "Predefined commands cannot be overwritten using aliases. \n" 
                 );
  //-----------------------------------------------------------------------------------------------
  ConfigInfo::add(  "Messages","configuration options related to warning and progress messages");
  //-----------------------------------------------------------------------------------------------
Loading