[REBOL] test 1

2004-06-15 Thread Carl Sassenrath
t1
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing mail list

2004-06-14 Thread Carl Sassenrath
ignore this post
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing List

2004-06-14 Thread Carl Sassenrath
Should be back up and running now. But we will need to move the name of the list
to stop some of the spam.
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing REBOL List.

2004-06-14 Thread Carl Sassenrath
Ignore this message. Just testing.
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing List Again.

2004-06-14 Thread Carl Sassenrath

Ignore this email.

Let's hope all the test messages don't eventually show up by surprise.

-Carl 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing List Again.

2004-06-14 Thread Carl Sassenrath

Ignore this email.

Let's hope all the test messages don't eventually show up by surprise.

-Carl

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing List Again.

2004-06-14 Thread Carl Sassenrath

Ignore this email.

Let's hope all the test messages don't eventually show up by surprise.

-Carl 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Rebol script for file transfer via parallel port ??

2004-06-01 Thread John Dutcher
Sorry..the 1st note took off before completion.
Does anyone have a script (or know of one) that will transfer files
from one PC to another, given a male/male cable attached to the 
parallel ports of both ?
Something like what can be done with 'FileVan' which is a Windows 
product that does this sort of thing. Sophistication is not needed,
however, just functionality.
Thanks,  John Dutcher


-
Do you Yahoo!?
Friends.  Fun. Try the all-new Yahoo! Messenger

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] File transfer script for parallel port ??

2004-06-01 Thread John Dutcher
  

-
Do you Yahoo!?
Friends.  Fun. Try the all-new Yahoo! Messenger

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-06-01 Thread Phil

While the Cyphre 's code is not released, I publish here the result of an
old effort to have a cascaded menu style.
There's still some bugs, specially sometimes when a cascaded menu pane is
displayed and a clik is made on a menu header.

I appreciate any help to finish the job, because I cant' find the problem..

Philippe Oehler

   REBOL [
 title: "View Menu"
 authors: "Frank Sievertsen (version 1.0.0) & Philippe Oehler (v.2.0.0)"
 date:22-5-04/14:39
 version: 2.0.0
 purpose: "Adds a grafical menu to a window or a face + Cascaded-menu"
]


;/*/ Needed to run the script well,
with new version of View
flag-face?: func [
"Checks a flag in a VID face."
face [object!] 'flag
][all [in face 'flags face/flags find face/flags flag]]
;/*/

ao2: :print ; a function, that I actually activates/deactivates, to be
simple, here : ao2: : print


;/*/head of the object!
CONTEXT [
 ;/*/
 ; LOCAL PARSE - VARS
 t1: t2: none
 name: none
 out-block: none
 out-face: none
 SUB-out-face: none
 ;SUB-out-block: COPY []
 offset: 0x0
 direction: 0x1
 menu: none
 degree-from-top-face: ""

 ;/*/

 ;[STYLIZE];/*/;
 MENU-I-STYLES: stylize [

  ;[STYLE : MENU-ITEM];/*/;
  menu-item:
   txt bold font-name "verdana" black "" font-size 10 with [
   pane-size: 900x900
   colors: reduce [[gradient 1x1 167.163.179 167.163.179] none];colors:
reduce [167.163.179 none]
   Append init [state: no]
   state: no
   menu-description: none  ;its text'  block
   menu-action: none;its behavior
   title-of-submenu?: none
   menu-number: 0
   parent-name: ""
   path-from-system-for-Cascaded-Menu: "" ; to be a private data, shared
into different funcs
   init: [
size: 900x900
size: (size-text self) + para/origin + para/margin
   ]
   para: make para [ margin: origin: 4x2 ]
  ]

  feel [
   redraw: func [face][
face/color: pick face/colors face/state
   ]
   over: func [face action event][
face/state: action
show face
   ]
   engage: func [face action event][
switch action [
 down [ ;ao2 "normal action of the basic style"
  ;ao2 "CALL unview-menu"
  unview-menu ;effacement du menu déroulé
  face/menu-action face;call the menu' menu-action with its argument
face
  IF face/menu-description [   ;if there's something in the block's
menu-descritption.
   unview-menu;time 1 : unview of the menu displayed
   view-menu face;time 2 : 'redraw'
  ]
 ]
 away [
  over face no event;calling of the function 'over with  false (no)
as 2nd argument
 ]
 over [
  over face yes event;calling of the function 'over with true (yes)
as 2nd argument
  ] ] ] ]
  ;/*/ end of MENU-ITEM

 ] ;/*/;
 ;[/STYLIZE]


 ;/*/; Menu-Functions
 Unview-menu: func [][
  ao2 "ENTR UNVIEW-MENU"
  IF menu [
   ;ao2 "Menu activated!"
   remove find menu/parent-face/pane menu
   show menu/parent-face
   menu: none
  ]
  IF error? try [
   IF Cascaded-menu [
;ao2 "mark 161"
unview-Cascaded-menu
Cascaded-menu: none
   ]
  ][]
 ]

 ;/*/
 Unview-Cascaded-menu: func [/only][
  ;ao2 "ENTR Unview-Cascaded-menu"
  nb-Cascaded-menu: 0
  IF Cascaded-menu [
   ;AO2 "Cascaded-menu activated!!!"
   remove find Path-from-system-for-Cascaded-Menu Cascaded-menu
   show Path-from-system-for-Cascaded-Menu
   Cascaded-menu: none
  ]
  IF Not only [
   IF menu [
;ao2 "CALL unview-Cascaded-menu"
unview-menu
menu: none
  ] ]
  ;ao2 "DONE Unview-Cascaded-menu"
 ]

 ;/*/
 view-Cascaded-menu: func [
  bk
  /minimize
 ][
  ao2 "ENTR view-Cascaded-menu"
  len-bk: length? bk
  offs: sub-offset;private variable of the object!
  either global-affichage-old-school
  [ path-from-system-for-Cascaded-Menu:
system/view/screen-face/pane/1/pane/8/pane/pane ]
  [ path-from-system-for-Cascaded-Menu:
ystem/view/screen-face/pane/1/pane  ]
  Append path-from-system-for-Cascaded-Menu Cascaded-menu: make
system/words/face [
   dirty?: yes
   flags: [on-unfocus]
  ]

  Cascaded-menu/edge: make Cascaded-menu/edge [ effect: 'bevel  color:
200.200.200  size: 2x1 ]
  Cascaded-menu/color: 212.212.212
  ;Cascaded-menu/effect: [  merge gradmul 1x1 212.212.212 212.212.212];
120.255.195
  Cascaded-menu/pane: copy []


  EITHER Not minimize [
   size-x: 0
   forEach ite

[REBOL] Re: Gradient and Transparency

2004-06-01 Thread Patrick Philipot

Hello Cyphre,

Thank you! I honestly do not understand how it works, but it works.


-- 
Regards,
Patrick

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Gradient and Transparency

2004-06-01 Thread Cyphre

Hi Patrick,

AFAIK you can't easily use gradients on text in Rebol but there is few ways
how to do it. Below is an example of one possible way(I don't say it is the
most elegant but it works ;-) )

beware of line breaks!

--
--

view layout [
 title with [
  text: "REBOL"
  font: make font [
   size: 60
  ]
  para: make para [
   scroll: -1000x0
  ]
  effect: compose/deep [
   gradient 1x1 red blue
   draw [
image 0x0 (to-image layout [origin 0 backcolor 200.200.200 title white
(text) font-size (font/size)]) white
   ]
  ]
 ]
]
-
--

regards,

Cyphre

- Original Message - 
From: "Patrick Philipot" <[EMAIL PROTECTED]>
To: "Rebol-List" <[EMAIL PROTECTED]>
Sent: Tuesday, June 01, 2004 1:12 PM
Subject: [REBOL] Gradient and Transparency


>
> Hello Rebol-List,
>
> Is it possible to apply a gradient to a text, not the the text
> background?
>
> This code changes the text background:
>
> view center-face layout [
>title "Pat665" yellow effect [gradient 1x1 red blue]
> ]
>
> Also, is it possible to use transparency (alpha channel) on text?
>
> -- 
> Best regards,
> Patrick  mailto:[EMAIL PROTECTED]
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Gradient and Transparency

2004-06-01 Thread Patrick Philipot

Hello Rebol-List,

Is it possible to apply a gradient to a text, not the the text
background?

This code changes the text background:

view center-face layout [
   title "Pat665" yellow effect [gradient 1x1 red blue]
]

Also, is it possible to use transparency (alpha channel) on text?

-- 
Best regards,
Patrick  mailto:[EMAIL PROTECTED]

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Text-list updates

2004-05-31 Thread Anton Rolls

I think it was Allen Kamp who showed the first
auto-fill style. I used it a long time ago.

Anton.

> I'll second that! I've always liked the following "auto-fill" field style
> (which I've lost track of who originally wrote, so yell if it's yours).

>   Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Text-list updates

2004-05-31 Thread Ashley Trüter

> I'd love to see the text list respond to keys typed in so that the list
> moves to
> the closest alphabetic word. (Fairly standard long listing behaviour in
> windows etc.)

I'll second that! I've always liked the following "auto-fill" field style 
(which I've lost track of who originally wrote, so yell if it's yours).



stylize/master [
auto-fill: field with [
feel: make feel [
engage: func [face act event index][
switch act [
down [
either face <> system/view/focal-face [
focus face
][
system/view/highlight-start: 
system/view/highlight-end: none
system/view/caret: 
offset-to-caret face event/offset
show face
]
]
over [
if system/view/caret <> 
offset-to-caret face event/offset [
if not 
system/view/highlight-start [system/view/highlight-start: 
system/view/caret]
system/view/highlight-end: 
system/view/caret: offset-to-caret face 
event/offset
show face
]
]
key [
ctx-text/edit-text face event 
face/action
if all [
char? event/key
not empty? face/text
find ctx-text/keys-to-insert 
event/key
][search face]
]
]
]
]
search: func [face /local word][
word: copy face/text
foreach item face/user-data [
if equal? word copy/part item (length? word) [
face/text: copy item
system/view/focal-face: face
system/view/highlight-start: skip face/text 
length? word
system/view/highlight-end: tail face/text
system/view/caret: tail face/text
show face
exit
]
]
]
words: [data [new/user-data: second args next args]]
]
]

view layout [
a: auto-fill with [
user-data: ["Paul" "Pauline" "Peter"]
]
do [focus a]
]




Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Text-list updates

2004-05-31 Thread Mike Yaunish
I'd love to see the text list respond to keys typed in so that the list 
moves to
the closest alphabetic word. (Fairly standard long listing behaviour in 
windows etc.)

Mike Yaunish




>Here is an example:
>
>http://www.tretsoft.com/images/text-list-new.jpg
>
>Paul Tretter
>
>- Original Message -
>From: "Paul Tretter" <[EMAIL PROTECTED]>
>To: <[EMAIL PROTECTED]>
>Sent: Monday, May 31, 2004 3:52 PM
>Subject: [REBOL] Text-list updates
>
>
> > I have been working on updates to Text-List.  Anyone have any Text-List
>bugs they want to mentions or functionality that doesn't seem correct.
> >
> > What I have done so far is:
> >
> >  *  Added a new item called picked-index.  This can be  used to
>synchronize data from several lists.
> >
> > * Fixed Highlighting so that like items are not highlighted.  This also
>used the picked-index.
> >
> > * Gave Text-list a default action of double-click.  A new facet word was
>created for single-click action called "single-click".
> >
> > Working on:
> > Updating the Text-list iter items to display formatting independantly over
>the other items so that a Text-List can display a different font or font
>color depending on specifics resulting from logic, functions or passed
>values.  I already have this part partially completed with a way of doing
>this.  I just want to refine it a bit more.  I uses a new facet word called
>'format for defining the functions or values to be applied to the iter
>items.
> >
> > If you have any useful updates to Text-list or other bugs or ideas, I
>would be happy to hear them.  I'm currently using the Text-List updated
>source as provided in the SDK package. This also includes a striped facet
>word for creating striped iter faces in the text-list pane.  Since the code
>is from the SDK, I will have to get Carl's approval before release to the
>masses.
> >
> > Paul Tretter
> >
> >
> >
> > --
> > To unsubscribe from this list, just send an email to
> > [EMAIL PROTECTED] with unsubscribe as the subject.
> >
>
>--
>To unsubscribe from this list, just send an email to
>[EMAIL PROTECTED] with unsubscribe as the subject.


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] file splitting howto?

2004-05-31 Thread Tom Foster

Hi guys,

I would like to split a large (40m) file into 1m chunks, 
being sure to split on line breaks.  Each chunk will be 
written to a seperate file.  The linux utility "split" does 
almost what I want, execept for where it breaks the file.

does my solution involve open/direct/lines, and copy/part, 
by any chance? :-)

Thanks.


--
signature drinking: "glugluglug"
-tom
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [View] list examples

2004-05-31 Thread Graham Chiu

The VID list is a rather undocumented beast.  So, I have assembled a little 
documentation from the beta view docs in 2000, and a few examples to illustrate the 
basic concepts.

http://www.compkarori.com/vanilla/display/list+examples

Feel free to add more complex examples if they help one to understand the concepts.

--
Graham Chiu
http://www.compkarori.com/cerebrus
http://www.compkarori.com/rebolml
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Retrieving machine information

2004-05-31 Thread Gregg Irwin

Hi Henrik,

HMK> Is there any way to retrieve machine information such as CPU type,
HMK> speed, memory, etc. within REBOL?

Under Windows you would use the GetSystemInfo API. Below is a quick
mapping of it; I can flesh out the details to make it more useful if
you need, just let me know (just short of time right at the moment or
I'd do it now).

-- Gregg     


REBOL []

kernel32.dll: load/library %kernel32.dll

SYSTEM_INFO: make struct! SYSTEM_INFO-def: [
;OemID   [integer!] ; Obsolete; used for NT 3.51 and < WIndows 95
ProcessorArchitecture   [short] ;  \_ union with OemID
Reserved[short] ;  /
PageSize[integer!]
lpMinAppAddress [integer!]
lpMaxAppAddress [integer!]
ActiveProcessorMask [integer!]
NumberOfProcessors  [integer!]
ProcessorType   [integer!]  ; Obsolete on NT. Still used on 95.
AllocationGranularity   [integer!]
ProcessorLevel  [short] ; Not used by 95.
ProcessorRevision   [short] ; Not used by 95.
] none

GetSystemInfo: make routine! compose/deep/only [
lpSysInfo [struct! (SYSTEM_INFO-def)]
] kernel32.dll "GetSystemInfo"

get-system-info: does [GetSystemInfo SYSTEM_INFO   SYSTEM_INFO]


probe get-system-info

free kernel32.dll


halt

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Retrieving machine information

2004-05-31 Thread Ashley Trüter

> Is there any way to retrieve machine information such as CPU type,
> speed, memory, etc. within REBOL?

Not without using an OS specific API call. Note that some of the info you 
require might be available as environment variables, eg. (on WinXP):

>> get-env "PROCESSOR_ARCHITECTURE"
== "x86"
>> get-env "PROCESSOR_IDENTIFIER"
== "x86 Family 15 Model 2 Stepping 9, GenuineIntel"
>> get-env "PROCESSOR_LEVEL"
== "15"
>> get-env "PROCESSOR_REVISION"
== "0209"


Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Retrieving machine information

2004-05-31 Thread Henrik Mikael Kristensen

Hi

Is there any way to retrieve machine information such as CPU type, 
speed, memory, etc. within REBOL?

Would be nice for benchmarking programs.

-- 
Regards,
Henrik Mikael Kristensen
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: any chance of a core/pro?

2004-05-31 Thread Tom Foster

Gregg Irwin wrote:
 >
> If you want all the commercial features in a free version, I guess my
> answer to "why not?" would be, "How will RT stay in business if they
> give everything away for free?"
> 

RT would probably flourish in a big way, and rebol's user 
base would double or triple almost overnight.

--
signature on the edge: "wheee!"
-tom
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Text-list updates

2004-05-31 Thread Paul Tretter

Here is an example:

http://www.tretsoft.com/images/text-list-new.jpg

Paul Tretter

- Original Message - 
From: "Paul Tretter" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, May 31, 2004 3:52 PM
Subject: [REBOL] Text-list updates


> I have been working on updates to Text-List.  Anyone have any Text-List
bugs they want to mentions or functionality that doesn't seem correct.
>
> What I have done so far is:
>
>  *  Added a new item called picked-index.  This can be  used to
synchronize data from several lists.
>
> * Fixed Highlighting so that like items are not highlighted.  This also
used the picked-index.
>
> * Gave Text-list a default action of double-click.  A new facet word was
created for single-click action called "single-click".
>
> Working on:
> Updating the Text-list iter items to display formatting independantly over
the other items so that a Text-List can display a different font or font
color depending on specifics resulting from logic, functions or passed
values.  I already have this part partially completed with a way of doing
this.  I just want to refine it a bit more.  I uses a new facet word called
'format for defining the functions or values to be applied to the iter
items.
>
> If you have any useful updates to Text-list or other bugs or ideas, I
would be happy to hear them.  I'm currently using the Text-List updated
source as provided in the SDK package. This also includes a striped facet
word for creating striped iter faces in the text-list pane.  Since the code
is from the SDK, I will have to get Carl's approval before release to the
masses.
>
> Paul Tretter
>
>
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: How to reset VID/guide?

2004-05-31 Thread Robert M. Münch

On Mon, 31 May 2004 19:53:38 +1200, Carl Read <[EMAIL PROTECTED]>  
wrote:

> I never actually use guide, but this seems to give you what you want...
> ...

Hi, thanks a lot that's it. Very simple if you see it ;-). Robert
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] How to reset VID/guide?

2004-05-31 Thread Carl Read

>Hi, I have the following layout:
>
>view layout [
>   across
>   a: txt "test1"
>   guide b: txt "test2" return
>   c: txt "test3" return
>   d: txt "test4"
>]
>
>And I want to be 'd in line with 'a. How do I get rid of the 'guide once  
>set? I just want to disable it until the next 'guide happens. Robert

I never actually use guide, but this seems to give you what you want...

view layout [
across
a: txt "test1"
guide b: txt "test2" return
c: txt "test3" return
  guide a/offset
d: txt "test4" return
  e: txt "test5"
]

Hope that helps.

-- Carl Read

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Text-list updates

2004-05-30 Thread Paul Tretter
I have been working on updates to Text-List.  Anyone have any Text-List bugs they want 
to mentions or functionality that doesn't seem correct.  

What I have done so far is:
 
 *  Added a new item called picked-index.  This can be  used to synchronize data from 
several lists. 

* Fixed Highlighting so that like items are not highlighted.  This also used the 
picked-index.

* Gave Text-list a default action of double-click.  A new facet word was created for 
single-click action called "single-click".

Working on:
Updating the Text-list iter items to display formatting independantly over the other 
items so that a Text-List can display a different font or font color depending on 
specifics resulting from logic, functions or passed values.  I already have this part 
partially completed with a way of doing this.  I just want to refine it a bit more.  I 
uses a new facet word called 'format for defining the functions or values to be 
applied to the iter items.

If you have any useful updates to Text-list or other bugs or ideas, I would be happy 
to hear them.  I'm currently using the Text-List updated source as provided in the SDK 
package. This also includes a striped facet word for creating striped iter faces in 
the text-list pane.  Since the code is from the SDK, I will have to get Carl's 
approval before release to the masses.  

Paul Tretter



-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] How to reset VID/guide?

2004-05-30 Thread Robert M. Münch

Hi, I have the following layout:

view layout [
across
a: txt "test1"
guide b: txt "test2" return
c: txt "test3" return
d: txt "test4"
]

And I want to be 'd in line with 'a. How do I get rid of the 'guide once  
set? I just want to disable it until the next 'guide happens. Robert
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [port/skip]

2004-05-30 Thread Carl Read

> From Tracker#295
>
>
>[skip does not work with open/binary/direct]
>
>file: open/binary/direct/skip does not work.
>at file n does not work
>skip file n causes REBOL to hang.
>
>These operations should either work or not be allowed on files opened with 
>/direct.
>
>
>
>Regards,
>
>   Ashley

Ah - good they know about it.

In the meantime, this is my work-around:  First, what happens if you use append...

>> write %test.txt "12345"
>> x: open/binary/direct %test.txt
>> append x to-binary "abc"
>> close x
>> read %test.txt
== "abc45"

And my solution using loop and copy...

>> write %test.txt "12345"
>> x: open/binary/direct %test.txt
>> loop size? %test.txt [copy/part x 1]
== #{35}
>> append x to-binary "abc"
>> close x
>> read %test.txt
== "12345abc"

And given this behaviour, you may as well use insert instead of append.

Also, would copying larger blocks of bytes instead of just one at a time be faster or 
better?

Thanks for all the responses,

-- Carl Read

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [REBOL.org] Recent changes

2004-05-29 Thread rebol
[REBOL] [REBOL.org] Recent changes

This is an automatic email from REBOL.org, the REBOL Script Library to notify you of 
recent changes to the Library.

===changes===
icon-browse.r
--change: updated script
--title: Iconic Image Browser
--owners: carl gchiu
--author: Carl Sassenrath
--purpose: Browse a directory of images using a scrolling list of icons.
Displays a progress bar while icons are being created.

--url: http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=icon-browse.r


===additional information===
new and updated scripts: 
http://www.rebol.org/cgi-bin/cgiwrap/rebol/search.r?special-filter=recent

===end===
--The Library People
--29-May-2004

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [RebolML] version 0.3.3 available

2004-05-29 Thread Graham Chiu
Anton Rolls  wrote.. apparently on 28-May-2004/13:15:14+10:00
>Hi Graham,
>
>Are you sure that's correct?
>
>I currently have:
>
>   lastrec: 40356
>
>so if you ask me to change it to:
>
>   lastrec: 40358
>
>that's only a difference of 2, which rings a possible
>alarm bell for me.
>

Hmm.  If you were up to date before the outage, then yes. Otherwise, use the lesser 
number.  So, in your case, please leave it alone :)

lastrec: min lastrec 40358

>Just checking.

And caught me out !

--
Graham Chiu
http://www.compkarori.com/cerebrus
http://www.compkarori.com/rebolml
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [port/skip]

2004-05-29 Thread Ashley Trüter

 From Tracker#295


[skip does not work with open/binary/direct]

file: open/binary/direct/skip does not work.
at file n does not work
skip file n causes REBOL to hang.

These operations should either work or not be allowed on files opened with 
/direct.



Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [port/skip]

2004-05-29 Thread Arie van Wingerden

Hi Carl,

indeed I experience exactly the same phenomenon! CPU goes to 100% and I have
to kill REBOL because it's stuck somewhere.

I'm running Win2k with all service packs / updates applied and REBOL/View
1.2.46.3.1.

Met vriendelijke groet / with kind regards,
   Arie van Wingerden
http://home.zonnet.nl/rebolution/

- Original Message - 
From: "Carl Read" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, May 29, 2004 1:13 PM
Subject: [REBOL] Re: [port/skip]


>
> Hmm - I was badly wrong about skipping files after an open working okay -
REBOL totally locks up when I attempt this kind of thing... (Taken from the
Users' Guide:
http://www.rebol.com/docs/core23/rebolcore-14.html#section-8.4)...
>
> fp: open/direct/binary %file.dat
> fp: skip fp 10
>
> My example...
>
> >> write %test.txt "abcdefghijkl"
> >> fp: open/direct/binary %test.txt
> >> fp: skip fp 4
>
> At that point it totally locks up.  Esc's no use - have to use
Ctrl/Alt/Delete to shut REBOL down.  Using Win98SE.  Is it the same for
other Windows users?
>
> -- Carl Read
>
> >Are there any known problems with the use of skip with ports?  As on
files it
> >doesn't seem to work for me...
> >
> >>> write %test.txt "abcdefghijkl"
> >>> port: open/direct/binary %test.txt
> >>> copy/part port 4
> >== #{61626364}
> >>> close port
> >>> port: open/direct/binary/skip %test.txt 4
> >>> copy/part port 4
> >== #{61626364}
> >>> close port
> >
> >but does with URLs...
> >
> >>> port: open/direct/binary http://www.rebol.com/
> >connecting to: www.rebol.com
> >>> copy/part port 4
> >== #{3C48544D}
> >>> close port
> >>> port: open/direct/binary/skip http://www.rebol.com/ 4
> >connecting to: www.rebol.com
> >>> copy/part port 4
> >== #{4C3E0A3C}
> >>> close port
> >
> >And if I use skip on an already opened port, ie...
> >
> >port: skip port 4
> >
> >it'll work if it's a file, but if an URL it'll just hang with nothing
> >returned.
> >
> >Easy enough to work around this behaviour with files, but does skip with
URLs
> >only work when opening  the port?  Or am I doing something wrong?
> >
> >-- Carl Read
> >
> >-- 
> >To unsubscribe from this list, just send an email to
> >[EMAIL PROTECTED] with unsubscribe as the subject.
> >
> >
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [port/skip]

2004-05-29 Thread Carl Read

Hmm - I was badly wrong about skipping files after an open working okay - REBOL 
totally locks up when I attempt this kind of thing... (Taken from the Users' Guide: 
http://www.rebol.com/docs/core23/rebolcore-14.html#section-8.4)...

fp: open/direct/binary %file.dat
fp: skip fp 10

My example...

>> write %test.txt "abcdefghijkl"
>> fp: open/direct/binary %test.txt
>> fp: skip fp 4

At that point it totally locks up.  Esc's no use - have to use Ctrl/Alt/Delete to shut 
REBOL down.  Using Win98SE.  Is it the same for other Windows users?

-- Carl Read

>Are there any known problems with the use of skip with ports?  As on files it 
>doesn't seem to work for me...
>
>>> write %test.txt "abcdefghijkl"
>>> port: open/direct/binary %test.txt
>>> copy/part port 4
>== #{61626364}
>>> close port
>>> port: open/direct/binary/skip %test.txt 4
>>> copy/part port 4
>== #{61626364}
>>> close port
>
>but does with URLs...
>
>>> port: open/direct/binary http://www.rebol.com/
>connecting to: www.rebol.com
>>> copy/part port 4
>== #{3C48544D}
>>> close port
>>> port: open/direct/binary/skip http://www.rebol.com/ 4
>connecting to: www.rebol.com
>>> copy/part port 4
>== #{4C3E0A3C}
>>> close port
>
>And if I use skip on an already opened port, ie...
>
>port: skip port 4
>
>it'll work if it's a file, but if an URL it'll just hang with nothing 
>returned.
>
>Easy enough to work around this behaviour with files, but does skip with URLs 
>only work when opening  the port?  Or am I doing something wrong?
>
>-- Carl Read
> 
>-- 
>To unsubscribe from this list, just send an email to
>[EMAIL PROTECTED] with unsubscribe as the subject.
>
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [port/skip]

2004-05-29 Thread Carl Read

Are there any known problems with the use of skip with ports?  As on files it doesn't 
seem to work for me...

>> write %test.txt "abcdefghijkl"
>> port: open/direct/binary %test.txt
>> copy/part port 4
== #{61626364}
>> close port
>> port: open/direct/binary/skip %test.txt 4
>> copy/part port 4
== #{61626364}
>> close port

but does with URLs...

>> port: open/direct/binary http://www.rebol.com/
connecting to: www.rebol.com
>> copy/part port 4
== #{3C48544D}
>> close port
>> port: open/direct/binary/skip http://www.rebol.com/ 4
connecting to: www.rebol.com
>> copy/part port 4
== #{4C3E0A3C}
>> close port

And if I use skip on an already opened port, ie...

port: skip port 4

it'll work if it's a file, but if an URL it'll just hang with nothing returned.

Easy enough to work around this behaviour with files, but does skip with URLs only 
work when opening  the port?  Or am I doing something wrong?

-- Carl Read
 
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [RebolML] version 0.3.3 available

2004-05-28 Thread Anton Rolls

Hi Graham,

Are you sure that's correct?

I currently have:

lastrec: 40356

so if you ask me to change it to:

lastrec: 40358

that's only a difference of 2, which rings a possible
alarm bell for me.

Just checking.

Anton.

> The arrival of 3 emails on the list with the same message-id as 
> earlier messages caused RebolML to choke a little :(
> 
> An update is available that appears to fix that problem
> 
> http://s94368865.onlinehome.us/rebolml/
> 
> You'll need to first manually reconfigure the rebolml-config.r 
> file so that
> 
> lastrec: 40358
> 
> and then run rebolml.exe -> update -> update software -> update messages 
> 
> --
> Graham Chiu

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: remove/part on open file port

2004-05-27 Thread Ladislav Mecir

Tom Foster napsal(a):

>hi!
>
>if I do
>
>a: open %file
>remove/part (find a "this")(find a "that")
>close a
>
>it acts like I expect. If I try to loop it through a 
>directory, though,
>
>foreach file read %dir/ [
> a: open file
>remove/part (find a "this")(find a "that")
>close a
>]
>
>I get this error
>
>remove expected range argument of type: number series port
>
>what am I doing wrong?
>
>thanks,
>
>
>
>--
>signature to baby: "doobywoobybooboo"
>-tom
>  
>
It looks like Find didn't find any occurrence of "that".

-L
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] remove/part on open file port

2004-05-27 Thread Tom Foster

hi!

if I do

a: open %file
remove/part (find a "this")(find a "that")
close a

it acts like I expect. If I try to loop it through a 
directory, though,

foreach file read %dir/ [
 a: open file
remove/part (find a "this")(find a "that")
close a
]

I get this error

remove expected range argument of type: number series port

what am I doing wrong?

thanks,



--
signature to baby: "doobywoobybooboo"
-tom
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] test-ignore

2004-05-27 Thread bodind




Dominique

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [RebolML] version 0.3.3 available

2004-05-27 Thread Graham Chiu

The arrival of 3 emails on the list with the same message-id as earlier messages 
caused RebolML to choke a little :(

An update is available that appears to fix that problem

http://s94368865.onlinehome.us/rebolml/

You'll need to first manually reconfigure the rebolml-config.r file so that

lastrec: 40358

and then run rebolml.exe -> update -> update software -> update messages 

--
Graham Chiu
http://www.compkarori.com/cerebrus
http://www.compkarori.com/rebolml

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Testing from remote location

2004-05-27 Thread Alan Swithenbank

Did it pass?...;^)

--Alan
<[EMAIL PROTECTED]>

> 
> Testing the list from a remote location this time. Major changes to 
> sendmail (email handling) and security upgrades have been made to the server.
> 
> -Carl
> 
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
> 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing from remote location

2004-05-27 Thread Carl Sassenrath

Testing the list from a remote location this time. Major changes to 
sendmail (email handling) and security upgrades have been made to the server.

-Carl

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Testing List

2004-05-27 Thread Carl Sassenrath
Ignore this message. Just testing if the list is back up. Major server update. Not 
supposed to affect anything, but of course it did.

-Carl
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Find objects/functions and linking some faces

2004-05-25 Thread lp . legoff

Hi Cyphre,

Nice ! This is exactly something like that !
Thanks !

Regards,

==Philippe.

>From Cyphre <[EMAIL PROTECTED]>:

> 
> Hi Philippe
> 
> > 2/ I have a layout with a box 1 and a box 2 (same drag'n dropable style).
> > I want to draw a line (length = offset box1 - offset box2) beetwen my
> faces.
> > And after I would drag and drop any box, and see the other follow the
> first one
> > (like with hard link).
> >
> 
> not sure it this is what you want but you may look into this script:
> http://www.sweb.cz/fractalus/prototype.r
> 
> Regards,
> 
> Cyphre
> 
> 
> > Any ideas or scripts references in library to begin ?
> >
> > Thanks for help.
> >
> >
> > ==Philippe.
> >
> > -- 
> > To unsubscribe from this list, just send an email to
> > [EMAIL PROTECTED] with unsubscribe as the subject.
> >
> >
> 
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
> 
> 



-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Safeworld/AltME

2004-05-25 Thread Phil Bevan

Thanks Gregg,

Sorted the problem  I updated to 0.4.2 but looks like windows searched to update 
my shortcuts and
picked up an old version (0.2.1 ... now deleted!) which doesnt work.

Cheers Phil


> 
> === Original Message ===
> 
> 
> Hi Phil,
> 
> PB> Been trying (on & off) to get onto AltME Rebol & Rebol-view worlds
> PB> for the last couple of days. All I get is "connect to network".
> 
> Did you upgrade a while back when they moved things? If not, try
> getting the latest and see if that solves the problem.
> 
> -- Gregg 
> 
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
> 
> 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Safeworld/AltME

2004-05-25 Thread Gregg Irwin

Hi Phil,

PB> Been trying (on & off) to get onto AltME Rebol & Rebol-view worlds
PB> for the last couple of days. All I get is "connect to network".

Did you upgrade a while back when they moved things? If not, try
getting the latest and see if that solves the problem.

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Find objects/functions and linking some faces

2004-05-24 Thread Cyphre

Hi Philippe

> 2/ I have a layout with a box 1 and a box 2 (same drag'n dropable style).
> I want to draw a line (length = offset box1 - offset box2) beetwen my
faces.
> And after I would drag and drop any box, and see the other follow the
first one
> (like with hard link).
>

not sure it this is what you want but you may look into this script:
http://www.sweb.cz/fractalus/prototype.r

Regards,

Cyphre


> Any ideas or scripts references in library to begin ?
>
> Thanks for help.
>
>
> ==Philippe.
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Safeworld/AltME

2004-05-24 Thread Phil Bevan

Hi all,

Been trying (on & off) to get onto AltME Rebol & Rebol-view worlds for the last couple 
of days.
All I get is "connect to network".

Is this me or do safeworld have a problem?


Cheers Phil

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [ANN] rebXR experimental pre-release

2004-05-24 Thread Andreas Bolka

Fellow Rebolers!

I'm sure some of you remember Maarten Koopmans' excellent asnyc://
tutorial sent to the list some time ago. What you might not know, is
that Maarten also did some most excellent work combining a standalone
server (based on async://) with rebXR.

Based on Maarten's stuff, I have a new rebXR version in the works,
which includes a standalone server and maybe an async client. Here is
an experimental pre-release of that rebXR version.

You can fetch it at:
- http://earl.strain.at/rebol/rebXR/rebXR-experimental-20040524.zip

Included is a "make-lib.r" script, which combines all rebXR modules
(except the cgi-server module) into a single file, rebxr.r. The async
server is started via

  xmlrpc-serve port-number allowed-methods

So a full async XML-RPC "add" server would be:

-- snip --
do %rebxr.r

sample-add: func [ a b ] [ return a + b ]

xmlrpc-serve 9090 [ sample-add ]
-- snap --

I'd appreciate any bug reports (preferrably via personal email) and
hope to get out the new stable version of rebXR "Real Soon Now" :)

-- 
Best regards,
 Andreas


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] View 1.3

2004-05-24 Thread Raimund Dold


Hi,

what is the status of view 1.3? Yes I know, I can track the tasks, but is 
there a new date?

Raimund
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [library][request-dir] bug?

2004-05-24 Thread Anton Rolls

RT once stressed that it is *very important* that
directories keep their slash.

It's not a Windows vs other platforms issue.
The platform is rebol, so if there is a problem
reading directory paths with a slash on some platforms,
then that is an issue for RT to solve.
We in rebol-land can just assume that all directories
finish with a slash.

I also don't think there is a need to contact RT
about this minor matter.
Let's just fix the code and resubmit to the library.

The reason for the slash removal is probably just for
display formatting purposes, I'd guess.

Anton.

> Anton
>
> > The second line removes the slash, for reasons unknown.
>
> Agreed. Commenting this line out fixes the issue. I thought it might be a
> "cut & paste" error (from request-file) but no. Perhaps it is needed to
> address behavioural differences under other ports (Linux)?
>
> > It is better to keep the final slash for a directory, in my opinion.
>
> Under Windows at least, agreed.
>
>
> Gregg
>
> > In which case, we'd want to make sure that the slash is *always* there,
> > correct? Anyone care to cast their votes about how this should behave?
>
> As per above, I'd find out what problem was being addressed by this code
> before we ask RT to "fix" anything (although an obvious fix would be to
> have 'what-dir 'dirize its result).
>
>
> Regards,
>
>   Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: any chance of a core/pro?

2004-05-24 Thread Phil

A part of the response is the discussion on the view 1.3 release project
track.. : www.rebol.net/cgi-bin/projects/tracks.r?id=196&

- Original Message - 
From: "Gregg Irwin" <[EMAIL PROTECTED]>
To: "Tom Foster" <[EMAIL PROTECTED]>
Sent: Sunday, May 23, 2004 10:01 PM
Subject: [REBOL] Re: any chance of a core/pro?


>
> Hi Tom,
>
> TF> it would sure be nice to have call, encryption, etc, in
> TF> rebol/core.
>
> TF> is a core/pro version in the works?  Why not?
>
> Do you want it in Core so it's free, or so you don't have the overhead
> of Command/View? If the latter, you can get the SDK and use the /Pro
> kernel; if the former, CALL *may* be included in future versions of
> Core (I don't know that RT has committed to it for sure though).
>
> >From their docs:
>
> /Pro is built on top of /Base and includes:
>
> Shell - run external applications and commands
> Library - interface to external libraries (DLLs)
> FastCGI - fast processing of CGI
> Registry - access to the windows registry
> Encryption - Blowfish, Rijndael, AES, and more
> RSA Encryption - public key encryption
> DH/DSA Encryption - digital signatures and key exchange
> SysPort - exception trapping and more
>
>
> If you want all the commercial features in a free version, I guess my
> answer to "why not?" would be, "How will RT stay in business if they
> give everything away for free?"
>
> -- Gregg
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [library][request-dir] bug?

2004-05-23 Thread Ashley Trüter

Anton

> The second line removes the slash, for reasons unknown.

Agreed. Commenting this line out fixes the issue. I thought it might be a 
"cut & paste" error (from request-file) but no. Perhaps it is needed to 
address behavioural differences under other ports (Linux)?

> It is better to keep the final slash for a directory, in my opinion.

Under Windows at least, agreed.


Gregg

> In which case, we'd want to make sure that the slash is *always* there, 
> correct? Anyone care to cast their votes about how this should behave?

As per above, I'd find out what problem was being addressed by this code 
before we ask RT to "fix" anything (although an obvious fix would be to 
have 'what-dir 'dirize its result).


Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: any chance of a core/pro?

2004-05-23 Thread Gregg Irwin

Hi Tom,

TF> it would sure be nice to have call, encryption, etc, in
TF> rebol/core.

TF> is a core/pro version in the works?  Why not?

Do you want it in Core so it's free, or so you don't have the overhead
of Command/View? If the latter, you can get the SDK and use the /Pro
kernel; if the former, CALL *may* be included in future versions of
Core (I don't know that RT has committed to it for sure though).

>From their docs:

/Pro is built on top of /Base and includes:

Shell - run external applications and commands 
Library - interface to external libraries (DLLs) 
FastCGI - fast processing of CGI 
Registry - access to the windows registry 
Encryption - Blowfish, Rijndael, AES, and more 
RSA Encryption - public key encryption 
DH/DSA Encryption - digital signatures and key exchange 
SysPort - exception trapping and more 


If you want all the commercial features in a free version, I guess my
answer to "why not?" would be, "How will RT stay in business if they
give everything away for free?"

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Find objects/functions and linking some faces

2004-05-23 Thread Gregg Irwin

Hi Philippe,

llff> 1/ how is it possible to get a brief listing of objects and functions including
llff> in a script ? Parsing, testing word? or another "not documented" method ?

Something like this?

mark-my-words: context [
init: does [query/clear system/words]
dump: does [
print ['Word tab 'Type tab 'Value]
foreach word query system/words [
print [word tab type? get word tab mold get word]
]
]
]

mark-my-words/init

o: make object! [a: b: c: none]
my-int: 23
I-have-issues: #this-is-my-biggest-issue
fn: does [print "some fun now!"]

mark-my-words/dump


llff> 2/ I have a layout with a box 1 and a box 2 (same drag'n dropable style).
llff> I want to draw a line (length = offset box1 - offset box2) beetwen my faces.
llff> And after I would drag and drop any box, and see the other follow the first one 
llff> (like with hard link).

I don't know of any examples for this, but I did something similar for
a project some time back. Here are a few things that might be useful,
but I can't say for sure:

distance: func [a [pair!] b [pair!] /local tmp] [
tmp: a - b
square-root add (power first tmp 2) (power second tmp 2)
]

all-corners: func [
"Returns all corners of the rectangle given the upper-left and lower-right 
corners."
ul [pair!] "The upper-left corner of the rectangle"
lr [pair!] "The bottom-right corner of the rectangle"
/local result
] [
result: make block! 4
repend result [
ul
to-pair compose [(first ul) (second lr)]  ;ur
to-pair compose [(first lr) (second ul)]  ;ll
lr
]
return result
]

nearest-point: func [
"Returns the point nearest the specified point."
pt [pair!] "The reference point"
points [any-block!] "The points you want to check"
/local result [pair!] ref-dist [decimal!]
] [
result: first points
ref-dist: distance pt first points
foreach p next points [
if (distance pt p) < ref-dist [
ref-dist: distance pt p
result: p
]
]
return result
]

nearest-corner: func [
"Returns the corner of the retangle nearest the specified point."
pt[pair!] "The reference point"
ul[pair!] "The upper-left corner of the rectangle"
lr[pair!] "The bottom-right corner of the rectangle"
] [
nearest-point pt all-corners ul lr
]

To move things, you basically need to see if the action in feel/engage
is 'over or 'away, then just adjust things accordingly. In your case
that will mean keeping lists of linked faces of course.

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] any chance of a core/pro?

2004-05-23 Thread Tom Foster

Hi guys,

it would sure be nice to have call, encryption, etc, in 
rebol/core.

is a core/pro version in the works?  Why not?

:-)

--
signature indignant: "hey!"
-tom
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Segmentation fault from http port

2004-05-23 Thread Hallvard Ystad

Dixit Blaz Segavac (08.52 22.05.2004):
>[...]
>connecting to: home.tiscali.dk
>** Internal Error: Stack overflow
>** Where: parse-head
>** Near: insert tail head-list to-set-word w
> >>
>
>But I remained in the REBOL console after getting heaps of 'connecting 
>to: home.tiscali.dk' messages and then it failed with the stack overflow 
>message.  I think this is the behaviour you expected?

Indeed. A stack overflow would be natural, a segmentation fault is stupid. And as 
Romano pointed out,  rebol should put a limit to the number of redirections in the 
http protocol.

Thanks guys,
HY

Prætera censeo Carthaginem esse delendam


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Segmentation fault from http port

2004-05-23 Thread Hallvard Ystad

Dixit Henrik Mikael Kristensen (14.46 22.05.2004):
>http://rebol.net/cgi-bin/projects/track.r (it's a webpage)

Thanks!
HY


>-- 
>Regards,
>Henrik Mikael Kristensen
>-- 
>To unsubscribe from this list, just send an email to
>[EMAIL PROTECTED] with unsubscribe as the subject.

Prætera censeo Carthaginem esse delendam


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [library][request-dir] bug?

2004-05-23 Thread Gregg Irwin

Anton et al,

AR> It is better to keep the final slash for a directory, in
AR> my opinion.

In which case, we'd want to make sure that the slash is *always*
there, correct? Anyone care to cast their votes about how this should
behave? I'll be glad to collect results and pass them on to RT.

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: reduce [unset!] compose [(unset!)]

2004-05-23 Thread Ladislav Mečíř

Anton Rolls napsal(a):

>...snip... but
>why doesn't the following unset value also disappear?
>
>   >> compose [(unset!)]
>   == [unset!]
>  
>

because UNSET! is a datatype, if you want to get a value of this 
datatype, you can e.g.:

type? () ; == unset!,

which yields what you expect, but not what I expect
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: reduce [unset!] compose [(unset!)]

2004-05-23 Thread Romano Paolo Tenca

Hi Anton,

> >> reduce [unset! either none [][]]
> == [unset! unset]
>
> Why was the first unset! molded and the second formed?

The difference is that:

reduce [unset!]

is a block! with a word! and when you evaluate it, the word get its value,
which is the datatype! unset!.

while:

reduce [either none [][]]

is a block with an expression which, when evaluated, returns an unset value
(not the datatype unset!).

You can see also:

>> type? either none [][]
== unset!
>> type? unset!
== datatype!

> I like the above compose behaviour, it is useful, but
> why doesn't the following unset value also disappear?
>
> >> compose [(unset!)]
> == [unset!]

The same here.

---
Ciao
Romano

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID] Strange problem

2004-05-23 Thread Arie van Wingerden
 

Hi Anton,

that was the old friend copy again, sigh :-[ 
But still I am very glad that you've made me aware of the problem :-) 

Many thanks for your help!

Kind regards,
Arie van Wingerden

Anton Rolls wrote: It is a lack of copy. global/findstr: copy search-text or
find-country copy country-find/text Anton. Hi all, currently I am developing
a small application that displays flags from all over the world off a
website. There is also a search option, in order to search for (a part of) a
countryname. The REBOL/View version I use is 1.2.46.3.1. I have built in
someprint statements for debugging purposes and to show the problem exactly.
Example session: 1. start the app 2. fill out the search field named
"country-find" with the text "ur" 3. click the "Find (next)" button 4.
changethe contents of the search field named "country-find" to the text "ne"
When you look at the displayed lines, you see (among others): Right after
push Find (next) button: global/findstr=(ne) country-find/text=(ne)
Apparently global/findstr has changed somewhere between the last hit and the
press of the "Find (next)" button. However, there is only one place where
global/findstr is being changed AFAIK! It was my intention that
global/findstr would contain the PREVIOUS searchstring. Please see the
attached app Any ideas? TIA With kind regards, Arie van Wingerden 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [library][request-dir] bug?

2004-05-23 Thread Anton Rolls

It is a bug of request-dir.
http://www.rebol.org/library/scripts/request-dir.r

For some reason it is clipping off the final
slash of the current directory.
To see what I mean, issue what-dir before
and after request-dir.

The two lines of code which cause the problem are:

if not all [keep path] [path: any [where what-dir]]
if all [not empty? path slash = last path][remove back tail path]

The first line should be making a copy of what-dir.
The second line removes the slash, for reasons unknown.
It is better to keep the final slash for a directory, in
my opinion.

Anton.

> Anyone else come across this strange behaviour?
> 
> >> system/version
> == 1.2.10.3.1
> >> save %a.txt ""
> >> write %a.txt ""
> >> request-dir
> == none
> >> save %a.txt ""
> ** Access Error: Bad file path: a.txt
> ** Near: save %a.txt ""
> >> write %a.txt ""
> ** Access Error: Bad file path: a.txt
> ** Near: write %a.txt ""
> 
> 
> Regards,
> 
>   Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID] Strange problem

2004-05-23 Thread Anton Rolls

It is a lack of copy.

global/findstr: copy search-text

or

find-country copy country-find/text 

Anton.

> Hi all,
> 
> currently I am developing a small application that displays flags from 
> all over the world off a website.
> There is also a search option, in order to search for (a part of) a 
> countryname.
> 
> The REBOL/View version I use is 1.2.46.3.1.
> 
> I have built in some print statements for debugging purposes and to show 
> the problem exactly.
> 
> Example session:
> 1. start the app
> 2. fill out the search field named "country-find" with the text "ur"
> 3. click the "Find (next)" button
> 4. change the contents of the search field named "country-find" to 
> the text "ne"
> 
> When you look at the displayed lines, you see (among others):
> Right after push Find (next) button:
>global/findstr=(ne)
>country-find/text=(ne)
> 
> Apparently global/findstr has changed somewhere between the last hit and 
> the press of the "Find (next)" button.
> However, there is only one place where global/findstr is being changed  
> AFAIK!
> 
> It was my intention that global/findstr would contain the PREVIOUS 
> searchstring.
> 
> Please see the attached app
> 
> Any ideas?
> 
> TIA
> 
> With kind regards,
> Arie van Wingerden

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] reduce [unset!] compose [(unset!)]

2004-05-23 Thread Anton Rolls

I am looking at the difference in behaviour between
compose and reduce:

First, let's see the result of this either expression:

>> type? either none [][]
== unset!

Ok, now let's look at reduce:

>> reduce [unset! either none [][]]
== [unset! unset]

Why was the first unset! molded and the second formed?


Now let's look at compose:

>> compose [(either none [][])]
== []

I like the above compose behaviour, it is useful, but
why doesn't the following unset value also disappear?

>> compose [(unset!)]
== [unset!]

Anton.
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID] Strange problem

2004-05-23 Thread Arie van Wingerden

Hi all,

trying to solve my problem I found an error in the argument block of the 
"find-country" func.

Currently it says:
search-text /count /ptr /tmpflags
but it should be:
search-text /local count ptr tmpflags

But the problem I posted for in the first place is not solved by this patch.

Thanks,
Arie
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID] Strange problem

2004-05-23 Thread Arie van Wingerden

Hi Carl and others, below the asterisks line follows the script
*
rebol [
Title:"Flag Viewer"
Author:"Arie van Wingerden"
]
   
{write/lines %log mold country-flag}

global: make object! [
;**
; The URL of the webpage holding the names of the different countries
; for which a flag is present.
;**
allflags: 
http://www.cia.gov/cia/publications/factbook/docs/flagsoftheworld.html   
;**
; The URL of the webpage holding an enlarged flag of a certain country.
; Each country has a specific prefix code, like xx.
; The image of the flag is URL/xx-lgflag.gif.
; The flad description can be found in URL/xx-flag.html

;**   
flagpage: http://www.cia.gov/cia/publications/factbook/flags/

;**   
; This field will contain (after get-flags has been called) :
; - the countryname
; - the 2 character countrycode
;**
flags: copy ""

;**   
; This field will be used as a pointer to the current flag
; and will be initialized to 1
;**
curflag: 1

;**   
; This field remembers the last find string in order to be able to
; carry on searching with the same string
;**
findstr: copy ""

;**   
; This field remembers the pointer to the country last found
;**
findptr: 1
]

get-flags: func [
{Fetch countrynames and codes of all flags needed}
/local countrycode countryname flaglist flags found
][
flags: copy []
parse read global/allflags [
thru "Select a Country"
copy flaglist
to ""
to end
]
forever [
found:
parse flaglist [
thru "geos/"
copy countrycode
to "."
thru ">"
copy countryname
to "<"
copy flaglist
to end
]
if not found [ break ]
either find [ "ay" "gz" "oo" "pf" "pg" "we" "xo" "xq" "xx" "zh" 
"zn" ] countrycode [
{Due to error on website this code points to nowhere
so we ignore this entry for the time being}
][
append flags reduce [ countryname countrycode ]
]
]
;**
; Sort the list by countryname
;**
sort/skip flags 2
;**
; Return the list of countrycodes and names implicitly
;**
flags
]

show-flags: func [
{Main program: show and search for flags}
][
view layout [
country-name: label current-country/name 600 black bold 
font-name font-sans-serif font-size 14
country-flag: image fetch-url
across
country-find: field 400
find-button: button "Find (next)" [
print ""
print "Right after push Find (next) button:"
print rejoin [ "   global/findstr=(" global/findstr ")" ]
print rejoin [ "   country-find/text=(" country-find/text ")" ]
either find-country country-find/text [
country-name/text: current-country/name
country-flag/image: load fetch-url
show country-name
show country-flag   
msg-info/text: copy ""
][
msg-info/text: "Country could not be found!"
]
show msg-info
show country-find
]
next-button: button "Next Country" [
next-country
country-name/text: current-country/name
country-flag/image: l

[REBOL] Re: [VID] Strange problem

2004-05-23 Thread Carl Read

Hi Arie,

Attachments are stripped with this list.  If possible, just send the script in the 
body of the email, or if it's too large, place it on a website (if you have one) and 
just show us the URL.

-- Carl Read.

>Hi all,
>
>currently I am developing a small application that displays flags from 
>all over the world off a website.
>There is also a search option, in order to search for (a part of) a 
>countryname.
>
>The REBOL/View version I use is 1.2.46.3.1.
>
>I have built in some print statements for debugging purposes and to show 
>the problem exactly.
>
>Example session:
>1. start the app
>2. fill out the search field named "country-find" with the text "ur"
>3. click the "Find (next)" button
>4. change the contents of the search field named "country-find" to 
>the text "ne"
>
>When you look at the displayed lines, you see (among others):
>Right after push Find (next) button:
>   global/findstr=(ne)
>   country-find/text=(ne)
>
>Apparently global/findstr has changed somewhere between the last hit and 
>the press of the "Find (next)" button.
>However, there is only one place where global/findstr is being changed  
>AFAIK!
>
>It was my intention that global/findstr would contain the PREVIOUS 
>searchstring.
>
>Please see the attached app
>
>Any ideas?
>
>TIA
>
>With kind regards,
>Arie van Wingerden

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [VID] Strange problem

2004-05-23 Thread Arie van Wingerden
Hi all,

currently I am developing a small application that displays flags from 
all over the world off a website.
There is also a search option, in order to search for (a part of) a 
countryname.

The REBOL/View version I use is 1.2.46.3.1.

I have built in some print statements for debugging purposes and to show 
the problem exactly.

Example session:
1. start the app
2. fill out the search field named "country-find" with the text "ur"
3. click the "Find (next)" button
4. change the contents of the search field named "country-find" to 
the text "ne"

When you look at the displayed lines, you see (among others):
Right after push Find (next) button:
   global/findstr=(ne)
   country-find/text=(ne)

Apparently global/findstr has changed somewhere between the last hit and 
the press of the "Find (next)" button.
However, there is only one place where global/findstr is being changed  
AFAIK!

It was my intention that global/findstr would contain the PREVIOUS 
searchstring.

Please see the attached app

Any ideas?

TIA

With kind regards,
Arie van Wingerden




-- Binary/unsupported file stripped by Ecartis --
-- Type: text/x-rebol
-- File: flags.r


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-23 Thread Gabriele Santilli

Hi Ashley,

On Sunday, May 23, 2004, 1:03:57 AM, you wrote:

AT> While I can certainly see the benefit of getting as many folks as possible
AT> to use the latest VID 1.3 beta, it might not be such a good idea to
AT> present a moving target (and little current documentation) as someone's
AT> first exposure to REBOL. Just my quick thoughts on why I recommend 1.2.10
AT> to new comers. ;)

1.2.10, though, does not support installation, nor it does support
the View desktop. (It is there, but don't expect it to really work
as it wasn't meant to.)

As  long  as  you're  willing to play with 1.2.10 (say, instead of
1.2.8),  then  you're probably willing to play with one of the 1.3
betas,  since  they  have less bugs actually. (They also have some
important changes, though.)

Regards,
   Gabriele.
-- 
Gabriele Santilli <[EMAIL PROTECTED]>  --  REBOL Programmer
Amiga Group Italia sez. L'Aquila  ---   SOON: http://www.rebol.it/

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-23 Thread Gabriele Santilli

Hi Carl,

On Sunday, May 23, 2004, 1:45:53 AM, you wrote:

CR> Type DESKTOP or SET-USER for settings.
>>> browse http://www.rebol.com/
CR> ** Script Error: Feature not available in this REBOL
CR> ** Near: browse http://www.rebol.com/

CR> (-:  A case of swings and roundabouts, I think.  Browse
CR> is working again in 1.2.46, though perhaps there's other
CR> problems with it.

That's  because  there's  no  installation  in 1.2.10; you need to
manually issue SET-BROWSER-PATH before being able to use BROWSE in
1.2.10.

Regards,
   Gabriele.
-- 
Gabriele Santilli <[EMAIL PROTECTED]>  --  REBOL Programmer
Amiga Group Italia sez. L'Aquila  ---   SOON: http://www.rebol.it/

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: waiting on tcp ports

2004-05-23 Thread Gabriele Santilli

Hi Miguel,

On Saturday, May 22, 2004, 4:40:17 PM, you wrote:

ML> ready: wait/all [port1 port2 10]

Since  you are using /ALL, READY can be a block with both ports in
it.  So  either  you should remove the /ALL refinement (so that at
most one port will be returned each time), of you should read from
all ports returned.

BTW, I'd recommend not using READ-IO unless really necessary (that
is, unless you are using async-modes). Use COPY instead.

Regards,
   Gabriele.
-- 
Gabriele Santilli <[EMAIL PROTECTED]>  --  REBOL Programmer
Amiga Group Italia sez. L'Aquila  ---   SOON: http://www.rebol.it/

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [library][request-dir] bug?

2004-05-22 Thread Ashley Trüter

Anyone else come across this strange behaviour?

>> system/version
== 1.2.10.3.1
>> save %a.txt ""
>> write %a.txt ""
>> request-dir
== none
>> save %a.txt ""
** Access Error: Bad file path: a.txt
** Near: save %a.txt ""
>> write %a.txt ""
** Access Error: Bad file path: a.txt
** Near: write %a.txt ""


Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-22 Thread Carl Read

>> That's not the latest beta.
>> Get the latest beta 1.2.46.3.1 here:
>> http://www.rebol.net/projects/view1.3/downloads/
>> http://www.rebol.net/projects/view1.3/downloads/rebview1246031.exe
>
>There's beta (bleeding edge) and then there's beta (one year stable). A 
>number of folks have asked me about the "/only" refinement, to which my 
>stock answer is:
>
>"The /only refinement of 'compose was introduced in REBOL/Core 2.5, 
>http://www.rebol.com/docs/changes.html#section-5.3, which ships with the 
>SDK by default. For REBOL/View, you need to run the latest "beta" 
>(1.2.10.3.1 released on 30-May-2003) and available from 
>http://www.reboltech.com/downloads/.";
>
>While I can certainly see the benefit of getting as many folks as possible 
>to use the latest VID 1.3 beta, it might not be such a good idea to 
>present a moving target (and little current documentation) as someone's 
>first exposure to REBOL. Just my quick thoughts on why I recommend 1.2.10 
>to new comers. ;)

>> about
REBOL/View 1.2.10.3.1 30-May-2003
Copyright 2000-2002 REBOL Technologies.  All rights reserved.
REBOL is a trademark of REBOL Technologies. WWW.REBOL.COM

Type DESKTOP or SET-USER for settings.
>> browse http://www.rebol.com/
** Script Error: Feature not available in this REBOL
** Near: browse http://www.rebol.com/

(-:  A case of swings and roundabouts, I think.  Browse is working again in 1.2.46, 
though perhaps there's other problems with it.

-- Carl Read

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-22 Thread Ashley Trüter

> That's not the latest beta.
> Get the latest beta 1.2.46.3.1 here:
> http://www.rebol.net/projects/view1.3/downloads/
> http://www.rebol.net/projects/view1.3/downloads/rebview1246031.exe

There's beta (bleeding edge) and then there's beta (one year stable). A 
number of folks have asked me about the "/only" refinement, to which my 
stock answer is:

"The /only refinement of 'compose was introduced in REBOL/Core 2.5, 
http://www.rebol.com/docs/changes.html#section-5.3, which ships with the 
SDK by default. For REBOL/View, you need to run the latest "beta" 
(1.2.10.3.1 released on 30-May-2003) and available from 
http://www.reboltech.com/downloads/.";

While I can certainly see the benefit of getting as many folks as possible 
to use the latest VID 1.3 beta, it might not be such a good idea to 
present a moving target (and little current documentation) as someone's 
first exposure to REBOL. Just my quick thoughts on why I recommend 1.2.10 
to new comers. ;)


Regards,

Ashley

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Find objects/functions and linking some faces

2004-05-22 Thread lp . legoff


Hi list,

two questions :

1/ how is it possible to get a brief listing of objects and functions including 
in a script ? Parsing, testing word? or another "not documented" method ?

2/ I have a layout with a box 1 and a box 2 (same drag'n dropable style).
I want to draw a line (length = offset box1 - offset box2) beetwen my faces.
And after I would drag and drop any box, and see the other follow the first one 
(like with hard link).

Any ideas or scripts references in library to begin ?

Thanks for help.


==Philippe.

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: waiting on tcp ports

2004-05-22 Thread Anton Rolls

You are assuming ready is one of the two
ports, however, wait can return none! (when
you get a 10 second timeout).
So check that ready is really a port, like this:

if port? ready [ ... ]

Anton.

> Hi all,
> I have a problem.
> I execute this code:
> port1: open/lines/direct tcp://:4321
> port2: open/lines/direct tcp://:8989
> data: make string! 1000
> 
> ready: wait/all [port1 port2 10]
> if ready [
>   probe read-io ready data 1000
> ]
>   to listen on multiple ports.
> I observe the following error:
> ** Script Error: read-io expected port argument of type: port
> ** Near: probe read-io ready data 1000
> 
> How can I read the data when listening on two or more ports?
> 
> (the same error with dispatch)
> 
> Thanx,
> Miguel Lopez

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-22 Thread Anton Rolls

Cyphre,

I think it's great idea to make the code public.
It's easy to slap together a web page with your code.
It's not easy to make a online forum :)
But if it's online, search bots will index it and
we will have a great service.
It doesn't matter if the code is not complete.
Surely there are great parts of the code which work
well and little known discoveries in there which
would be of great benefit.

My message to all rebols hoarding their code:
"publish, even if incomplete".

Even if you started a program, but only had time
to write down five minutes of your thoughts for
the implementation, that's useful for other people.
It's useful to know simply that someone else had an
interest, who that person was, and when they were thinking
about it.

The above goes for me too, I'm just resisting publishing
some of my recent code because it makes for a good
incentive to finish my rebsite synchronizer... which I've
been banging away on recently.

Anton.

> I'd like to add that If anoyne is interested to just use(and test) my
> prototype styles feel free to contact me and I'll send latest
> style package.
> I hope I'll open a website for those style package soon so I could track
> automatically all the downloads and collect your
> bugreports/ideas/opinions/improvements etc. Maybe this could help make the
> styles better and more robust and finally make them as version 1.0 ;)
>
> But before I put my efforts to do this I'd like to know if anyone is
> interested in this form of cooperation with ML comunity. (so far only few
> people contacted me asking to send my styles so I'm not sure if it make
> sense to public my still incomplete work)
>
> so what do you think?
>
> Regards,
>
> Cyphre

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] waiting on tcp ports

2004-05-22 Thread Miguel Lopez
Hi all,
I have a problem.
I execute this code:
port1: open/lines/direct tcp://:4321
port2: open/lines/direct tcp://:8989
data: make string! 1000

ready: wait/all [port1 port2 10]
if ready [
probe read-io ready data 1000
]
  to listen on multiple ports.
I observe the following error:
** Script Error: read-io expected port argument of type: port
** Near: probe read-io ready data 1000

How can I read the data when listening on two or more ports?

(the same error with dispatch)

Thanx,
Miguel Lopez

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [REBOL.org] Recent changes

2004-05-22 Thread rebol
[REBOL] [REBOL.org] Recent changes

This is an automatic email from REBOL.org, the REBOL Script Library to notify you of 
recent changes to the Library.

===changes===
read-below.r
--change: new script
--change: documentation added or updated
--title: read-below
--owners: brett
--author: Brett Handley
--purpose: Reads all files and directories below specified directory
--url: http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=read-below.r

topic-tags.r
--change: discussion post(s) made
--title: Topic Tags
--owners: christian
--author: Christian Ensel
--purpose: Makes tagging the mailing list a little bit more comfortable.

Lists all topic tags in a window which I like to have open while tagging.
Clicking on any tag copies it into clipboard so I only have to paste it into browser.

--url: http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=topic-tags.r


===additional information===
new and updated scripts: 
http://www.rebol.org/cgi-bin/cgiwrap/rebol/search.r?special-filter=recent
recent discussion: http://www.rebol.org/cgi-bin/cgiwrap/rebol/cpt-active-posts.r
recent documentation: http://www.rebol.org/cgi-bin/cgiwrap/rebol/cpt-recent-docs.r

===end===
--The Library People
--22-May-2004

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Segmentation fault from http port

2004-05-22 Thread Henrik Mikael Kristensen

Hallvard Ystad wrote:

> Hello
> 
> I repeatedly get a segmentation fault when trying to read 
> http://home.tiscali.dk/Andy%20Warhol2.htm on a Mac OSX. Try to read the same URL 
> from a Win2k, and do not get the fault. The URL behaves a bit funny (quasi-circular 
> redirects). Turn on trace/net, and you'll see (but hurry, the URL mess-up could be 
> fixed any time).
> 
> Here's from the end of the Win2k trace:
> Net-log: "HTTP/1.1 302 Found"
> ** User Error: URL error: http://home.tiscali.dk/Andy%20Warhol2.htm//
> /
> /
> ///
> ** Near: t: read http://home.tiscali.dk/Andy%20Warhol2.htm
> 
> 
> And here's from the Mac OSX ditto:
> Net-log: "HTTP/1.1 302 Found"
> Segmentation fault
>   [www:~] root#
> 
> 
> Is this a known bug? (How does one find out? Is there a public bug tracker 
> somewhere?)

http://rebol.net/cgi-bin/projects/track.r (it's a webpage)

-- 
Regards,
Henrik Mikael Kristensen
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-22 Thread Arie van Wingerden
 

Hi all,

in the first place many thanks to Carl, Anton, Gregg and Cyphre for the
appropriate comments!

Cyphre I am indeed impressed by the jpg picture. As Gregg says it's
importantthat people help each other. Given my (small) project and the fact
that I am quite new to VID as well, I am still willing to test / try out
somecode as far (just as far as my capacities go, of course!)

So, please do send me the code in private and please let me know what I need
to know for a start ;-)

Thanks again!

Met vriendelijke groet / with kind regards,
   Arie van Wingerden
http://home.zonnet.nl/rebolution/[1]


Cyphre wrote: Hi, I did bar menu and context menu style
http://www.rebol.cz/~cyphre/menu.jpg[2] (the screnshot is from a bit older
older version) If you are interested let me know privately so I'll send you
the latest version. Regards, Cyphre - Original Message - From: "Arie
van Wingerden" <[EMAIL PROTECTED]>[3] To: <[EMAIL PROTECTED]>[4] Sent:
Friday, May 21, 2004 2:03 PM Subject: [REBOL] [VID//menu] Hi all, since I am
creating a REBOL program with a GUI, I needed to implement a menu structure.
I've read "REBOL/View Developer's Guide" and "A Beginner's Guide to REBOL
Visual Interfaces", but neither of them has the required info. Any hints
where to look? TIA. Met vriendelijke groet / with kind regards, Arie van
Wingerden http://home.zonnet.nl/rebolution/[5] -- To unsubscribe from this
list, just send an email to [EMAIL PROTECTED] with unsubscribe as
the subject. 


--- Links ---
   1 http://home.zonnet.nl/rebolution/
   2 http://www.rebol.cz/~cyphre/menu.jpg
   3 mailto:[EMAIL PROTECTED]
   4 mailto:[EMAIL PROTECTED]
   5 http://home.zonnet.nl/rebolution/
   6 mailto:[EMAIL PROTECTED]
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Segmentation fault from http port

2004-05-22 Thread Blaz Segavac

Hi Ystad,

I tried reading that same page running REBOL/Core 2.5.6.2.4 under Mac OS 
X 10.3.3...and got the follow result:

 >> read http://home.tiscali.dk/Andy%20Warhol2.htm

connecting to: home.tiscali.dk
connecting to: home.tiscali.dk
connecting to: home.tiscali.dk
.
.
.
connecting to: home.tiscali.dk
connecting to: home.tiscali.dk
connecting to: home.tiscali.dk
** Internal Error: Stack overflow
** Where: parse-head
** Near: insert tail head-list to-set-word w
 >>

But I remained in the REBOL console after getting heaps of 'connecting 
to: home.tiscali.dk' messages and then it failed with the stack overflow 
message.  I think this is the behaviour you expected?


Cheers,
Blaz



Hallvard Ystad wrote:
> Hello
> 
> I repeatedly get a segmentation fault when trying to read 
> http://home.tiscali.dk/Andy%20Warhol2.htm on a Mac OSX. Try to read the same URL 
> from a Win2k, and do not get the fault. The URL behaves a bit funny (quasi-circular 
> redirects). Turn on trace/net, and you'll see (but hurry, the URL mess-up could be 
> fixed any time).
> 
> Here's from the end of the Win2k trace:
> Net-log: "HTTP/1.1 302 Found"
> ** User Error: URL error: http://home.tiscali.dk/Andy%20Warhol2.htm//
> /
> /
> ///
> ** Near: t: read http://home.tiscali.dk/Andy%20Warhol2.htm
> 
> 
> And here's from the Mac OSX ditto:
> Net-log: "HTTP/1.1 302 Found"
> Segmentation fault
>   [www:~] root#
> 
> 
> Is this a known bug? (How does one find out? Is there a public bug tracker 
> somewhere?)
> 
> HY
> 
> Prætera censeo Carthaginem esse delendam
> 
> 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: FTP upload/download

2004-05-21 Thread Bohdan or Rosemary Lechnowsky

Júlio,

If you are running Windows, download

http://www.sonic.net/~amicom/bin/Smooth-Copy.exe

This is version 2.511.  It is written entirely in Rebol/View/Pro and has 
been encapped as an executable for easy distribution.  Simply copy it to 
where you want it installed and run it from that location.  It will create 
all necessary files silently.  Click on the "?" in the upper right corner 
for help.

Added improved FTP handling recently thanks to Romano Paolo Tenca's 
ftp-util v0.1.57.2.

The program can be run from the command line.  If you need info and you 
can't find it in the help index, let me know!

I use it to back up close to 4000 files a night via FTP from a remote web 
server and ~45000 files on my local network.

A number of my clients use it daily for backing up local and remote files 
in a production environment as well.

Have fun!

Bohdan "Bo" Lechnowsky
Lechnowsky Technical Consulting

P.S. Look at the history file to get a feel for how much work I've put into 
this application over the past ~2.5 years.  If you find it useful, please 
let me know.  If you find it REALLY useful, I accept donations! ;-)  If you 
need some changes for your particular purposes, contact me off-list to 
discuss them.

At 03:34 PM 5/19/04 -0300, you wrote:

>Hi,
>
>Can anyone point me a script for upload (optionaly download) of a whole
>directory to a ftp server? This server host my entire web site. It´s not
>necessary a user interaction, once it will be scheduled to run at night.
>
>Thanks in advance.
>
>
>--
>Júlio César Santana
> TRE/SE CODAN
>(079) 216-8681
>
>
>--
>To unsubscribe from this list, just send an email to
>[EMAIL PROTECTED] with unsubscribe as the subject.


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [html][tables] removing gaps from table cells and rows within css...

2004-05-21 Thread Maxim Olivier-Adlhoch

I checked it out and neither iexplorer or netscape seem to support the
border-spacing css tags.

so, I'm using the trusty, old, html 4.01  cellspacing  table attribute... which,
of course, works...

its funny how everyone seems to say... don't use html tags anymore, css is much
better...

 yet browsers don't fully support css, which means you still have to use html
tags...


thanks anyhow.

-MAx

- Original Message - 
From: "Maxim Olivier-Adlhoch" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 21, 2004 11:36 PM
Subject: [REBOL] Re: [html][tables] removing gaps from table cells and rows
within css...


>
> thanks Roland...
>
> > table {
> >   ...
> >   border-collapse:collapse;
> > }
>
> this is a little extreme, it collapses the edges themselves...and it ends up
> looking all screwed up !?
>
> > BTW: this site seems to have decent online references and tutorials for
> > HTML/CSS...
> >
> > http://www.w3schools.com/default.asp
>
> THIS IS A GOD SEND...
>
>
> thanks
>
>
>
> -MAx
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [html][tables] removing gaps from table cells and rows within css...

2004-05-21 Thread Maxim Olivier-Adlhoch

thanks Roland...

> table {
>   ...
>   border-collapse:collapse;
> }

this is a little extreme, it collapses the edges themselves...and it ends up
looking all screwed up !?

> BTW: this site seems to have decent online references and tutorials for
> HTML/CSS...
>
> http://www.w3schools.com/default.asp

THIS IS A GOD SEND...


thanks



-MAx

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Gregg Irwin

Hi Cyphre,

C> I'd like to add that If anoyne is interested to just use(and test) my
C> prototype styles feel free to contact me and I'll send latest style
C> package...

C> But before I put my efforts to do this I'd like to know if anyone is
C> interested...

Maybe you could hook up with Sunanda and/or Max to talk about making
it available as a package for REBOL.org. It could also be set up as
individual scripts with multiple owners, but the package approach
might work better in this case.

To all: I think Cyphre's work would be a terrific resource to have
available, supported, and improved, but I don't want to ask him to put
too much effort into it if others aren't willing to help as well.

The tag team has shown that a few dedicated people can make a big
difference in a short amount of time (almost 2,000 edits so far, by
the three main taggers!). Even if it only focused on the menu styles
to begin with, this project could be a big benefit to many people.

This seems like a great way to join the REBOLution. Even if you're
relatively new to REBOL, testing and evaluation are important
contributions you can make.

Go REBOL! :)

-- Gregg

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Segmentation fault from http port

2004-05-21 Thread Romano Paolo Tenca

Hi,

> I repeatedly get a segmentation fault when trying to read
http://home.tiscali.dk/Andy%20Warhol2.htm on a Mac OSX. Try to read the same
URL from a Win2k, and do not get the fault. The URL behaves a bit funny
(quasi-circular redirects). Turn on trace/net, and you'll see (but hurry, the
URL mess-up could be fixed any time).

Rebol http protocol should put a limit to the number of redirections. Norw it
is not set any limit, but at the end Rebol finds parse recursion limits or
something other internal limit (memory, number of ports...?).

Mozilla, for example, displays a message "limit number of redirection
reached".

Segmentation faults on *nix are "the default error" :-)

---
Ciao
Romano

>
> Here's from the end of the Win2k trace:
> Net-log: "HTTP/1.1 302 Found"
> ** User Error: URL error:
http://home.tiscali.dk/Andy%20Warhol2.htm//
>
/
>
/
> ///
> ** Near: t: read http://home.tiscali.dk/Andy%20Warhol2.htm
> >>
>
> And here's from the Mac OSX ditto:
> Net-log: "HTTP/1.1 302 Found"
> Segmentation fault
>   [www:~] root#
>
>
> Is this a known bug? (How does one find out? Is there a public bug tracker
somewhere?)
>
> HY
>
> Prætera censeo Carthaginem esse delendam
>
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Cyphre

Hi Gregg,

just read your post(few minutes I sent mine one) ;-)

For those who don't read Rebol-View AltME world, here is my announce which I
decided to post also here on this great Mailing List:

"Hello guys...as you could noticed I'm currently not much active on the
View1.3 project as I would like to be(too busy with my job and also in my
private live...). Therefore I decided to "free" all the prototype code I did
on IOS DEVELOPER server for View1.3 developing purposes.
If you are one of the lucky men who have currently enough time and want to
actively participate on the styles developement and feel my older works
could be useful or speed up the style developement feel free to
review/bugfix/enhance/recycle/reuse(or whatever) my work.
If there is anyone who has no access on the IOS server and want to work on
the styles just contact me privately so I can send him the current scripts.
I know my code is not much commented so if anyone have any questions or need
help regarding my code I'll try to answer as much I can do.
I believe I get back to the VID1.3 project soon(or at least to the finishing
part of the project) and try to be usefull."


I'd like to add that If anoyne is interested to just use(and test) my
prototype styles feel free to contact me and I'll send latest style package.
I hope I'll open a website for those style package soon so I could track
automatically all the downloads and collect your
bugreports/ideas/opinions/improvements etc. Maybe this could help make the
styles better and more robust and finally make them as version 1.0 ;)

But before I put my efforts to do this I'd like to know if anyone is
interested in this form of cooperation with ML comunity. (so far only few
people contacted me asking to send my styles so I'm not sure if it make
sense to public my still incomplete work)

so what do you think?

Regards,

Cyphre

- Original Message - 
From: "Gregg Irwin" <[EMAIL PROTECTED]>
To: "Arie van Wingerden" <[EMAIL PROTECTED]>
Sent: Friday, May 21, 2004 11:30 PM
Subject: [REBOL] Re: [VID//menu]


>
> Hi Arie,
>
> AvW> since I am creating a REBOL program with a GUI, I needed to implement
a menu
> AvW> structure.
>
> In addition to DocKimbel's work, I believe Frank Sievertsen did a menu
> style (look for the FX5 folder in the View Desktop). The most recent,
> and perhaps most complete, is Cyphre's terrific work, but I'm not sure
> what he has publicly released for use at this point. Hopefully he'll
> chime in here and let us know.
>
> -- Gregg
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Cyphre

Hi,

I did bar menu and context menu style http://www.rebol.cz/~cyphre/menu.jpg
(the screnshot is from a bit older older version) If you are interested let
me know privately so I'll send you the latest version.

Regards,

Cyphre

- Original Message - 
From: "Arie van Wingerden" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 21, 2004 2:03 PM
Subject: [REBOL] [VID//menu]


>
> Hi all,
>
> since I am creating a REBOL program with a GUI, I needed to implement a
menu
> structure.
>
> I've read "REBOL/View Developer's Guide" and "A Beginner's Guide to REBOL
> Visual Interfaces", but neither of them has the required info.
>
> Any hints where to look?
>
> TIA.
>
> Met vriendelijke groet / with kind regards,
>Arie van Wingerden
> http://home.zonnet.nl/rebolution/
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.
>
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Gregg Irwin

Hi Arie,

AvW> since I am creating a REBOL program with a GUI, I needed to implement a menu
AvW> structure.

In addition to DocKimbel's work, I believe Frank Sievertsen did a menu
style (look for the FX5 folder in the View Desktop). The most recent,
and perhaps most complete, is Cyphre's terrific work, but I'm not sure
what he has publicly released for use at this point. Hopefully he'll
chime in here and let us know.

-- Gregg 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [EXIF] [translation] help anyone?

2004-05-21 Thread Jason Cunliffe
I found two scripts by Piotr Gapinski on rebol.org to to view and edit digicam EXIF 
files. 
http://www.rebol.org/cgi-bin/cgiwrap/rebol/search.r?find=EXIF

...Could anyone translate the comments in them - [Polish, I think]?

thanks 
-- Jason 

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Segmentation fault from http port

2004-05-21 Thread Hallvard Ystad

Hello

I repeatedly get a segmentation fault when trying to read 
http://home.tiscali.dk/Andy%20Warhol2.htm on a Mac OSX. Try to read the same URL from 
a Win2k, and do not get the fault. The URL behaves a bit funny (quasi-circular 
redirects). Turn on trace/net, and you'll see (but hurry, the URL mess-up could be 
fixed any time).

Here's from the end of the Win2k trace:
Net-log: "HTTP/1.1 302 Found"
** User Error: URL error: http://home.tiscali.dk/Andy%20Warhol2.htm//
/
/
///
** Near: t: read http://home.tiscali.dk/Andy%20Warhol2.htm
>>

And here's from the Mac OSX ditto:
Net-log: "HTTP/1.1 302 Found"
Segmentation fault
  [www:~] root#


Is this a known bug? (How does one find out? Is there a public bug tracker somewhere?)

HY

Prætera censeo Carthaginem esse delendam


-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Anton Rolls

A long while ago, DocKimbel implemented a menu system
in his win95 skin. Open up your View 1.2.1 interpreter
and do this code in the console:

dir: first split-path path-thru http://rebol.softinnov.org/demo.r
make-dir/deep dir
change-dir dir
do load-thru http://rebol.softinnov.org/do-win95.r

There are problems with newer View betas and this older code,
though, so there's going to be some hacking required.
I noticed that the good Doc patched 'layout to add his
own refinement, so that is an obvious place to look first.

Anton.

> Hi all,
> 
> since I am creating a REBOL program with a GUI, I needed to 
> implement a menu
> structure.
> 
> I've read "REBOL/View Developer's Guide" and "A Beginner's Guide to REBOL
> Visual Interfaces", but neither of them has the required info.
> 
> Any hints where to look?
> 
> TIA.
> 
> Met vriendelijke groet / with kind regards,
>Arie van Wingerden

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Latest View beta refuses to connect to the 'net...

2004-05-21 Thread Anton Rolls

That's not the latest beta.
Get the latest beta 1.2.46.3.1 here:
http://www.rebol.net/projects/view1.3/downloads/
http://www.rebol.net/projects/view1.3/downloads/rebview1246031.exe

There's a way to hack around this problem anyway:

set-browser-path "explorer.exe "
browse http://www.rebol.com/

Anton.

> I installed 'view1210031.exe' at the suggestion of the author of 
> the 'RebDB' database
> utility as my current Rebol version failed to work with 
> itdue, he noted, to its failure to   support the 'only' 
> refinement. The database works beautifully now...but the message 
> below results from clicking any icon on the 'desktop'...
> Surely supporting 'only' and web access are not mutually incompatible ??
> **
> 
> >> desktop
> connecting to: www.rebol.com
> connecting to: www.rebol.com
> ** Script Error: Feature not available in this REBOL
> ** Where: switch
> ** Near: browse full-path icon/item

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Latest View beta refuses to connect to the 'net...

2004-05-21 Thread John Dutcher
I installed 'view1210031.exe' at the suggestion of the author of the 'RebDB' database
utility as my current Rebol version failed to work with itdue, he noted, to its 
failure to   support the 'only' refinement. The database works beautifully now...but 
the message below results from clicking any icon on the 'desktop'...
Surely supporting 'only' and web access are not mutually incompatible ??
**
>> desktop
connecting to: www.rebol.com
connecting to: www.rebol.com
** Script Error: Feature not available in this REBOL
** Where: switch
** Near: browse full-path icon/item


-
Do you Yahoo!?
Yahoo! Domains - Claim yours for only $14.70/year

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: [VID//menu]

2004-05-21 Thread Carl Read

>Hi all,
>
>since I am creating a REBOL program with a GUI, I needed to implement a menu
>structure.
>
>I've read "REBOL/View Developer's Guide" and "A Beginner's Guide to REBOL
>Visual Interfaces", but neither of them has the required info.
>
>Any hints where to look?

You can use choice for simple menus...

view layout [choice "aa" "bb" "cc" [probe face/text]]

Something I noticed recently though was the choose function...

>> ? choose
USAGE:
CHOOSE choices function /style styl /window winf /offset xy /across
DESCRIPTION:
 Generates a choice selector menu, vertical or horizontal.
 CHOOSE is a function value.
ARGUMENTS:
 choices -- Block of items to display (Type: block)
 function -- Function to call on selection (Type: function none)
REFINEMENTS:
 /style
 styl -- The style choice button (Type: object)
 /window
 winf -- The parent window to appear in (Type: object)
 /offset
 xy -- Offset of choice box (Type: pair)
 /across -- Use horizontal layout

This is the most simple use of it...

choose ["aa" "bb" "cc"] func [face][probe face/text]

How you'd make use of it for more complex menus within a window I've not looked into 
though.

-- Carl Read

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] [VID//menu]

2004-05-21 Thread Arie van Wingerden

Hi all,

since I am creating a REBOL program with a GUI, I needed to implement a menu
structure.

I've read "REBOL/View Developer's Guide" and "A Beginner's Guide to REBOL
Visual Interfaces", but neither of them has the required info.

Any hints where to look?

TIA.

Met vriendelijke groet / with kind regards,
   Arie van Wingerden
http://home.zonnet.nl/rebolution/

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Different folder/directory setup for Rebol/View...

2004-05-20 Thread Mike

Yep -- on XP (home and multimedia versions) Rebol default install is 
C:\rebol\view\ 

mike behar

comcast1 wrote:

>=== Original Message ===
>
>
>Hello John,
>
>Welcome to the list !  (since I think you're new here  ;-)
>
>The default is C:\REBOL\VIEW for Win2k.
>Since I do not have Win XP running I really don't know the situation 
>there.
>But I guess it should be the same there!
>
>Can anyone in the list having Win XP comment on this?
>
>Well not sure about the rest here but I have a partition just for rebol/core/view and 
>install to that partition.This is so I can have 1 install dir and access from 
>Win98se/2000 Pro/XP Pro on this box
>  
>

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Different folder/directory setup for Rebol/View...

2004-05-20 Thread comcast1


=== Original Message ===


Hello John,

Welcome to the list !  (since I think you're new here  ;-)

The default is C:\REBOL\VIEW for Win2k.
Since I do not have Win XP running I really don't know the situation 
there.
But I guess it should be the same there!

Can anyone in the list having Win XP comment on this?

Well not sure about the rest here but I have a partition just for rebol/core/view and 
install to that partition.This is so I can have 1 install dir and access from 
Win98se/2000 Pro/XP Pro on this box
-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



[REBOL] Re: Different folder/directory setup for Rebol/View...

2004-05-20 Thread Arie van Wingerden

Hello John,

Welcome to the list !  (since I think you're new here  ;-)

The default is C:\REBOL\VIEW for Win2k.
Since I do not have Win XP running I really don't know the situation there.
But I guess it should be the same there!

Can anyone in the list having Win XP comment on this?

Met vriendelijke groet / with kind regards,
   Arie van Wingerden
http://home.zonnet.nl/rebolution/

- Original Message - 
From: "John Dutcher" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 19, 2004 2:14 PM
Subject: [REBOL] Different folder/directory setup for Rebol/View...


> Can anyone comment on why when I run the 'install' executable for
Rebol/View  at my workstation (Win XP Pro) the directory structure is simply
c:\Rebol
>
> when I copy the install executable to floppy and install at home on Win
2000 Pro
> the directory structure established is c:\Rebol\View
>
> and does it really matter at any point ?
>
> (Core = ver 2.5, View = ver 1.155.0)
>
>
> -
> Do you Yahoo!?
> SBC Yahoo! - Internet access at a great low price.
>
> -- 
> To unsubscribe from this list, just send an email to
> [EMAIL PROTECTED] with unsubscribe as the subject.

-- 
To unsubscribe from this list, just send an email to
[EMAIL PROTECTED] with unsubscribe as the subject.



  1   2   3   4   5   6   7   8   9   10   >