carl  wrote.. apparently on 29-Dec-2004/3:35:42-5:00
>See http://www.rebol.net/cgi-bin/blog.r?view%0075 for notes about this email 
>list
>and a way to keep a closer eye on what messages are actually being posted.
>
>-Carl Sassenrath

Here's a script that queries my feed to the rebol.org library that shows I'm 
missing 17 of those messages from the mailing list over the period covered by  
the period "Recent Maillist Messages"

[
rebol [
        notes: { find missing ecartis messages }
]

cgi: http://s94368865.onlinehome.us/rebol/getemail.cgi
site: http://mail.rebol.net/cgi-bin/mail-list.r
got: []
missed: []

rule: [ thru {<a href="mail-list.r?msg=} copy id to {"} ( append got id ) 
        thru "nowrap>" copy date to "<" (append got date )
        thru <b> copy author to </b> ( append got author )
]

; collect all the x-archive-positions
parse read site [ some rule ] 

; now see what's missing ...

foreach [ id date author ] got [
        position: to-integer id
        result: read/custom cgi reduce [ 'POST rejoin ["exists=" position ]]
        if find result "no" [
                repend/only missed [ id date author ]   
        ]
]

print "The following messages were not received... "

foreach mia missed [ print [ mia/1 mia/2 mia/3 ]]
]


--
Graham Chiu
http://www.compkarori.com/cerebrus
http://www.compkarori.com/rebolml
-- 
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.

Reply via email to