[REBOL] New REBOL Website .... Re:(2)

2000-05-24 Thread vddi



[EMAIL PROTECTED] a écrit :

 What is the website address?


It's the same old adress , Frederick ;-) It's only a new design for our
preferred site http://www.rebol.com !!!


 Thanks!
 Frederick Thomas
 [EMAIL PROTECTED]
 - Original Message -
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Wednesday, May 24, 2000 1:25 PM
 Subject: [REBOL] New REBOL Website 

  Hi,
 
  updated content of REBOL website with much of interesting info ...
 
  -pekr-
 
 




[REBOL] Reading REBOL header Re:

2000-04-09 Thread vddi



[EMAIL PROTECTED] a écrit :

 According to rebol documentation, the
 rebol header is an object.

  True ! It can be access by the system/script/header not by REBOL
object !!
 You need REBOL for filling values of the object system/script/header
only !
  try this :
 probe system/script/header

 and now try this
probe REBOL  ... to make sleep REBOL/core ;-) !



 If so, how does the rest of the script file
 access the header?

 Given the following code:

 REBOL
 [
 Title: "Scan Web Sites"
 Date:   12-Nov-1997
 Author: ["Ema User" "Wasa Writer"]
 ]


Your example becomes :
header-script: system/script/header
print ["Title : " header-script/Title]
print ["Date : " header-script/Date]
foreach person header-script/Author [ print person ]

 what would be the correct syntax.
 Thanks
 Tim




[REBOL] No REBOL/Command Beta ? Re:(2)

2000-04-03 Thread vddi



[EMAIL PROTECTED] a écrit :

 [EMAIL PROTECTED] wrote:

  What's the schedule on  REBOL / NT being able to talk to COM objects?

 I don't know - all I know about /Command can be found at:
 http://www.rebol.com/news9B09.html

 -pekr-

 
 
  Len
 
  =
 
   Wait for the /Command version ...
  
  Okay, I'm waiting...  (any idea how long???)

"... REBOL/Command Beta will be available later this fall for
Microsoft Windows, Linux and popular Unix platforms with FINAL RELEASE
scheduled for Q1, 2000 " says this article !
What are you waiting for ? I've seen the Rebol/view beta 1 and now I 'm
trying beta 2 but .. I 'dont have a glimpse on any beta of
REBOL/Command ? Why ???
Why don't release a beta from this product ???




[REBOL] redirecting input and output Re:

2000-02-28 Thread vddi



[EMAIL PROTECTED] a écrit :

 Hello, and sorry for previous message

 Does anyone know how to use the redirecting input feature of Rebol? I have
 been trying it but it doesn´t seem to work.

 I have tried on Windows things like:

 rebol -w  in  out

 where the file "in" is:

 print "hello!!"

 Redirecting only output works as I expect:

 rebol -w script.r  out

Sorry ! I tried your solution and it worked ! I tried on a MS-DOS console.
I think that :
rebol -w -q in out
is better !

in file contains
print "hello!!"
After out contains exactly 2 lines :
hello!!