Commit 5ad8b41e authored by Dimitri van Heesch's avatar Dimitri van Heesch
Browse files

Release-1.2.0-20000731

parent 7ce8e31b
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.0
DOXYGEN Version 1.2.0-20000731


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


--------
--------
Dimitri van Heesch (30 July 2000)
Dimitri van Heesch (31 July 2000)
+2 −2
Original line number Original line Diff line number Diff line
DOXYGEN Version 1.2.0
DOXYGEN Version 1.2.0-20000731


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 (30 July 2000)
Dimitri van Heesch (31 July 2000)
+1 −1
Original line number Original line Diff line number Diff line
1.2.0
1.2.0-20000731
+2 −0
Original line number Original line Diff line number Diff line
@@ -272,6 +272,8 @@ void writeTemplateConfig(QFile *f,bool sl)
    t << "# All text after a hash (#) is considered a comment and will be ignored\n";
    t << "# All text after a hash (#) is considered a comment and will be ignored\n";
    t << "# The format is:\n";
    t << "# The format is:\n";
    t << "#       TAG = value [value, ...]\n";
    t << "#       TAG = value [value, ...]\n";
    t << "# For lists items can also be appended using:\n";
    t << "#       TAG += value [value, ...]\n";
    t << "# Values that contain spaces should be placed between quotes (\" \")\n";
    t << "# Values that contain spaces should be placed between quotes (\" \")\n";
  }
  }
#CONFIG Template
#CONFIG Template
+8 −1
Original line number Original line Diff line number Diff line
@@ -27,7 +27,7 @@
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>


#define MAX_OPTION_LENGTH 22
#define MAX_OPTION_LENGTH 23


static QString spaces="                                                ";
static QString spaces="                                                ";


@@ -259,10 +259,17 @@ class ConfigList : public ConfigOption
                    const char * short_,const char * long_,WidgetType w=String);
                    const char * short_,const char * long_,WidgetType w=String);
    virtual void printRules(QTextStream &t)
    virtual void printRules(QTextStream &t)
    {
    {
      // rule for assignment
      t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\"";
      t << "<Start>\"" << cfgName << "\"[ \\t]*\"=\"";
      t << spaces.left(MAX_OPTION_LENGTH-cfgName.length());
      t << spaces.left(MAX_OPTION_LENGTH-cfgName.length());
      t << "{ BEGIN(GetStrList); l=&Config::" << varName;
      t << "{ BEGIN(GetStrList); l=&Config::" << varName;
      t << "; l->clear(); elemStr=\"\"; }" << endl;
      t << "; l->clear(); elemStr=\"\"; }" << endl;

      // rule for appending
      t << "<Start>\"" << cfgName << "\"[ \\t]*\"+=\"";
      t << spaces.left(MAX_OPTION_LENGTH-cfgName.length()-1);
      t << "{ BEGIN(GetStrList); l=&Config::" << varName;
      t << "; elemStr=\"\"; }" << endl;
    }
    }
    virtual void printInit(QTextStream &t)
    virtual void printInit(QTextStream &t)
    {
    {
Loading