[REBOL] ftp limits? Re:(2)

2000-03-01 Thread nigelb
Thanks for that. The directory that causes the problem is set drwxr-xr-x and all the files are -r--r--r--. So I don't think this is the same problem. This certainly looks like a bug in Rebol to me. The directory downloaded through an ftp client results in a 137k download (about 1500 files). I

[REBOL] Catching Web Site Access Errors Re:

2000-03-01 Thread lmecir
Title: Catching Web Site Access Errors Hi, you may try the following: exists?: func [ { Determines if a file or URL exists. Checks for invalid HTML pages. } target [file! url!] /local port comp ts][ if error? try [ port: make port! target query port ] [return false] if not

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

2000-03-01 Thread giesse
[EMAIL PROTECTED] wrote: I'm using direct right now, I have checked pass-through, too, but wasn't able to resolve this way ... Using a pass-thru you can define copy, pick etc. to do exactly what you want. Notice that the native READ is rougly equivalent to: read: func [target] [ port:

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

2000-03-01 Thread giesse
[EMAIL PROTECTED] wrote: find-port: func["Find a free port to connect to" /local port-num p] [ port-num: + random 1 while [error? try [p: system/words/open join tcp://: port-num]] [ print "while" port-num: port-num + 1 ]

[REBOL] save/load with { in long strings broken!

2000-03-01 Thread VoToNi
comment[ save/load with "{" in long strings broken! Long Strings looks like {{xx} when molded. No escaping of inner "{"! found bug when trying {a ^{ in a string} . "^}" exits, "^{" does not! This comments

[REBOL] Unknown script error

2000-03-01 Thread blenain
I am trying to author a script to download via ftp. Yesterday I hurdled the problem of getting files bigger than 16 MB by using a function suggested by John to "chunk" the files into smaller pieces thus avoiding memory problems. Today, I have another problem. It appears that I cannot transfer

[REBOL] return volume names

2000-03-01 Thread versation
Can anyone think of a way to return the volume names of removeable media? that is, you have a CD mounted in Windows, MacOS or Linux. Can Rebol return the name that is part of the CD, not just its location in the system? thanks, Pat

[REBOL] CGI - Generator

2000-03-01 Thread strejcek
Hello list! I wanna introduce here one tool for authors of cgis written in REBOL. I call it CGI - Generator. I can write a lot about it here, but it will be better if you look at: http://www.rebol.cz/cgi/ There's all about this tool, including documentation, example

[REBOL] ftp limits? Re:(3)

2000-03-01 Thread sterling
Hi Nigel, I tried this and did get a timeout but I also got a timeout under Netscape reading the same site and received no directory listeing there either. That, unfortunately, tells me nothing other than the server is really slow. You mention that you always get "some error or timeout", so

[REBOL] ftp limits? Re:(3)

2000-03-01 Thread larry
Hi Nigel, Sterling There does appear to be some kind of problem with the REBOL ftp is this instance. I was able to get the dir listing with WS-FTP although the server was slow (took about 150 seconds). With REBOL I got (don't need the user e-mail if set-net has e-mail configured):

[REBOL] ftp limits? Re:(4)

2000-03-01 Thread sterling
Somebody will take a look at it. I did manage to get the same server response error which I think is generated if the server times out before REBOL does and closes the connection. REBOL expects to hear something back and does not so it fails to parse the empty response. Thanks for the info

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

2000-03-01 Thread ingo
Hi Gabriele, that looks much better than my solution ... about pass-thru, I think I don't understand enough to create my own version of 'copy and friends without help. Also be warned, I assembled it by looking what another client, and the server really did, it doesn't work on the 2228

[REBOL] Unknown script error Re:

2000-03-01 Thread ingo
Hi Brian, the error seems to be in the ftp protocol implementation. Looks to me like Rebol's waiting for a server response, that it doesn't get. So it would be after the download is completed, while closing the connection. But you should wait for someone more experienced in networking

[REBOL] need help with internet traffic counter

2000-03-01 Thread karin . verstockt
short version: I need a multiplatform internettraffic counter that counts all upload and download internet traffic from my PC to beyond my ISP. Something very simple like "DU Meter" (www.tucows.com) for win9x would do just fine except that it calculates ALL traffic. I just want to know my

[REBOL] Unknown script error Re:

2000-03-01 Thread sterling
I haven't been keeping up with the beginning of this thread at all so I don't know what you are doing exactly (and don't have much time to deal with it too much myself either). However, I'm guessing that these are ftp transfers you are dealing with, right? That line you are wondering about is

[REBOL] Sending bytes to TCP port? Re:

2000-03-01 Thread larry
Hi Stan At the present time, REBOL does not directly support these sorts of operations. However, it is possible to do it using REBOL. I don't really have the time to write all of the pieces up, but these comments may get you started. 1) REBOL's binary! datatype is the closest thing to your