summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJacopo Mondi <jacopo@jmondi.org>2021-12-13 20:08:57 +0100
committerGeert Uytterhoeven <geert+renesas@glider.be>2022-03-10 10:07:41 +0100
commitacff0384d468a7cd0dfc30e9cc938013b9eda29c (patch)
treeb1527fb6e8ffd9a0b66ccdf15807948bea00b947 /scripts
parent11345028ca7a5cd71da8f8ebbcb4e6fd9b1a741f (diff)
periject: Fix menu and subindex file locations
The generated index.html contains broken links to html/subindex.html and html/menu.html. The path to menu.html and subindex.html is interpreted relatively to the html/ directory, so there's no need to prefix it with it. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/html_index.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/html_index.py b/scripts/html_index.py
index 50415ca..0da5b05 100755
--- a/scripts/html_index.py
+++ b/scripts/html_index.py
@@ -22,8 +22,8 @@ class periject_html(html_base.myhtml):
# |menu|body|
# | | |
with html("frameset", {"cols":"{},*".format(self.config("html-default-cols"))}):
- html("frame", {"src":"./html/menu.html", "name":"menu"}).print()
- html("frame", {"src":"./html/subindex.html", "name":"body"}).print()
+ html("frame", {"src":"./menu.html", "name":"menu"}).print()
+ html("frame", {"src":"./subindex.html", "name":"body"}).print()
#====================================
#