Computers |
|
| | #1 (permalink) |
| Administrator Join Date: May 2003
Posts: 1,408
| Does anyone of a program or tool that will automatically generate or create a chart of a website? Something that will follow all the links on a site and some how display the link and/or file it links to. Thanks |
| | |
| | #3 (permalink) |
| Administrator Join Date: May 2003
Posts: 1,408
| Hi Yoran... Do you have something already built that can do that? I want it for "web masters" and the like. If you want to visually see a website, how else can you do it besides manually writing it out? I'm looking for an easier/faster way ![]() |
| | |
| | #4 (permalink) |
| Junior Techie Join Date: Aug 2003
Posts: 66
| nope, I haven't make something like that before, and I don't know where you can learn it... (I found it out by my self...) but I can give you a little documentation about getting pages with HTTP. the only thing you have to do is parsing the HTML and it's done! [little simple example about parsing html] Code: $html =~ /<a href=(.+) target=(.+)>(.+)<\/a>/i; $link = $1; $text = $3;
__________________ Da //FRAG-clan is da best! ahum... |
| | |
| | #5 (permalink) |
| Newb Techie | Java/JSP can do this VERY easily using the built-in Document Object Model, especially the latter if you have Tomcat or another JSP app server running on your webserver. Check this out. Chapter 8 is about the DOM. You can write a fairly simple JSP page that will traverse through your whole site, link by link, and catalogue where each page goes, etc. That is, if I understand what you're asking... |
| | |