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

World: r3wp

[!REBOL2 Releases] Discuss 2.x releases

GrahamC
16-Jan-2011
[2290]
Yes, have mercy on us all !
Pekr
16-Jan-2011
[2291]
speed.r kind of becoming natural part of R2 and R3 - http://www.rebol.com/article/0506.html
Ashley
16-Jan-2011
[2292]
On Mac 2.7.8.2.5:

>> ls
** Script Error: path has no value
** Where: ls
** Near: switch type?/word :path [
    unset! [] 
    file! [change-dir path] 
    string! [change-dir to-rebol-file path] 
    w...

>> source speed?
test
test
... (fills console)
test
test
<code>
Oldes
17-Jan-2011
[2293]
the source is correct.. there is just a big string wirh many "test" 
lines which is used in test :)
BrianH
17-Jan-2011
[2294x2]
Ashley, that looks like the R3 source of LS, not the R2/Forward source. 
For that matter, the R2 source of LS on Windows doesn't look like 
it has changed either, and looks like the old R2 source. I'll look 
into it.
I'll also look into fixing the SPEED? bug.
BrianH
18-Jan-2011
[2296]
Just remembered: The reason R3's LS wasn't backported to R2 was because 
its behavior wasn't settled yet. However, since there have been no 
changes in it for more than a year, and it's just a console-level 
formatting function, there should be no reason not to include it. 
In the meanwhile the R2/Forward version works fine.
Maxim
18-Jan-2011
[2297x2]
it seems the AGG text bug was not pushed to the 2.7.8  release...
I meant, the fix was not released.
PeterWood
6-Feb-2011
[2299]
Does 2.7.8 support get-words with paths? eg :obj/get-my-data
ChristianE
6-Feb-2011
[2300]
>> o: context [test: 3]
>> a: o
>> :a/test
== 3
Sunanda
6-Feb-2011
[2301]
I think Peter might be asking about this sort of usage case:
     o: context [test: 3]
     a: 'o
     b: 'test

    o/:b   ;; this works
    == 3 
    :a/:b  ;; this fails
    ** Script Error: Cannot use path on word! value
    ** Near: :a/:b

    get in get a b   ;; this works, but it is hardly elegant
    == 3
Kaj
6-Feb-2011
[2302]
I thought :a/b is a get-path! as a whole?
PeterWood
6-Feb-2011
[2303]
Here's my issue though I'm still running 2.7.5

>> f: func[][1]                
 
>> o: make object! [my-func: :f
]
>> b: reduce ['my-func :f]     
 
== [my-func func [][1]]

>> :o/my-func
== 1

>> :b/my-func
== 1


As you can see the value is being evaluated when using a "get-path!". 
Rebol3 simply presented the unevaluated value which is what I had 
expected.
Ladislav
6-Feb-2011
[2304x2]
Then yjou did not notice, that in R3, it is a different datatype.
(no get-word in the value)
PeterWood
6-Feb-2011
[2306]
No I didn't so let me rephrase my question. Is the  get-path! type 
supported in 2.7.8?
Ladislav
7-Feb-2011
[2307]
no, the datatype does not exist in R2
PeterWood
7-Feb-2011
[2308]
Thanks.
GrahamC
12-Feb-2011
[2309]
am I the only one who notices that cut and paste is completely broken 
on Rebol2 new releases?
BrianH
12-Feb-2011
[2310]
Which platform?
GrahamC
12-Feb-2011
[2311x2]
Windows 7
I can paste into here, and everywhere except Rebol2 2.7.8
BrianH
12-Feb-2011
[2313]
Works for me on XP (normally I would have 7 but that computer needs 
rebuilding). Right-click menu, ^V and read clipboard:// .
MikeL
13-Feb-2011
[2314x2]
Works for me on REBOL/View 2.7.8.3.1 1-Jan-2011
on Win7 32b
Ladislav
13-Feb-2011
[2316]
am I the only one who notices that cut and paste is completely broken 
on Rebol2 new releases?
 - most probably yes, it works for me - Windows 7 64-bit
Oldes
13-Feb-2011
[2317]
works for me as well.
GrahamC
13-Feb-2011
[2318]
Well, windows cut and paste services are working for me with other 
apps ( except chrome which often won't allow pasting from chrome 
into other apps ) so I guess I have some weird software that is stopping 
this working.  Often it goes away when I reboot ...
Maxim
14-Feb-2011
[2319]
could it be malware?
GrahamC
14-Feb-2011
[2320]
that only affects Rebol ?
james_nak
14-Feb-2011
[2321x2]
Graham, I sometimes see the copy  problem happening. I'm not sure 
why it happens and I am usually running rebol. Mostly I notice it 
with Ultraedit and Altme though I think they become the victims of 
the circumstance. I'll notate it more closely when it happens the 
next time. BTW, paste always seems to work but it will of course 
paste the last thing it could copy.
Graham, also check to see that a right mouse/copy works. I've seen 
cases where the Ctl-C stops working but right mouse does (?)
GrahamC
14-Feb-2011
[2323x2]
Not for me ... I try the Control-C, and also Control-X and right 
click, copy .... but can't paste into Rebol.
but I can paste into other apps ...
james_nak
14-Feb-2011
[2325]
Ah. Yes, I've seen that too. As I mentioned, this happens in Ultraedit 
though I'm not sure if rebol is originally causing it or not. Usually 
I have to close down the app and restart it to make it work again.
Maxim
14-Feb-2011
[2326x2]
it might be windows 7 specific since I've never had a problem with 
rebol copy/paste on XP.  
they changed a lot of APIs in vista/7 . 

Altme is a different story though.
one thing to look out for in view (in any face using the caret and 
standard focus mechanism) is that when windows are closed, they do 
not unfocus their fields.  this has bitten me quite a few times which 
made other key handlers seem like they where dead.


this is why you should always call unfocus when you open or close 
a window in view.
GrahamC
19-Feb-2011
[2328]
How about including a few common parse rules ... such as digit, digits, 
alpha alphanumeric in the standard build.  Adds nothing really.to 
size.
Robert
19-Feb-2011
[2329]
That's a good idea. Should be part of R3 as well.
GrahamC
19-Feb-2011
[2330]
some of these exist already but they're hidden inside special contexts 
such as the url parser
GrahamC
20-Feb-2011
[2331]
Well, this is interesting....


I don't have clipboard functionality in 2.7.8 while Prevx is running, 
but I do in 2.7.6.  Turn off Prevx monitoring and my 2.7.8 clipboard 
starts to work again.
BrianH
20-Feb-2011
[2332x2]
Checking the Prevx support forum, it appears that they block pasting 
to applications to prevent clipboard monitoring. R2.7.6 is probably 
in their whitelist. Someone with a Prevx license needs to report 
that they are blocking 2.7.8, so they can add it to their whitelist.
In particular, they block all apps not in their whitelist any time 
a "secured" web browser is open.
GrahamC
20-Feb-2011
[2334]
a secured web browser??  do you mean a https site is open?
Kaj
21-Feb-2011
[2335]
Nice, a tool that prevents you from using your computer, unless you 
tell them that you really want to
GrahamC
21-Feb-2011
[2336]
I'd already figured out i needed to disable prevx for doing screen 
captures!
Kaj
21-Feb-2011
[2337]
Didn't you install it for nailing your clipboard and screen buffer 
shut?
GrahamC
21-Feb-2011
[2338x2]
No :)
I installed it because I'm too cheap to buy a virus scanner