| [reply] |
There are various tools for sale that can automate some of this for you, like SiteMill. However, this sounds like your standard design question. One possibility is to use UML, but treat each page as a class.
Another is to write up the state machine (because every web application is really a state machine) and look at it that way. Circles and arrows with notations on them, essentially.
------
We are the carpenters and bricklayers of the Information Age.
Then there are Damian modules.... *sigh* ... that's not about being less-lazy -- that's about being on some really good drugs -- you know, there is no spoon. - flyingmoose
I shouldn't have to say this, but any code, unless otherwise stated, is untested
| [reply] |
I would expect that there are free web-link visualization tools available online, although there's no guarantee that they'll do a good job of illustrating your site.
Alternately, you could build your own using WWW::Mechanize and GraphViz, but this may consume development time best spent on you application itself. | [reply] |
Devel::Diagram may be what you are looking for. I haven't used it yet, but it looks really cool. From reading its documentation, it says that it takes a perl module (or modules) and generates an XML representation that can then be rendered into HTML.
| [reply] |