diff options
author | Richard Carlsson <[email protected]> | 2017-03-13 13:36:47 +0100 |
---|---|---|
committer | Richard Carlsson <[email protected]> | 2017-03-13 13:36:47 +0100 |
commit | 8757e096db3380e9bb36fb1fca7ff151e026834b (patch) | |
tree | 4e6d2a4778a240e03b6af357c27ee68757c6d3f4 /lib/edoc/src | |
parent | 47e46069d01960b74cefeba648e98e6afbb79e59 (diff) | |
download | otp-8757e096db3380e9bb36fb1fca7ff151e026834b.tar.gz otp-8757e096db3380e9bb36fb1fca7ff151e026834b.tar.bz2 otp-8757e096db3380e9bb36fb1fca7ff151e026834b.zip |
edoc: Don't generate timestamps in footer
Diffstat (limited to 'lib/edoc/src')
-rw-r--r-- | lib/edoc/src/edoc_layout.erl | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/edoc/src/edoc_layout.erl b/lib/edoc/src/edoc_layout.erl index 9407ae1321..5ef210980c 100644 --- a/lib/edoc/src/edoc_layout.erl +++ b/lib/edoc/src/edoc_layout.erl @@ -214,7 +214,7 @@ layout_module(#xmlElement{name = module, content = Es}=E, Opts) -> ++ functions(SortedFs, Opts) ++ [hr, ?NL] ++ navigation("bottom") - ++ timestamp()), + ++ footer()), Encoding = get_attrval(encoding, E), xhtml(Title, stylesheet(Opts), Body, Encoding). @@ -228,12 +228,8 @@ module_params(Es) -> [element(1, First) | [ {[", ",A]} || {A, _D} <- Rest]] end. -timestamp() -> - [?NL, {p, [{i, [io_lib:fwrite("Generated by EDoc, ~s, ~s.", - [edoc_lib:datestr(date()), - edoc_lib:timestr(time())]) - ]}]}, - ?NL]. +footer() -> + [?NL, {p, [{i, ["Generated by EDoc"]}]}, ?NL]. stylesheet(Opts) -> case Opts#opts.stylesheet of @@ -1039,7 +1035,7 @@ overview(E=#xmlElement{name = overview, content = Es}, Options) -> ++ FullDesc ++ [?NL, hr] ++ navigation("bottom") - ++ timestamp()), + ++ footer()), Encoding = get_attrval(encoding, E), XML = xhtml(Title, stylesheet(Opts), Body, Encoding), xmerl:export_simple(XML, ?HTML_EXPORT, []). |