[REBOL] Re: Re(2): Setting Block Data

2000-11-28 Thread Ingo Hohmann
o the block ; 'bind is needed, so that the block is evaluated in the right ; context ; And to write the corresponding function set-path is left to the ; reader (meaning, I don't know how to do it best, either ;-) I hope that clarifies it a bit ... kind regards, Ingo Once upon a time Anton spoke

[REBOL] Re: name of var passed to func

2000-12-03 Thread Ingo Hohmann
][ print either word? :name [ either value? name [ rejoin [name " (" type? get name "): " mold name: get name] ] [ rejoin [name " (no value)"] ] ] [ rejoin ["(" type? :name "): " mold :name]

[REBOL] Re: What's the rate of Ally list mailings the last day or two?

2000-12-05 Thread Ingo Hohmann
Hi Allen, I must've missed _that_ one, can someone please repost it? I always thought the drop in volume was somewhat related to the expiration of the view betas, which only at the very last moment got updated ... kind regards, Ingo Once upon a time Allen Kamp spoketh thus: From

[REBOL] Re: REBOL + mySQL on Win32*

2000-12-13 Thread Ingo Hohmann
Hi Chris, you can access the database through tcp, but will have to do your own protocol handling. The question has been raised a few times, but AFAIK noone has a working solution so far. Command would give you ODBC access, but I think no direct access to MySQL, so far. kind regards, Ingo

[REBOL] Re: 'Parse is peculiar! - more details

2000-12-14 Thread Ingo Hohmann
ntered the sub-rule!) and then we copy the next-part of the name to the next "" the rule ends here, but we've told parse to check this rule multiple times (some), so we just reenter the sub-rule ... I hope this helps, Ingo Once upon a time Brett Handley spoketh thus: L 09/22/20

[REBOL] Re: 'Parse is peculiar! - more details

2000-12-14 Thread Ingo Hohmann
next-part "" [if none? next-part [next-part: ""] append name join "" next-part] ) skip copy next-part to "" ] parse line1 main-rule Juli (if "" are directly following each other, name-part is set to

[REBOL] Re: Parse doing weird things...

2001-03-19 Thread Ingo Hohmann
ng, and you are done. (Why did it work berfore? Don't know, maybe the "br" tag was at the end of the string?) kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.

[REBOL] Re: shell access, was: zip file support wanted

2001-03-19 Thread Ingo Hohmann
could need /View with /shell, of course then I'd loose cross-platform abilities, but so what? Some scripts make only sense if you _have_ specific Platforms/ Programs, and I'd just like to use Rebol. kind regards, Ingo Once upon a time GS Jones spoketh thus: From: Jamey Cribbs Well, I think

[REBOL] How to best access a scripts header?

2001-04-09 Thread Ingo Hohmann
[ Title: "Script 2" File: %script2.r ] do %script1.r print system/script/header/title ; end of scripts You'll get "Script 1", because this script has been loaded last ... Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAI

[REBOL] Re: How to best access a scripts header?

2001-04-10 Thread Ingo Hohmann
Hi Carl, I don't no why, but my scripts tend to go wild on new Rebol Versions. I tried again without my standard DO files, and then it works here, too. Now I'll have to investigate further, and by the way, the problem is consisitent on /Core 2.5.0.4.2 and /View 1.0.0.4.2 . kind regards, Ingo

[REBOL] Re: Argument passing

2001-04-11 Thread Ingo Hohmann
Technologies ... probe system/options/args ["-q"] == ["-q"] I just thought someone might find this handy. kind regards, Ingo Once upon a time [EMAIL PROTECTED] spoketh thus: Andrew Martin passed along someone's question: The question is - How does one

[REBOL] Re: rebol/core macos x

2001-04-17 Thread Ingo Hohmann
.bashrc in your home dir) export PATH=$PATH:/home/tobi/bin I hope this gets you started, kind regards, Ingo Once upon a time piefke 3000 spoketh thus: hi there. i downloaded core024.tar.gz and unpacked it into the Applications directory of my macos x harddisk. because i was not able

[REBOL] Re: keycodes

2001-04-23 Thread Ingo Hohmann
way and trigger intl characters. That's why they should not be used as qualifier keys in applications. sorry, but on all german keyboards I had so far it is like Petr described: rightAlt+Q -- @ leftAlt+Q -- whatever the program wants to do on alt+q kind regards, Ingo -- To unsubscribe

[REBOL] Re: word list

2001-04-24 Thread Ingo Hohmann
regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Troubles in CGI land

2001-04-25 Thread Ingo Hohmann
this be your problem?) just a thought, kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Postgres 7.x support

2001-04-26 Thread Ingo Hohmann
: Postgres Database driver Date: 1-Aug-2000 Version: 0.0.1 File: %pg.r Author: Ingo Hohmann Rights: (c) 8/2000 Ingo Hohmann Usage: [] Comment: [] History: [[1-Aug-2000 Ingo Hohmann initial Version]] Email: [EMAIL PROTECTED] Category: [] Known-bugs

[REBOL] Re: Q: Functions and the visibility of words

2001-04-26 Thread Ingo Hohmann
] ] rule: [ any [ set wrd set-word! (check wrd) | 'set [ set wrd lit-word! (check wrd) | into [any [set wrd word! (check wrd)]] ] | into rule | skip ] to end ] parse ctx rule use union locals locals ctx ] kind regards, Ingo

[REBOL] Re: Creating stuff :)

2001-04-26 Thread Ingo Hohmann
question/:count append file-to-save answer/:count ] kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: is there a better way?

2001-05-05 Thread Ingo Hohmann
] ] I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] [ANN] the_sea 0.0.13

2001-05-05 Thread Ingo Hohmann
dynamic interface - corrected a lot of bugs, and added some new ones ;-) All input is highly appreciated. kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Extracting a date..

2001-05-12 Thread Ingo Hohmann
- d] ] kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Need help with email program

2001-11-12 Thread Ingo Hohmann
] ] ] I hope that clarifies it a bit, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: do %image.png

2001-11-15 Thread Ingo Hohmann
-- the script ends at the closing bracket I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: intersting side-effect to dynamic word usage...

2001-11-16 Thread Ingo Hohmann
I don't understand why it returns 'none ... kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Please explain...

2001-11-17 Thread Ingo Hohmann
been removed from the pair! datatype. They lead to hard-to-find errors. I think the error message has just not been cleanly changed. Kind regards Ingo -- To unsubscribe from

[REBOL] Re: Action! What is it?

2001-11-19 Thread Ingo Hohmann
I was able to shed a bit of light on it ... Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: view indirection

2001-11-20 Thread Ingo Hohmann
) and the integer (n) make a word out of it and get what you find under that word (without the 'get it would only return the name of the word 'c1, namely a word c1. With 'get, it returns the object!, c1 points too). I hope that helps Ingo -- To unsubscribe from this list, please send an email to [EMAIL

[REBOL] Re: view indirection

2001-11-21 Thread Ingo Hohmann
: Thanks Ingo Another great answer from the rebol-list. I have just tested it. However trying to understand more, I crash my windows with a probe. Here is my code. The probe thing is in the guru-function. Thanks again Rebol [] guru-function: func [ s [string!] n [integer!] /local mc

[REBOL] Re: opening a file...

2001-10-07 Thread Ingo Hohmann
/frunlog.txt ... or ... print read %/c/my briefcase/frunlog.txt ... use the quotes. kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: adding set-words to a context from outside

2001-10-12 Thread Ingo Hohmann
] ; and the result... probe o make object! [ a: none ] But remember, that 'make doesn't create deep copies, so you might run into some surprises, if you tried to assign this to another word. But setting it back to the same is safe. kind regards, Ingo -- To unsubscribe from this list, please

[REBOL] Re: Backwards Navigation on path

2001-10-12 Thread Ingo Hohmann
: make object! [ [f: system/words/a/b/c [; ^^ [] [] [] a/d/e/f == object kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: Backwards Navigation on path

2001-10-12 Thread Ingo Hohmann
Hi Cyphre, thanks, you are right, next time i use a freshly opened rebol console for testing ... ;-) kind regards, Ingo Once upon a time Cyphre spoketh thus: Hi Ingo, Oops, your solution doesnot work since you are trying to assign recursive value form undone object: -- To unsubscribe

[REBOL] Re: En Masse block operations

2001-10-16 Thread Ingo Hohmann
16 17] one] forall blk [if block? blk/1 [ blk/1: next blk/1 ]] == [] blk: head blk == [[2 3 4] [6 7 8] [10 11 12] [14 15 16 17] one] forall blk [if block? blk/1 [ blk/1: head blk/1 ]] blk: head blk == [[1 2 3 4] [5 6 7 8] [9 10 11 12] [13 14 15 16 17] one] kind regards, Ingo

[REBOL] Re: import-email: a bug?

2001-10-17 Thread Ingo Hohmann
Hi Mario, Once upon a time Cassani Mario spoketh thus: Hi all, experimenting mail filters and talking to Phil Bevan some problems with email headers faced us: ... In import-email I really miss something to import real names from addresses, like: [...] From: Gino Pilotino [EMAIL

[REBOL] Re: Constant size string variable?

2001-12-02 Thread Ingo Hohmann
fillers str -10 == +++677 I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: catching the error with 'import-email?

2001-12-04 Thread Ingo Hohmann
, all should work well. I hope that helps. Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Forward References

2001-12-14 Thread Ingo Hohmann
] button Unview [unview] ] ] view lay Script 2 - Now all functions are defined, before they are needed (evaluated) in the 'view function. I hope that clarifies it a bit. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED

[REBOL] Re: Serial Communications - GPS Sings!

2002-03-15 Thread Ingo Hohmann
thingy altogether. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Dynamic Layout creation

2002-03-15 Thread Ingo Hohmann
) text (join var i) ] ] == [var1: text var1 var2: text var2 ... ] view layout b var2/text == var2 I hope that helps Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: ?unset?

2002-04-03 Thread Ingo Hohmann
that shed a little light on the mistery ... Ingo Am Die, 2002-04-02 um 21.43 schrieb Dr. Louis A. Turk: Hi rebols, I wrote this function to add spaces in the right places to line up columns of text: pad: func [form-length val] [loop form-length - length? to-string val [prin ]] It works

[REBOL] Re: trim/auto doesn't do anything?

2002-04-05 Thread Ingo Hohmann
, the first line could not be trimmed, so nothing changed at all. t: { A^/ B^/ A} ==A^/ B^/ A trim/auto t == A^/ B^/A Kind regards, Ingo Am Fre, 2002-04-05 um 14.12 schrieb Anton: trim/auto AAA^/ BBB^/ CCC^/ DDD == {AAA BBB CCC DDD} I was expecting all

[REBOL] Re: The all function.

2002-04-15 Thread Ingo Hohmann
] bho-5259 ; === ONE KEY, composed of TWO KEYS. make object! [ code: bho chknum: 5259 date: 27-Jul-2001 amount: $100.00 special: $0.00 I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED

[REBOL] Re: Tip for splitting very long string ?

2002-04-16 Thread Ingo Hohmann
. The 'insert is in the first paren!, because otherwise the last charecters would be added if the string does not contain a multiple of num characters. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without

[REBOL] Core 2.5.2 - Less aggressive evaluation - howto evaluate ?

2002-05-07 Thread Ingo Hohmann
Hi Carl, Rebols, it may be that I don't see the obvious, but given a: context[ b: context[ c: 1]] f: func ['word] [print word] f a/b/c a/b/c what do I have to do to get 'word evaluated? Thanks in advance, Ingo -- To unsubscribe from this list, please send an email to [EMAIL

[REBOL] Re: transferring files

2002-05-07 Thread Ingo Hohmann
... Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Core 2.5.2 - Less aggressive evaluation - howto evaluate?

2002-05-12 Thread Ingo Hohmann
in the next beta Version of Rebol. So the phenomenon may only be seen in the new betas, not on any of the stable versions. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: REBOL momentum builds

2002-05-16 Thread Ingo Hohmann
. BTW, are there any docs about the system port? Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: File-modes on different platforms

2002-05-19 Thread Ingo Hohmann
21-Jun-2001 date creation-date none date access-date none date modification-date none logic owner-write none logic archived none logic hidden none logic system none Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject

[REBOL] Re: Append lit-path

2002-05-21 Thread Ingo Hohmann
/c == a/b/c append %a/ form 'b/c == %a/b/c Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Database Compactness?

2002-05-22 Thread Ingo Hohmann
in this specific case, though. I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Strange array behavior

2002-05-22 Thread Ingo Hohmann
] [[]] == [[[] []] [[] []] [[] []]] append a/1/2 3 == [3] a == [[[] [3]] [[] []] [[] []]] I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] [View] text-list usage as a face

2002-05-23 Thread Ingo Hohmann
the slider/scroller back? Thanks, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Internationalization appeal

2002-05-23 Thread Ingo Hohmann
to the system/user object, and use this to determine the language settings. I have an experimental implementation to work with different language strings on the reb under h-o-h/core/languages . Maybe something like this should be part of the system, too. Kind regards, Ingo

[REBOL] Re: [View] text-list usage as a face

2002-05-24 Thread Ingo Hohmann
Hi Ammon, Ammon Johnson wrote: Hi, Have you tried 'get-style? 'get-style was designed to avoid that problem. No, didn't know about it. But in the end, it's seems to do no more than my select does. HTH Ammon A short time ago, Ingo Hohmann, sent an email stating: Yore joking ain't ya

[REBOL] Re: adding line hints when building blocks

2002-05-25 Thread Ingo Hohmann
]) ] (print ]) ] ] ] which gives item-1-id [ value 0 mail [EMAIL PROTECTED] ] item-2-id [ value 1 mail [EMAIL PROTECTED] ] I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without

[REBOL] Re: adding line hints when building blocks - P.S.:

2002-05-25 Thread Ingo Hohmann
, e.g. the one in my previous post) to create a pretty printed output. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Submitted, for your approval.

2002-05-27 Thread Ingo Hohmann
it, a newline (you could use ^/, too). From the usability view-point: - You should display a list of the symbols on startup. - and an error on less than 5 symbols - help on wrong symbols Kind regards, Ingo Ed Dana wrote: Greetings all, Attached is a small game I created in my continuing

[REBOL] Re: list! bug

2002-05-27 Thread Ingo Hohmann
is created, with an initial size of an-integer. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: list! bug

2002-05-27 Thread Ingo Hohmann
Thanks Gabriele, I stand corrected ... out to find that thinking brain dog now ;-) Ingo Gabriele Santilli wrote: Hi Ingo, On Monday, May 27, 2002, 4:51:06 PM, you wrote: IH converts the value into the other datatype, but in the special case of IHto-any-series-datatype

[REBOL] Re: Submitted, for your approval.

2002-05-28 Thread Ingo Hohmann
is, that ^ is Rebols escape character: ^/= return ^-= tab ^(41) = ascii character 65 ^^= a literal ^ Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: I need help...

2002-06-07 Thread Ingo Hohmann
Hi Daniel, I know there are at least two, and I know where one of them can be found, namely at: http://www.h-o-h.org/browser.r It's really a text-only browser, in a view layout, but I think you could get some ideas on how to parse. Kind regards, Ingo [EMAIL PROTECTED] wrote: ...to make

[REBOL] Re: How to check function arguments ?

2002-06-09 Thread Ingo Hohmann
on the subject, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: basics: meaning and uses of make object! vs. context

2002-06-10 Thread Ingo Hohmann
of a function are hidden in an object!. Especially once you start with /View. That said, 'source is always worth a try. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Newbie help: Parsing mobile email address

2002-06-11 Thread Ingo Hohmann
for the phone number, at most 8 for the phone number. I hope that helped, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: basics: meaning and uses of make object! vs. context

2002-06-11 Thread Ingo Hohmann
Now answering my own email ... Ingo Hohmann wrote: Ammon Johnson wrote: Use the SOURCE, Luke! The SOURCE will not fail you... ;-) Unless it does, of course ... a: make object! [ blk: [ print HI ] set 'f func [][ do blk ]] f HI source f f: func [][do blk] blk

[REBOL] Re: RFC on support for user-defined types

2002-06-11 Thread Ingo Hohmann
! tests seem to be doable (INARTE and all, af course). Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: problems with url...

2002-06-19 Thread Ingo Hohmann
. Server response: HTTP/1.0 404 WWWOFFLE Will Get ** Near: read http://slovnik.nettown.cz/?co=naslepokde=A-%C8 I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Editor

2002-06-25 Thread Ingo Hohmann
put to-string now/date length? to-string now/date ] Now the button works as expected - but only a few times. After 3 to 10 times it doesn't do anything at all. I'm using REBOL/View 1.2.5.4.2 6-May-2002, anyone seeing the same problem? I hope that helps, Ingo -- To unsubscribe from

[REBOL] Re: Limitation coming from the initialize refinement usedwith the Array word

2002-06-27 Thread Ingo Hohmann
== [[30 0]] tab_nbr == [[0 0] [30 0] [0 0]] 'bind has two paramters, the block you want to run in a differrent context than its default, and a word from the context you want it to run in. I hope that helps, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED

[REBOL] Re: dirty editor

2002-06-30 Thread Ingo Hohmann
it is really needed. I hope that sheds a little light on that one. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Evaluating if's

2002-07-02 Thread Ingo Hohmann
.) AND (not none? find pick p 2 htm) [ What you are searching for is 'all, used like this: if all [ (2 = length? p: parse filename .) (not none? find pick p 2 htm) ] [ 'whatever-you-like-to-do-now ] 'all and its companion 'any use short-circuit evalution. Kind regards, Ingo

[REBOL] Creating unique ID's?

2002-07-16 Thread Ingo Hohmann
Hi Rebols, I need to create ID's which are unique over even when they are created on different machines, or several poeple on the same machine, etc. Does anyone have a better idea than unique-id: join join system/user/email system/network/host now/precise Thanks in advance Ingo

[REBOL] Re: Trimming values from a series?

2002-07-25 Thread Ingo Hohmann
may be right. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: radio button

2002-09-21 Thread Ingo Hohmann
| to end ] ] ] view layout lay ] ; -- rebol file ends -- I hope this will guide you on your way ... Ingo Am Sam, 2002-09-21 um 11.50 schrieb Nicolas Maillard: HI, i'am trying to explain beter =) i generate a script in dyn

[REBOL] Re: Rebol Memory Allocation Strategy?

2002-09-21 Thread Ingo Hohmann
over function invocation. Of course the first usage of the func might be slow, because 'str would have to slowly grow, while being appended to. _or_ you use the ideas someone else woll surely come up with. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL

[REBOL] Re: Re : Rebol language aliasing == was {Re: FORUM REBOL}

2002-09-21 Thread Ingo Hohmann
] Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Parsing comment

2002-09-23 Thread Ingo Hohmann
visual feedback, but you aren't forced to use the parentheses, so most people don't most of the time, except when the expression becomes too complicated. I hope that sheds a little light on the subject. Kind regards, Ingo Am Mon, 2002-09-23 um 06.03 schrieb Jason Cunliffe: Today I read a comment

[REBOL] Re: Dialects (any plan is better than no plan) - Baneor Blessing?

2002-09-28 Thread Ingo Hohmann
system, it will be hard to handle library. Or, we should decide to use one of the many module handlers floating around (or create one), and decide that this one will have to be used by all library scripts. Kind regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL

[REBOL] Re: Wanted: a Libmaster - no pay, but glory

2002-09-28 Thread Ingo Hohmann
to ask again, filter the answers, and send them on to you to decide. And if there's noone appropriate to be found: I don't have much time, don't feel fluent in Rebol, but would like to grow into the position. Kind regards, Ingo Am Son, 2002-09-15 um 00.28 schrieb Carl at REBOL: Wanted: We

[REBOL] Re: cyclic values

2002-09-29 Thread Ingo Hohmann
regards, Ingo -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with unsubscribe in the subject, without the quotes.

[REBOL] Re: Error, bug or mis-use on my part?

2003-09-24 Thread Ingo Hohmann
(at least on your sample data and /Core 2.5.6.4.2 ). checksum trim/lines mold objA == 2341746 (I tried mold/flat first, but this gives inconsistent behaviour like plain mold.) Kind regards, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: REBOL for business apps?

2003-09-28 Thread Ingo Hohmann
, but you are free to do it ;-) Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Smart Client

2003-10-01 Thread Ingo Hohmann
, a central repositry where you'll be sure to find everything is still missing in the mindset of most Rebolers, though I hope rebol.org will get there. Kind regards, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: SMTP Server

2003-10-01 Thread Ingo Hohmann
not implemented behaviour, but it should get you going). I hoppe that helps, Ingo P.S. soon to be found on www.rebol.org the world famous Rebol library server! -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: REBOL in XEMACS

2003-10-01 Thread Ingo Hohmann
Hi Marcelo, Marcelo Fontes Castellani wrote: Someone have an mode REBOL to XEMACS to share with me ? Have a look at this ;-) http://www.rebol.com/tools/rebol.el Should work in both Emacses, IIRC. Hope that helps, Ingo -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: Rebol parsing 101

2003-10-02 Thread Ingo Hohmann
reached the end, ; and be done opt [copy s2 any non-number (if not none? s2 [append last b s2]) | end] ] ] ; end I hope that gets you going, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe

[REBOL] Re: REBOL in XEMACS

2003-10-02 Thread Ingo Hohmann
I have just now downloaded this version and found out that this version doesn't do automatic indentation, so I must be using a different version, it seems. If anyone is interested ... Kind regards, Ingo Ingo Hohmann wrote: Hi Marcelo, Marcelo Fontes Castellani wrote: Someone have

[REBOL] Re: Newbie questions

2003-10-02 Thread Ingo Hohmann
Welcome, Kai, Kai Peters wrote: ... How do I typecast the URL below for use with banner or any other word expecting a string? REBOL [] ftpserver: ftp://server.somedomain.net view layout [ banner to-string ftpserver ] Kind regards, Ingo -- To unsubscribe from this list, just send

[REBOL] Re: url or file ?

2003-10-04 Thread Ingo Hohmann
] == [http://www.rebol.net; index.html] repeat d test [ print [ f dtype? f d ]] http://www.rebol.neturl index.htmlfile Kind regards, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Another newbie VID question

2003-10-04 Thread Ingo Hohmann
, and dag'n'droppable ;-) , now we just have to toggle the text depending on face/data (this feature of 'pick has been the source of many long and lively discussions, but it makes for nice short code). I hope that helps, Ingo -- To unsubscribe from this list, just send an email to [EMAIL

[REBOL] Re: Another newbie VID question

2003-10-04 Thread Ingo Hohmann
Kai Peters wrote: Thanks for your very elaborate help, Ingo. It all makes good sense, yet there still is a problem: When I cut paste your code to my console, the toggle caption does not change on my machine?? Any ideas? After some checks, yes, this has changed between the last official

[REBOL] Re: Another newbie VID question

2003-10-06 Thread Ingo Hohmann
Hi Gabreiele, Gabriele Santilli wrote: Hi Ingo, On Saturday, October 4, 2003, 9:55:53 PM, you wrote: IH This is the answer ... Shoulda have said, this _one_ possible answer ... Actually, he just needs: Toggle 60 Start Stop Which only goes to show, that there's _always_ an easier

[REBOL] Re: Parse limitation ?

2003-10-08 Thread Ingo Hohmann
In this example I used the = which is common to both strings, checked whether what I have _before_ this sign is one of the two strings I'm interested in, and then start to copy, or just go thru the = to start again ... I hope that helps, Ingo -- To unsubscribe from this list, just send an email

[REBOL] Re: [newbie] Sending prints to std out

2003-10-08 Thread Ingo Hohmann
Hi Ged, this is a shot into the blue, but try Scite to call Rebol with the -c option. This puts Rebol in cgi mode, in which its output should be sent to standard-out. I hope that helps, Ingo Ged Byrne wrote: Scite is my text editor of choice, which has an execution option that captures

[REBOL] Re: Tail end recursion

2003-10-09 Thread Ingo Hohmann
Liste wieder ausgetragen sein. Mit freundlichen Grüßen, Ingo Hohmann -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: So where's the German speaking Rebol list?

2003-10-10 Thread Ingo Hohmann
to get off again. And as noone able to understand english would ever want to leave this list, I figured it wouldn't be too interesting for the lot of you ;-) Kind regards, Ingo Maxim Olivier-Adlhoch wrote: I can understand some written dialects of german if I read it over and over

[REBOL] Re: [Fwd: Accessing a variable's method]

2003-10-10 Thread Ingo Hohmann
!s are not allowed in paths ... however you can do any of the following ... probe l/1/a == 2 probe l/2/a == 3 num: 1 probe l/:num/a == 2 and becoming somewhat esoteric ... probe get in first l 'a == 2 I hope that's enough for now ... Ingo -- To unsubscribe from

[REBOL] [OT] 10 Million dollar DMCA case ....

2003-10-10 Thread Ingo Hohmann
dollar case. The published means to bypass copy protection: hold down the shift key when putting the disc into the drive, so that windows autostart is suppressed ... More info, e.g. http://vigilant.tv/article/3362 Kind regards, Ingo -- To unsubscribe from this list, just send an email

[REBOL] Re: newbie text-list questions

2003-10-11 Thread Ingo Hohmann
] ] Kind regards, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

[REBOL] Re: Bad accent causes problem

2003-10-12 Thread Ingo Hohmann
are on their special keys work fine. Don't know if this'll help, though, Ingo -- To unsubscribe from this list, just send an email to [EMAIL PROTECTED] with unsubscribe as the subject.

<    1   2   3   >