[REBOL] Re: My buggy REBsite
From: agem:crosswinds at: 9-Jul-2001 15:59
RE: [REBOL] My buggy REBsite
[rebolek--seznam--cz] wrote:
> Hello,
>
> I am sorry for all these offline/online bugs but I use dial-up and it's very expansive
in our country. I cannot test programs online very much so I wrote an installer for all
my scripts and when I'll catch some time I'll upload all my scripts as self-extracting
archives (like .CAB in windows)
>
---rip.r can pack whole recursive directory.
you could make a "load this first" icon.
if you patch it a bit, it stops this annoying
overwrite?
-questions you have currently with rmud.
also you can customize it to start the project with
do %main-script.r
no need for more scripts.
then dependency-problems would be fixed, because all is there.
---also Carl posted his %build-pack.r short ago,
which appends all scripts together and puts
images automatic in variables.
but then scripts need a bit rewrite,
because nothing is unpacked to disk.
---testing can be done local with some rebserver,
Cal's %webserv.r works for that mostly.
nice is it can be started by the tested script
together with popping up the browser :)
add something which clears your cache before.
---if you want to save upline-time with some scripting-effort:
i have two directories, one for the stuff to upload
and one for the uploaded.
if i upload something, i copy it to %uploaded/ after that,
and compare it with its %uploaded/ version before.
uploads only small changes.
to track dependencies, i use
load-thru %./././the-file and replace that with my url
before upload.
reduces upload-time to only the changed files,
the lots of comparisons have fast hd :)
also with %./././ you can switch easily between deifent pages,
like http://localhost:rebserv-port for testing.
hm. to add a bit overkill one could test his scripts allways
via clear reb-cache and webserv.r :)
hope i see your scripts running :)
BTW could (does?) inlook keep files on server by default?
and is there a way to give it the mails from another place?
i use my own downloader, but would like to try it as viewer :)
and some filter-examples included?
-Volker