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

Graham
20-May-2005
[634]
If only AUTH, would be hard to add CRAM-MD5 which is already supported 
in Rebol's IMAP ?
Gabriele
20-May-2005
[635]
CRAM-MD5, if it fails it tries PLAIN. i hope we can make it smarter 
in the future by looking into what the server actually supports (EHLO 
command)
DideC
20-May-2005
[636]
Carl, Gabriele : I have created group "Debug p1.3" to continue on 
my bug and for others too
Vincent
20-May-2005
[637x4]
#3700: great! still doesn't work on images, but works fine with binary! 
and string!

some issues with string! usage in 'and 'xor 'or : 

1) string! op string! -> binary!, should returns a string! instead

2) a) string! op binary! -> error!, a) binary! op string! -> error! 
, 
should be allowed and do the same than:

a) string! op as-string binary! -> string! , b) binary! op as-binary 
string! -> binary!
#3697: can't crash REBOL anymore (Win2k) - tried some heavy brush 
pasting on picture: works fine.
#3694: seems fixed: my one-face-draw-textlist no longer needs a workaround 
- pen changes are applied.
#3693: works fine now :)
Gabriele
20-May-2005
[641]
anyone was able to test smtp auth?
JaimeVargas
20-May-2005
[642]
Gabriele smtp-auth is working here. Tested against smtp.mac.com Apple's 
server for their dot-Mac accounts, similar to HotMail.
Gabriele
20-May-2005
[643]
http://www.rebol.net/notes/rv13-changes.htmlupdated
Anton
21-May-2005
[644x2]
View 1.2.109 and 1.2.110   no longer have CTX-EDIT, where did that 
code go ?
These enhancements/bug fixes are great! :)
Gabriele
21-May-2005
[646]
anton: ctx-viewtop/ctx-edit. but, this will be fixed.
Vincent
21-May-2005
[647x3]
#3700: complement fully working, ops issues corrected ^_^
Warning, /View 1.2.11.3.1 and /View 1.2.110.3.1 are both named rebview1211031.exe
Oops, talked a little too fast. Testing all datatypes combinations 
for 'and, 'xor, 'or, 

[ binary! | string! ] op [ logic! | number! | char! | tuple! ]  -> 
crash.
Ashley
22-May-2005
[650]
Tested FTP operations against two of my sites that used to require 
%ftp-patch53.r & "system/schemes/ftp/passive: true" to work ... they 
both work fine now with the new FTP protocol handler. Good job Romano 
[and others].
Anton
22-May-2005
[651x3]
Vincent, that's right, we now have name collisions with older betas. 
Luckily the other day I wrote a script to rename all my rebview executables 
unambiguously. For interest, this is how I extracted the version 
number from each executable:
; find version
cont: read/binary file
version: none
result: parse/all cont [
	some [

  [to "REBOL/View " "REBOL/View " mark: version-rule end: (version: 
  copy/part mark end) to end]
		| thru "REBOL/View "
	]
]
digit: charset [#"0" - #"9"] ; "0123456789"

version-rule: [some digit "." some digit "." some digit "." some 
digit "." some digit]
Brett
22-May-2005
[654x2]
Hooray for Romano's FTP!  I've found it to be very reliable.
I have one modification wish for the FTP scheme: to add a List-Options 
variable like other FTP client programs have. This would allow LIST 
-la which allows hidden files such as Apache's .htaccess to be transferred 
using the scheme. At present these files cannot be transferred.
PeterWood
22-May-2005
[656]
Gabrielle: I submitted a bug to Rambo that  was just a mistake in 
my code. Sorry. Please could you delete it - #-233.
Gabriele
22-May-2005
[657x2]
vincent: please add any crashing example to RAMBO with importance 
set to Critical.
Brett: please add that as a wish ticket. if it won't be in 1.3 it 
will be in 1.3.1. :)
[unknown: 10]
22-May-2005
[659]
Is there any status on the documentation yet? Perhpas we could review?
Vincent
22-May-2005
[660]
done: #-234
Brett
22-May-2005
[661x2]
Didn't know I could - what is my logon?
Ignore that - just found it.
Vincent
23-May-2005
[663]
#3709-3710: sorry, got confused by linearity of image! mixed with 
useful pair! shortcuts. For #3709, I was thinking about "copy image 
from index to end" without getting out of bounds.
Henrik
24-May-2005
[664]
#3714 works
Anton
24-May-2005
[665x4]
Yes, Hooray for Romano's FTP!  Just remember to disable your previous 
Romano FTP patch (if you have one) from your user.r.  I added a version 
check around mine:

 if (system/version * 1.1.1.0.0) < 1.2.110.0.0 [ ; View1.2.110 has 
 Romano's FTP handler built in.

  do load-thru site/patch/ftp-romano-patch/ftp-patch53.r  ; the old 
  patch
	]
I'm not sure it's a good idea to not allow 0-sized faces. Is it a 
speed improvement that makes things so much faster ? The user code 
must HIDE the face instead of sizing it to zero, but HIDE may have 
other unintended side effects that are hard to workaround. eg. time 
events are stopped by HIDE:
view layout [btn "hide" [hide f] btn "show" [show f] f: box red 0:0:1 
feel [engage: func [face action event][if action = 'time [print now/time]]]]
If you are making a generic resizer, you can't just go modifying 
the code of the controlled widgets...
Vincent
25-May-2005
[669]
request : to really test new AGG/draw, we needs a command list. The 
examples helps, but there is now way to tell the presence and purpose 
of optional parameters. Not a full doc, just a simple one line per 
command list, ie : 'line 1st-point [pair!] 2nd-point [pair!] ... 
n-point [pair!]
Gabriele
25-May-2005
[670]
vincent: command list should be available soon
Anton
25-May-2005
[671]
You can probably figure most of them out with the help of the existing 
AGG docs.
Cyphre
25-May-2005
[672]
We will be finalizing the DRAW syntax very soon. After that step 
we release updated command list so your test scripts won't break 
in later releases.
Anton
25-May-2005
[673x4]
Looks like this bug is still here:
make bitset! 1057222216 ; --> hang
excuse me !   It does work OK...
(sorry about that, was just going through my old bugs)
Vincent
26-May-2005
[677x2]
#3723 : an old bug (it was at least in /Core 2.2.0) The 'list-dir 
function is missing a 'dir? test on argument. A line like :

if not dir? dir [throw make error! reduce ['access 'cannot-open dir]]

just before "read dir"  would do it (as 'dir? works with ftp:// too.)
not sure it's worth a report : from /View 1.2.10, there is a 'lic 
global word. It's probably a missing /local from a mezzanine related 
to license checking (it's between 'set-license and 'license.key in 
system/words)
PeterWood
27-May-2005
[679]
#3716: tested and worked  with original code that had problem. Thanks.
shadwolf
27-May-2005
[680x2]
hum is it normal I submited a new ticket to rambo and I have this
RAMBO Ticket #-257
PeterWood
27-May-2005
[682x2]
Yes the system allocates a negative number when you first submit 
a ticket. It seems to get allocated a positive number when it is 
viewed by a human.
#3716: The problem still seems to exist in more unusual cases :

REBOL/View 1.2.114.3.1 26-May-2005 Core 2.6.1
parse "string with 2 semi-colons ;; " none
== ["string" "with" "2" "semi-colons" ""]
>> parse "string with 2 commas ,, " none
== ["string" "with" "2" "commas" ""]

and the very extreme :

>> print mold parse "this string includes more ,,,,,,,,,,, semi-white 
spaces ;;;;;;;;
; " none

["this" "string" "includes" "more" "" "" "" "" "" "" "" "" "" "" 
"semi-white" "spaces
 
 
 
 
 
 
 
 
]