summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2007-09-24 22:39:24 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2007-09-24 22:39:24 +0000
commit7255bdbb6ad04a5e79cef0e4f68a5e339683fd21 (patch)
tree2794064599b7dcc17310fb4fadd67e8c56d51d32
parent62c1a87df40b0f21ddc9094d279ecf3869c578c1 (diff)
downloadrockbox-7255bdbb6ad04a5e79cef0e4f68a5e339683fd21.tar.gz
rockbox-7255bdbb6ad04a5e79cef0e4f68a5e339683fd21.zip
Remove the full url path from links to the wiki and display the wiki name only instead. Add a note on how to manually access wiki pages. The links itself are still pointing to the wiki.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14847 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--manual/getting_started/main.tex8
-rw-r--r--manual/preamble.tex6
2 files changed, 12 insertions, 2 deletions
diff --git a/manual/getting_started/main.tex b/manual/getting_started/main.tex
index d85f4c4894..254f86985f 100644
--- a/manual/getting_started/main.tex
+++ b/manual/getting_started/main.tex
@@ -88,5 +88,11 @@ are used:
88} 88}
89}{}% end ifpdfoutput 89}{}% end ifpdfoutput
90 90
91Links to the wiki are abbreviated by the name of the wiki page. Those names
92are still linked so you can simply follow them like any other link in this
93manual. If you want to acces a wiki page manually go to \url{\wikibaseurl}
94and type the page name in the ``Go'' box at the top of the page.
95\ifpdfoutput{Links to wiki pages are also indicated by the symbol \wikiicon
96in front of the page name.}{}
91 97
92\input{getting_started/installation.tex} \ No newline at end of file 98\input{getting_started/installation.tex}
diff --git a/manual/preamble.tex b/manual/preamble.tex
index 6db6e5394b..5b6e11094a 100644
--- a/manual/preamble.tex
+++ b/manual/preamble.tex
@@ -254,7 +254,11 @@
254% set link to the wiki. 254% set link to the wiki.
255% Usage: \wikilink{WebHome} 255% Usage: \wikilink{WebHome}
256% with "WebHome" being the wiki page name 256% with "WebHome" being the wiki page name
257\newcommand{\wikilink}[1]{\url{http://www.rockbox.org/twiki/bin/view/Main/#1}} 257\newcommand{\wikibaseurl}{http://www.rockbox.org/wiki/}
258\ifpdfoutput{\newcommand{\wikiicon}{\Pointinghand}}
259 {\newcommand{\wikiicon}{}}
260\newcommand{\wikilink}[1]{\wikiicon{}\href{\wikibaseurl#1}{#1}}
261%\newcommand{\wikilink}[1]{\url{http://www.rockbox.org/wiki/#1}}
258 262
259% define environment "code" based on fancyvrb. 263% define environment "code" based on fancyvrb.
260% use it to set code the user should type / see on his screen. 264% use it to set code the user should type / see on his screen.