This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

incith:filemirrors

Support & discussion of released scripts, and announcements of new releases.
Post Reply
t
testebr
Halfop
Posts: 86
Joined: Thu Dec 01, 2005 12:22 pm

incith:filemirrors

Post by testebr »

Can anyone confirm if incith:filemirrors tcl is dead for now?

Thanks
User avatar
speechles
Revered One
Posts: 1398
Joined: Sat Aug 26, 2006 10:19 pm
Location: emerald triangle, california (coastal redwoods)

Post by speechles »

Filemirrors site is dead, but they redirect to a different site now. So incith's script does still work, you just have to take this into consideration, and fix 4 lines...hehe

lines 127,128: change from

Code: Select all

regexp -- {<td nowrap>.+?<a href=\"(.+?)\">(.+?)</a></td><td align="right">(.+?)</td>} $html - link file size
regsub -- {<td nowrap>.+?<a href=\"(.+?)\">(.+?)</a></td><td align="right">(.+?)</td>} $html {} html

###NoWrap######################################################################################################
lines 127,128: change to

Code: Select all

regexp -- {<tr><td><p><a href=\"(.+?)\">(.+?)</a>.*?</td><td align="right"><p>(.+?)</p>} $html - link file size
regsub -- {<tr><td><p><a href=\"(.+?)\">(.+?)</a>.*?</td><td align="right"><p>(.+?)</p>} $html {} html

###NoWrap######################################################################################################
The ##NoWrap## stuff do not include that just keeps the code from spanning lines..

line 181: change from

Code: Select all

set query "http://www.filemirrors.com/search.src\?type=contains&file=${input}&action=Find"
line 181: change to

Code: Select all

set query "http://www.findfiles.com/list.php\?type=contains&file=${input}&action=Find"
line 193: change from

Code: Select all

regsub -all " " $html { } html
line 193: change to

Code: Select all

regsub -all " " $html {} html
I <3 incith's scripts :D
User avatar
incith
Master
Posts: 275
Joined: Sat Apr 23, 2005 2:16 am
Location: Canada

Post by incith »

Doh! I'll have to look into this. It was working just a couple weeks ago I'm sure..

1/21/2009: finally fixed and updated @ http://forum.egghelp.org/viewtopic.php?t=10276
Post Reply