Parent Directory
|
Revision Log
|
Revision Graph
Adding extra online manual customisation tools
| 1 | #!/bin/csh -f |
| 2 | # |
| 3 | # \hthtmllink in latex won't allow target= modifier. |
| 4 | # So we add it ourselves here, to all the docref |
| 5 | # hyperlinks. The "docref" links are the links to |
| 6 | # browseable code tree. They have the format |
| 7 | # <A HREF="somepath_docref.html"> |
| 8 | # we chaneg them to |
| 9 | # <A HREF="somepath_docref.html" target=idontexist> |
| 10 | # |
| 11 | foreach f ( node*.html ) |
| 12 | |
| 13 | cat $f | \ |
| 14 | sed s'/docref\.html\"/docref\.html\" target=idontexist/' > $f.tmp |
| 15 | \cp $f.tmp $f |
| 16 | \rm $f.tmp |
| 17 | end |
| ViewVC Help | |
| Powered by ViewVC 1.1.22 |