World: r3wp
[RAMBO] The REBOL bug and enhancement database
older newer | first last |
Henrik 19-Nov-2006 [2015x2] | (continuing from View) Funny, Anton I got the standard Windows crash requester the first time, but the new one the second time. |
actually: >> to-vector "1" old style crash >> to-vector "x" new style crash! :-) | |
Anton 19-Nov-2006 [2017] | My console just disappears with the first one. |
Robert 19-Nov-2006 [2018] | This one worked before: REBOL/View 2.7.0.3.1 18-Nov-2006 Core 2.6.3 Copyright 2000-2005 REBOL Technologies. All rights reserved. REBOL is a trademark of REBOL Technologies. WWW.REBOL.COM >> make list! 0 ** Script Error: Cannot use make on datatype! value ** Where: halt-view ** Near: make list! 0 > |
Gabriele 19-Nov-2006 [2019] | looks like list! and hash! don't work. |
Pekr 19-Nov-2006 [2020x2] | were there so deep changes to kernel, that those already working things don't work? |
Beginning of the corresponding blog raised question, if it is worth to do so for "old" branch. I really see it as unneded, if the emphasis on the future is clear - R3. | |
Robert 19-Nov-2006 [2022] | Petr, we need updates to the current releases. Until R3 has stabilized etc. it takes quite some time. I need a matured product. |
Henrik 19-Nov-2006 [2023] | pekr, R3 stable is probably a year away at best. we need something to play with in the meantime :-) |
Pekr 19-Nov-2006 [2024x2] | yes, I do understand. But I am not sure, if those updates should not be mainly bugfixes only. I don't agree about 1 year maturity. R2 was developed by Carl alone in 3 months? |
OK, at least I hope that new introduced functionality to R2 is on pair with what is planned for R3 | |
Graham 19-Nov-2006 [2026] | I would hope that crashes can be vectored to our own handling system rather than having to trap every error |
Gabriele 19-Nov-2006 [2027x2] | petr, the deep changes are, i guess, to make Carl's life easier. (i.e. compiler and string) |
graham, i'm still not sure what you mean. | |
Graham 19-Nov-2006 [2029x2] | I would like a way to handle all untrapped errors. |
Dropping to the console in an encapped program is not very pretty ... :( | |
btiffin 19-Nov-2006 [2031x2] | Graham: I might not quite be getting it but this style works for me. Wrap your code in a "go" function and then ; Loop forever forever [ if error? result: try [go] [ errobj: disarm result errorlog [mold errobj] either noask [ alert reform ["There has been an error logged" newline copy/part mold errobj 200 newline "See File/Configure/View Error File/ for more info"] ][ unless question/title reform ["There has been an error logged." newline copy/part mold errobj 200] "Continue?" [ print ["Type Q to quit, GO to restart FirM"] halt ] ] ] ; halt recycle ] |
The whole noask part is support for me while developing. If something is wonky before the gui gets up and exposes the Exit button there would be no way out of my app, so noask starts out false. | |
Anton 19-Nov-2006 [2033] | Graham is talking about crashes which take down the interpreter :) |
btiffin 19-Nov-2006 [2034] | Sorry for the interruption. |
Maxim 19-Nov-2006 [2035x3] | REBOL is very old. although R1 code might have been finished quickly, it tool many months to get view, draw, and other goodies. and AFAIK Carl was not alone. getting R3 at the level of R2 will definitely take time. especially to a level where it is stable enough to be commercially viable. |
just getting 1.2 -> 1.3 took ages (for many reasons.. but still) | |
and R3 is such a big shift in philosophy, just adapting our code to it will take some time. | |
Graham 20-Nov-2006 [2038] | btiffin ... I guess it's good to wrap an error handler around the whole program, and too often I don't. I just trap suspect areas, and then get caught when something happens in a region where I was not expecting the possibility of an error. |
Gabriele 20-Nov-2006 [2039x2] | Anton, if a crash takes down the interpreter then you cannot trap it with interpreted code. |
Graham, what I don't understand is the difference between the code that btiffin showed and what you ask. | |
Anton 20-Nov-2006 [2041] | Oh, you're right. Graham, just do this in your programs: view/new window: layout [...] if error? set/any 'reserr try [ do-events ][ print mold disarm reserr ] |
Graham 20-Nov-2006 [2042x2] | Is this a one fire mechanism? When I do this, and get an error, and print it .. or whatever, and if I generate the same error again, it then drops to the standard error handler ignoring my error handler. |
Do, I need to reset the trap somehow? | |
Cyphre 20-Nov-2006 [2044] | Also it is good to add some protection against infinite error cycling.(for example if an error occurs in some loop/timer/port etc. executed code). |
Graham 20-Nov-2006 [2045] | and .. wrong channel ... |
Gabriele 20-Nov-2006 [2046] | I have a question for you guys. |
Maxim 20-Nov-2006 [2047] | go! |
Gabriele 20-Nov-2006 [2048x3] | I want to improve the esmtp:// protocol to fix a few bugs reported to RAMBO... and make it more conformant to the RFC |
so... it needs to send out EHLO instead of HELO | |
should it fall back to HELO if EHLO fails, or should we tell users to use the old smtp:// protocol if they are dealing with an old server? | |
Maxim 20-Nov-2006 [2051] | what is the drawback of fallback? security risk? |
Gabriele 20-Nov-2006 [2052x2] | no, it's just not esmtp anymore :) |
i mean, if noone in the world will ever need the fallback, there's no point in adding it. in weird cases when you have to work with some 15 years old server, you may just use the old smtp:// protocol. | |
Maxim 20-Nov-2006 [2054] | as long as you make the error obvious, I guess its better to be strict about it. |
Graham 20-Nov-2006 [2055x2] | fall back. |
if you write a simple smtp server in rebol you might just want to support helo only | |
Gabriele 20-Nov-2006 [2057x3] | graham - did you stumble on any servers not liking EHLO? if you did, then I guess we need to fallback |
no, actually, you can support EHLO and have no extensions. | |
not supporting ehlo in a server makes your server not rfc compliant | |
Graham 20-Nov-2006 [2060x3] | let me check if my own smtp server supports ehlo :) |
http://www.compkarori.com/vanilla/display/Smtpd.r | |
suports EHLO .. so I guess you're okay! | |
Gabriele 20-Nov-2006 [2063] | i think you're the person that better knows how smtp servers behave out there. :) |
Graham 20-Nov-2006 [2064] | there are some pretty ancient smtp servers out there ... |
older newer | first last |