diff options
author | Timo Mueller <timo.mueller@bmw-carit.de> | 2012-11-30 09:59:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 17:21:29 +0000 |
commit | a11f23b4bc743f1240b75d43dff397d562ae56de (patch) | |
tree | 7358bc082e37ab51f36f5c9e9dd0e5149585c22e /documentation/tools/eclipse-help.sed | |
parent | 108ffcf310dadd496cd3598d082f3731225647d5 (diff) | |
download | poky-a11f23b4bc743f1240b75d43dff397d562ae56de.tar.gz |
documentation/tools/eclipse-help.sed: Processes external links for eclipse html files
The file is used when creating eclipse help html files. It processes
all html files and converts links so that the user can navigate
between different docuementation parts without leaving the eclipse
help center.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/tools/eclipse-help.sed')
-rw-r--r-- | documentation/tools/eclipse-help.sed | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/documentation/tools/eclipse-help.sed b/documentation/tools/eclipse-help.sed new file mode 100644 index 0000000000..71d3395296 --- /dev/null +++ b/documentation/tools/eclipse-help.sed | |||
@@ -0,0 +1,18 @@ | |||
1 | # Processes poky-ref-manual and yocto-project-qs manual (<word>-<word>-<word> style) | ||
2 | # For example: | ||
3 | # "ulink" href="http://www.yoctoproject.org/docs/1.3/poky-ref-manual/poky-ref-manual.html#faq" | ||
4 | # -> "link" href="../poky-ref-manual/faq.html" | ||
5 | s/\"ulink\" href=\"http:\/\/www.yoctoproject.org\/docs\/[^\/]*\/\([a-z]*-[a-z]*-[a-z]*\)\/[a-z]*-[a-z]*-[a-z]*.html#\([^\"]*\)\"/\"link\" href=\"\.\.\/\1\/\2.html\"/g | ||
6 | |||
7 | # Processes all other manuals (<word>-<word> style) | ||
8 | # For example: | ||
9 | # "ulink" href="http://www.yoctoproject.org/docs/1.3/kernel-manual/kernel-manual.html#faq" | ||
10 | # -> "link" href="../kernel-manual/faq.html" | ||
11 | s/\"ulink\" href=\"http:\/\/www.yoctoproject.org\/docs\/[^\/]*\/\([a-z]*-[a-z]*\)\/[a-z]*-[a-z]*.html#\([^\"]*\)\"/\"link\" href=\"\.\.\/\1\/\2.html\"/g | ||
12 | |||
13 | # Process cases where just an external manual is referenced without an id anchor | ||
14 | # For example: | ||
15 | # "ulink" href="http://www.yoctoproject.org/docs/1.3/kernel-manual/kernel-manual.html | ||
16 | # -> "link" href="../kernel-manual/index.html" | ||
17 | s/\"ulink\" href=\"http:\/\/www.yoctoproject.org\/docs\/[^\/]*\/\([a-z]*-[a-z]*-[a-z]*\)\/[a-z]*-[a-z]*-[a-z]*.html\"/\"link\" href=\"\.\.\/\1\/index.html\"/g | ||
18 | s/\"ulink\" href=\"http:\/\/www.yoctoproject.org\/docs\/[^\/]*\/\([a-z]*-[a-z]*\)\/[a-z]*-[a-z]*.html\"/\"link\" href=\"\.\.\/\1\/index.html\"/g | ||