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

[ALLY] Adding local files to desktop

From: carl::rebol::com at: 15-Apr-2001 8:17

It's sometimes useful to see local files from the desktop... For instance, you may have a few admin scripts for managing uploads to server, creating index files, deleting old files, etc., etc. Here's how to add a local file branch: In your view/desktop directory (where you installed View), edit the file bookmarks.r. It should look like this: REBOL [Title: "Bookmarks" Type: 'index] folder "REBOL.com" http://www.rebol.com/index.r file "Console" console icon console Add a new folder to it: folder "Local" %local/index.r Save the file. Create a directory called local and a file called index.r, The index.r should look like: REBOL [Type: 'index] file "File1" %file1.r file "File2" %file2.r ... Restart the desktop, and you will be on your way. For 1.2 we'll add a way of doing this from within the desktop. -Carl REBOL Technologies