[REBOL] RFC: require-files block in the Rebol header
From: oliva::david::seznam::cz at: 4-Aug-2002 16:14
Hello rebol-list,
as I made first version of reb-reb-bot here comes one thing that
would be nice:
there is so many scripts (allmost all my scripts), that need other files (that are not
in the
indexes) so the BOT don't know, that he needs to download these
files as well (to be able run these scripts offline) so we need to
tell what files are required as well...
So I don't know like you, but in my future scripts I will add
'require-files with block of required files in the Rebol header so
for example:
Rebol [
title: "Script with image"
require-files: [
%some-image.gif ;or http://some.domain/img/some-image.gif
]
]
view layout [image %some-iamge.gif]
Any comments? Someone know better way?