[REBOL] Parse Re:(7)

2000-04-18 Thread agem



greater? to binary! "a" to binary "AB"
>> true
greater? "a" "AB"
>> false

works allways?

Volker

> Hello [EMAIL PROTECTED]!
> 
> On 17-Apr-00, you wrote:
> 
>  s> use
>  s> parse/case
> 
> Actually, we were talking about the comparison operators, such as
> >, <, >= etc.
> 
> Regards,
> Gabriele.
> -- 
> Gabriele Santilli <[EMAIL PROTECTED]> - Amigan - REBOL programmer
> Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/
> 
> [
subject: "RE: [REBOL] Re: Parse Re:(5)"
to: [[EMAIL PROTECTED]]
]

greater? to binary! "a" to binary "AB"
>> true
greater? "a" "AB"
>> false

works allways?

Volker

> Hello [EMAIL PROTECTED]!
> 
> On 17-Apr-00, you wrote:
> 
>  s> use
>  s> parse/case
> 
> Actually, we were talking about the comparison operators, such as
> >, <, >= etc.
> 
> Regards,
> Gabriele.
> -- 
> Gabriele Santilli <[EMAIL PROTECTED]> - Amigan - REBOL programmer
> Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/
> 
> 




[REBOL] Parse Re:(7)

2000-04-18 Thread agem



greater? to binary! "a" to binary "AB"
>> true
greater? "a" "AB"
>> false

works allways?

Volker

> Hello [EMAIL PROTECTED]!
> 
> On 17-Apr-00, you wrote:
> 
>  s> use
>  s> parse/case
> 
> Actually, we were talking about the comparison operators, such as
> >, <, >= etc.
> 
> Regards,
> Gabriele.
> -- 
> Gabriele Santilli <[EMAIL PROTECTED]> - Amigan - REBOL programmer
> Amiga Group Italia sez. L'Aquila -- http://www.amyresource.it/AGI/
> 
> 




[REBOL] Why can't I read this URL? Re:(2)

2000-04-18 Thread ralph

Interesting and disconcerting article, Allen. It does not affect what I am
currently doing, but it definitely could put a damper on many of the ways I
see companies wanting to use eBAY.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 18, 2000 7:06 PM
> To: [EMAIL PROTECTED]
> Subject: [REBOL] Why can't I read this URL? Re:
>
>
>
> Hi Ralph,
>
> Be careful what you use this for, sadly eBAY are starting to sue for
> commercial use of their data
>
> Auction Ruling could harm ecommerce
> http://www.zdnet.com/anchordesk/story/story_4698.html
>
> Bidder's Edge Case
> http://www.zdnet.com/zdnn/stories/news/0,4586,2550905,00.html
>
> Cheers,
>
> Allen K
>
> - Original Message -
> From: <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 19, 2000 7:23 AM
> Subject: [REBOL] Why can't I read this URL?
>
>
> > Trying to do a simple search on eBAY where:
> >
> >
> > a: read/lines
> >
> http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetR
esult&Sort
> Property=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y
>
> then I can parse out the info I want, but I get ** User Error: URL error
in
> REBOL.
>
> What am I not seeing here? Other types of search URL's from eBAY work
great
> for me.
>
> Thanks,
>
> --Ralph Roberts
>
>
>





[REBOL] Why can't I read this URL? Re:

2000-04-18 Thread allenk


Hi Ralph,

Be careful what you use this for, sadly eBAY are starting to sue for
commercial use of their data

Auction Ruling could harm ecommerce
http://www.zdnet.com/anchordesk/story/story_4698.html

Bidder's Edge Case
http://www.zdnet.com/zdnn/stories/news/0,4586,2550905,00.html

Cheers,

Allen K

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 19, 2000 7:23 AM
Subject: [REBOL] Why can't I read this URL?


> Trying to do a simple search on eBAY where:
>
>
> a: read/lines
>
http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetResult&Sort
> Property=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y
>
> then I can parse out the info I want, but I get ** User Error: URL error
in
> REBOL.
>
> What am I not seeing here? Other types of search URL's from eBAY work
great
> for me.
>
> Thanks,
>
> --Ralph Roberts
>
>
>




[REBOL] Why can't I read this URL? Re:

2000-04-18 Thread rryost

Outlook Express stops forming a URL at the end of the first line, suggesting
there's a terminating char, such as EOL, there??

Russell [EMAIL PROTECTED]
- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 18, 2000 2:23 PM
Subject: [REBOL] Why can't I read this URL?


> Trying to do a simple search on eBAY where:
>
>
> a: read/lines
>
http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetResult&Sort
> Property=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y
>
> then I can parse out the info I want, but I get ** User Error: URL error
in
> REBOL.
>
> What am I not seeing here? Other types of search URL's from eBAY work
great
> for me.
>
> Thanks,
>
> --Ralph Roberts
>
>




[REBOL] Why can't I read this URL? Re:

2000-04-18 Thread kevin

Ralph wrote:
> Trying to do a simple search on eBAY where:
> a: read/lines
> http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetResult&Sort
> Property=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y
> 
> then I can parse out the info I want, but I get ** User Error: URL error in
> REBOL.

If you do it this way, it will work:

a: read/lines to-url 
"http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetResult&SortProperty=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y"

Specifying the URL with the %22 is causing REBOL to choke... it's 
being un-escaped prior to calling the read (see your error message 
output to verify this has occurred), but not being re-escaped during 
the read.  Putting it in quotes and doing a to-url circumvents the 
problem.

This should probably be reported to [EMAIL PROTECTED] as a bug; 
anyone know if it already has been?

Cheers,
Kev


Kevin McKinnon, Network Engineer [EMAIL PROTECTED]
Sunshine Communications http://www.sunshinecable.com

PGP Public Key: http://www.dockmaster.net/pgp.html   PGP 6.0 www.pgp.com




[REBOL] Why can't I read this URL?

2000-04-18 Thread ralph

Trying to do a simple search on eBAY where:


a: read/lines
http://search-desc.ebay.com/search/search.dll?MfcISAPICommand=GetResult&Sort
Property=MetaEndSort&ht=1&query=%22Mike+Resnick%22&srchdesc=y

then I can parse out the info I want, but I get ** User Error: URL error in
REBOL.

What am I not seeing here? Other types of search URL's from eBAY work great
for me.

Thanks,

--Ralph Roberts





[REBOL] Can't get two rebolscripts to message each others reliably Re:(5)

2000-04-18 Thread deadzaphod

I seem to be having a similar problem with my rebol webserver script, where 
it works fine for a while, then the port stops working, causeing client 
programs to get errors and the server to hang.

  Cal Dixon ([EMAIL PROTECTED])
  -><-

>From: [EMAIL PROTECTED]
>Reply-To: [EMAIL PROTECTED]
>To: [EMAIL PROTECTED]
>Subject: [REBOL] Re: Can't get two rebolscripts to message each others 
>reliably Re:(3)
>Date: Tue, 18 Apr 2000 11:37:16 +0100
>
>[EMAIL PROTECTED] wrote:
> > Hi  I was wonder if you want to try
> > three instances of rebol and the third being a
> > proxy for the two. I'm wondering what might
> > happen. :)
>
>Well.. but.. I don't see what would be different between the proxy and one
>of these scripts, except the proxy also sent the message on to somewhere
>else? I mean, it would be the same script but with a couple of extra
>instructions. Or?
>
>I tried another idea, though. I added a timeout on the receiving end, and 
>if
>it timed out, it closed the server and started another one on another port.
>If the transmitter couldn't connect, it also tried this second port (with
>appropriate timings so the active port was contacted). It still didn't
>work. Weird. Seems like the rebol interpreter becomes totally unable to
>receive messages on any port after a few of these messages. Too bad I don't
>really know anything about networking, because I really don't understand
>what's going on here.
>
>--
>   /Johan Rönnblom, Team Amiga
>
>Economy is not science. At best it is politics - at worst religion.
>

__
Get Your Private, Free Email at http://www.hotmail.com




[REBOL] Re: Can't get two rebolscripts to message each others reliably Re:(3)

2000-04-18 Thread jrblom

[EMAIL PROTECTED] wrote:
> Hi  I was wonder if you want to try
> three instances of rebol and the third being a
> proxy for the two. I'm wondering what might
> happen. :)

Well.. but.. I don't see what would be different between the proxy and one
of these scripts, except the proxy also sent the message on to somewhere
else? I mean, it would be the same script but with a couple of extra
instructions. Or?

I tried another idea, though. I added a timeout on the receiving end, and if
it timed out, it closed the server and started another one on another port.
If the transmitter couldn't connect, it also tried this second port (with
appropriate timings so the active port was contacted). It still didn't
work. Weird. Seems like the rebol interpreter becomes totally unable to
receive messages on any port after a few of these messages. Too bad I don't
really know anything about networking, because I really don't understand
what's going on here.

-- 
  /Johan Rönnblom, Team Amiga

Economy is not science. At best it is politics - at worst religion.




[REBOL] unsubsribe Re:

2000-04-18 Thread Al . Bri

Hi!
To unsubscribe from the list, send an email with _only_ this:
unsubscribe
in the subject line. Or click on this link (in an advanced email
client):
[EMAIL PROTECTED]?subject=unsubscribe
Or run this rebol script:
[REBOL []
send [EMAIL PROTECTED] "unsubscribe"
]

I hope that helps! Oh, and remember to really, really check your spelling.

Andrew Martin
Ping-ing the fjords...
ICQ: 26227169
http://members.xoom.com/AndrewMartin/
-><-



- Original Message - 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, 18 April 2000 7:38 PM
Subject: [REBOL] unsubsribe


> >   help - get this information
> >   suggest - make a suggestion about the list
> >   selma-source - get the current source code to SELMA
> >   get msg N - send yourself message #N
> >   subscribe - add yourself to the list
> >   unsubscribe - remove yourself from the list
> > 
> > No other commands are provided at this time.
> > 
> > -SELMA
> > 
> 
> 




[REBOL] Can't get two rebolscripts to message each others reliably Re:(3)

2000-04-18 Thread tim781

Hi  I was wonder if you want to try
three instances of rebol and the third being a
proxy for the two. I'm wondering what might
happen. :)

timmy


[EMAIL PROTECTED] wrote:

> [EMAIL PROTECTED] wrote:
> > Sounds reasonable but it closes for me too. I only got 45 on a win98, 41
> > on win95. Curiously when I use both machines at the same time they process
> > 85 (roughly a sum of the two). Also I recently upgraded win98 to view b3
> > and now it does 44 (84 between the two).
> >
> > Perhaps this information will be useful to you. I wonder if it is a memory
> > issue (either system or port related). I wish you luck in solving it.
>
> Hmhm. Well now I know it's not unique to the Amiga implementation at least,
> and that's a start. Tried some ideas I had but it still doesn't work. :/
>
> Michal Kracik wrote:
> > I got 3949 messages on 127.0.0.1, Windows NT 4.0, REBOL/View beta.
> > I think there can be a problem with opening and closing sockets too
> > fast.
>
> That's an idea, but I inserted a one second delay and it didn't change
> anything (except it now takes 2 minutes to test here, and would take over
> an hour for you ;)
>
> --
>   /Johan Rönnblom, Team Amiga
>
> Laboratory experiments have shown that 100% of rats died.





[REBOL] unsubsribe

2000-04-18 Thread delbos

>   help - get this information
>   suggest - make a suggestion about the list
>   selma-source - get the current source code to SELMA
>   get msg N - send yourself message #N
>   subscribe - add yourself to the list
>   unsubscribe - remove yourself from the list
> 
> No other commands are provided at this time.
> 
> -SELMA
> 





[REBOL] my view has expired Re:

2000-04-18 Thread Petr . Krenzelok



[EMAIL PROTECTED] wrote:

> how do i get a new copy?
>

well, you shouldn't ask on general ml :-)

will send you description in a private email

-pekr-