diff options
author | David Robillard <d@drobilla.net> | 2019-03-24 21:35:31 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-03-24 21:52:36 +0100 |
commit | 934ddd6669efae6ae1287b8fb5dbb5bd3724b59f (patch) | |
tree | cef272ed9fe37f7c20860cc8f2e8d74e7eebc54a /wscript | |
parent | 3451af94fb05cd7d545718c84afcb4fe081a8f85 (diff) | |
download | lv2-934ddd6669efae6ae1287b8fb5dbb5bd3724b59f.tar.xz |
Remove history from top level specifications page
This is moving to the homepage, since it clutters up the documentation less,
and can be syndicated that way.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -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) |