summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjell.ahlstedt@bredband.net>2013-01-06 14:54:04 +0100
committerKjell Ahlstedt <kjell.ahlstedt@bredband.net>2013-01-06 14:54:04 +0100
commit09351e3d3030e2ce08ef8d9e8802fa22c5de9428 (patch)
treed37037ab903f4c905049a93f16690f9feb0d8743 /util
parentb82d6c41617e6c9bb5fd01f1516dfa13e10a66ab (diff)
downloadmm-common-09351e3d3030e2ce08ef8d9e8802fa22c5de9428.tar.gz
Update for Doxygen 1.8.
* skeletonmm/doc/reference/Doxyfile.in: Update with Doxygen 1.8.3. doxygen -s -u Doxyfile.in * util/post-process.pl: Don't collapse almost all multiple spaces to a single space. It distorts the formatting of @code blocks, even more so with Doxygen 1.8. * util/doxygen.css: Add rules for div.fragment and div.line. Used for @code blocks by Doxygen 1.8.
Diffstat (limited to 'util')
-rw-r--r--util/doc-postprocess.pl1
-rw-r--r--util/doxygen.css12
2 files changed, 11 insertions, 2 deletions
diff --git a/util/doc-postprocess.pl b/util/doc-postprocess.pl
index 2fbea7c..6630a91 100644
--- a/util/doc-postprocess.pl
+++ b/util/doc-postprocess.pl
@@ -110,7 +110,6 @@ foreach my $filename (map(bsd_glob($_, GLOB_NOSORT), @ARGV))
s/&mdash;/&#8212;/g;
s/&ndash;/&#8211;/g;
s/ *&nbsp; */&#160;/g;
- s/(?<=\S)\s{2,}/ /g;
}
# write the whole buffer back
diff --git a/util/doxygen.css b/util/doxygen.css
index 3e7b3f6..80d987e 100644
--- a/util/doxygen.css
+++ b/util/doxygen.css
@@ -94,13 +94,23 @@ code, .fragment {
font-family: monospace, fixed;
}
-pre.fragment {
+pre.fragment, div.fragment {
background-color: #EEEEFF;
border: 1px solid #AAAAFF;
padding: 0.5em;
margin: 0.375em 0.75em 0.375em 0.2em;
}
+div.fragment > pre.fragment {
+ border-style: none;
+ padding: 0;
+ margin: 0;
+}
+
+div.line {
+ white-space: pre;
+}
+
div.ah {
background-color: #000000;
color: #FFFFFF;