I am trying to download all files from a webpage using perl. The problem is that the downloads are 'hidden' behind folders that open when you click the little "plus" symbol. I can go through one by one and open each file, download the contents, go back, open the next one, etc. I am wondering if there is an elegant way to do this using WWW::Mechanize or LWP::UserAgent where I just open every folder in one fell swoop and then collect all the download links?

The HTML I am intersted in looks as follows:

<td width='0' nowrap><a href="...link" onmouseover="window.status='Close the folder Homework #2.'; return true;" ONMOUSEOUT="window.status='';return true;">

If I click on that link while viewing the source, a new page opens showing all the folders withe the said folder opened. Now I can view the source, pull out the file with mirror(), OK great.

BUT there has to be a more elegant way than doing this for each one right? and just open them all?

A similar question that I can foresee coming up is how do I know from the HTML tags that this is a button to click to open a folder? (somewhat relevant especially if it turns out that I have to loop through to check each considering that there are other links on the page)

My apologies in advance as I am still learning perl and I have 0 HTML experience. Let me know if you all need more of the HTML or some screenshots to make my question more clear.

Thanks to all who take their time to look!

link|improve this question

1  
Look where? You neglected to link to the Web site you are talking about. – daxim May 24 '11 at 14:48
the website is my courses page, which is password protected. No offense, but I would rather not give out my login and password info to my college account. I'm sorry if it complicates any help I might recieve – msikd65 May 24 '11 at 16:11
Don't you have dummy credentials for testing purposes? If not, then publish the HTML elsewhere. This one file is probably not enough, the description sounds like JavaScript is also involved that shows additional parts. These could be hidden on the same document and JS is used to dynamically disclose them, or perhaps they are loaded from external resources. In that case, use FireBug/Opera Dragonfly/Chromium Developer tools and note them from the Network tab. Publish all so interested people can reproduce your environment to work on. – daxim May 24 '11 at 16:26
Hmmm I think this might be far beyond my ability. I'm not sure what you mean by dummy credentials? I am using my own log-in info for testing (I am not a developer and this not my website, I'm just trying to log-in and download all my old courseworks as an exercise - I code for the hell of it, as it would probably take less time to do it manually than I have spent trying to learn perl and all the web-accessing goodies) There is JavaScript, but obviously I have no idea what is doing. I can publish the whole html of the page but again I'm not sure how useful it would be without log-in info. – msikd65 May 24 '11 at 17:12
Make it so, it's at least something. – daxim May 24 '11 at 18:42
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.