diff options
-rw-r--r-- | doc/index.html.in | 16 | ||||
-rw-r--r-- | wscript | 6 |
2 files changed, 2 insertions, 20 deletions
diff --git a/doc/index.html.in b/doc/index.html.in index 12040ee..2282d7b 100644 --- a/doc/index.html.in +++ b/doc/index.html.in @@ -32,14 +32,6 @@ </div> <div id="content"> - <div id="contentsbox"> - <!-- Contents: --> - <ul id="contents"> - <!-- <li><a href="#sec-description">Description</a></li> --> - <li><a href="#sec-index">Index</a></li> - <li><a href="#sec-history">History</a></li> - </ul> - </div> <hr class="contentssep" /> <!-- INDEX --> @@ -61,12 +53,6 @@ </table> </div> - <!-- HISTORY --> - <h2 class="sec" id="sec-history">History</h2> - <div class="section"> - @HISTORY@ - </div> - <!-- FOOTER --> <div id="footer"> <div> @@ -86,7 +72,7 @@ href="http://jigsaw.w3.org/css-validator/check/referer"> CSS </a> - generated from <tt>meta.ttl</tt> + generated from the LV2 source distribution. </div> </div> @@ -185,9 +185,6 @@ def build_index(task): entries[dist] += lv2specgen.releaseChangeset( m, release, str(name)) - # Generate history for all post-unification LV2 distributions - history = lv2specgen.specHistoryMarkup(entries) - rows = [] for f in task.inputs: if not f.abspath().endswith('index.html.in'): @@ -204,8 +201,7 @@ def build_index(task): subst_file(task.inputs[0].abspath(), task.outputs[0].abspath(), {'@ROWS@': ''.join(rows), '@LV2_VERSION@': VERSION, - '@DATE@': date, - '@HISTORY@': history}) + '@DATE@': date}) def build_spec(bld, path): name = os.path.basename(path) |