Loading INSTALL +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.5.1-20070315 DOXYGEN Version 1.5.2 Please read the installation section of the manual Please read the installation section of the manual (http://www.doxygen.org/install.html) for instructions. (http://www.doxygen.org/install.html) for instructions. -------- -------- Dimitri van Heesch (15 March 2007) Dimitri van Heesch (04 April 2007) README +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.5.1_20070315 DOXYGEN Version 1.5.2 Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions. Loading @@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives. Enjoy, Enjoy, Dimitri van Heesch (dimitri@stack.nl) (15 March 2007) Dimitri van Heesch (dimitri@stack.nl) (04 April 2007) addon/doxywizard/doxywizard.cpp +6 −0 Original line number Original line Diff line number Diff line Loading @@ -52,6 +52,11 @@ void setDotPath() Config_getString("DOT_PATH")=getResourcePath(); Config_getString("DOT_PATH")=getResourcePath(); } } void setMscgenPath() { Config_getString("MSCGEN_PATH")=getResourcePath(); } #endif #endif Loading Loading @@ -667,6 +672,7 @@ MainWidget::MainWidget(QWidget *parent) Config_getBool("HAVE_DOT")=TRUE; Config_getBool("HAVE_DOT")=TRUE; #if defined(Q_OS_MACX) #if defined(Q_OS_MACX) setDotPath(); setDotPath(); setMscgenPath(); #endif #endif QWidget *w = new QWidget(this); QWidget *w = new QWidget(this); Loading configure +3 −3 Original line number Original line Diff line number Diff line Loading @@ -17,10 +17,10 @@ doxygen_version_major=1 doxygen_version_major=1 doxygen_version_minor=5 doxygen_version_minor=5 doxygen_version_revision=1 doxygen_version_revision=2 #NOTE: Setting version_mmn to "NO" will omit mmn info from the package. #NOTE: Setting version_mmn to "NO" will omit mmn info from the package. doxygen_version_mmn=20070315 doxygen_version_mmn=NO bin_dirs=`echo $PATH | sed -e "s/:/ /g"` bin_dirs=`echo $PATH | sed -e "s/:/ /g"` Loading Loading @@ -426,7 +426,7 @@ echo "using $f_perl"; # # echo " Creating VERSION file." echo " Creating VERSION file." # Output should be something like 1.4.5-20051010 # Output should be something like 1.4.5-20051010 if test "$doxygen_version_mmn" = NO; then if test "x$doxygen_version_mmn" = "xNO"; then echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision" > VERSION echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision" > VERSION else else echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision-$doxygen_version_mmn" > VERSION echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision-$doxygen_version_mmn" > VERSION Loading src/commentcnv.l +17 −3 Original line number Original line Diff line number Diff line Loading @@ -263,12 +263,11 @@ void replaceComment(int offset); %} %} CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) %option noyywrap %option noyywrap %x Scan %x Scan %x SkipString %x SkipString %x SkipChar %x SComment %x SComment %x CComment %x CComment %x Verbatim %x Verbatim Loading @@ -285,8 +284,9 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); BEGIN(SkipString); BEGIN(SkipString); } } <Scan>{CHARLIT} { <Scan>' { copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); BEGIN(SkipChar); } } <Scan>\n { /* new line */ <Scan>\n { /* new line */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); Loading Loading @@ -398,6 +398,20 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) <SkipString>\n { /* new line inside string (illegal for some compilers) */ <SkipString>\n { /* new line inside string (illegal for some compilers) */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); } } <SkipChar>\\. { /* escaped character */ copyToOutput(yytext,yyleng); } <SkipChar>' { /* end of character literal */ copyToOutput(yytext,yyleng); BEGIN(Scan); } <SkipChar>. { /* any other string character */ copyToOutput(yytext,yyleng); } <SkipChar>\n { /* new line character */ copyToOutput(yytext,yyleng); } <CComment>[^\\@*\n]* { /* anything that is not a '*' or command */ <CComment>[^\\@*\n]* { /* anything that is not a '*' or command */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); } } Loading Loading
INSTALL +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.5.1-20070315 DOXYGEN Version 1.5.2 Please read the installation section of the manual Please read the installation section of the manual (http://www.doxygen.org/install.html) for instructions. (http://www.doxygen.org/install.html) for instructions. -------- -------- Dimitri van Heesch (15 March 2007) Dimitri van Heesch (04 April 2007)
README +2 −2 Original line number Original line Diff line number Diff line DOXYGEN Version 1.5.1_20070315 DOXYGEN Version 1.5.2 Please read INSTALL for compilation instructions. Please read INSTALL for compilation instructions. Loading @@ -17,4 +17,4 @@ to subscribe to the lists or to visit the archives. Enjoy, Enjoy, Dimitri van Heesch (dimitri@stack.nl) (15 March 2007) Dimitri van Heesch (dimitri@stack.nl) (04 April 2007)
addon/doxywizard/doxywizard.cpp +6 −0 Original line number Original line Diff line number Diff line Loading @@ -52,6 +52,11 @@ void setDotPath() Config_getString("DOT_PATH")=getResourcePath(); Config_getString("DOT_PATH")=getResourcePath(); } } void setMscgenPath() { Config_getString("MSCGEN_PATH")=getResourcePath(); } #endif #endif Loading Loading @@ -667,6 +672,7 @@ MainWidget::MainWidget(QWidget *parent) Config_getBool("HAVE_DOT")=TRUE; Config_getBool("HAVE_DOT")=TRUE; #if defined(Q_OS_MACX) #if defined(Q_OS_MACX) setDotPath(); setDotPath(); setMscgenPath(); #endif #endif QWidget *w = new QWidget(this); QWidget *w = new QWidget(this); Loading
configure +3 −3 Original line number Original line Diff line number Diff line Loading @@ -17,10 +17,10 @@ doxygen_version_major=1 doxygen_version_major=1 doxygen_version_minor=5 doxygen_version_minor=5 doxygen_version_revision=1 doxygen_version_revision=2 #NOTE: Setting version_mmn to "NO" will omit mmn info from the package. #NOTE: Setting version_mmn to "NO" will omit mmn info from the package. doxygen_version_mmn=20070315 doxygen_version_mmn=NO bin_dirs=`echo $PATH | sed -e "s/:/ /g"` bin_dirs=`echo $PATH | sed -e "s/:/ /g"` Loading Loading @@ -426,7 +426,7 @@ echo "using $f_perl"; # # echo " Creating VERSION file." echo " Creating VERSION file." # Output should be something like 1.4.5-20051010 # Output should be something like 1.4.5-20051010 if test "$doxygen_version_mmn" = NO; then if test "x$doxygen_version_mmn" = "xNO"; then echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision" > VERSION echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision" > VERSION else else echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision-$doxygen_version_mmn" > VERSION echo "$doxygen_version_major.$doxygen_version_minor.$doxygen_version_revision-$doxygen_version_mmn" > VERSION Loading
src/commentcnv.l +17 −3 Original line number Original line Diff line number Diff line Loading @@ -263,12 +263,11 @@ void replaceComment(int offset); %} %} CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) %option noyywrap %option noyywrap %x Scan %x Scan %x SkipString %x SkipString %x SkipChar %x SComment %x SComment %x CComment %x CComment %x Verbatim %x Verbatim Loading @@ -285,8 +284,9 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); BEGIN(SkipString); BEGIN(SkipString); } } <Scan>{CHARLIT} { <Scan>' { copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); BEGIN(SkipChar); } } <Scan>\n { /* new line */ <Scan>\n { /* new line */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); Loading Loading @@ -398,6 +398,20 @@ CHARLIT (("'"\\[0-7]{1,3}"'")|("'"\\."'")|("'"[^' \\\n]{1,4}"'")) <SkipString>\n { /* new line inside string (illegal for some compilers) */ <SkipString>\n { /* new line inside string (illegal for some compilers) */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); } } <SkipChar>\\. { /* escaped character */ copyToOutput(yytext,yyleng); } <SkipChar>' { /* end of character literal */ copyToOutput(yytext,yyleng); BEGIN(Scan); } <SkipChar>. { /* any other string character */ copyToOutput(yytext,yyleng); } <SkipChar>\n { /* new line character */ copyToOutput(yytext,yyleng); } <CComment>[^\\@*\n]* { /* anything that is not a '*' or command */ <CComment>[^\\@*\n]* { /* anything that is not a '*' or command */ copyToOutput(yytext,yyleng); copyToOutput(yytext,yyleng); } } Loading