summaryrefslogtreecommitdiff
path: root/scripts/html_base.py
AgeCommit message (Collapse)Author
2022-07-12scripts: Don't use cache on HTML FrameKuninori Morimoto
Web browser will use cached page if it is using Frame (Menu, Summary, etc), but it is not good for PeriJect user. To avoid the cache patch, this patch try to 1) remove frame html every make, 2) add "?xxx" after file name to make web browser think it's a different file. It works well on Chrome, but not sure on other browser. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
2021-03-30html_base: indicate commit itself if it does not existKuninori Morimoto
Sometimes we run "make" without update Linux, and then we can't find some commits. In such case git indicates error message, but periject will not stop, and we lose such tasks from HTML. Now we can use run2() which can get return value. By This patch, periject indicates commit itself as title. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
2021-02-09scripts: add html_summary.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 "summary" from it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
2021-02-09scripts: add html_task.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 "task" from it. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>