[REBOL] Re: Results 1 - 10 of about 14,000...
From: hallvard:ystad:oops-as:no at: 20-Jul-2004 17:28
Dixit [SunandaDH--aol--com] (11.45 07.07.2004):
>I don't now how many *different* .r scripts are indexed by Google (it's not
>an easy number to get -- even via the SOAP API).
>[...]
>Rixbot ( http://www.oops-as.no/rix ) says it has found over 1800 REBOL
>scripts embedded in webpages it has spidered. That may be a better estimate. I don't
>know how may duplicates that includes.
I don't know either. The rixbot reads web pages into a string called 'content, then detects
whether or not it contains a rebol script like this:
replace content "rebol [" "^/REBOL ["
replace content "rebol[" "^/REBOL ["
rebol-header: attempt [ either block? temp: load/header content [first temp] [make error!]]
If there is a rebol-header (e.i. 'rebol-header is not none!), I take it there is a valid
rebol script, and I use the header for indexing purposes.
BUT. A valid rebol HEADER doesn't always mean ther's a valid rebol SCRIPT. It could even
be a header on its own, I believe...
As for duplicates, they are legio, but I don't know exactly _how_ many. I may very well
look into it sometime after the hollydays, in august/september.
HY