summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-05-01 11:52:58 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-05-01 11:52:58 (GMT)
commit65ad3c5747b855c34498f822a65e1492f1495983 (patch)
treeb5861d74de30c0a268da769960282119512c67bc /src
parent9c7f8b12d0af44b8e4cee42e68fd5553563231a1 (diff)
parent487daf86335f91be24bebaf89920828b5f3c3d73 (diff)
downloadDoxygen-65ad3c5747b855c34498f822a65e1492f1495983.zip
Doxygen-65ad3c5747b855c34498f822a65e1492f1495983.tar.gz
Doxygen-65ad3c5747b855c34498f822a65e1492f1495983.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src')
-rw-r--r--src/config.h2
-rw-r--r--src/config.xml3
-rwxr-xr-xsrc/configgen.py3
-rw-r--r--src/configimpl.h2
-rw-r--r--src/doctokenizer.l2
-rw-r--r--src/doxygen.cpp2
6 files changed, 9 insertions, 5 deletions
diff --git a/src/config.h b/src/config.h
index 1858897..0588005 100644
--- a/src/config.h
+++ b/src/config.h
@@ -61,7 +61,7 @@ namespace Config
*/
void compareDoxyfile(TextStream &t);
- /*! Writes a the used settings of the current configuartion as XML format
+ /*! Writes a the used settings of the current configuration as XML format
* to stream \a t.
*/
void writeXMLDoxyfile(TextStream &t);
diff --git a/src/config.xml b/src/config.xml
index f3f4e5c..be890c3 100644
--- a/src/config.xml
+++ b/src/config.xml
@@ -1249,6 +1249,7 @@ FILE_VERSION_FILTER = "cleartool desc -fmt \%Vn"
doxygen's defaults, run doxygen with the `-l` option. You can optionally specify a
file name after the option, if omitted \c DoxygenLayout.xml will be used as the name
of the layout file.
+ See also section \ref layout for information.
<br>Note that if you run doxygen from a directory containing
a file called \c DoxygenLayout.xml, doxygen will parse it automatically even if
the \c LAYOUT_FILE tag is left empty.
@@ -2379,7 +2380,7 @@ The \c DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
Windows users are probably better off using the HTML help feature.
Via custom style sheets (see \ref cfg_html_extra_stylesheet "HTML_EXTRA_STYLESHEET")
- one can further \ref doxygen_finetune "fine-tune" the look of the index.
+ one can further fine tune the look of the index (see \ref doxygen_finetune).
As an example, the default style sheet generated by doxygen has an
example that shows how to put an image at the root of the tree instead of
the \ref cfg_project_name "PROJECT_NAME".
diff --git a/src/configgen.py b/src/configgen.py
index d3b9137..5c4c39a 100755
--- a/src/configgen.py
+++ b/src/configgen.py
@@ -56,8 +56,11 @@ def transformDocs(doc):
doc = re.sub('\\\\ref +doxygen_usage', '"Doxygen usage"', doc)
doc = re.sub('\\\\ref +extsearch', '"External Indexing and Searching"',
doc)
+ doc = re.sub('\\\\ref +layout', '"Changing the layout of pages"', doc)
doc = re.sub('\\\\ref +external', '"Linking to external documentation"',
doc)
+ doc = re.sub('\\\\ref +doxygen_finetune', '"Fine-tuning the output"',
+ doc)
doc = re.sub('\\\\ref +formulas', '"Including formulas"', doc)
# fallback for not handled
doc = re.sub('\\\\ref', '', doc)
diff --git a/src/configimpl.h b/src/configimpl.h
index 0cf909b..e828491 100644
--- a/src/configimpl.h
+++ b/src/configimpl.h
@@ -496,7 +496,7 @@ class ConfigImpl
*/
void compareDoxyfile(TextStream &t);
- /*! Writes a the used settings of the current configuartion as XML format
+ /*! Writes a the used settings of the current configuration as XML format
* to stream \a t.
*/
void writeXMLDoxyfile(TextStream &t);
diff --git a/src/doctokenizer.l b/src/doctokenizer.l
index bfbc345..3897290 100644
--- a/src/doctokenizer.l
+++ b/src/doctokenizer.l
@@ -426,7 +426,7 @@ LNKWORD3 ([0-9a-z_A-Z\-]+("/"|"\\"))*[0-9a-z_A-Z\-]+("."[0-9a-z_A-Z]+)+
CHARWORDQ [^ \t\n\r\\@<>()\[\]:;\?{}&%$#,."=']
ESCWORD ("%"{ID}(("::"|"."){ID})*)|("%'")
CHARWORDQ1 [^ \-+0-9\t\n\r\\@<>()\[\]:;\?{}&%$#,."=']
-WORD1 {ESCWORD}|{CHARWORDQ1}{CHARWORDQ}*|"{"|"}"|"'\"'"|("\""[^"\n]*\n?[^"\n]*"\"")
+WORD1 {ESCWORD}|{CHARWORDQ1}{CHARWORDQ}*|"{"|"}"|"'\"'"|("\""([^"\n]*\n?)*[^"\n]*"\"")
WORD2 "."|","|"("|")"|"["|"]"|"::"|":"|";"|"\?"|"="|"'"
WORD1NQ {ESCWORD}|{CHARWORDQ}+|"{"|"}"
WORD2NQ "."|","|"("|")"|"["|"]"|"::"|":"|";"|"\?"|"="|"'"
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index f003e8b..8835b05 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10200,7 +10200,7 @@ static void usage(const QCString &name,const QCString &versionString)
msg(" HTML: %s -w html headerFile footerFile styleSheetFile [configFile]\n",qPrint(name));
msg(" LaTeX: %s -w latex headerFile footerFile styleSheetFile [configFile]\n\n",qPrint(name));
msg("6) Use doxygen to generate a rtf extensions file\n");
- msg(" RTF: %s -e rtf extensionsFile\n\n",qPrint(name));
+ msg(" %s -e rtf extensionsFile\n\n",qPrint(name));
msg(" If - is used for extensionsFile doxygen will write to standard output.\n\n");
msg("7) Use doxygen to compare the used configuration file with the template configuration file\n");
msg(" %s -x [configFile]\n\n",qPrint(name));