Re: @lib/scrape.l questions

2015-06-25 Thread Luis P. Mendes
Hi Alex, 2015-06-24 12:49 GMT+01:00 Alexander Burger a...@software-lab.de: Hi Luis, These are beginner questions, but why doesn't this work? (in i.html (while (from a href=\) (parseLink (till T)) )) This depends on what 'parseLink' does. (till T) returns a transient

Re: @lib/scrape.l questions

2015-06-24 Thread Alexander Burger
Hi Luis, These are beginner questions, but why doesn't this work? (in i.html (while (from a href=\) (parseLink (till T)) )) This depends on what 'parseLink' does. (till T) returns a transient symbol, you can try it as (in i.html (from a href=\) (till T)) -

Re: @lib/scrape.l questions

2015-06-24 Thread Luis P. Mendes
2015-06-23 17:44 GMT+01:00 Alexander Burger a...@software-lab.de: Hi Luis, I want to go through every link to perform further parsing in some links, based in the first word of the tile of the link, but ran into some difficulties. Is this the right way to access each of the links? : (for L

@lib/scrape.l questions

2015-06-23 Thread Luis P. Mendes
Hi list, When scraping a website: : (scrape Urlbase 80 How) I want to go through every link to perform further parsing in some links, based in the first word of the tile of the link, but ran into some difficulties. Is this the right way to access each of the links? : (for L *Links (cond ((=T

Re: @lib/scrape.l questions

2015-06-23 Thread Alexander Burger
Hi Luis, I want to go through every link to perform further parsing in some links, based in the first word of the tile of the link, but ran into some difficulties. Is this the right way to access each of the links? : (for L *Links (cond ((=T (pre? Quarto (car L))) (scrape this link... ...