[REBOL] Possibly stupid question Re:

1999-09-26 Thread ingo
cript Error: err needs a value. ** Where: if error? err: try [print 1] if error? err: try [ print 1 true ] [ print "error" ] 1 == false regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] Recursion

1999-10-08 Thread ingo
Hi Rebols, while reading a book about scheme, I thought about if Rebol is tail recursive, too. Or why not. Seems to me, that this could solve some of the problems, e.g. with recursive parse rules. What du YOU think? Ingo -- _ ._ ingo@)|_ /| _| _ We

[REBOL] system call? how? Re:

1999-10-09 Thread ingo
save it, and use an external program. (Or build yourself a print server, that talks tcp/ip) regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de

[REBOL] system call? how? Re:(3)

1999-10-10 Thread ingo
Oh, yes, sorry, thanks. I stand corrected. I definitely should not answer questions at that time of day. My sending to the wrong address should have been a sure sign ... Ingo Those were the words of [EMAIL PROTECTED]: An alternative answer to printing a file is that writing the file

[REBOL] Highnoon Commander Re:(2)

1999-10-11 Thread ingo
list, too, don't know when I'll have the time, though. BTW, I found that some debugging output is still in this version, just search for "dbg/" and comment it out. regards, Ingo -- _ . _ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ ww

[REBOL] mezzanine functions .... Re:(2)

1999-10-18 Thread ingo
ot; ]] ] if any [ all [get-pospre: join pre "6n" ] all [get-screen pre: join pre "7n" ] ] [ cons: open/binary [scheme: 'console] print pre ret: next next to-string copy cons close cons ret: parse/all ret ";R" c

[REBOL] Extraction script Re:(2)

1999-10-19 Thread ingo
%allpages.html code ] this would extract the comments, too. If you don't want them, just exchange to and thru. hope this helps, Ingo Those were the words of [EMAIL PROTECTED]: Is this what you're looking for? repeat x 10 [ write/append %allpages.html read join %page [x %.html] ]

[REBOL] mezzanine functions .... Re:(4)

1999-10-20 Thread ingo
Andrew, I'll try, but the rebol.org bot seems not to like me... I once got some scripts up, but wasn't able to update or send more. On Friday I can try web upload once again, maybe it'll work this time :-) Those were the words of [EMAIL PROTECTED]: Ingo wrote: Have you thought about

[REBOL] Function attributes (REBOL 2.2) Re:

1999-10-24 Thread ingo
, exception at throw) c ** Throw Error: ** User Error: test. ** Where: throw make error! "test" calling a (exception at call of aa) a ** User Error: test. ** Where: aa 1 This could be usefull for c-like asserts, etc regards, Ingo Those were the words of [EMAIL

[REBOL] Sending and receiving email with realnames

1999-11-11 Thread ingo
Hi Rebols, I once again tried the send function ... So, now it is possible to send ["Ingo Hohmann" [EMAIL PROTECTED]] {message ...} And Mail-List-Rules/parse-mail-list returns a block of ["name" address ...]. (When there is no real-name, it is/may just be omitted.) Please

[REBOL] import-email

1999-11-11 Thread ingo
) [127.0.0.1] (ingo) ^-by localhost with smtp (Exim 2... print m From [EMAIL PROTECTED] Thu Nov 11 14:36:01 1999 Received: from localhost (fuchur) [127.0.0.1] (ingo) by localhost with smtp (Exim 2.05 #1 (Debian)) id 11luOO-MY-00; Thu, 11 Nov 1999 14:36:00 +0100 To: "Ingo Hohmann" [EMAIL

[REBOL] Re: import-email

1999-11-11 Thread ingo
Answering my own question, its been the {From [EMAIL PROTECTED] Thu Nov 11 14:36:01 1999} line, that caused my problems. regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| ._| ._|

[REBOL] parse question

1999-01-16 Thread ingo
to best parse this, to get the values for a1 to a3 and the presence of a4, respectively? thanks in advance Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de

[REBOL] SELMA stripping off the full names Re:

1999-11-23 Thread ingo
through. I have sent it to feedback, too, so maybe it'll be in one of the next versions. It's called mail-patches.r regards, Ingo Curtis. My guess is that SELMA is stripping off his name (like it does my That's something I wanted to ask before! Why does SELMA do this? It shouldn't

[REBOL] parse question Re:(2)

1999-11-24 Thread ingo
Hi Bo, I am a bit behind with reading my email, so this solution seems perfect, but I also want to learn something about parse, so if you please could the parse version, too? thanks Ingo Those were the words of Bohdan Bo Lechnowsky: Ingo, Assuming your input line looks like

[REBOL] cgi Re:(3)

1999-11-28 Thread ingo
I am no expert either, but I seem to have it going (at last). I added the following to access.conf Directory /home/ingo/public_html AllowOverride All Options ExecCGI FollowSymLinks order allow,deny allow from all /Directory This allows me to use CGI (ExecCGI) within the dir /home/ingo

[REBOL] Q on Array of Objects Re:(4)

1999-11-28 Thread ingo
of equal objects, ... regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] Tail recursion in REBOL 2.0 Re:(2)

1999-11-28 Thread ingo
When I asked Rebol Tech about tail-recursion some time ago, that was what they told me. And that they wanted it back, too, but only for functions that need it. So maybe we'll at some time see a function argument [recursive], or the like, regards, Ingo Those were the words of [EMAIL

[REBOL] What's the REBOL strategy towards Unicode?

1999-11-29 Thread ingo
regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] Q on Array of Objects Re:(6)

1999-11-29 Thread ingo
Hi Andrew, Those were the words of [EMAIL PROTECTED]: Andrew wrote: Words in objects which refer to functions are copied. Therefore the object will be bigger than expected. Ingo wrote: Seems logical, given that functions are the same as data in Rebol, but it would be nice to have them

[REBOL] Change console size? Re:

1999-11-30 Thread ingo
/mac, where there's an extra window opened for rebol. I personally don't like windows resizing themselves, I normally have a perfectly good reason for the window-size I chose. Just my (maybe limited) understanding, and some two cents. ragards, Ingo Those were the words of [EMAIL PROTECTED

[REBOL] Q on Array of Objects Re:(8)

1999-11-30 Thread ingo
Hi Andrew, Those were the words of [EMAIL PROTECTED]: Hi, Ingo. Caution - none of this works as expected. ... Ahhh, so it wasn't me :-) ; Something like this in REBOL would be nice: C!: make class! [ s: "a string" m: method [parameter] [s] ] Cc: make C!

[REBOL] system/words question

1999-12-01 Thread ingo
difference cc dd == [xx yy zz] value? 'yy == false Are all locally created words listed, and are they the only one listed without values? regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ ww

[REBOL] Newby needs some strings help Re:(2)

1999-12-01 Thread ingo
llowing "key..." string can not be found any more. regards, Ingo Those were the words of Andrew M. Grossmann: try something like: foreach line read/lines %data.txt [ parse line [thru "key1=" copy key1 to "key2=" skip thru "key2=" copy key2 to "key3=

[REBOL] Objects: Preventing Code Duplication Re:(3)

1999-12-02 Thread ingo
Hi Elan, my point I wanted to state was: if both 'probe s are the same you can't use the probe to show that it's not duplicated, am I right? regards Ingo Those were the words of [EMAIL PROTECTED]: Hi Ingo, yes, you do get the same probe because the use context is hidden both

[REBOL] REBOL Trivia :) Re:

1999-12-07 Thread ingo
? regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] A function bug Re:

1999-12-08 Thread ingo
func [x] [print "OK"]] append block2 :f == [do func [f [any-function!]] [print "OK"] func [x] [print "OK"]] do block2 OK I don't know _why_ it works, though after we have heard multiple times, that it can't ;-) regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] User Guide in PDF 8) Re:(4)

1999-12-10 Thread ingo
Hi Elan, Those were the words of [EMAIL PROTECTED]: Hi Ingo, Please, not RTF. Not everyone has RTF capabilities. (I for one haven't found an editor on Linux that understood RTF _AND_ was worth having around.) How about Postscript, then? Or just the all-in-one-html? Have you tried

[REBOL] Web Gui - Was Re: Console GUI functions?

1999-12-10 Thread ingo
in the pliant server. see: http://pliant.cams.ehess.fr/ regards Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] Console GUI functions? Re:(6)

1999-12-10 Thread ingo
, could do without 4, though. Would be nice if we could compute what gui element get's the focus, or elements from within a list, by the cursor position ... (Just dreaming ;-) regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www

[REBOL] logical value referencing ... Re:(5)

1999-12-15 Thread ingo
mpty? / append would work on the series at a whole. That seems consistent to me, not to words, that seem to mean different things (empty?/tail?) which are just the same. Just my two cents, and I guess we'll go in circles here. regards, Ingo -- _ . _ ingo@)|_

[REBOL] Merry Christmas ...

1999-12-20 Thread ingo
... and a happy new year to you all. My Computer will be shut down for the rest of this year. (not out of fear about a certain date ;-) I hope to see you all next year. Love to all, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o

[REBOL] What's next for REBOL... Re:(8)

2000-01-07 Thread ingo
Those were the words of [EMAIL PROTECTED]: Moi aussi, Watakushi mo...me too! I can only add: Ich auch, ich auch !!! me, too, please :-) regards, Ingo

[REBOL] Dialecting improvement? Re:(3)

2000-01-13 Thread ingo
l creation, and the only real dialect I know about. regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] [ENHANCEMENT] help patch

2000-01-26 Thread ingo
not refmode] [ print "Refinements:" refmode: true ] either refinement? item [ prin [" " mold item] if string? pick args 1 [prin [" --" first args] args: next args] print "" ] [ if any

[REBOL] HTTP basic auth - object? Re:(2)

2000-01-27 Thread ingo
r" pass: "letmein" host: "127.0.0.1" path: "mysite/default.htm"] regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] BE PATIENT! - was - Openletter to Rebol HQ. Re:(3)

2000-01-20 Thread ingo
' my some and a half cents, regards, Ingo Those were the words of [EMAIL PROTECTED]: .. At 12:36 AM 1/20/00 +0100, you wrote: .. Just to avoid such threads I would even dare to suggest Carl some form of "Monthly letter of REBOL creator", discussing some actual developments inside

[REBOL] [REBOL] one file user guide ? Re:

2000-01-28 Thread ingo
[REBOL] one file user guide ? Re: Hi, Is there a version of the user guide that is downloadable (and printable) in ONE file ? Someone mentioned he made a pdf version from the beta docs ... Maybe, he'll do this again (despite the lengthy discussion on what format to be used ... regards, Ingo

[REBOL] [REBOL] The forthcoming REBOL/View Re:(4)

2000-01-28 Thread ingo
of just writing demo's now to try and push the envelope a bit and see if there are any gotchas. Only found a couple so far Hi Jim, if you'd give us the beta right now, we could help you ;-D regards, Ingo -- GEAT! It works!

[REBOL] post.r is incompatible with core 2.2? Re:

2000-02-02 Thread ingo
. ... any ideas? Yup, the argument "file-dir" is duplicated under "/local" pre 2.2 versions allowed this although it never made much sense. You may just delete it from the "/local" section and go on. regards, Ingo -- _ .

[REBOL] post vs get Re:(3)

2000-02-09 Thread ingo
Hi John, Those were the words of [EMAIL PROTECTED]: The reason for the HTML presentation is the ability to format a nice and business presentation not available with ASCII.. Well, not very helpful if I can't see it, though ... ragards, Ingo //john At 0541 2/9/00 , you wrote: If you

[REBOL] REBOL/View Re:

2000-02-09 Thread ingo
esn't help the email retrieve engine. thx- Hi Rebols, as far as I know, up to now only the Windows beta is available. Once other Versions are online, I assume the'll have the same endings as the rebol/core versions ... (e.g.: view042.tgz should be linux libc6). rega

[REBOL] How can i get rebol/view Re:

2000-02-12 Thread ingo
the webpage. Peoples here are talking about. how can i test it? Gruss Volker Hi Rebols, regards, Ingo -- _ . _ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] if condition vs. while condition Re:

2000-02-24 Thread ingo
Hi Pihoz, it doesn't even help, to have a look at until ... help until Evaluates a block until it is TRUE. Arguments: block -- (block) where the loop-condition is the return value of the loop-block itself. Ideally they all had the same parameters, I think. regards, Ingo Those were

[REBOL] closing port within protocol ... Re:(2)

2000-02-29 Thread ingo
Hi Gabriele, I'm using direct right now, I have checked pass-through, too, but wasn't able to resolve this way ... Everything else works fine, but having a read that can't return a value, isn't optimal, I think ;-) thanks, Ingo Those were the words of [EMAIL PROTECTED]: [EMAIL PROTECTED

[REBOL] Freenet Protocol help needed, was closing port within protocol

2000-02-29 Thread ingo
2000-02-29 File: %freenet.r Author: "Ingo Hohmann" Email: [EMAIL PROTECTED] Version: 0.0.2 Protocol-name: "Freenet" Protocol-version: "1.0" Purpose: { Read data from / write data to freenet servers Implements t

[REBOL] Freenet Protocol help needed, was closing port within protocol Re:(2)

2000-03-01 Thread ingo
(snapshot or later?) any more, but I can send the updated version, if someone is interested ... thank you, Ingo Those were the words of [EMAIL PROTECTED]: [EMAIL PROTECTED] wrote: find-port: func["Find a free port to connect to" /local port-num p] [ port-num: + random

[REBOL] EOF? Help please Re:(3)

2000-02-15 Thread ingo
ereneced element does not exist, but returns 'none. 'all returns 'true, if all of it's elemets return 'true hope this helps, regards, Ingo Those were the words of [EMAIL PROTECTED]: Hi, Andrew, Thanks for your reply. I don't think it is the problem of a simple while loop. I attached my scr

[REBOL] URL for rebol archive? Re:

2000-02-17 Thread ingo
Hi Rich, have a look at http://www.rebol.org regards, Ingo Those were the words of [EMAIL PROTECTED]: I was lookiing on the rebol site for an archive of the list. I remember seeing it but cant find it now. Got the URL? -Rich -- _ ._ ingo

[REBOL] constructor destructor Re:

2000-02-21 Thread ingo
Hi Martin, constructors are easily done. a: [ [print "hey, I'm new here ..." [b: 3 [] b: make object! a hey, I'm new here ... I have no idea on destructors, though ... regards, Ingo Those were the words of [EMAIL PROTECTED]: Since I've programmed so

[REBOL] Unknown script error Re:

2000-03-01 Thread ingo
. regards, Ingo Those were the words of [EMAIL PROTECTED]: I am trying to author a script to download via ftp. Yesterday I hurdled the problem of getting files bigger than 16 MB by using a function suggested by John to "chunk" the files into smaller pieces thus avoiding memor

[REBOL] Freenet Protocol help needed, was closing port within protocol Re:(2)

2000-03-08 Thread ingo
here: read freenet://localhost:1797/Hi I _think_ I've made the changes right ... Oh, and by the way, yes I am interested to know how to use 'copy refinements (if ever I get it to run ... :-) thank you, Ingo Those were the words of [EMAIL PROTECTED]: Hello [EMAIL PROTECTED]! On 29-Feb-00,

[REBOL] Freenet Protocol help needed, was closing port within protocol Re:(2)

2000-03-06 Thread ingo
this, too. Well actually write may behave like read in freenet protocol (right now), when trying to add a key, that's already in the system ... And by the way, has anyone written an SHA1 algorithm in Rebol? Current protocol will use encoded keys ... thanks again, Ingo

[REBOL] Freenet Protocol help needed, was closing port within protocol Re:(4)

2000-03-13 Thread ingo
Hi Gabriele, thanks for your help so far, I know the "too much work now" too well myself :-) I'll try to play around this a little ... Oh, and I'm using Linux. regards, Ingo Those were the words of [EMAIL PROTECTED]: [EMAIL PROTECTED] wrote: ... Hmm... this is with what

[REBOL] { in strings - workarounds? Re:

2000-03-14 Thread ingo
ory from file." file [ file! ] "the file to load from" /local history ][ system/console/history: load file exit ] I hope this helps, Ingo Those were the words of [EMAIL PROTECTED]: my little email-database is crashed. Caused by some emails which contained

[REBOL] Function without argument ... Re:

2000-03-14 Thread ingo
) tst "a" ** Script Error: tst expected x argument of type: integer unset. ** Where: tst "a" regards, Ingo -- _ . _ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] Newbie question #2 - Pattern making and using? Re:(9)

2000-03-28 Thread ingo
dog and 'cat in this order "I have a black lab and a fluffy kitty." would first find the kitty, and thus read over your dog. I _think_ there was a solution to this ... Note: Parse capabilities have greatly improved in /View, and will be part of the next /Core release, too. } halt I

[REBOL] synchronize files, WAS: Set the file write time Re:

2000-04-01 Thread ingo
Hi Brad, if you need to set the file time only for this synchronization, another idea would be to store checksums of all files. And before uploading check, wether the checksum has changed. just another idea ... regards, Ingo Those were the words of [EMAIL PROTECTED]: I'm writing

[REBOL] [REBOL]Problem with function argument Re:

2000-04-02 Thread ingo
] [ print value ] ] regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] my most frequent complaint Re:(2)

2000-04-03 Thread ingo
the whole syntax) on the downside: only Linux / Windows 10 MB on disc slow on startup missing docs default syntax is awful but if someone implemented a rebol syntax translator for pliant ;-) regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o

[REBOL] recommend a REB friendly host Re:(3)

2000-04-04 Thread ingo
rint compose [ HTML TITLE "CGI Info" /TITLE BODY pre (mold system/options/cgi) /pre /BODY /HTML ] I hope this helps, Ingo Those were the words of [EMAIL PROTECTED]: I'm interested in how you did it because I already have a Prohosting free account on thor.prohosting.com. I t

[REBOL] Return types Re:(2)

2000-04-04 Thread ingo
for you? How do you use it correctly? 2) If you change the function some time later it is more likely that you don't introduce changes which would break existing code. regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www

[REBOL] CGI problem Re:(3)

2000-04-04 Thread ingo
? (Y/A/N/Q) What you _could_ do, is something like #!rebol -cs REBOL[] secure [net quit] This would give all access to files, but none to the web. hope that helps, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We AR

[REBOL] Core Distribution Question Re:

2000-04-05 Thread ingo
Yes, these were exactly my concerns I once tried to express to Carl, but I didn't succeed well. I think the license for the free versions of Rebol should definitely show this freedom. regards, Ingo Those were the words of [EMAIL PROTECTED]: If I write a client-side application using REBOL

[REBOL] recommend a REB friendly host Re:(5)

2000-04-05 Thread ingo
as ascii (or from another *nix system)? That's about everything, sorry Ingo Those were the words of [EMAIL PROTECTED]: I know much more things than you about the server that host my site (thor.prohosting.com) because I wrote a CGI script that let me browse the filesystem of the server

[REBOL] CGI problem Re:(6)

2000-04-06 Thread ingo
, know you could be sure, that none of your cgi's ever sends a mail with your files attached, or something like that ... regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o

[REBOL] Timeouts. Re:

2000-05-16 Thread ingo
there ... regards, Ingo Those were the words of [EMAIL PROTECTED]: Dear Rebol-list, Hello, I'm having some problems with my Rebol processes, quite often I end up with a endless process, taking about 30% of the CPU. Shouldn't there be the possibility to set some kind of timeout? So

[REBOL] [REBOL]Finding characters in strings Re:

2000-05-17 Thread ingo
Hi Tim, this would be my version ... char-pos: func [str[string!] ch[char!] /local result] [ either found? result: find/case str ch [index? result][0] ] regards, Ingo Those were the words of [EMAIL PROTECTED]: Hi: I have written

[REBOL] Calling external functions Re:(3)

2000-05-18 Thread ingo
If you want to use a script as a library be sure to only write function/variable/object/... definitions. You can have as many definitions in a script as you like. I hope this helps, if you have more questions, feel free to ask them. regards, Ingo Those were the words of [EMAIL PROTECTED]: At

[REBOL] refinements Re:(9)

2000-05-30 Thread ingo
[ if not none? get bind to-word ref 'call [ append call to-word ref ] ] ] do mold to-path call ] b b/a b/c/d halt ; - end of script regards, Ingo -- _ ._ ingo@)|_ /| _| _ We ARE all ONE www._|_o _ _ ._ _ www./_|_) |o(_|(/_ We ARE all FREE ingo@| |(_|o(_)| (_| http://www.2b1.de/Rebol/ ._| ._|

[REBOL] HTML parsing Re:

2000-06-06 Thread ingo
http://www.2b1.de/ (only in /View will be loaded via load-thru) regards, Ingo Those were the words of [EMAIL PROTECTED]: Greetings. Before I try and solve this for the third time I wanted to throw it out to the group and maybe get leads in the right direction

[REBOL] crlf and newline (was parsing by period and newline) Re:(5)

2000-06-06 Thread ingo
... or you could use the /with refinement write/with %your-file #"^(0A)" will convert all all rebol line endings to ascii 10. I hope this helps, Ingo Those were the words of [EMAIL PROTECTED]: Hello [EMAIL PROTECTED]! On 06-Giu-00, you wrote: F Sounds good ... but HOW c

[REBOL] Declaring a constant Re:(2)

2000-06-08 Thread ingo
abcdefg" append digit-str "abcdefg" == "0123456789abcdefg" digit-str == "0123456789abcdefg" As to my knowledge, there isn't a stone carver in Rebol. regards, Ingo Those were the words of [EMAIL PROTECTED]: protect 'digit-str How may I set a word to a constant value

[REBOL] HTML parsing Re:(3)

2000-06-08 Thread ingo
, that I don't yet return to the browser after starting a view script, though. regards, Ingo Those were the words of [EMAIL PROTECTED]: Hi Ingo, Very impressive! 1 more thing for your parser to handle, replacing nbsp; with " " -- do http://

[REBOL] files Re:

2000-06-08 Thread ingo
It's done via rebol ... do file.rip unzips all files. Those were the words of [EMAIL PROTECTED]: I have a question. how do you "unzip" the .rip files?

[REBOL] German docs?

2000-06-09 Thread ingo
German docs? Hi Rebols, I've been asked if there are any german docs about Rebol around, though I don't know of any, maybe some of you have found (or written?) some- thing? TIA, Ingo -- Ingo Hohmann, [EMAIL PROTECTED], http://www.2b1.de/

[REBOL] using script language=rebol Re:

2000-06-09 Thread ingo
Re: [REBOL] using script language="rebol" ... of course there's a browser which understands this tag, it's not very widely used, though ... Using /View do http://www.2b1.de/ regards, Ingo -- Ingo Hohmann, [EMAIL PROTECTED], http://www.2b1.de/

[REBOL] using script language=rebol Re:(3)

2000-06-10 Thread ingo
Hi Tim, this might well be one of the reasons it's not widely used ;-) I thought I had resolved this bug, but I'll have another look into it, thanks, Ingo Those were the words of [EMAIL PROTECTED]: Hi : I tried it with the rebol site, and it work as I would expect, but a script

[REBOL] teeny-bits-of-time/2 Re:(4)

2000-06-21 Thread ingo
to retrieve the classic time/date stamp. NO! Call it /exact, and add the nanosecond only when present. Thus normal behaviour wouldn't change, and I believe that most applications will want the "normal" time format. Just my 2 cent or so ... regards, Ingo

[REBOL] A data inconsistency Re:(12)

2000-06-26 Thread ingo
say much about the interpreter here, but _I_ think an error is an error, and as such not subject to normal processing. I want an error to bang as soon as possible, and if I think I know how to handle a specific error, I can always use try []. Maybe a disarmed-error! type would be useful at times,

[REBOL] How's this for frustration... or...NT/CGI/mail prob solved... Re:(5)

2000-06-27 Thread ingo
Hi Galt, I for one am using 'protect-system as default, together with my %yamm.r (this will ask me whenever a script tries to redefine a protected value) I've already found some errors thanks to this. (And avoided some others.) regards, Ingo Those were the words of [EMAIL PROTECTED

[REBOL] Parser seems to have bug - different results on multiple calls. Re:(4)

2000-07-01 Thread ingo
; s2: copy "" append s1 "Hi, I'm changed" append s2 "I'm not ..." source test ] You see, s1 has literally been changed in the source-code, s2 has not. (It's one of the Rebol traps everyone has to fall into once.) I hope this helps Ingo Once upo

[REBOL] core 2.3 install woes Re:

2000-07-01 Thread ingo
Hi Tom, I have the libc6 version running fine on Debian/Gnu Linux 2.1 libc6, are you sure you've grabbed the right version? (I'm only asking, had _that_ error once, too) regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: core 2.3 install woes howdy guys, just tried

[REBOL] A data inconsistency Re:(11)

2000-07-01 Thread ingo
rm ["error in function a" err/id] ] ] regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: Hi, I disagree with your last statement (at bottom), Gabriele. Recently, I wanted to assign 'err in a program like this (it doesn't work): a: func [][

[REBOL] Random chaos Re:(2)

2000-07-02 Thread ingo
return 'none, thus 'true would mean: I'm sure to be connected 'false : I'm sure not to be connected 'none : Sorry, your on your own here Just my few cents, regards, Ingo

[REBOL] to-path curio Re:

2000-07-03 Thread ingo
Hi Brett, you're definitely into it, finding all traps at once ;-) path! file! (!!!) a file! is the representation of a file on some media, optionally including the path to where it's located. e.g. %/home/ingo/.rebol a path! on the other hand is the access to words in an object

[REBOL] one more time Re:

2000-07-06 Thread ingo
? libncurses is able to act like libtermcap, so what I did on my system: I created libtermcap.so.2 as a link to libncurses ... that works. libtermcap.so.2 - /lib/libncurses.so.3.4 regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: one more time howdy again, I'm stumped. Why do I

[REBOL] HTML Directory listing Re:(2)

2000-07-07 Thread ingo
right for the respective platform, I'm not sure, wether it already works, but try: append filelist rejoin [to-file dir item] And last, I think you should use dir? join dir item regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: [EMAIL PROTECTED] wrote: Hi, I'm need

[REBOL] Lost mail ...

2000-07-07 Thread ingo
have caused, (and email I may have lost, of course :-) If you sent something especially valuable within that time, feel free to resend to me ... regards, Ingo -- So what? That's just me, just being! http://www.2b1.de/ We ARE all ONE --- [EMAIL PROTECTED] --- We ARE all FREE

[REBOL] A data inconsistency Re:(13)

2000-07-09 Thread ingo
catches all errors in the func, and throws them as if they happened at the time of calling, instead of inside the script. That's handy, if you want to, e.g. validate function arguments, like seen here, or a C like assert function ... regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh

[REBOL] How to execute a rebol script from an html page? Re:(2)

2000-07-12 Thread ingo
rebol", but until the release of Rebol/Browse no other browser will support this. BTW, is Rebol/Browse still planned? RT? regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: Hi, Tim, Sorry about the unclear question posted before. Basically what I want to do it to embed rebol scr

[REBOL] problems with series of objects Re:

2000-08-13 Thread ingo
of book1" ] make object! [ author: "Fritz the Cat" title: "That is the title of book2" info: "That is info of book2" ]] REBOL this-book: first my-serie REBOL print this-book/info That is info of book1 I hope this helps Ingo PS: Don't assume your help will give you as much info as you've seen here. This is my patched version ...

[REBOL] flavors versions... Re:(3)

2000-09-20 Thread ingo
Hi Pete, I am using Linux and have all rebol versions installed in different directies, but with the same rebol_home. I am using /core /command /view subdirs for my scripts, and use if rebol/product = 'view [] in some scripts, I hope this helps, regards, Ingo Once upon a time [EMAIL

[REBOL] mailing list since 1998 full names in sender Re:(2)

2000-09-22 Thread ingo
Once upon a time [EMAIL PROTECTED] spoketh thus: ... And... *g* There's one thing I've been missing all the time! Why are there no full names in the sender entry of the mail header??? You'll recall that before SELMA took over the list, there *were* full names in the header. Ingo and I

[REBOL] Rebol web servers Re:(2)

2000-10-07 Thread ingo
Hi Jeff, Once upon a time [EMAIL PROTECTED] spoketh thus: ... There's also (Ingo Hohmann's) YaRWeS (Yet another rebol web server -- did I get that right?) ... Well, almost ... except it isn't mine, and I don't know more about it, either regards, Ingo

[REBOL] Trim question Re:(2)

2000-10-11 Thread ingo
d. In the second all whitespace got deleted, because the lines were indented equally, and in the last example the three spaces that the second line was indented deeper were preserved. I hope that helps, Ingo

[REBOL] Merry Christmas

2003-12-24 Thread ingo
Merry Christmas, to all Rebolers near and far! Kind regards, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] RFC: addressbook.r

2000-10-31 Thread Ingo Hohmann
/superflouououos (that's just like bananana, you just can't stop, once you started writing it ;-) regards, Ingo -- Attached file included as plaintext by Listar -- REBOL [ Title: "Addressbook" author: "Ingo Hohmann" email: [EMAIL PROTECTED] date: 31-Oct-2000 file: %addr

[REBOL] Re: Newbie getting head around TRY/DISARM

2000-11-14 Thread Ingo Hohmann
sarm error print [ "Now you can savely work with: " mold error] ] I hope that helps, Ingo Once upon a time Mat Bettinson spoketh thus: Hello folks, I'm new to the list. I've been tinkering with Rebol making some damn handy scripts. Never done anything this productive since th

[REBOL] Re: CGI configuration help requested

2000-11-14 Thread Ingo Hohmann
Hi Douglas, two ideas ... - are you sure the path is alright? can sometimes be tricky - try renaming to test.cgi I hope that helps, Ingo Once upon a time Douglas Mayer spoketh thus: Thank you Andy York and Sterling for your suggestions. Unfortunately neither of them corrected

  1   2   3   >