[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] 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: 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] 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] [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] 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] 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 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: 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 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: [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: [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.