• 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
r4wp20
r3wp108
total:128

results window for this page: [start: 1 end: 100]

world-name: r4wp

Group: #Red ... Red language group [web-public]
Kaj:
7-Oct-2012
Doc, I thought that couldn't be because I can't run any Red code 
on ARM. hello.red crashes hard for me, even taking the terminal program 
down
Arnold:
10-Oct-2012
I managed to get it via the terminal but only the master not the 
0.3.0 

I want the 0.3.0 version of this file for that one contains the corrected 
typo you fixed, no need to manually correct then. 
And I want to give it then back to the 0.3.0 branche but no way. 
I'll mail my file to the mailinglist :(  github g=sh ;)
PeterWood:
10-Oct-2012
The way to switch git branches at the terminal is:

git checkout <branchname>

e.g 
	git checkout master

	git checkout v0.3.0
Steeve:
7-Dec-2012
I cut my script and got the same error with just the following:

Red []
;*** Bottom-up-heapsort ***
heapify: func [s start len comp /local step sav inc][
	inc: 0
	sav: s/:start
	;-- search terminal leaf.
	step: start
	while [len > step: 2 * step][
		++ inc
		unless comp s/(++ step) s/:step [-- step]
	]
	either step = len [++ inc][step: shift step -1]
	;-- bottom-up, search insertion point
	loop inc [
		unless comp s/:step sav [break]
		step: shift step -1
		-- inc
	]
	;-- bottom-up swap
	loop inc [						;-- chain swap
			s/:step: also sav sav: s/:step
			step: shift step -1
	]
	s/:step: sav
]
DocKimbel:
29-Dec-2012
You should wait for me to add the marshalling and unmarshalling functions 
(that will be used everywhere Red needs to interface with non-Red 
code). In your code example, it should be: 1 + length? version (as 
it needs to account for terminal NUL character). Also, you need to 
get sure that the source c-string! buffer is always available or 
make a copy of it (a pointer to it is stored as a UTF-8 cache, unused 
yet, but intended for speeding up I/O, still experimental, not sure 
it will stay for v1.0).
Geomol:
28-May-2013
GTK-browser isn't executable. Should I make it and run from terminal 
or what?
Arnold:
15-Jun-2013
Now how to time the script? Red/System and C, the executables have 
a start time in seconds in the terminal logs but that is imprecise 
and there is no endtime just a logout message.
Kaj:
15-Jun-2013
On OS X, there should be a time command in the terminal
Arnold:
21-Jun-2013
waarde is the dutch word for value, this is displaying the random 
generated value, it is between double quotes. In the C output I use 
something like " rval= " rval where in the Red/System I used " rval: 
" rval. This is for my convenience to tell both apart when the terminal 
windows look all the same.

It makes sense to circumvent issues like 84 by this method. Good 
to know this, thank you for explaining.
DocKimbel:
28-Jun-2013
I can't even find a way to open a terminal in 12.04...why do they 
need to mess up things like that on new versions...
DocKimbel:
28-Jun-2013
It's funny that they consider opening a terminal, a 2nd class feature 
while LibreOffice comes preinstalled (thanks for the bloat) and many 
icons shortcut are present right on the desktop...I can understand 
now why old linux users got pissed off...
Arnold:
23-Jul-2013
I managed to get the fossildownload from the download.r script running, 
unfortunately everything ended in the downloads folder where the 
script was still placed. I reran the script from the folder I wanted 
the repositories to land. I copied the terminal information output 
to a text document for there are several passwords created for the 
repos and I had not yet time to store them properly..
Arnold:
31-Jul-2013
I was mislead by an incorrect intermediate result in the Red/System 
source that I expected to be correct already but had not fixed on 
this machine, together with a short blackout overseeing that adding 
nonzerobits to the left of a binary number changes the decimal representation 
in the lower digits too. Lots of output lines, many output terminal 
windows, small laptopscreen.
Same results make sense.
Group: Ann-Reply ... Reply to Announce group [web-public]
Geomol:
28-May-2013
How hard can it be to create a terminal version of AltME? Well...
Geomol:
28-May-2013
So
How hard can it be to create a terminal version of AltME? Well...
Geomol:
28-May-2013
No, an interface to this world, but from a text terminal. Like R3 
chat, but which actually work with AltME worlds.
Group: Rebol School ... REBOL School [web-public]
Arnold:
23-Jun-2012
I have a problem renaming files. rename does not change the filename 
on MacOSx. In the terminal it is no problem but in my script the 
filenames are not changed.

            fileo: to-file rejoin [what-dir add-suffix naam-oud-z-ext extensie]
            filen: to-file add-suffix naam-oud-z-ext extensie
            rename fileo filen

I have tested with probe that the types are ok and with the resulting 
values for fileo and filen the rename command worked like a charm. 
Any more ideas what is happening and how to debug this further? Thanks.
Arnold:
29-Jun-2012
Within a panel sure would be smoother. Some larger layouts would 
require resizing as well. 

The example did what was to be expected. And I learned how to return 
to the running REBOL script after escaping in the terminal window!
Group: !Syllable ... Syllable free operating system family [web-public]
Arnold:
14-Apr-2012
Hey, should there not be a R3/view? I only can start r3 from terminal.
Kaj:
22-Sep-2012
Yes, look in the System Manager or df in the terminal what partition 
number you have, then adapt the menu.lst

world-name: r3wp

Group: !AltME ... Discussion about AltME [web-public]
Chris:
4-Dec-2005
Having a little trouble getting AltME to work in Ubuntu Breezy.  
I'll need to go back and make a note of specifics, but double-clicking 
the icon does nothing (rwe all checked), and running from the terminal 
gives me an error.
Rod:
23-May-2007
Ah, I need to try the bundle steps for AltME.  I'm still launching 
from a terminal session, though I do have one open typically anyway.
Oldes:
20-Feb-2009
Isn't it dependent on type of terminal you are using?
Group: RAMBO ... The REBOL bug and enhancement database [web-public]
Henrik:
10-Jul-2005
volker, well I didn't get any trouble under Linux with GNUstep's 
Terminal.app so it may be a terminal issue
Henrik:
10-Jul-2005
If I ssh to a linux box from the terminal where I saw the problem 
originally, there is no problem either
[unknown: 10]:
10-Aug-2005
Linux 1.3 Beta -> Something is realy from with the terminal adjustement 
during view/console and after stopping view. The Console gets messed 
up like it has the wrong TermInfo values?  During a call/shell execution 
from the view/console also the console from Rebol/view is mixing 
up the call/shell "vi" ????????
Group: Core ... Discuss core issues [web-public]
Dockimbel:
1-Jun-2005
Does anyone know if REBOL runs on Windows CE.NET 4.2 ? I'd need to 
use REBOL on that platform but I don't have access to a CE.NET terminal 
and can't use an emulator because there's no REBOL WinCE x86 binary.
Gabriele:
16-May-2006
the BCC header field is a field used by mail clients to let users 
type addresses that will *not* be included in the header. it is, 
basically, a user interface. back at the time mail clients did not 
have a gui, and just processed mail from a file or by letting you 
type them on the terminal
Izkata:
12-Apr-2007
(hopefully) quick question - I know you can use prin "^(page)" (or 
prin "^L") to clear the current terminal window - is there something 
just as simple to clear just the current line?  Or move the cursor 
back to the beginning of the line?
btiffin:
12-Apr-2007
Sunanda;  You should have mentioned loading the Terminal User Interface 
and all the funky VT100 escape sequences and the...
Just kidding :)
Izkata:
21-Feb-2009
It's always felt consistent to me - the context is being evaluated, 
and lit-word!s reduce to word!s, word!s reduce to functions and values, 
while other datatypes reduce to themselves:
>> X: [{One} 'Two]
== ["One" 'Two]
>> ? X/1 ? X/2
X/1 is a string of value: "One"
X/2 is a lit-word of value: 'Two

>> X: reduce X   ;Here is where typing it in on the terminal evaluates 
to
== ["One" Two]
>> ? X/1 ? X/2
X/1 is a string of value: "One"
X/2 is a word of value: Two
>> X: reduce X
** Script Error: Two has no value
** Near: Two

...and the reasoning behind lit-word!/word! acting differently is 
that those are special datatypes where other values can be bound 
to them
Group: Script Library ... REBOL.org: Script library and Mailing list archive [web-public]
Gabriele:
17-Mar-2009
Sunanda: given that R2 uses the host current code page, I think the 
best way would be for the user to convert the script after downloading 
it. On Linux or Mac for eg, UTF-8 is perfect for Core scripts as 
the terminal is UTF-8. On Windows or for View scripts, you'll get 
the host code page displayed anyway, so the user has to do the conversion. 
A tool to do that automatically would be nice (I have the code, it 
will be released soon, but you may need to wait a couple weeks more).
Group: View ... discuss view related issues [web-public]
Anton:
22-Apr-2006
Or basically Terminal Services.
Izkata:
22-Jan-2008
Here's my problem, from a new terminal session:


>> view layout [box 120x70 effect [draw [pen black polygon 0x0 119x0 
119x69 0x69]]]

>> view layout [box 120x70 effect [draw [pen black green polygon 
0x0 119x0 119x69 0x69]]]
Segmentation fault (core dumped)


..which should work fine, according to this Draw documentation:  
http://www.rebol.com/docs/draw.html#sect0.9.1.
Gabriele:
31-Oct-2008
the "console" on Mac and Linux is just a terminal (OS provided), 
and they are usually UTF-8. That has nothing to do with View.
Gabriele:
2-Jan-2009
BT, the codes you see at the console are ANSI escape codes, and that 
has nothing to do with what you get from view, eg. the "home" key 
sends the 'home word in View but an escape sequence on the terminal.
Group: I'm new ... Ask any question, and a helpful person will try to answer. [web-public]
Geomol:
4-Aug-2007
We might move to beyond "I'm new" here, but we have a slighty different 
understanding, I think.

none is always a word

There is a possible trap here for the new one. This is output from 
my terminal:

>> blk
== [none]


Is that "none"-word a word in the REBOL understanding of a word? 
It depends on, how I made it. Did I write:

>> blk: [none]
== [none]

or did I write:

>> blk: []
== []
>> append blk none
== [none]


For the programmer being new to REBOL, it may be hard to see the 
difference. And the sentence "none is always a word" may only apply 
to the situation, where values are being fed into REBOL, not when 
I write:

>> blk
== [none]

Or what?
Duke:
23-Oct-2011
Having trouble with the "switch" function.
I'm entering the following at the REBOL terminal:
>> time: 14:00
== 14:00
>> switch/default time [
[    8:00 [send [wendy-:-domain-:-com] "Hey, get up!"]
[    12:30 [[cindy-:-dom-:-dom] "Joinme for lunch?"]
[    16:00 [send [group-:-every-:-dom] "Dinner anyone?"]
[    ]

For my trouble, I get: :)

** Script Error: switch is missing its case argument
** Near: switch/default time [
    8:00 [send [wendy-:-domain-:-com] "Hey, get up!"] 
    12:30 [[cindy-:-dom-:-dom] "Joinme for lunch?"] 
  ...


Am I using the REBOL terminal incorrectly? I'm using rebcore v 2.7.8
Group: Parse ... Discussion of PARSE dialect [web-public]
Maxim:
12-Dec-2009
I just adopted a new notation standard for parse rules... the goal 
is to make rules a bit more verbose as to the type of each rule token... 
I find this reads well in any direction, since we encouter the "=" 
character when reading from left to right or right to left... and 
parse rules often have to be read from right to left.

example:

=terminal=: [

 =quote= copy terminal to =quote= skip (print ["found terminal: " 
 terminal])
]


on very large rules, and with the syntax highlighting in my editor 
making the "=" signs very distinct, I can instantly detect what parts 
of my rules are other rules or character patterns... it also helps 
out in the declarations... I see when blocks are intended to be used 
as rules quite instantly where ever they are in my code.


in my current little parser, I find I can edit my rules almost twice 
as fast and loose MUCH less time scanning my blocks to find the rule 
tokens, and switching them around.

wonder what you guys think about it...
Fork:
28-Dec-2009
(That question mark not visible in the terminal, showed up when I 
pasted here)
Group: Syllable ... The free desktop and server operating system family [web-public]
Kaj:
15-Nov-2005
The thing to remember about the file system is that journaling works 
well, unless you had a lot of file activity just before hard booting. 
This can damage your file system. A good thing to do after heavy 
file activity like big copies or downloads is to issue a "sync" command 
in the terminal
Kaj:
31-Dec-2005
I bought the burner to use from my Atari 8-bit. There was a PC program 
for it, but I could use it from the Atari in a sort of terminal mode
Kaj:
29-Nov-2006
On the desktop, you can open the Disks folder, and then rightclick 
in the background to get a mount dialog and choose an available volume. 
Those will be mounted in the root. Manually in the terminal, you 
could mount volumes anywhere with the mount and unmount commands
Kaj:
10-Dec-2006
Graham, do you mean the terminal doesn't open?
Graham:
10-Dec-2006
Double click on the terminal icon on the desktop .. nothing happens.
Graham:
10-Dec-2006
the terminal now opens but leaves a trial all over the browser as 
I move the terminal window around ...so i guess the browser is busy
Graham:
10-Dec-2006
terminal prompts don't appear.
Kaj:
10-Dec-2006
I thought you had a terminal now?
Evgeniy Philippov:
15-Jan-2012
But a virtual terminal pty0 is not what we want --- we need Ethernet 
card instead of pty. And to specify an Ethernet card, LFS instructions 
use "plugin rp-pppoe.so eth0"
Evgeniy Philippov:
15-Jan-2012
pty, pseudo tty (terminal enulator).
Group: Linux ... [web-public] group for linux REBOL users
Henrik:
19-Mar-2005
I do get an error with Core where it stops responding after loading 
in a terminal. No prompt or error appears. This doesn't happen with 
View.
Joe:
28-Oct-2005
robert,  I would ask your hosting company if they can give you access 
to the terminal server  (so that you ssh there and then you can reboot 
and see boot messages as if you were on a local terminal - note you 
might have to configure the server first
Joe:
28-Oct-2005
if you have access to the terminal server I can send you info on 
how to configure it so that you get the boot messages
Robert:
28-Oct-2005
Ok, thanks for the comments. What's this terminal-server stuff? Is 
this a special console I connect too?
Joe:
30-Oct-2005
the terminal server is used by the hosting company to access multiple 
servers consoles without having physical consoles. When they reboot 
a machine the can get the bios boot messages because there is a console 
cable to the terminal server and they normally access the terminal 
server via ssh
DideC:
8-Nov-2005
Is there any specific need to make View 1.3.50 running under Linux:
- It runs right while clicking the icon
- it fails to run from a terminal:
	./rebol
	** User Error: REBOL: Cannot connect to X server
	** Near: size-text self
Graham:
10-Dec-2006
Terminal doesn't respond to double click.
PhilB:
6-Jul-2007
Thanks Kaj .... I did manage to get a console to work under 6.10 
but cant remember how I did it (I think it was by running rebol from 
the terminal).
Gabriele:
6-Jul-2007
if you make a shortcut, you should be able to select "run from terminal" 
(exact way depends on if you're on Ubuntu or Kubuntu).
DanielSz:
9-Sep-2007
I remember that some time ago, if I would double click on the icon 
I would get a prompt wih the following options: "Run in Terminal", 
"Display", "Run". that's  what I'd like to see again
James:
18-Feb-2008
I'm relatively new to Linux in general, so this may be a simple question: 
When running REBOL in the terminal, how can I enable the <HOME>, 
<END>, and <DEL> keys? Right now they just print out "OH," "OF," 
and "[3~," respectively. I'm running Ubuntu 6.06 Dapper with Gnome.
Geomol:
18-Feb-2008
James, I guess, you're interested in the keys in View. This will 
tell you the actual key in view:


view layout [b: box red feel [engage: func [face action event] [probe 
reduce ["box" action event/key]]] do [focus b]]


Run the code, activate the view window and press the keys. You can 
see the key values in the terminal.
btiffin:
19-Feb-2008
If you start from a terminal session and use $ rebol    ( or whatever 
command)  and then hit the console, does the REBOL banner show up 
in the terminal?  That's where it should be.  No seperate "windows" 
console required for GNU/Linux.  If there is no banner, then puppylinux 
may be pooched.
Geomol:
3-May-2008
Have you tried starting rebol from a terminal program?
Kaj:
27-May-2008
If you work in a terminal emulator in an X window, you can just start 
graphical apps from the command line
btiffin:
27-Aug-2008
What console is he running?  Under Konsole the list of encodings 
is overwhelming.  (From the Settings menu).

If it's xterm, then ... I dunno, but regardless, if it is xterm or 
other, drop a note and we'll track down an appropriate place to tweak 
the default encoding used by his REBOL console (whatever terminal 
he uses) session.


It might be easier (some gui menu), but it could well look something 
like

XTerm*locale: true

XTerm*font:             -misc-fixed-medium-r-normal--20-200-75-75-c-100-iso10646-1

in an X config file


From the root text console for REBOL/Core, we'd have to look into 
that as well; been there, kinda done that, too many details, forget 
all details, but keep foggy clue where to start looking ...  :)
Gabriele:
4-Sep-2008
does he get the same even when using the hexdump command? could it 
be that that character "enables" something? the terminal will process 
the escape sequence but rebol will not.
Henrik:
4-Oct-2008
The launch environments are different in that the shebang path is 
used by the shell to know what to do with the script. You can also 
run a REBOL script in the linux terminal with: rebol -qs script.r 
and it will be the same script as under Windows. It might look a 
little ugly, but you could wrap your windows REBOL scripts in a shebang 
script.
kcollins:
5-Dec-2008
Another option is dtach, which allows you to detach from and reattach 
to a terminal session even if you completely disconnect from the 
machine in the interim.
Izkata:
17-Apr-2009
Don't know anything about the server questions, but Ubuntu by default 
doesn't have a root password - use "sudo su" to get a root terminal, 
then passwd if you want to give root a password
Gabriele:
13-May-2009
most programs do not check that the file name is valid utf-8. normally, 
you're using a utf-8 terminal so there is no way you can type an 
invalid filename. but you can easily create one using rebol for eg. 
or using escape sequences in the shell and so on
Anton:
18-Aug-2009
(You are right about terminal signalling, but of course this is not 
the only thing this proxy port is useful for.)
BudzinskiC:
25-Oct-2009
Yeah I started looking at the code. It's a bit hard to debug for 
me though. The error doesn't give any line number, it just says "near 
show main". I searched for "show main" and found three occurances 
in the source. I'm completely new to REBOL so going through everything 
in the code would take me quite some time without being able to narrow 
it down first because everything looks alien to me and I have to 
look it up to see if something in the script looks wrong. Is there 
some good tutorial available on debugging REBOL code? Or is there 
some trick to find out the last line that was executed? I do have 
access to the terminal at that point, the view is frozen but the 
terminal still accepts commands.
Henrik:
29-Nov-2009
Ubuntu 9.10 is quite good. I've only had to visit the terminal a 
couple of times to get SMB filesharing working since I first booted 
it 5 minutes ago and only one cryptic error message appeared.
Gabriele:
3-Feb-2010
Bolek: REBOL is not going to start a terminal program for you. However, 
if you have a icon, you can usually open the icon properties and 
tell the "desktop" (XFCE in your case) to start the program inside 
a terminal (ie. it will start a terminal and then the program inside 
it).
Maxim:
25-May-2010
help!   how do I get rebol on linux to start without trying to open 
a setup window?
I get:

** User Error: Bad face in screen pane!
** Near: size-text self


everytime I start any /view capable rebol from a remote terminal 
(I'm not in a desktop).   


I need the view capabilities (to-image, draw), but not the windowing.
amacleod:
20-Jan-2011
Just installed Zorin 4 (ubuntu based) and i'm having trouble getting 
R3 running. I assume I run it from the terminal  but I get "commnad 
not found" error. Anyone know what I'm not doing?
BrianH:
2-Mar-2011
Just redid my netbook with Ubuntu Netbook 10.10, and it works much 
better than in did with WinXP. Had to partition manually as the tweak 
to make the installer SSD friendly is still a proposal. R2 and R3 
work, though (as someone used to the Windows versions) I am having 
trouble with the console not opening a terminal when prompted to. 
I guess the button in the R2 View desktop doesn't work. Time to figure 
out the application shortcut creation method for this distro.
Andreas:
2-Mar-2011
Regarding the console, fire up REBOL directly from a terminal and 
you'll be fine.
Andreas:
2-Mar-2011
Creating a "Application in Terminal" type launcher should do the 
trick.
Andreas:
2-Mar-2011
If the Unity launcher (at least I think that's how the launchbar 
in the netbook thing is called) still uses .desktop files, it's probably 
only a matter of finding the associated .desktop file and modifying 
it to use Terminal=true
Group: Announce ... Announcements only - use Ann-reply to chat [web-public]
shadwolf:
16-Sep-2005
New editor that support REBOL  colored syntax file. This sofware 
is SCITE 1.66 for linux and windows by default REBOL support is not 
activated. edit /usr/share/scite/ScitEGlobal.properties file ( MenuBar 
Options >  Open Global options File) search the line "#import rebol.porperties" 
and remove "#". Save changes (SCITE must be launched from a root 
terminal.) then edit /usr/src/rebol.properties file. Go to the last 
line of this file and set the proper path to your predered rebol 
VM version in the  command.go.($file.patterns.rebol)=....  Save the 
rebol.properties file ( this file can be located from Menubar Options>Edit 
properties>open rebol.properties). Once you make all those changes 
you are able to see rebol color syntax for your beloved rebol scripts.

the scripts are launched into the rebol VM hitting F5 key in SCITE. 
You will notice that the color syntaxe is very more advanced than 
the Crimson Editor one. And you have the  ability to hide the functions/objects 
inside code to make easier to read the script code.

Well this is the concret sign that REBOL  is being more and more 
considered in computing world. This is a good thing and a good reward 
for RT hard work.
Group: !RebGUI ... A lightweight alternative to VID [web-public]
Pekr:
19-Mar-2006
well, drop list is not good example of how to use gui via keyboard, 
I do agree :-) our users are not typical users maybe, as they come 
from terminal SAP R2historically, where there was no mouse :-)
TimW:
20-May-2007
Is there a way to make the scroll automatically go down when adding 
text to an area?  I have an area I'm using as a status terminal window 
and I can't see the feedback until the task is done because the scroll 
stays at the top.
Group: DevCon2005 ... DevCon 2005 [web-public]
Robert:
2-Sep-2005
I just booked my flight to Milan. Here is my arrival data:
29-09-2005 18:25 in  Milan, Malpensa [MXP] TERMINAL 1


I have rented a car as well. So if someone is arriving around the 
same time let me know and we can drive together.
Group: rebcode ... Rebcode discussion [web-public]
Henrik:
2-Apr-2006
which terminal program do you use?
Geomol:
2-Apr-2006
The standard Terminal incl. in MacOSX
Group: Tech News ... Interesting technology [web-public]
Maxim:
20-Nov-2009
the fact that it uses http, html and js... doesn't make it different 
from any other stupid dumb terminal.
Pekr:
7-Jul-2010
What do you mean by "smart client"? Efika is not only a terminal. 
It can have full OS you can install. It is just that they use something 
like VNC/Citrix aproach, to get you SW you don't have installed physically 
on the machine itself ...
Group: !REBOL3-OLD1 ... [web-public]
Will:
10-May-2006
on OSX, it would be nice to have native access to file metadata (what 
"mdls filename" return from the terminal in Tiger) with something 
like info?/all or info?/meta or info?/metadata returning an object 
with the metadata.
Kaj:
10-Oct-2007
You can use terminal escape codes for that, or usually, you use a 
library such as Curses or S-Lang
Rod:
7-Feb-2008
Question on alternate UI options, specifically ChUI (terminal style) 
or mobile options would be of interest to me.  Is anything planned 
or expected that would apply to those areas of UI implementation?
MattAnton:
17-Oct-2008
My friend Abe challenged me to write a simple recursive fibonacci 
sequence and on the 46th iteration the program quits because rebol 
can't do that calculation. I tried it on Linux rebview and rebol/core 
and on windows vista rebview even without running my script. The 
strangest thing is that rebol can add much larger numbers, but just 
not these. Does that make any sense? try the equation in a rebol 
terminal yourself and see what I'm talking about. Very strange.
Henrik:
9-Apr-2009
I get a crash immediately. Do you start it from terminal or Finder?
PeterWood:
9-Apr-2009
I start from terminal
Izkata:
12-Apr-2009
as to %user.r - my only use for it is so that certain functions I've 
defined that I use a lot (pad, time, fold, Logfile object, etc) are 
automatically loaded in any script I want them in, as well as a terminal 
session.
Group: !Cheyenne ... Discussions about the Cheyenne Web Server [web-public]
btiffin:
1-Jun-2007
I'm still getting

Redirection Catched
Destination url: /testapp/
For all RSP related activity.
GNU/Linux 2.7.5.4.2  IceWeasel (Firefox) browser and Konqueror

Modified HTTPd.r for port 8080, run cheyenne.r off terminal session 
with
rebol -cswq cheyenne.r
Dockimbel:
2-Jun-2007
Re: btiffin: I've tried reproducing your problem by matching your 
config, but without any success (GNU/Linux 2.7.5.4.2 IceWeasel, port 
8080, run cheyenne.r off terminal session with rebol -cswq cheyenne.r)...
Graham:
2-Mar-2009
What I am doing is taking a text screen dump from an AS400 terminal 
( see http://synapsedirect.com/forums/permalink/7675/7675/ShowThread.aspx#7675
) and parsing the data so that I can grab the patient demographics 
and add them to the database.
Group: DevCon2007 ... DevCon 2007 [web-public]
Anton:
21-May-2007
virtual windows - rendering graphics into an image means that a stream 
of images can be sent over a network to another user in a "terminal 
services"-like session.
1 / 128[1] 2