See blog for note about this list.
[1/3] from: carl::www::rebol::net at: 29-Dec-2004 3:35
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
[2/3] from: gchiu:compkarori at: 30-Dec-2004 10:19
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
[3/3] from: pwawood:mango:my at: 30-Dec-2004 8:30
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