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

World: r3wp

[RAMBO] The REBOL bug and enhancement database

Vincent
7-Jun-2005
[755]
Will 'create-link be included in final 1.3? If yes, there's a number 
of issues:

- create-link %/c/foo.txt "d:\bar.lnk" will create a link to "current-path\c\foo.txt"
- create-link %/c/foo.txt %/d/bar.lnk don't work
and the big security hole:
    secure [file ask]

    create-link %anything.dat "c:\my-file-to-overwrite.exe" ; bypass 
    sandbox
RAMBO?
Rebolek
8-Jun-2005
[756]
#3757 fixed in 1.2.122 but only first part, not the second one - 
"There's one more problem - after changing name in user preferences, 
it's not changed in main desktop window - it still shows old one."
Brett
8-Jun-2005
[757x2]
#3768 - finally I've worked out how to uninstall and repeat the problem
Install but do not select .r association option, then uninstall - 
problems.

To fix this situation, rename currentuser/software/rebol/view key 
to viewold - this allows reinstall which you should do this time 
with .r association then uninstal works ok.
BrianH
9-Jun-2005
[759]
To whom it may concern, on ticket -304 (currently) I misunderstood 
the purpose of the Fix field and filled it with prose with no line 
breaks. Could somebody fix this, perhaps by moving the prose to the 
Description section? The Fix section doesn't wordwrap, my entry messes 
up the layout of the Rambo web site.
Gabriele
9-Jun-2005
[760]
done (will need approval)
BrianH
9-Jun-2005
[761x4]
Thanks!
Hey Gabriele, the install bug I mentioned (now 3775) is one that 
I would consider major enough to need fixing before the final 1.3, 
seeing as it would affect production installations.
I mention this because I just noticed that 1.2.125 is considered 
a final beta, short of major bugs. This is one of those.
As the file handling has been fixed, someone can write an external 
installer that can do the trick if necessary, but at least moving 
the appropriate registry key would help a great deal.
Carl
9-Jun-2005
[765x8]
Hi Brian, I saw your posting.
This is a complex request - because all earlier versions of REBOL 
were installed the same way, as well as many other apps.
If you use Core or Link, you will find entries in the same location 
in the registry.
We considered making the change, but unfortunately, the report came 
too late.
Installation code (and especially the self-installing kind like in 
REBOL) require a lot of testing -- not only by us in the dev team, 
but by all the beta users.
So, that does not allow us to make last minute changes, unless we 
really understand the solution and what impact it will have on everyone.
w
We know this is an important issue -- we want REBOL to be as easy 
to install as possible -- so we will look at it again soon.  If you 
have detailed know-how in this area, we should talk more about it. 
 Thanks.
BrianH
9-Jun-2005
[773x2]
I've written installers before, and you have my email address, so 
feel free. As it is, the new sandbox directory would make it relatively 
easy to make an external multiuser installer that would fake the 
current behavior well enough to fool View. I'll test the View no-install 
behavior to see if it works well enough to prevent View from undoing 
the work of an external installer.
The current installer works well enough for single-user situations.
Vincent
15-Jun-2005
[775]
bug or not : when image! was removed from any-string! (1.2.111) , 
"to-binary an-image" behaviour changed .
Instead of returning BGRA binary data 
(as stated in http://www.rebol.com/docs/image.html)
it returns the same that  "to-binary mold an-image"
Gabriele
15-Jun-2005
[776]
sounds like a bug to me.
Vincent
15-Jun-2005
[777]
ok, I'm writing a report.
sqlab
22-Jun-2005
[778]
regarding #3808

it's just the common double slash, that Rebol does not like.
>> list-dir %//remotemachine/remoteshare   
should be written as
>> list-dir %/remotemachine/remoteshare
Volker
22-Jun-2005
[779]
maybe that double-slash should be allowed then? would ibreak something, 
like splitting a path?
Gabriele
22-Jun-2005
[780x4]
>> clean-path %//
== %/C/
>> clean-path %///
== %/C/REBOL/
>> clean-path %////
== %/C/REBOL/View/
so,
>> clean-path %//something
== %/C/something
i guess it's intended. not sure if anyone's ever used that.
BrianH
23-Jun-2005
[784]
I've used it, especially for shared scripts where I want to be able 
to move them to other drives and not break.
sqlab
23-Jun-2005
[785]
I just tested some scripts with rebcmd2512531.exe. 

Now they use the machine upto 100% and the machine reacts very  sluggish 
to user input, where before it was still usable..
Gregg
23-Jun-2005
[786]
Can you provide any details about what they do, or how they work?
sqlab
23-Jun-2005
[787]
They work in pairs.

One reads data from files, does some parsing, does some odbc and 
sends data via tcp.

the other reads data from tcp, writes some files and sends back an 
acknowledgement. 


one reads data from files, does some parsing and sends data via tcp.

The other reads data from tcp, does some parsing, does more odbc 
and sends the more data back as a reply.
DideC
27-Jun-2005
[788x4]
In 1.3, 'forall does not react to 'return like in old version : just 
break the loop!
Try this in 1.3 and 1.2 or beta:
f: does [
	b: [1 2 3] 
	forall b [probe first b return] 
	print "après"
]

f
Due to change in 'forall, yes, but some people (on French forum) 
are in trouble with that.
Does it worth a RAMBO ticket ???
Anton
27-Jun-2005
[792x2]
You are right.
I think yes.
DideC
27-Jun-2005
[794]
Ok, go for it...
Ladislav
27-Jun-2005
[795]
Hi Dide, you revealed two bugs at once, I think, that the Throw-on-error 
improvement is in Rambo already
Anton
27-Jun-2005
[796x3]
I think the new SPLIT-PATH was done by Romano ?  I found this:
file: %/volume/directory/file.r
path: find/match file %/volume/  ;== %directory/file.r
split-path path  ;== [%directory/file.r %file.r]  ; <--- wrong !!
split-path copy path  ;== [%directory/ %file.r]
(split-path mucks up when its target argument is at a series offset.)
Gabriele
27-Jun-2005
[799]
Anton: please sumbit it to rambo.
Anton
27-Jun-2005
[800x3]
Ok.
Submitted.
Did Dide submit his bug above ? It sounded like he wanted me to do 
it. :)
Gabriele
27-Jun-2005
[803]
he did.
Anton
27-Jun-2005
[804]
It looks like split-path was done by Romano. Maybe we should alert 
him.