cahnged userdoc source to 'toolforge' (instead of 'wikis/howto')

This commit is contained in:
lars 2005-09-06 13:05:36 +00:00
parent 7dcc84c75b
commit 9c3dce9321
8 changed files with 13 additions and 11 deletions

View File

@ -329,7 +329,7 @@
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-08-31 09:13:52 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-08-31 09:13:52 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -364,7 +364,7 @@ CONFIG_TUN=m</pre>
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 20:22:46 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 20:22:46 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -98,7 +98,7 @@
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 16:14:50 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 16:14:50 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -60,7 +60,7 @@
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 20:16:37 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 20:16:37 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -60,13 +60,13 @@ svn checkout https://svn.systemausfall.org/svn/cryptobox/trunk </pre>
<h2 id="head-08bd0ad2103b9f58bd026d64c0bcb333f3bbd90b">Finished</h2>
<p>Now you can start to pariticipate in the development of the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> or simply customize your own <a href="/wikis/howto/CryptoBox">CryptoBox</a>-LiveCD. </p>
<p>See <a href="/cryptobox?action=doc&page=CryptoBoxDevWorkFlow">CryptoBoxDevWorkFlow</a> for details of how to use the developer's tools of the <a href="/wikis/howto/CryptoBox">CryptoBox</a>. </p>
<p><a href="/cryptobox?action=doc&page=CryptoBoxDevCustomBuild">CryptoBoxDevCustomBuild</a> shows some examples for local customizations of the <a href="/wikis/howto/CryptoBox">CryptoBox</a>. </p>
<p>Now you can start to pariticipate in the development of the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> or simply customize your own <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a>-LiveCD. </p>
<p>See <a href="/cryptobox?action=doc&page=CryptoBoxDevWorkFlow">CryptoBoxDevWorkFlow</a> for details of how to use the developer's tools of the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a>. </p>
<p><a href="/cryptobox?action=doc&page=CryptoBoxDevCustomBuild">CryptoBoxDevCustomBuild</a> shows some examples for local customizations of the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a>. </p>
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 18:48:32 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 18:48:32 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -53,7 +53,7 @@
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 19:48:55 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 19:48:55 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -145,7 +145,7 @@
<a id="bottom"></a>
</div>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 19:45:51 by <span title="">lars</span></p>
<p id="pageinfo" class="info" lang="en" dir="ltr">last edited 2005-09-05 19:45:51 by <span title=""></span></p>
</div> <!-- end page -->

View File

@ -10,7 +10,7 @@ PAGES="CryptoBox CryptoBoxDev CryptoBoxKonzept CryptoBoxEn CryptoBoxDevPreparati
# base URL
WIKI_HOST="https://systemausfall.org"
# the trailing slash is important
WIKI_URL="/wikis/howto/"
WIKI_URL=/toolforge/
CBOX_CGI="/cryptobox?action=doc\&page="
@ -55,6 +55,8 @@ for PAGE in $PAGES; do
echo " adjusting wiki links ..."
# redirect wiki links to cryptobox cgi
sed -i "s#=\"$WIKI_URL\([^\.]*\)\"#=\"$CBOX_CGI\1\"#g" "$TMP_FILE"
# do it twice - somehow, the "g" flag does not work (it should replace multiple occurrences on a line)
sed -i "s#=\"$WIKI_URL\([^\.]*\)\"#=\"$CBOX_CGI\1\"#g" "$TMP_FILE"
echo " finished!"
done