Poster | Thread |
klx300r
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 1:35:44
| | [ #21 ] |
|
|
|
Elite Member |
Joined: 4-Mar-2008 Posts: 3846
From: Toronto, Canada | | |
|
| Quote:
DAX Date: 26-Oct-2010 3:22:41 Anything from Carl on AmigaOS is super cool |
+ 1 _________________ ____________________________ c64-2sids, A1000, A1200T-060@50(finally working!),A4000-CSMKIII ! My Master Miggies- Amiga 1000 & AmigaOne X1000 ! mancave-ramblings X1000 I BELIEVE
|
|
Status: Offline |
|
|
broadblues
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 12:51:38
| | [ #22 ] |
|
|
|
Amiga Developer Team |
Joined: 20-Jul-2004 Posts: 4447
From: Portsmouth England | | |
|
| I tried typing 'chat' and got....
>> chat Fetching chat... Script: "RebDev Command Line Interface" Version: 0.4.27 Date: 9-Sep-2010 ** Access error: cannot create: %base/ ** Where: create if make-dir make context do catch either either -apply- do try chat ** Near: create path return path _________________ BroadBlues On Blues BroadBlues On Amiga Walker Broad
|
|
Status: Offline |
|
|
broadblues
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 13:14:29
| | [ #23 ] |
|
|
|
Amiga Developer Team |
Joined: 20-Jul-2004 Posts: 4447
From: Portsmouth England | | |
|
| Hmm snoopy output gives:
Log Generated by; Snoopy 53.20 (30.4.2010)
00001 : r3 : o.k. = Open("DEVS:Internet/hosts",OLD) = [0x1475AEA0] [206uS] 00002 : ENV : FAIL = Lock("ENVARC:LOCALDOMAIN",SHARED) [128uS] 00003 : r3 : FAIL = GetVar("LOCALDOMAIN",0x5838D444,255,0x00000000) [26082uS] 00004 : r3 : o.k. = Open("DEVS:Internet/name_resolution",OLD) = [0x1475AEA0] [197uS] 00005 : r3 : o.k. = Open("DEVS:Internet/hosts",OLD) = [0x1475AEA0] [192uS] 00006 : ENV : FAIL = Lock("ENVARC:HOSTNAME",SHARED) [107uS] 00007 : r3 : FAIL = GetVar("HOSTNAME",0x5838D444,255,0x00000000) [493uS] 00008 : ENV : FAIL = Lock("ENVARC:RES_OPTIONS",SHARED) [94uS] 00009 : r3 : FAIL = GetVar("RES_OPTIONS",0x5838D444,255,0x00000000) [444uS] 00010 : r3 : FAIL = Lock("AmigaOS4:/base",SHARED) [80uS] 00011 : r3 : FAIL = CreateDir("AmigaOS4:/base") [83uS]
So it fails to create AmigaOS4:/base
Also it asppears to set "home" to "./"
paths issue? Should it have been built with libunix? Last edited by broadblues on 27-Oct-2010 at 01:19 PM. Last edited by broadblues on 27-Oct-2010 at 01:19 PM.
_________________ BroadBlues On Blues BroadBlues On Amiga Walker Broad
|
|
Status: Offline |
|
|
HMK
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 13:55:00
| | [ #24 ] |
|
|
|
Regular Member |
Joined: 17-Mar-2003 Posts: 246
From: Denmark | | |
|
| Andy,
What do you get on the following lines, each one run in a fresh console:
read %.
read %./
make-dir %test |
|
Status: Offline |
|
|
Hypex
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 14:52:38
| | [ #25 ] |
|
|
|
Elite Member |
Joined: 6-May-2007 Posts: 11329
From: Greensborough, Australia | | |
|
| BTW: Platform: Amiga none
LOL! |
|
Status: Offline |
|
|
broadblues
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 14:53:19
| | [ #26 ] |
|
|
|
Amiga Developer Team |
Joined: 20-Jul-2004 Posts: 4447
From: Portsmouth England | | |
|
| >> read %. ** Access error: cannot open: %. reason: -3 ** Where: read ** Near: read %.
>> read %./ ** Access error: cannot open: %./ reason: 2 ** Where: read ** Near: read %./
>> cd AmigaOS4/ >> make-dir %test ** Access error: cannot create: %test/ ** Where: create if make-dir ** Near: create path return path
Note that I can create a directory in a sub dir. eg before running 'r3' cd work:temp/
then
10.AmigaOS4:> cd work:temp 10.Work:temp> r3 ************************************************************************** ** ** ** REBOL 3.0 [Alpha Test] ** ** ** ** Copyright: 2010 REBOL Technologies ** ** All rights reserved. ** ** Website: www.REBOL.com ** ** ** ** Version: 2.100.109.1.3 ** ** Platform: Amiga none ** ** Build: 23-Oct-2010/5:44:56 ** ** Warning: For testing purposes only. Use at your own risk. ** ** ** ** Language: none ** ** Locale: none ** ** Home: ./ ** ** ** **************************************************************************
SECURE is disabled
Important notes:
* Sandbox and security are not available. * Direct access to TCP HTTP required (no proxies). * Default web browser must be available. Special functions:
Chat - open DevBase developer forum/BBS Docs - open DocBase document wiki (web) Bugs - open CureCode bug database (web) Demo - run demo launcher (from rebol.com) Help - show built-in help information Upgrade - check for newer releases Changes - what's new about this version (web)
>> make-dir %test == %test/
>> read %test == #{666F6F0A}
>> read %test/ == []
>> read %/ == [%.backdrop %.ispell_english %.recycled/ %AirtankerBN.flv %AirtankerBN.wmv %AirtankerBN2.wmv ...
>> cd Work/temp/ >>
BTW read %/ list the contents of "work:" ie one dir up, so paths are being handle amigaos style at one level and unix at another.Last edited by broadblues on 28-Oct-2010 at 09:23 AM. Last edited by broadblues on 27-Oct-2010 at 02:59 PM.
_________________ BroadBlues On Blues BroadBlues On Amiga Walker Broad
|
|
Status: Offline |
|
|
HMK
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 15:18:33
| | [ #27 ] |
|
|
|
Regular Member |
Joined: 17-Mar-2003 Posts: 246
From: Denmark | | |
|
| Possibly some kind of port bugs. Probably best to add them to Curecode, one at a time:
http://curecode.org/rebol3/view-tickets.rsp
Quote:
BTW read %/ list the contents of "work:" ie one dir up, so paths are being handle amigaos style at one level and unix at another. |
read %/ should post the root, i.e. all assigns, don't you think?
what does:
to-local-file %/
give? |
|
Status: Offline |
|
|
ssolie
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 16:28:53
| | [ #28 ] |
|
|
|
Elite Member |
Joined: 10-Mar-2003 Posts: 2755
From: Alberta, Canada | | |
|
| @HMK Quote:
Possibly some kind of port bugs. |
I was chatting with Carl last night and he is aware there are still some issues with path conversions. This is a good thing because it will prove out the path conversion design.
I was also able to build a core with the host kit last night with assistance from the REBOL guys. I was able to launch into chat just fine. Also added support for launch-handler while I was in there so browser launching is now working. Handy for reading docs. _________________ ExecSG Team Lead
|
|
Status: Offline |
|
|
cha05e90
| |
Re: REBOL 3 Released for AmigaOS Posted on 27-Oct-2010 18:48:10
| | [ #29 ] |
|
|
|
Super Member |
Joined: 18-Apr-2009 Posts: 1275
From: Germany | | |
|
| @broadblues Quote:
>> chat Fetching chat... Script: "RebDev Command Line Interface" Version: 0.4.27 Date: 9-Sep-2010 ** Access error: cannot create: %base/ ** Where: create if make-dir make context do catch either either -apply- do try chat ** Near: create path return path |
same here... _________________ X1000|II/G4|440ep|2000/060|2000/040|1000
|
|
Status: Offline |
|
|
ssolie
| |
Re: REBOL 3 Released for AmigaOS Posted on 28-Oct-2010 18:39:04
| | [ #30 ] |
|
|
|
Elite Member |
Joined: 10-Mar-2003 Posts: 2755
From: Alberta, Canada | | |
|
| @cha05e90 Please feel free to submit bug reports for REBOL 3 at the official CureCode site. There is even an entry for AmigaOS now (because I entered a bug report).
@all R3 is still in alpha so it is even more important that any issues are recorded so that the quality can be improved. AmigaOS reports are also important because they can highlight issues with REBOL's multi-platform support which I think is the case here. _________________ ExecSG Team Lead
|
|
Status: Offline |
|
|
Ned
| |
Re: REBOL 3 Released for AmigaOS Posted on 30-Oct-2010 16:49:12
| | [ #31 ] |
|
|
|
Cult Member |
Joined: 10-Dec-2003 Posts: 500
From: Arlington, Texas USA | | |
|
| I am new to Rebol. I have downloaded this and seem to have it working on my uA1c. When I run it from the CLI, I get about 30 lines of info and then am left at what I assume is the console prompt: >> I then try to run the Hello World program which I got from the Learn REBOL tutorial: >> alert "Hello world!" but then I get ** Script error: alert has no value
Can someone please help me and tell me what's going wrong. Thanks. |
|
Status: Offline |
|
|
HMK
| |
Re: REBOL 3 Released for AmigaOS Posted on 30-Oct-2010 19:46:27
| | [ #32 ] |
|
|
|
Regular Member |
Joined: 17-Mar-2003 Posts: 246
From: Denmark | | |
|
| Hi, Ned
Quote:
Can someone please help me and tell me what's going wrong. |
When it's working, ALERT would display a dialog with your message. The version for AmigaOS4 doesn't yet have a graphics subsystem and the GUI is not included, as we are not yet done writing it.
What you see there is simply that ALERT should be a working function, but it's not set.
The tutorial may not be updated for REBOL 3.
Try some of these:
to-string read http://www.amigaworld.net
chat
random [I like Amiga]
You can at least see the console working, but REBOL will definitely be much more fun when the GUI comes in. The next version should also fix bugs with file access.Last edited by HMK on 30-Oct-2010 at 07:47 PM.
|
|
Status: Offline |
|
|
Ned
| |
Re: REBOL 3 Released for AmigaOS Posted on 31-Oct-2010 13:02:52
| | [ #33 ] |
|
|
|
Cult Member |
Joined: 10-Dec-2003 Posts: 500
From: Arlington, Texas USA | | |
|
| Thanks for the clarification. Until it's a little futher along in the development, I think I would be more interested in trying an earlier version. On the REBOL web site I see references to a version 2.7.7, but in the download area for that I cannont find an Amiga version. Is an Amiga version of this or any earlier version available, and if so, where can I find it? |
|
Status: Offline |
|
|
HMK
| |
Re: REBOL 3 Released for AmigaOS Posted on 31-Oct-2010 14:54:21
| | [ #34 ] |
|
|
|
Regular Member |
Joined: 17-Mar-2003 Posts: 246
From: Denmark | | |
|
| The earlier version 1.3 (there was a large jump in version number at one point to unify different kinds of REBOL releases, so it would correspond really to a version 2.5) is very old, around 2002-2003, I think, and is 68k only, but is available here:
http://www.rebol.com/release-archive.html Last edited by HMK on 31-Oct-2010 at 02:56 PM. Last edited by HMK on 31-Oct-2010 at 02:56 PM.
|
|
Status: Offline |
|
|