• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp10
r3wp469
total:479

results window for this page: [start: 401 end: 479]

world-name: r3wp

Group: #Boron ... Open Source REBOL Clone [web-public]
Endo:
16-Dec-2011
Hi, I can setup mediawiki (or any other) on my web site: http://www.moldibi.com
which is up for 7-8 years. Its hosted on hostgator. I have unlimited 
storage / MySQL DB / bandwidth etc.

But I only have 1 domain name. If it is ok I can create any number 
of subdomains like world.moldibi.com or red.moldibi.com and give 
you a FTP account if necessary.
Group: !REBOL2 Releases ... Discuss 2.x releases [web-public]
joannak:
28-Dec-2009
Adding SSL to Vid is among the things I'd like to see. Does not need 
to be fast (C-code), but  nowdays many sites don't allow email/ftp:s 
without some kind of TLS or similar.. (Not my specialty, please don't 
ask me to implement) :)
Group: !REBOL3 Schemes ... Implementors guide [web-public]
Graham:
7-Jan-2010
I'm also unclear as to the license behind community contributed stuff. 
 Say Anton spends a couple of weeks doing an ftp scheme ... under 
what license should it be publshed as ?
Graham:
9-Jan-2010
+OK, what's next ?   Ftp :)
Graham:
9-Jan-2010
I found this ftp sequence diagram which might help understand what 
happens http://www.eventhelix.com/Realtimemantra/Networking/FTP.pdf
Graham:
9-Jan-2010
Does r2 ftp support passive or active ftp ?
Graham:
9-Jan-2010
Here's a reference for ftp client implementors http://cr.yp.to/ftp.html

Note that Bernstein recommends only using Passive mode as Active 
FTP is a security risk.
Henrik:
9-Jan-2010
I can't even remember ever having to use active FTP, because passive 
didn't work. It's usually always passive that you have to use.
Graham:
9-Jan-2010
This isn't of much use yet .. http://rebol.wik.is/Rebol3/Schemes/Ftp
Graham:
9-Jan-2010
Just tidied up my ftp skeleton ... why is that a wrote doesn't trigger 
the next event ?
Andreas:
9-Jan-2010
so you're struck after write ftp ["PASV"] ?
Graham:
9-Jan-2010
Managed to get a directory listing with my ftp scheme :)
Graham:
10-Jan-2010
http://rebol.wik.is/Rebol3/Schemes/Ftp
Updated ... I really need a rebol syntax formatter for this
Graham:
10-Jan-2010
Have you fixed my ftp scheme so that it works properly yet?
Graham:
10-Jan-2010
anyone can test this http://rebol.wik.is/Rebol3/Schemes/Ftp
Graham:
10-Jan-2010
I was trying to find a ftp site with a lot of data to read from ...
Graham:
11-Jan-2010
Using a timeout value, largish, I can read a 5000 file listing in 
a ftp directory.  Posted latest code.
Graham:
11-Jan-2010
Downloaded a 16Mb file using my ftp scheme ... streamed it to disk 
directly rather than saving in any buffer.
Graham:
11-Jan-2010
http://rebol.wik.is/Rebol3/Schemes/Ftp

Updated so that you can supply a callback to commands

eg: 

[ LIST (:print) ]

or 

[RETR "hugefile" %downloads/hugefile.mov ]
Graham:
11-Jan-2010
It looks like I should be able to re-use the directory parser from 
the r2 ftp scheme ...
Graham:
11-Jan-2010
Currently streaming a ftp download of the ubuntu server iso image 
... will see how that longs before I get an error.
Graham:
11-Jan-2010
One good thing .. on r2 I doubt I could download a 500Mb file using 
ftp .. but I'm nearly there now and the windows task manager is only 
showing 12Mb of ram usage with 0-1 % cpu
Graham:
11-Jan-2010
except the r2 ftp scheme doesn't support that ... AFAIK
Andreas:
11-Jan-2010
ftp: open ftp://...
write/append %... copy/part ftp 10240
Andreas:
11-Jan-2010
wrap a `while [not tail? ftp] [....]` around this
Graham:
11-Jan-2010
I did this as otherwise I ended up pipelining the ftp server :(
Graham:
11-Jan-2010
in case it's an Amiga ftp server ...
Graham:
11-Jan-2010
must be why when I login to chat .. .I start getting more messages 
from my ftp handler!
Andreas:
11-Jan-2010
as there's a WAIT on the ftp scheme port already, simply OPENing 
the dataport suffices to have it scheduled and receiving events
Graham:
11-Jan-2010
I don't know if the ftp server will take a full path but the client 
can
Andreas:
11-Jan-2010
could i have a minimal FTP thingie with just USER/PASS/PASV/RETR?
Graham:
11-Jan-2010
Do you actually use ftp much ?
Andreas:
11-Jan-2010
so why do we do ftp, then :) ?
Graham:
11-Jan-2010
well, I still occasionally use ftp across my network ...
Andreas:
11-Jan-2010
so anything that once was ftp is now either http or ssh :)
Andreas:
11-Jan-2010
a minimal ftp login skeleton, no error handling: http://bolka.at/share/prot-ftpget.r
[temporary url]
Graham:
12-Jan-2010
ftp STOR now supported ..
Steeve:
12-Jan-2010
Small optimization:


Graham, if you try to connect to a host with an ip as a string, then 
a DNS lookup is performed even if it's useless.

On the other side, if you provide an ip as a tuple, no lookup is 
performed and it's a straight connection.


So as an example, when you enter in PASV mode (ftp proto) try this 
instead.

data-address: to-tuple to-block form copy/part tmp 4
Graham:
13-Jan-2010
now my ftp scheme is doing what I need .. I can move onto my fax:// 
scheme which uses the ftp protocol but on port 4559
Graham:
13-Jan-2010
This is pretty cool ... I can talk the hylafax server running in 
virtualbox using the ftp scheme.
Graham:
14-Jan-2010
The fax protocol is similar to ftp but uses port 4559, and uses additional 
commands
Graham:
14-Jan-2010
On testing a ftp server behind NAT ( well, it's a home system ), 
the ftp server responds to a PASV command with its local non addressable 
network address.
Graham:
14-Jan-2010
Meanwhile my little fix for the ftp server behind NAT has allowed 
me to finally open up a data connection to my fax server
Graham:
18-Jan-2010
Since FTP, andIMAP have folder structures, I propose that we use 
cd, ls, pwd etc for those schemes that support this.  This is no 
different to the lookup that is done by read, write, length? etc
Graham:
19-Jan-2010
I started with daytime, moved to smtp, and then ftp, fax and now 
imap.  I am using pretty much the same template with changes appropriate 
to the protocol.
Graham:
19-Jan-2010
Daytime is too trivial to learn much from ... maybe FTP instead??
Graham:
19-Jan-2010
I do this in ftp, fax and imap .. but I should go back and do this 
for smtp as well
Graham:
19-Jan-2010
I think in my ftp scheme I access port/data directly so I can stream 
to the file system .. so it would require a tiny change if there 
were two sep buffers
Pekr:
20-Jan-2010
OK, I will do few tests with my FTP Linux server, during the evening 
...
Steeve:
21-Jan-2010
(reworking on ftp scheme currently )
Graham:
21-Jan-2010
going to implement ftp site to site transfer ?  :)
Graham:
21-Jan-2010
which is what I have in my imap scheme ... could use similar for 
ftp
Steeve:
21-Jan-2010
for example, the state diagram used to open a ftp session looks like 
this currently.

USER
<< ( 
	(1 2) error
	(4 5) fail
	3 >> PASS << ( 
		2		success
		1		error
		(4 5)	fail
		3 >> ACCT << (
				2   	success
				(1 3) 	error
				4 5 	fail
		)
	)
)

it's a dialect
Graham:
3-Jul-2010
pop uses .crlf
ftp closes the data port
Group: !REBOL3 ... [web-public]
Steeve:
29-Jan-2010
Jeez i wasted my time to develop a script to launch remote commands 
from an AS400 on my PC using FTP.

And I fail on the finish line because CALL don't do the last easy 
part of the job.
T_T
Steeve:
29-Jan-2010
a little strange to use ftp to do that, but it's the only protocol 
allowed here :-)
Pekr:
31-Jul-2010
GUI, console (not willing to experiment that much with the Windows 
default one), call, protocols (ftp, email, easy-cgi), DB (mysql, 
sqlite)
Gregg:
19-Sep-2010
Optimizing file deletes means first avoiding the standard DELETE 
func. It reads the dir each time which can kill you if you have a 
large dir or, heaven forbid, point it at an FTP location. You can 
build on CLEAR easily though.

    delete-all-files-in-dir: func [dir /local port] [
        port: open dir
        clear port
        close port
    ]


I think my tree deleters all rely on some of my other stuff, like 
FILE-LIST and DO-IN-DIR (now standard as IN-DIR). They generally 
have a callback option as well, so you can track progress.
Andreas:
22-Sep-2010
Yes. Many different scenarios. I have never used REBOL's ftp protocol, 
for example.
Pekr:
22-Sep-2010
I am fully with Gregg here. At least http(s), ftp, smtp, pop, could 
be allowed by default ...
Andreas:
22-Sep-2010
Pekr, import [http ftp smtp pop] is tough typing, for sure.
Pekr:
30-Oct-2010
in my opinion, R3 is already useable, apart from GUI, maybe pop, 
ftp, proxy support (nowadays I don't need it though), and ugly console 
:-)
GrahamC:
7-Apr-2011
because people would expect to have things like ftp, smtp, pop3 in 
the distributed exe
PeterWood:
7-Apr-2011
It is going to be a long. long time before there is a version of 
R3 published which inlcudes ftp, smtp and pop3.
Gregg:
8-Apr-2011
There are two sides to R3 adoption for me. First is the available 
features. I greatly prefer to have basic schemes (HTTP and FTP in 
particular) built in. A basic GUI system is also important to me, 
but I can use R3 for non-GUI things without that. The second, and 
more important, aspect is stability and robustness. Is the module 
model stable, is it robust? Will tasks ever work? Are there outstanding 
core bugs that will prove problematic if they are never fixed. That 
is, if RT never did any more work on R3, could I use it for production 
work?
Group: ReBorCon 2011 ... REBOL & Boron Conference [web-public]
Pekr:
27-Feb-2011
BrianH - from end user's perspective, you might not be right - missing 
pop, smtp, ftp, sqlite, mysql, postgress in official distro, just 
to name the few, GUI's not useable yet too, hence ppl keep tied to 
R2 ....
Group: Core ... Discuss core issues [web-public]
james_nak:
16-Oct-2010
Hi, I have a client whose ftp username has an ampersand @ in it. 
I think that's causing a problem accessing it. Is there a way around 
that or should that work?
Sunanda:
16-Oct-2010
Try read (write etc) like this:

     read [ scheme: 'ftp host: domain.com user: user-domain.com pass: 
     "password" ]

Or see what other people have tried in the past:
    http://www.rebol.org/ml-topic-index.r?i=ftp
Brock:
16-Feb-2011
Does anyone know why modifeid? and info? return a date without the 
time when accessing a file through ftp lon a windows ftp server? 
 Is this a limitation of windows, the ftp scheme, the ftp server, 
or the version of Rebol (I'm using the latest 2.7 - activated ODBC 
connection all dll access)?  Are there any known fixes to this - 
a quick google didn't find anything?
Brock:
16-Feb-2011
ecall there is a ftp update out there, does anyone know if that fixes 
this limiation?
Maxim:
16-Feb-2011
it should return the time, I've got ftp synching routines which use 
info? and use date/time.   so I'd bet its a limitation on the server, 
or its using a non-standard date string in its LIST command.
Brock:
16-Feb-2011
Okay, I'll see if our server admin can change something that will 
help.  Using Romano's FTP-Patch.r shows the date for files, but there 
is some code in place to get it to work from what I can tell.
BrianH:
16-Feb-2011
You might also try connecting with the FTP server with a command 
line client like NcFTP and looking at the listings directly.
GrahamC:
16-Feb-2011
or just modify the existing ftp client ... the formatting is a parse 
rule
GrahamC:
16-Feb-2011
ftp protocol ...
amacleod:
27-Mar-2011
trying to get info on a file via ftp using to long version of teh 
port spec as my user name is an email address:

fport: [
    scheme: 'FTP
    host: "ftp.example.com"
    target: %/file.txt
    user: "bill@ example.com"
    pass: "vbs"
]

I can read it with "read fport"

but I can not get other info from it like:

print modified? fport

Whats the method here?
Group: Red ... Red language group [web-public]
Kaj:
30-Jun-2011
But I can upload a file to FTP now
Group: REBOL Syntax ... Discussions about REBOL syntax [web-public]
BrianH:
23-Feb-2012
The escape decoding gets done too early. The decoding should not 
be done after until the URI structure has been parsed. If you do 
the escape decoding too early, characters that are escaped so that 
they won't be treated as syntax characters (like /) are treated as 
syntax characters erroneously. This is a bad problem for schemes 
like HTTP or FTP that can use usernames and passwords, because the 
passwords in particular either get corrupted or have inappropriately 
restricted character sets. IDN encoding should be put off until the 
last minute too, once we add support for Unicode to the url handlers 
of HTTP, plus any others that should support that standard.
Maxim:
23-Feb-2012
yep... and I've lost hours trying to get some ftp code to work because 
it had strange urls (with passwds)... which the interpreter would 
break all the time. 

At some point you are mystified by what is the actual URL being sent 
to the server.


once you see what is going on, you can get it to work, but realizing 
that you didn't actually send the url you expect, can take quite 
a long time to realize and properly fix once you've got a whole app 
expecting/playing with urls.
401 / 4791234[5]