diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-14 18:44:15 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-05-14 18:44:15 (GMT) |
commit | 4f5775494986411db398172e98380acb76d5e3e6 (patch) | |
tree | aca56008d3ed43483f7f8f2f4fb55a3b4e5f75f2 /src/scanner.l | |
parent | 367c98ad291fd02781ae1c20a6e09e0b07dbec88 (diff) | |
download | Doxygen-4f5775494986411db398172e98380acb76d5e3e6.zip Doxygen-4f5775494986411db398172e98380acb76d5e3e6.tar.gz Doxygen-4f5775494986411db398172e98380acb76d5e3e6.tar.bz2 |
Release-1.1.3-20000514
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 56 |
1 files changed, 45 insertions, 11 deletions
diff --git a/src/scanner.l b/src/scanner.l index 24047ea..6f2fea7 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -151,6 +151,7 @@ static QCString formulaText; static QCString sectionRef; static bool insideIDL = FALSE; static bool insideCppQuote = FALSE; +static bool insideVerbatim = FALSE; static int depthIf; // state variable for reading the argument list of a function @@ -778,7 +779,7 @@ static QCString findAndCopyImage(const char *fileName,ImageTypes type) FileDef *fd; if ((fd=findFileDef(&imageNameDict,fileName,ambig))) { - QFile inImage(fd->absFilePath()); + QFile inImage(fd->absFilePath().data()); if (inImage.open(IO_ReadOnly)) { result = fileName; @@ -798,7 +799,7 @@ static QCString findAndCopyImage(const char *fileName,ImageTypes type) break; } QCString outputFile = outputDir+"/"+result; - QFile outImage(outputFile); + QFile outImage(outputFile.data()); if (outImage.open(IO_WriteOnly)) // copy the image { char *buffer = new char[inImage.size()]; @@ -1125,7 +1126,7 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") <DocScan>^{B}*(("//"{B}*)?)"*"*{B}*"-"{B}+ { /* found list item marker */ addListItemMarker(yytext); } -<DocScan>\n{B}*"-" { +<DocScan>\n{B}*(("//"{B}*)?)"*"*{B}*"-"{B}+ { addListItemMarker(yytext+1); } <DocScan>"<!--" { BEGIN(DocSkipHtmlComment); } @@ -1188,10 +1189,12 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") } <DocScan>{CMD}"verbatim"/[^a-z_A-Z0-9] { outDoc->startCodeFragment(); + insideVerbatim=TRUE; BEGIN(DocVerbatim); } <DocVerbatim>{CMD}"endverbatim"/[^a-z_A-Z0-9] { outDoc->endCodeFragment(); + insideVerbatim=FALSE; BEGIN(DocScan); } <DocVerbatim>[^\n\\\@]*"\n" { @@ -1939,14 +1942,30 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") <DocScan>"<"{OL}{ATTR}">" { outDoc->startEnumList(); currentListIndentLevel++; } -<DocScan>"</"{OL}{ATTR}">" { outDoc->endEnumList(); - currentListIndentLevel--; +<DocScan>"</"{OL}{ATTR}">" { + if (currentListIndentLevel<=0) + { + warn("Warning: more </ol> tags than <ol> tags in the documentation of %s\n",yyFileName); + } + else + { + outDoc->endEnumList(); + currentListIndentLevel--; + } } <DocScan>"<"{UL}{ATTR}">" { outDoc->startItemList(); currentListIndentLevel++; } -<DocScan>"</"{UL}{ATTR}">" { outDoc->endItemList(); - currentListIndentLevel--; +<DocScan>"</"{UL}{ATTR}">" { + if (currentListIndentLevel<=0) + { + warn("Warning: more </ul> tags than <ul> tags in the documentation of %s\n",yyFileName); + } + else + { + outDoc->endItemList(); + currentListIndentLevel--; + } } <DocScan>"<"{LI}{ATTR}">" { outDoc->writeListItem(); } <DocScan>"</"{LI}{ATTR}">" @@ -1958,8 +1977,16 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") <DocScan>"<"{DL}{ATTR}">" { outDoc->startDescription(); currentListIndentLevel++; } -<DocScan>"</"{DL}{ATTR}">" { outDoc->endDescription(); - currentListIndentLevel--; +<DocScan>"</"{DL}{ATTR}">" { + if (currentListIndentLevel<=0) + { + warn("Warning: more </dl> tags than <dl> tags in the documentation of %s\n",yyFileName); + } + else + { + outDoc->endDescription(); + currentListIndentLevel--; + } } <DocScan>"<"{DT}{ATTR}">" { outDoc->startDescItem(); } <DocScan>"</"{DT}{ATTR}">" @@ -2813,7 +2840,7 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") <CopyCurly>"'"\\[0-7]{1,3}"'" { *pCopyCurlyString+=yytext; } <CopyCurly>"'"\\."'" { *pCopyCurlyString+=yytext; } <CopyCurly>"'"."'" { *pCopyCurlyString+=yytext; } -<CopyCurly>[^"'{}\n]+ { +<CopyCurly>[^"'{}\/\n]+ { *pCopyCurlyString+=yytext; } <CopyCurly>\n { @@ -3316,6 +3343,7 @@ DOCPARAM ([a-z_A-Z0-9:\.\-]+)|("\"".*"\"") BEGIN( ReadFuncArgType ); } <CopyArgCommentLine>\n { fullArgString+=yytext; + yyLineNr++; if (lastCopyArgChar!=0) unput(lastCopyArgChar); BEGIN( ReadFuncArgType ); @@ -4870,11 +4898,12 @@ void parseDocument(OutputList &ol,const QCString &docString) scanYYrestart( scanYYin ); BEGIN( DocScan ); insideArgumentList = FALSE; + insideVerbatim = FALSE; scanYYlex(); if (insideArgumentList) { insideArgumentList=FALSE; outDoc->endItemList(); } if (insideItemList) { forceEndItemList(); } if (inBlock()) endBlock(); - if (currentListIndentLevel!=0) + if (currentListIndentLevel>0) { if (!refName.isEmpty()) { @@ -4902,6 +4931,10 @@ void parseDocument(OutputList &ol,const QCString &docString) { forceEndTable(); } + if (insideVerbatim) + { + warn("Warning: file ended inside a \\verbatim block!\n"); + } ol+=*outDoc; delete outDoc; outDoc=0; return; @@ -4931,6 +4964,7 @@ void parseDoc(OutputList &ol,const char *clName, refName="<unknown>"; } parseDocument(ol,docString); + } //---------------------------------------------------------------------------- |