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

World: r3wp

[!REBOL3]

BrianH
29-Jan-2010
[277]
Pekr, routine! was already removed, replaced with command!. The library!, 
rebcode!, and struct! types are just placeholders that haven't been 
removed or replaced yet. Don't count on them being there in the future.
Andreas
29-Jan-2010
[278]
How would I implement a ssl:// port scheme in the hostkit, that behaves 
just as tcp:// does, but allowing me to hook the native actors (open, 
mainly)
Steeve
29-Jan-2010
[279]
Using DOS (tested with VISTA and XP) I can launch my editor with:
>>start textpad

But how can I do that with the Rebol CALL function. It's doesn"t 
seems to work...
BrianH
29-Jan-2010
[280]
Start is a cmd.exe builtin command on Win2k+ (not Win9x). Try call 
"cmd.exe start textpad" or calling Textpad directly.
Steeve
29-Jan-2010
[281x2]
It Fail
I don't know how to pass args to the cmd.exe
I tried this
call {cmd.exe "start textpad"}
BrianH
29-Jan-2010
[283]
call "cmd.exe start textpad"
Steeve
29-Jan-2010
[284x2]
FAIL
do nothing except starting cmd
BrianH
29-Jan-2010
[286x2]
Go to the dos prompt, type in cmd /?
If the results of that are to complex for you, call Textpad directly.
Graham
29-Jan-2010
[288x2]
call "notepad.exe" works for me
don't have textpad ...
Steeve
29-Jan-2010
[290x2]
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
Yes Graham it works with notepad.exe, something missing with textpad
BrianH
29-Jan-2010
[292]
Yes it does, you just need to look at cmd /? and start /? instructions 
if you are going to use those rather than calling Textpad directly.
Steeve
29-Jan-2010
[293]
I probably have to pass the whole path of the app
BrianH
29-Jan-2010
[294x3]
Yup.
call {"C:\Program Files\Textpad\textpad.exe" file-to-open}
Or something like that - I use a different text editor.
Steeve
29-Jan-2010
[297]
Ok it works, thanks Guys
Graham
29-Jan-2010
[298x2]
you can call a batch script ..
so you're using a AS400 to remote control your PC??
Steeve
29-Jan-2010
[300x2]
So now, i can launch remote commands from the AS400 of my company, 
Great
a little strange to use ftp to do that, but it's the only protocol 
allowed here :-)
Graham
29-Jan-2010
[302]
lucky it's not sftp !
Steeve
29-Jan-2010
[303x5]
yup
Ahaha

i saw some admin sniffed the packets i sen,  because someone tried 
to use my service
* I sent
Damn Admins
Nothing to do but monitor the developers
Graham
29-Jan-2010
[308]
LOL
Brock
30-Jan-2010
[309]
the reason Notepad works with a direct call is that it is in the 
system path in windows.  Textpad would not, but the path could be 
added, then you wouldn't need the direct path to it.
Steeve
30-Jan-2010
[310]
but when i start a console, "start textpad" works.

So, the default console has the path of the installed apps in his 
env.
BrianH
30-Jan-2010
[311x2]
That's because start references the app paths setting under HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App 
Paths.
Not all programs register themselves there though. The run menu references 
it too.
Paul
30-Jan-2010
[313]
Where can I find the most up to date port information for R3?
Graham
30-Jan-2010
[314x2]
devbase .... aka the wiki
or ... even more uptodate .. ask Carl
BrianH
30-Jan-2010
[316x2]
DocBase is the wiki; DevBase is accessed through chat.
It could be worse: We originally referred to the proposed bug tracking 
system as BugBase, before we used CureCode.
Graham
30-Jan-2010
[318]
I think I'm going to refer to them from now on as, chat and wiki 
...!
BrianH
30-Jan-2010
[319x2]
As long as you refer to the manual as a "manual" even if it is technically 
a wiki too, that will work.
I only make the distinction between chat and DevBase for technical 
reasons.
Graham
30-Jan-2010
[321]
I think we should factor them .. and remove the redundant 'Base ...
BrianH
30-Jan-2010
[322]
That would turn them into generic terms, rather than the formal names 
for specific things that they are now.
Paul
30-Jan-2010
[323x2]
As you can see the TRETBASE group has really been picking up - this 
is because I'm busy porting the older Tretbase DBMS to R3 and finding 
problems along the way so I'm going to post some of the problem here 
to see if anyone else is seeing the same.
try a rejoin using two binary values.
Ashley
30-Jan-2010
[325]
Looks like a problem with append:

	append "" ["a"]
	append #{00} [#{01}]

Note that join works (as it's not appending a block).
BrianH
30-Jan-2010
[326]
Already posted a ticket about that today.