I posted this earlier:
viewtopic.php?f=6&t=6390
That was before I found this thread. Tips and Tricks seems like an odd area for a spider development thread. Anyway, I'm guessing this is where I should have posted it. I would appreciate any help.
mememe wrote:I posted this earlier:
http://xlobby.com/forum/viewtopic.php?f=6&t=6390
That was before I found this thread. Tips and Tricks seems like an odd area for a spider development thread. Anyway, I'm guessing this is where I should have posted it. I would appreciate any help.
lar282 wrote:I do think we have a bug then. I mean if it works under F2 but not in the skin we're in trouble. Wes can u confirm also and maybe hand over to Steven?
//Lasse
slaman wrote:My IMDB spider stopped working for a bit, but now it's back... changed the first two lines to this:
url=http://us.imdb.com/find?s=all&q=%searchstring%
results=<a href="(?<url>/title/.*?/).*?">(?<display>.*?)</a>
lar282 wrote:slaman wrote:My IMDB spider stopped working for a bit, but now it's back... changed the first two lines to this:
url=http://us.imdb.com/find?s=all&q=%searchstring%
results=<a href="(?<url>/title/.*?/).*?">(?<display>.*?)</a>
and it works both in the skin and in the F2 database section?
//Lasse
tswhite70 wrote:
Now we need to get the source from the search url and design our regex for the "Results=" line of the spider. So run a search of DVDtown for "Troy" and choose "View\Source" in IE to see the source code for the URL. Holding the mouse pointer over the details links in the search results web page shows us that we are looking for a link with the words "discdetails"
<table width="100%" align="center">
<tr>
<td valign="top" height="30" width="30">
<a href="../drinks/detail.asp?recipe_id=7469"><img src="../images/da/tequila_sunrise.jpg" height="60" border="0"></a>
</td>
<td colspan="3" valign="middle" style="padding:10px;">
<a href="../drinks/detail.asp?recipe_id=7469">Triple Sec Sunrise</a>
</td>
</tr>
</table>
url=http://www.drinkswap.com/search-for-drinks/index.asp?searchfor=%searchstring%
results=<a href="../drinks/detail.asp\?recipe_id=.*?"><img src="../images/da/.*?.jpg" .*?></a></td><td .*?><a
href="../drinks/detail.asp\?recipe_id=.*?">(?<display>)</a>
url=http://www.drinkswap.com/search-for-drinks/index.asp?searchfor=%searchstring%
results=<a href="..(?<url>http://www.drinkswap.com/drinks/detail.asp\?recipe_id=.*?)"><img src=".*?".*?></a></td><td colspan="3" valign="middle" style="padding:10px;"><a href="../drinks/detail.asp\?recipe_id=.*?">(?<display>.*?)</a>