summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-04-25 10:33:02 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-04-25 10:33:02 (GMT)
commit25d95829b47380148f22fd2abc72a810e06b5730 (patch)
tree227c40723213a9bd73bd4db8a766ac391f0b78d4 /src/doxygen.cpp
parent0965cca458849722eace1ae5cbe9b86fa628545b (diff)
downloadDoxygen-25d95829b47380148f22fd2abc72a810e06b5730.zip
Doxygen-25d95829b47380148f22fd2abc72a810e06b5730.tar.gz
Doxygen-25d95829b47380148f22fd2abc72a810e06b5730.tar.bz2
moved separate doxygen tag to tagfile attribute
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 47b5cea..559e745 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -10363,14 +10363,12 @@ static void writeTagFile()
}
FTextStream tagFile(&tag);
tagFile << "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>" << endl;
- tagFile << "<tagfile>" << endl;
- tagFile << " <doxygen";
- tagFile << " version=\"" << getDoxygenVersion() << "\"";
+ tagFile << "<tagfile doxygen_version=\"" << getDoxygenVersion() << "\"";
if (strlen(getGitVersion())>0)
{
- tagFile << " gitid=\"" << getGitVersion() << "\"";
+ tagFile << " doxygen_gitid=\"" << getGitVersion() << "\"";
}
- tagFile << "></doxygen>" << endl;
+ tagFile << ">" << endl;
// for each file
for (const auto &fn : *Doxygen::inputNameLinkedMap)