Graham

Did you also copy this via feedback a www.rebol.com? If you didn't its
probably worth doing so to make sure RT sees your message.

Regards

Peter 

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Graham Chiu
Sent: 30 December 2004 07:14
To: [EMAIL PROTECTED]
Subject: [REBOL] See blog for note about this list.

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.



-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.6.6 - Release Date: 28/12/2004
 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.6.6 - Release Date: 28/12/2004
 

-- 
To unsubscribe from the list, just send an email to rebol-request
at rebol.com with unsubscribe as the subject.

Reply via email to