We use a number of diffrent web services in our company, wiki(moinmoin), bugtracker (internally), requestracker (customer connection), subversion. Is there a way to parse the wikipages so that if I write "... in Bug1234 you could ..." Bug1234 woud be renderd as a link to http://mybugtracker/bug1234
views:
224answers:
3
+3
A:
check out the interwiki page in moinmoin, (most wikis have them) we use trac for example and you can set up different link paths to point to your different web resources. So in our Trac you can go [[SSGWiki:Some Topic]] and it will point to another internal wiki.
Andrew Cox
2008-12-05 14:06:51
Thanks. It solves my problem in a nice way.
UlfR
2008-12-06 12:49:13
A:
I finally found the solution. "Add the site to data/intermap.txt" found at:
UlfR
2009-01-05 12:26:21
A:
add to the file data/intermap.txt
(create if not existing, but that should not happen) a line like
wpen http://en.wikipedia.org/wiki/
so that you can write [[wpen:MoinMoin]]
instead of http://en.wikipedia.org/wiki/MoinMoin
I also have
wpfr http://fr.wikipedia.org/wiki/
wpde http://de.wikipedia.org/wiki/
the data/intermap.txt
gives also other examples that serve just like bookmarklets in firefox. in your case, using :
tracker http://mybugtracker/
you would issue [[tracker:bug1234]]
meduz
2009-12-19 12:58:37