chiark / gitweb /
doxygen: make it possible to not display Doxygen version in output.
authorVladimír Vondruš <mosra@centrum.cz>
Mon, 11 Dec 2017 10:15:08 +0000 (11:15 +0100)
committerVladimír Vondruš <mosra@centrum.cz>
Mon, 11 Dec 2017 13:47:56 +0000 (14:47 +0100)
Makes testing on Other People Machines actually possible.

49 files changed:
doc/doxygen.rst
doxygen/dox2html5.py
doxygen/templates/base.html
doxygen/test/compound_detailed/Doxyfile
doxygen/test/compound_detailed/File_8h.html
doxygen/test/compound_detailed/namespaceEno.html
doxygen/test/compound_detailed/namespaceFoo.html
doxygen/test/compound_detailed/namespaceNamee.html
doxygen/test/compound_detailed/namespaceType.html
doxygen/test/compound_detailed/namespaceVar.html
doxygen/test/compound_detailed/namespaceWarning.html
doxygen/test/compound_detailed/structTemplate.html
doxygen/test/compound_detailed/structTemplateWarning.html
doxygen/test/compound_detailed/structTemplate_3_01void_01_4.html
doxygen/test/compound_listing/Class_8h.html
doxygen/test/compound_listing/Doxyfile
doxygen/test/compound_listing/File_8h.html
doxygen/test/compound_listing/annotated.html
doxygen/test/compound_listing/classRoot_1_1Directory_1_1Sub_1_1Class.html
doxygen/test/compound_listing/dir_4b0d5f8864bf89936129251a2d32609b.html
doxygen/test/compound_listing/dir_bbe5918fe090eee9db2d9952314b6754.html
doxygen/test/compound_listing/files.html
doxygen/test/compound_listing/namespaceAnother.html
doxygen/test/compound_listing/namespaceRoot_1_1Directory.html
doxygen/test/compound_listing/namespaces.html
doxygen/test/compound_listing/page-no-toc.html
doxygen/test/compound_listing/page-toc.html
doxygen/test/contents_blocks/Doxyfile
doxygen/test/contents_blocks/index.html
doxygen/test/contents_blocks/todo.html
doxygen/test/contents_code/Doxyfile
doxygen/test/contents_code/index.html
doxygen/test/contents_code/warnings.html
doxygen/test/contents_image/Doxyfile
doxygen/test/contents_image/index.html
doxygen/test/contents_image/warnings.html
doxygen/test/contents_math/Doxyfile
doxygen/test/contents_math/index.html
doxygen/test/contents_tagfile/Doxyfile
doxygen/test/contents_tagfile/index.html
doxygen/test/contents_typography/Doxyfile
doxygen/test/contents_typography/index.html
doxygen/test/contents_typography/warnings.html
doxygen/test/page_duplicated_brief/Doxyfile
doxygen/test/page_duplicated_brief/page-a.html
doxygen/test/page_duplicated_brief/page-b.html
doxygen/test/page_order/Doxyfile
doxygen/test/page_order/pages.html
doxygen/test/test_doxyfile.py

index 1ed4b6c0eb28a754acce0b31280232415f3c9851..b39147710b489226ef2848f55bdde21e674a9b22 100644 (file)
@@ -249,6 +249,9 @@ Variable                            Description
 :ini:`M_EXPAND_INNER_TYPES`         Whether to expand inner types (e.g. a class
                                     inside a class) in the symbol tree. If not
                                     set, ``NO`` is used.
+:ini:`M_SHOW_DOXYGEN_VERSION`       Show Doxygen version in the footer. If not
+                                    set, ``YES`` is used; useful to disable for
+                                    output verification.
 =================================== =======================================
 
 Note that namespace, directory and page lists are always fully expanded as
index fc39e9b93d7cb155b33a0d7f12e05b638a9ea3d2..26d39d3af0882e595f33268e65c865de88136ea5 100755 (executable)
@@ -1543,7 +1543,8 @@ def parse_doxyfile(state: State, doxyfile, config = None):
         'M_CLASS_TREE_EXPAND_LEVELS': ['1'],
         'M_FILE_TREE_EXPAND_LEVELS': ['1'],
         'M_EXPAND_INNER_TYPES': ['NO'],
-        'M_THEME_COLOR': ['#22272e']
+        'M_THEME_COLOR': ['#22272e'],
+        'M_SHOW_DOXYGEN_VERSION': ['YES']
     }
 
     def parse_value(var):
@@ -1627,7 +1628,8 @@ def parse_doxyfile(state: State, doxyfile, config = None):
         if i in config: state.doxyfile[i] = int(' '.join(config[i]))
 
     # Boolean values that we want
-    for i in ['M_EXPAND_INNER_TYPES']:
+    for i in ['M_EXPAND_INNER_TYPES',
+              'M_SHOW_DOXYGEN_VERSION']:
         if i in config: state.doxyfile[i] = ' '.join(config[i]) == 'YES'
 
     # List values that we want. Drop empty lines.
index 1c5ea732a92e80ad81de4a05b81dc4c3eaf5ff33..d7d632fab2048beeba12cc2e87083944bfbbabed 100644 (file)
@@ -48,7 +48,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created by <a href="http://doxygen.org/">Doxygen</a> {{ DOXYGEN_VERSION }} and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>{{ PROJECT_NAME }}{% if PROJECT_BRIEF %} {{ PROJECT_BRIEF }}{% endif %}. Created by <a href="http://doxygen.org/">Doxygen</a>{% if M_SHOW_DOXYGEN_VERSION %} {{ DOXYGEN_VERSION }}{% endif %} and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index beb4a79a2c89f7cecb1fd99aca3ab05e27420970..29eb753c894a6c82f094e1d5df8a8199a062cb1a 100644 (file)
@@ -4,3 +4,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index 5870b7d481a188b7f5fb8b1ea34e1eee903a8fbd..3d76117fa11a1db72c53ad9a1d19a9c8ef332c4c 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 132ae50df7e6ff0a2c229f67d6d6303723ed0799..e48ce60b6f967a76a1cd4a4a3d871da9139f718b 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 89a8fc806299d1f98bd9792272bd26b061025c58..a20245f49de7f4003de682ef18c9066175d0d0d5 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 02125b77500c0d649e723e0943a82361ac81dc7a..d0dd6d97c94841f0b45193ccf9f454ce10eab02f 100644 (file)
@@ -45,7 +45,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index aab8ad7a066603e2eb9e591526d4498a073e2828..8de1fbd839ed507d85cd5aa1050a476632ec1218 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index e9f042fdae541a719b7baef2c584879b6e66f59c..b16cac0b675e5e50d45ecfc9b32ec7a5ad4d68cc 100644 (file)
@@ -71,7 +71,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 93b73cca64fa07e60b434f91798a8144d9d69db6..95ce32cfe965eaf0790e02bd29f7a23b982ccb3a 100644 (file)
@@ -73,7 +73,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 037ced2e7ff7d6b4d99b710996612300db7cca2f..44052a8a9391e3e5388967092ed8191a032cb9af 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 6194a1c417b7b1b214689123df9273873ae9e068..0f6175c0d0bf160f6684cff9c6133c8e9ffa69d7 100644 (file)
@@ -47,7 +47,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 69f4fcf5f37c299d4da7740e5f912217fc3205d1..1f2455299eb937e67d45b50436cb41202f735a2b 100644 (file)
@@ -83,7 +83,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index b81e1cda7c22cc89c18326eb6f1f1e55f6faf07b..b4f605443ba53ae62c0afc9c074b6339d3eea8ba 100644 (file)
@@ -87,7 +87,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 09aa151a14897c69be77812e73b935da27dda5f2..b772c0bb96253d23c13613a5f012e9877e90b28b 100644 (file)
@@ -8,3 +8,4 @@ GENERATE_LATEX          = NO
 GENERATE_XML            = YES
 
 M_FILE_TREE_EXPAND_LEVELS = 2
+M_SHOW_DOXYGEN_VERSION  = NO
index bd32e51eb8122f6b2e5b5ebdfa20627a2f978b39..bacab9ff8865f086cb59f447aab884907b894ad1 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 7cd146aaf69079772bbde9d9311f4a4e07a53efd..d03a150fbf34d540119a8e08d98f1316b16e8941 100644 (file)
@@ -88,7 +88,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 2926758006369c10c6a0c63a59e7b97f48ea60ad..3959daeb0b64d356832b58904410e9e887e26547 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index f49a5207ca72a270d9f62f62c613b64d0970c020..7e333a05aca42be4ff9a169cd873c2f889ce01c7 100644 (file)
@@ -72,7 +72,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 476d8a4be6c6bfd2948f4a80f5dbfa26706b60df..57e28df494bb486efed27f07d7b00dccdbaf124f 100644 (file)
@@ -64,7 +64,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 38971ccf2992fc94eaaa92ba087cdb7d5ec77c30..72d3656af66325d22ec1c66d7b6b3b8ab1c50444 100644 (file)
@@ -79,7 +79,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 84cd77c7bb89e9d4fdd13267f28a082753b93b8a..a84c2693746cc0102b68ff6565a61f3ff6d8596f 100644 (file)
@@ -44,7 +44,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 6e8792df5f60150335e95b8de1ec1070fcc9ac86..ce4ac51c4ba661866eaa00cea99d3854f14e358c 100644 (file)
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index ac512a22dedafedb9610f78ee0b4028616ad70e5..bdab3cf49c1ab0bb12edf4dfdef9404017c1f3d8 100644 (file)
@@ -72,7 +72,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index ce38c0924f4ad39d5a3efd6ab65a1a7023fbfe61..1054655a55e9c166c4925b0a7c6e3276cfc751de 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 016da4bd297bfac27b0d756af3ed3ab3751136aa..95a50961e420a2d42c20e97ea47ed307b95086d9 100644 (file)
@@ -64,7 +64,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index d8d89a97479436ebd7065498e097ca87d52a6a64..d64a2386d33d9fc9455666391fa75dcd17a36132 100644 (file)
@@ -3,3 +3,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index f57c09c63bbe40e5ccd434e2ff52108caf0d003b..1a602dc0a542fc74409ca0971731ebaa29af3438 100644 (file)
@@ -48,7 +48,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index a31416aa48e1d554096c6ce08bfd528007e15187..e43f3b2d36d7cdea3f6999736e4e3e09d4231ccf 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 60356fdc2a4a44cbeda964e224f899853fb408d0..a316231bcde5845f1bc1ecc66e4edb01ca5a8f54 100644 (file)
@@ -4,3 +4,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index f52c31d6ec00f9173653acb3d5ed0302aaedf4bd..53b29554b919fe346b2bb816beaf53d156ae8376 100644 (file)
@@ -53,7 +53,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 21bd1f4012d99ba096b39d7d7a4182512ccdcb41..f8af16be4462416a14c9be630a8f94bf387aa038 100644 (file)
@@ -49,7 +49,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 0cd61da9599a8bb4e607c02cc8fec9010ce28178..c366f1b56aadad016f6030f000012c36bd30597b 100644 (file)
@@ -4,3 +4,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index b914e0d1c81477485d56d3ba3519abc0b5d3e822..37a8111c70a7770b04bc796ac0580192dc416bd6 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index f624aa2f1f24c851c42837c8f1ef54d7396de0c1..460e8846a8be6d01899291dfb8e8855cd7da3ad8 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index d8d89a97479436ebd7065498e097ca87d52a6a64..d64a2386d33d9fc9455666391fa75dcd17a36132 100644 (file)
@@ -3,3 +3,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index da6c8059ba52795b6f050039d6ea829156a6302b..fecd181edf5160141c800ac07c244f3a9656589f 100644 (file)
@@ -98,7 +98,7 @@ $ \hat q $
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index e361ae2341d0db8a29131e7972a4504f7c879a85..995ef6b3a7a294b006a9dc4a9ad785f750741590 100644 (file)
@@ -4,3 +4,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index 5973d184ba6a4bfd9e67588da51f659490294e3e..bea3f042faa282df6827922dba63020f73eae0ef 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index d8d89a97479436ebd7065498e097ca87d52a6a64..d64a2386d33d9fc9455666391fa75dcd17a36132 100644 (file)
@@ -3,3 +3,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index 89ebeac778f188412cce9c1d9f568034ccbcac0c..7b9d05062e58b7af5a6f148b73a9d4a6bed72520 100644 (file)
@@ -47,7 +47,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index acc9fbd08e3997e1c9298be80d60147d8efacceb..dd89cec62cfec47bc67a1eea46d0e498ce8ecfe3 100644 (file)
@@ -46,7 +46,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index d8d89a97479436ebd7065498e097ca87d52a6a64..d64a2386d33d9fc9455666391fa75dcd17a36132 100644 (file)
@@ -3,3 +3,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index fbba0521f85e57b0b8d8e3e324791d7d59ba2f5d..64df30e859e1eb31a44b44d29a18b2e9ccf99367 100644 (file)
@@ -47,7 +47,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 19faf69755a341b84d3fca58e6b8a0dd53b7dadb..429c5d2c385a5be183b47188427b703eff091842 100644 (file)
@@ -47,7 +47,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index b928f4c17990bb6b1a856bca8a66834f1c45dea3..772e1b922304655c34bc7ac8ffcb6e6b9460591d 100644 (file)
@@ -4,3 +4,5 @@ QUIET                   = YES
 GENERATE_HTML           = NO
 GENERATE_LATEX          = NO
 GENERATE_XML            = YES
+
+M_SHOW_DOXYGEN_VERSION  = NO
index 7e20e86a14631814747dd26d56e43012e50d7c8d..4560f310235cab460d25ebf5c981857f1011c7f0 100644 (file)
@@ -70,7 +70,7 @@
   <div class="m-container">
     <div class="m-row">
       <div class="m-col-l-10 m-push-l-1">
-        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> 1.8.14 and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
+        <p>My Project. Created by <a href="http://doxygen.org/">Doxygen</a> and <a href="http://mcss.mosra.cz/">m.css</a>.</p>
       </div>
     </div>
   </div>
index 862f5961d4049685e946631aba13bb00817148a2..4d2214a512457dce1b3a15a3acec833c44202531 100644 (file)
@@ -13,6 +13,7 @@ class Doxyfile(unittest.TestCase):
             'M_CLASS_TREE_EXPAND_LEVELS': 1,
             'M_EXPAND_INNER_TYPES': False,
             'M_FILE_TREE_EXPAND_LEVELS': 1,
+            'M_SHOW_DOXYGEN_VERSION': True,
             'M_THEME_COLOR': '#22272e',
             'OUTPUT_DIRECTORY': '',
             'PROJECT_BRIEF': 'is cool',