summaryrefslogtreecommitdiff
path: root/scripts/html_index.py
AgeCommit message (Collapse)Author
2022-03-15periject: Fix menu and subindex file locations part2Kuninori Morimoto
It seems some browther can't handle symbolic link correctly (some browther think it at original path, some browther think it as linked path). Inidex.html is designed to located under ${periject}/index.html. But the reason why it is created inside ${periject}/html is keeping simple Makefile. Thus it is using link to under ${periject}. This patch uses hard link instead of symbolic link for it. Tested-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
2022-03-10periject: Fix menu and subindex file locationsJacopo Mondi
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>
2021-02-09scripts: add html_index/body/subindex.pyKuninori Morimoto
Because current PeriJect is using scripts/myhtml.py to creating all HTML files, all files will be re-created if myhtml.py itself was updated. It is very verbose. This patch separates "index", "body", "subindex" from it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>