summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2013-10-29 18:29:16 +0100
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-10-29 18:29:16 +0100
commitb9db38d7f5451c281f7ba345cc3f71e2240ba23a (patch)
tree685a8ac3cc59fcdc513382396c6bdb5627f0f80c /build-aux
parent3327d943c46afad17f64b5500663b80059d39aa3 (diff)
downloadgnutls-b9db38d7f5451c281f7ba345cc3f71e2240ba23a.tar.gz
updated gnulib.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/pmccabe2html18
1 files changed, 11 insertions, 7 deletions
diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html
index 863c73e939..ffd07881b3 100644
--- a/build-aux/pmccabe2html
+++ b/build-aux/pmccabe2html
@@ -47,6 +47,10 @@
# Prologue & configuration
BEGIN {
+ # Portable lookup of present time.
+ "date +%s" | getline epoch_time
+ "date" | getline chronos_time
+
section_global_stats_p = 1
section_function_cyclo_p = 1
@@ -69,7 +73,7 @@ BEGIN {
Copyright (c) 2007, 2008 Free Software Foundation, Inc."
html_doctype = "<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \
\"http://www.w3.org/TR/html401/loose.dtd\">"
- html_comment = "<!-- Generated by gnulib's pmccabe2html at " systime() " -->"
+ html_comment = "<!-- Generated by gnulib's pmccabe2html at " epoch_time " -->"
html_title = "Cyclomatic Complexity report for " package_name
# Wiki options
@@ -211,7 +215,7 @@ function html_header ()
print cssline
}
print "-->"
- print "</style />"
+ print "</style>"
close(css)
}
print "</head>"
@@ -418,9 +422,9 @@ function html_fnc (nfun,
while ((getline codeline < (fname nfun "_fn.txt")) > 0)
{
- sub(/\\</, "&lt;", codeline)
- sub(/\\>/, "&gt;", codeline)
- sub(/&/, "&amp;", codeline)
+ gsub(/&/, "\&amp;", codeline) # Must come first.
+ gsub(/</, "\&lt;", codeline)
+ gsub(/>/, "\&gt;", codeline)
print codeline
}
@@ -852,12 +856,12 @@ END {
if (output_lang == "html")
{
print "<div class=\"page_title\">" package_name " Cyclomatic Complexity Report</div>"
- print "<p>Report generated at: <span class=\"report_timestamp\">" strftime() "</div></p>"
+ print "<p>Report generated at: <span class=\"report_timestamp\">" chronos_time "</span></p>"
}
if (output_lang == "wiki")
{
print "==" package_name " Cyclomatic Complexity Report=="
- print "Report generated at: '''" strftime() "'''"
+ print "Report generated at: '''" chronos_time "'''"
}
if (section_global_stats_p)