Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Fwd: index.r file in View

From: ronald:free at: 12-Mar-2002 9:35

Hi Adrian, Searching in the list, I've found this : Message transmis From: Joanna Kurki <[belymt--saunalahti--fi]> To: [rebol-list--rebol--com] Date: Wednesday, May 02, 2001, 1:03:46 AM Subject: [REBOL] Re: REB Editor ===8<==============Texte du message original===============
>I haven't used it alot, but haven't noticed anything bad in it yet.
Hmm.. It could be OS/version dependant issue.. I'll install Amiga Emulator and Linux (dualboot) to this machine some day.. While I'm here.. Is there archive of this mailing list somewere on the web? Joanna PS: Something I did. (my first attempt ) Now I only need to make this and index.r reloading happen automatically :-) REBOL [ Title: "Local index refresher" File: %redir.r Author: "Joanna Kurki" Date: 1-May-2001 Purpose: { To automatically regenerate local %index.r file... My first Rebol program, and far from finished } TODO: { Add support for directories (recurse) and set their type right Clean up code.. fix bugs (there are allways bugs) } ] dir: read %. if exists? %index.old [delete %index.old] rename %index.r %index.old write %index.r read %index-orig.r write/append %index.r now write/append %index.r newline foreach file dir [ write/append %index.r reduce rejoin [{file "} :file {" }] write/append %index.r remold file write/append %index.r newline ] -- To unsubscribe from this list, please send an email to [rebol-request--rebol--com] with "unsubscribe" in the subject, without the quotes. ===8<===========Fin du texte du message original=========== Hope It'll help Cheers -- Ronald