r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Core] Discuss core issues

Anton
31-May-2006
[4782x2]
Sorry, that wasn't very clear..  Use my code snippet above just to 
create the path.
	port: make port! ftp-spec  ; only path, no target

 port/state/flags: port/state/flags or system/standard/port-flags/open-new
	port/handler/open port
	close port
; now try to open/direct ... etc..
There is some debug info available with:
	trace/net on
Oldes
31-May-2006
[4784]
I found the problem, you have this:

{Server error: tcp 550 Can't change directory to} thru {:} {No such 
file or directory}
but my ftp server's response is only:

Server error: tcp 550 httpdocs/test/1/2/: No such file or directory
Anton
31-May-2006
[4785x3]
Aha..! yes, very good. I knew that piece of code was possibly brittle. 
(Thankyou FTP, thankyou.)
Maybe I should just look for "tcp 550" what do you think ?
or   parse response [thru "error" thru " tcp " thru " 550 "]
Oldes
31-May-2006
[4788]
yes, that's working now
Anton
31-May-2006
[4789x2]
Cool. Does it work even in direct mode ?
I think you can just open the port once now.
Oldes
31-May-2006
[4791x2]
no
YES, it's working even in direct mode. But must use the file name 
as well
Anton
31-May-2006
[4793x2]
Yes, that's right, you would have got the "Cannot open a dir port 
in direct mode" error ?
Congratulations. You successfully used my patch. :-)
Oldes
31-May-2006
[4795x2]
and I think, this should be enough: thru "tcp 550" to end
lines 81 and 107
Anton
31-May-2006
[4797]
Could be. Thanks for your report.
Oldes
31-May-2006
[4798]
Thanks you for the patch:-))
Anton
31-May-2006
[4799x3]
Most welcome, Oldes.
What's your FTP server, by the way ?
(I mean, what's the name and version of the FTP server ?)
Oldes
31-May-2006
[4802]
ProFTPD 1.2.10 Server (ProFTPD)
Anton
31-May-2006
[4803x2]
Thankyou.
Ok uploaded new version to the same location.
Gordon
2-Jun-2006
[4805]
Hello;
  I'm getting an
   "Internal Error: No more global variable space
     Where: to-word
** Near: to word! :value"


 when i run a program that after reading a file into memory, it then 
 does a character by character parse of the file and writes any words 
 that it finds to a new file.  The code that seems to be causing a 
 problem is this:

    Write/Append OutFileNameFull reduce [to-word WordStr newline]   


It gets through about 1.5 MB before it "runs out of global variable 
space".


Why is it running out of global variable space when there is only 
the one variable (to-word WordStr)?
Oldes
2-Jun-2006
[4806x7]
you reached Rebol's limit - you have declared too many global variables 
with the command to-word WordStr. Do you really need it?
Why you convert it to word anyway?
Write/Append OutFileNameFull join WordStr newline
Nut if I understand it well, you need content of variable which is 
stored in the wordStr
(nut = but)
>> w: "someWord"
== "someWord"
>> reduce [to-word w]
== [someWord]
>> find first system/words 'someWord
== [someWord]
but this is interesting:
>> length? first system/words
== 2600
>> newword
** Script Error: newword has no value
** Near: newword
>> length? first system/words
== 2601
Gordon
2-Jun-2006
[4813x2]
Thanks but WordStr is a string and I need it to be a word type.
Actually, you are right.  Thanks Oldes.  I was able to write it all 
to the file then read it back in and parse it into 'words' without 
using 'to-word'.
Anton
4-Jun-2006
[4815]
This is a frequent stumbling block with beginners - using more words 
than necessary. Words are really good at expressing distinct concepts 
(ie. variables). If you have lots of similar data, then that really 
just calls for a series.
Graham
4-Jun-2006
[4816x2]
Anyone tried printf from the library?
>> do %printf.r
>> printf ["%d" .02 ]
** Access Error: Cannot open sprintf
** Where: routine-call
** Near: routine: make routine! spec library
Gabriele
5-Jun-2006
[4818]
note that r3 will make it easier to create non-bound words (i.e. 
symbols) for the cases when you want to use words as symbols (dialects, 
data, etc) and not variables. anyway, as anton says, i don't think 
anyone would ever really need more than 8k distinct words, so when 
you get that error it means that probably you are doing something 
wrong :) (ah, and given that contexts are extensible in r3, i expect 
the 8k word limit to go away)
Pekr
5-Jun-2006
[4819]
Gabriele - as you mention dialects, will parse see any changes/enhancements 
in R3? Just curious :-)
Gabriele
5-Jun-2006
[4820]
maybe. we've been discussing a few things. nothing decided yet.
Anton
5-Jun-2006
[4821]
I wonder if beginners will take longer to realise the error of their 
ways...
Gabriele
5-Jun-2006
[4822]
anton, yes that could be an issue. maybe we could have a soft limit 
or something like that for contexts. but, i don't know if there's 
an hard limit, i'm just assuming there isn't, but i may be wrong.
Anton
5-Jun-2006
[4823]
They'll find the hard limit when they exhaust memory. :)
Pekr
5-Jun-2006
[4824]
:-)
JaimeVargas
5-Jun-2006
[4825]
Graham, I bet printf is not finding the either the DLL or the function 
on the DLL.
Graham
5-Jun-2006
[4826]
Is this a standard windows dll?
JaimeVargas
5-Jun-2006
[4827x2]
Yes.
Humm. It seems that  WinXP' kernel32.dll doesn't includes the sprintf 
function. I will apreciate if anyone can point to the proper DLL.
BrianH
6-Jun-2006
[4829x2]
msvcrt.dll
That is the C runtime. There are a few other (older) C runtimes on 
Windows, but that is generally the best one.
JaimeVargas
6-Jun-2006
[4831]
Thanks Brian.