in reply to Checking links between web-pages

the route i would take would be to maintain 2 database tables, one table a list of every file in the project and the other a list of which files link to which others. you could build this once and generate your documentation once, so browsing wouldn't generate any load. then you'd probably want to run a script once per night perhaps which checks the modification time of each doc and scans them for changes, and if necessary updating the db and regenerating a new static page.

perl -e"\$_=qq/nwdd\x7F^n\x7Flm{{llql0}qs\x14/;s/./chr(ord$&^30)/ge;print"

Replies are listed 'Best First'.
Re^2: Checking links between web-pages
by yacoubean (Scribe) on Oct 13, 2004 at 15:58 UTC
    This is a good idea. I can populate the tables with code, and then use the tables to create my 'linked to by whom' section on each page.