[REBOL] R: under HTML Re:(2)

2000-03-23 Thread VoToNi
In einer eMail vom 22.03.00 18:40:13 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Re: [REBOL] [REBOL] under HTMLHi Paolo thank for the suggestion. Just for training I'm trying to make a script for downloading all the scripts from those .org-directories. But I need simply

[REBOL] [REBOL] Error Message Re:(3)

2000-03-23 Thread VoToNi
In einer eMail vom 23.03.00 15:52:35 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hi another_bob, I believe I've seen this error message when I've used hidden contexts. Were experimenting or using a use block, something like this? use [a b] [a: 1 b: 2 [a b]] I

[REBOL] [REBOL] Error Message Re:(5)

2000-03-23 Thread VoToNi
In einer eMail vom 23.03.00 23:25:19 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hi Volker, you wrote: use and /local have another bug: you can't look in after an error! I'm not sure how you were trying to "look in": f: func [/local a] [a: 1 1 / 0] will

[REBOL] First public version of RUI available Re:(3)

2000-03-18 Thread VoToNi
In einer eMail vom 16.03.00 22:51:17 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hello [EMAIL PROTECTED], On 16-Mar-00, [EMAIL PROTECTED] wrote: Except for the dirutil.rui problem, it runs ok on Linux. This is pretty cool, although I had to laugh when I used

[REBOL] Finding current dir? Re:(2)

2000-03-15 Thread VoToNi
In einer eMail vom 15.03.00 06:44:43 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: The trick seems to be calling 'change-dir system/script/parent/path' near the start of the script to get 'normal' current directory behavior. If there are associated scripts that live in the same

[REBOL] Finding current dir? Re:(3)

2000-03-14 Thread VoToNi
system/script/parent/path seems to be the current directory (maybe a bug ;-) After this there is a rebol-script in %test/, another bat in %test2/ and a bat in %test3/, which sets the paths to %test2/ and calls the bat there. the path is set to %wherever/test3/, which is the current directory.

[REBOL] { in strings - workarounds? Re:(3)

2000-03-14 Thread VoToNi
In einer eMail vom 14.03.00 16:49:23 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Thanks for the rescue. will paste it. BTW, one missing thing is "^^"? :) "^^"?? Hahaha, no, Your code is ok :-) I changed it a bit for my needs, see below. Thank you, database runs again :) (Have

[REBOL] { in strings - workarounds?

2000-03-13 Thread VoToNi
my little email-database is crashed. Caused by some emails which contained unpaired "{". they are stored in a block which is wrong molded by 'save. When will this be fixed? Now i have to think about workarounds Is there something like another mold out there? Should i do store of the long

[REBOL] Is there a shorter way to pass refinements? Re:(2)

2000-03-13 Thread VoToNi
In einer eMail vom 12.03.00 08:09:17 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Thanks. I needed a simple path! The way i can't find :-). I try to understand it. Volker Volker asked: Is there a shorter way to pass refinements? for example a: func[ /header][] b:

[REBOL] { in strings - workarounds? Re:(2)

2000-03-13 Thread VoToNi
In einer eMail vom 13.03.00 18:09:09 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Caused by some emails which contained unpaired "{". they are stored in a block which is wrong molded by 'save. When will this be fixed? Hi, would it be possible to do a search/replace before

[REBOL] Function without argument ... Re:

2000-03-13 Thread VoToNi
In einer eMail vom 13.03.00 19:34:33 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: s it possible to test a lack of argument in a function ? I try things like this but... it doesn't work ! tst: func [ {help for tst...} x [integer!] ][ if none? x [help tst]

[REBOL] Command Line Args Re:(5)

2000-03-12 Thread VoToNi
In einer eMail vom 12.03.00 15:33:15 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Yes please. In the case of 'simple things should be simple to do': probe system/options/args gets args probe system/options shows the options object probe system crashes

[REBOL] getting Rebol OK Re:(5)

2000-03-11 Thread VoToNi
In einer eMail vom 11.03.00 09:20:12 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hi Volker, This is kind of off target here, but.. The method below would solve that problem in rebol/view. It ensures that processes don't keep running in the task manager after the window

[REBOL] Is there a shorter way to pass refinements?

2000-03-11 Thread VoToNi
Is there a shorter way to pass refinements? for example a: func[ /header][] b: func[ /header][ either header [ a/header ][ a ]] Volker

[REBOL] How do I save and restore an array of objects Re:(5)

2000-03-10 Thread VoToNi
In einer eMail vom 10.03.00 07:52:56 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hi Bob, A) do works when you only want to load a single object. It's like saying: do [make object! [word: 'something]] which - of course - returns a single object, namely the last

[REBOL] Some niggley things Re:(2)

2000-03-09 Thread VoToNi
In einer eMail vom 09.03.00 06:33:20 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: #2 "files" (above) will, eventually, be a block of about 300 file names. I need to know how to take five file names at a time and make a string that is: "name+name+name+name+name", to add

[REBOL] Some niggley things Re:(3)

2000-03-09 Thread VoToNi
In einer eMail vom 10.03.00 00:35:31 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: What I ended up using was: FOREACH [f-1 f-2 f-3 f-4 f-5] files [ portfolio: MOLD TO STRING! REDUCE [f-1 "+" f-2 "+" f-3 "+" f-4 "+" f-5] When I do it this way, I get a

[REBOL] security-requester a risk?

2000-03-08 Thread VoToNi
When rebol asks for lowering security, it makes "yes" the default. a occasionaly return gives free way. i think "no" should be the default, at least as an %user.r-option? Volker

[REBOL] communicate with program with stdin/stdout - end markers?

2000-03-08 Thread VoToNi
I want to communicate with another program with stdin/stdout. i need a way to detect the end of a message, and i want to use the normal print/input. since a data-string can contain my end-marker, i have to mask it out. Can this protocoll-stuff be used to generate a filter for the normal

[REBOL] dynamic word names 2 Re:

2000-03-08 Thread VoToNi
In einer eMail vom 08.03.00 19:11:18 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: What if I want to append a dynamically created word with a value that belongs to a word the representation of which must also be dynamically created in the script? Assume an earlier script

[REBOL] solved: dynamic words 2 Re:

2000-03-08 Thread VoToNi
In einer eMail vom 08.03.00 23:28:20 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: builder: reform ["messagebuilder:" rejoin ["message" build]] do builder messagebuilder: do rejoin ["message" build] should work to? But knowing how to reform is never wrong :-) got it!

[REBOL] Some niggley things Re:

2000-03-08 Thread VoToNi
In einer eMail vom 09.03.00 02:48:04 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Hello, Rebols: #1 files: READ %. gets the current directory, but how do we do it with a set-word? Example: directory: %/partition/drawer/drawer files: READ %directory(how to

[REBOL] Why doesn't this work? Re:

2000-03-04 Thread VoToNi
In einer eMail vom 04.03.00 06:28:26 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: obj: make object! [a: "" b: ""] t: 'obj new-obj: make t [] When I try it, I get the following response: obj: make object! [a: "" b: ""] t: 'obj == obj new-obj: make t [] **

[REBOL] Return value from a Script??? Re:

2000-03-03 Thread VoToNi
In einer eMail vom 03.03.00 02:43:40 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Is it possible for a script to return a value in a similar manner that a function does? I've suddenly realised that i have been developing scripts but don't seem to have any way for them to

[REBOL] Rebol/Command and the kitchen sink Re:(3)

2000-03-03 Thread VoToNi
In einer eMail vom 03.03.00 08:11:02 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: On Thu, Mar 2, 2000, [EMAIL PROTECTED] wrote: Having done something similar with ASP and MS-SQL Server 7, using ASP to snip . I can say it works. It's ugly, but it gets the job done. On the

[REBOL] How can i lock files for multitasking-access

2000-03-03 Thread VoToNi
How can i lock files for multitasking-access? Does open this everywhere? Volker

[REBOL] need help with internet traffic counter Re:

2000-03-03 Thread VoToNi
There is a proxy.r at rebol.org. For http, it should be able to count this. How can one write proxies for ftp, email and that? another way: is a "DU Meter"s output text, and includes size and url in a log, rebol should be able to parse it, and sum. Hopefully so short that porting would not be

[REBOL] [REBOL] Rebol/Command and the kitchen sink Re[2]: Re:

2000-03-03 Thread VoToNi
In einer eMail vom 03.03.00 06:16:03 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Personally, I'd like to do all of my web development in Rebol/Core, but it's looking like I'm going to need to create and access some MySQL databases. Now I can do that with PHP, but not

[REBOL] save/load with { in long strings broken!

2000-03-01 Thread VoToNi
comment[ save/load with "{" in long strings broken! Long Strings looks like {{xx} when molded. No escaping of inner "{"! found bug when trying {a ^{ in a string} . "^}" exits, "^{" does not! This comments

[REBOL] RIP Re:

2000-02-25 Thread VoToNi
In einer eMail vom 25.02.00 03:48:44 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: For whoever it was who was having problems using RIP: RIP saves the archive's file name in the extraction code, and needs this to open the archive in binary mode - as a result you cannot rename

[REBOL] Script return code Re:(2)

2000-02-24 Thread VoToNi
In einer eMail vom 24.02.00 12:24:36 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Maybe I wasn't clear enough, my posting was referring to situations in which one has to "glue" together the execution of multiple scripts, not necessarily all of them written in Rebol. A

[REBOL] select question Re:

2000-02-24 Thread VoToNi
In einer eMail vom 24.02.00 03:25:34 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: I have a series with multiple identical entries, but different values: [ "book" "The Hobbit" "book" "The Stand" "candy" "Mars Bar" "candy" "MM" ] I want to search the series for each

[REBOL] empty context possible? Re:(3)

2000-02-20 Thread VoToNi
Hello GabrieIe! n einer eMail vom 19.02.00 13:47:37 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: On 18-Feb-00, you wrote: V I did and got something similar to this, but was able to hack V it with going to global scope by "/probe" instead of "probe". Actually, it

[REBOL] empty context possible? Re:

2000-02-18 Thread VoToNi
In einer eMail vom 16.02.00 14:05:52 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Is it possible to create an empty context and put only selected words in? for security-reasons, like postscript does. (i lost her mail, so by hand :) Gabrielle answered ([EMAIL PROTECTED])

[REBOL] New? programming construct Re:

2000-02-18 Thread VoToNi
rules maybe like this (full code below) ; example gui: make object! [ a: rule-var "a0" b: rule-var "b0" c: rule-var "c0" rule [ a b ] func [][ trace-state "one of [a b] changed" c/set 'c-by-rule-ab ] rule[ c ] func[][ trace-state "c changed" ] trace-state:

[REBOL] URL-encoding Re:

2000-02-16 Thread VoToNi
In einer eMail vom 16.02.00 01:06:43 (MEZ) Mitteleuropäische Zeit schreibt [EMAIL PROTECTED]: Is there any way to convert a string to an URL-encoded form in REBOL yet? A la "Chris L" to "Chris%20L"? Or do I have to write a translator for special characters myself? as rebol-url (to

[REBOL] empty context possible?

2000-02-16 Thread VoToNi
Is it possible to create an empty context and put only selected words in? for security-reasons, like postscript does. Gruss Volker

[REBOL] How can i get rebol/view

2000-02-10 Thread VoToNi
Can't find it on the webpage. Peoples here are talking about. how can i test it? Gruss Volker