Age | Commit message (Collapse) | Author |
|
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>
|
|
It will ignore "Done" automatically, but it should ignore
"Abandoned", too.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
They have no SoW with Renesas
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
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>
|
|
Make sure "scripts/schedule.py" is removed during "make clean".
Fixes: edd2189ab2c0c913 ("Add Schedule support")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
|
|
"wiki/Chat_log.wiki" is not removed during "make clean" due to a typo in
the file name.
Fixes: ffd8575eb1099413 ("chatlog: Auto update for Chat log")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
In Makefile, "menu" never updated because it doesn't have depend files.
This patch always removes it and update every time.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Current implementation doesn't update index.html even though menu
and/or subindex were updated.
Thus, browser uses old index.html, and we will miss new menu.
This patch always remakes index.html to solve it.
This patch also use "ln -sf" instead of "ln -f" for it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Currently, "make -B" to rebuild everything fails because the symlinks
are already there. Force them to allow the rebuild.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
No one is using myhtml.py anymore.
This patch removes it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
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
"member", "status", "team", "bsp" from it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
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 "menu" from it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
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>
|
|
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 "wiki" from it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
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>
|
|
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>
|
|
This patch adds SoC/BSP schedule support.
PeriPeri member can know the Renesas plan from it.
It is based on timesheet JavaScript which from below
with small customize.
https://github.com/sbstjn/timesheet.js.git
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Current periject indicates BSP upport status as all-in-one,
but it is not good to know *each* BSP.
This patch update for it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
It should be all dependent, not all method
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
This patch adds chatlog.py and auto update Chat log.
Each leader need to do is just put chatlog under wiki/Chat_log
by this patch.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Renesas contracted service provider will stop Redmine at 2021.
But, We want to keep it. This patch start to support Wiki at PeriJect.
100% compatible is difficult, but some of them can be.
These are known un-compatiblity.
- list "-" doesn't work
- line "---" doesn't work
- [[link]] doesn't work (periject supports similar one)
- !image! doesn't work (periject supports similar one)
- <pre>...</pre> doesn't allow white line
- {{toc}} doesn't work
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
|
|
Current each files are depend its dir,
but because of it, sometimes we needed to run "make" twice.
This patch creates dir as 1 target, and each files
never depends it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Current periject need to make many times.
It is because of make order. This patch fixup it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Current periject doesn't update Menu
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
There are no assignee tasks, and html.py will be error at such
tasks. This patch care it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
commit fbd5adac3e9a0 ("find: add -a option")
added -a option to indicate all tasks, but it was same as
assignee member. This patch fixup it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Basic step is over. Let's cleanup Makefile
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|
|
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
|