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

World: r3wp

[!REBOL3]

Ashley
5-Feb-2010
[453]
>> length? read http://idisk.me.com/dobeash/Public/rebdb.r
== 12771
>> size? http://idisk.me.com/dobeash/Public/rebdb.r
== none
>> help size?
USAGE:
	SIZE? target

DESCRIPTION:
	Returns the size of a file.
	SIZE? is a function value.

ARGUMENTS:
	target (file! url!)
BrianH
5-Feb-2010
[454]
Good to know, I'll put it on the list for the http scheme.
Graham
5-Feb-2010
[455]
>> result: write http://idisk.me.com/dobeash/Public/rebdb.r[head]
== [%/dobeash/Public/rebdb.r 12771 none]
Ashley
5-Feb-2010
[456]
How on earth did you come up with that!?
Graham
5-Feb-2010
[457x3]
I've written a few schemes :)
so this should work inside the http scheme

		size?: funct [
			port [port!]
		][
			tmp: write port [ head ]
			pick tmp 2
		]
or just 

second write port [ head ]
Ashley
5-Feb-2010
[460]
>> #{0140} = #{0140}
== true
>> #{0141} = #{0141}
== true
>> #{0141} = #{0161} 
== true
>> #{0141} == #{0161}
== false
BrianH
5-Feb-2010
[461]
Oh, that's bad: EQUAL? is doing case-insensitive comparison for binaries. 
That's a bug - I'll report it.
Ashley
5-Feb-2010
[462]
Is this the same problem?

>> #{0159} > #{0158}
== true
>> #{0159} > #{015E} 
== true
BrianH
5-Feb-2010
[463]
Yup. Already reported.
Graham
6-Feb-2010
[464]
So, it looks like Carl is in bug fixing mode  ....
BrianH
6-Feb-2010
[465]
Oh yeah, and it is much appreciated :)
Graham
6-Feb-2010
[466]
The concensus was that the host kit should be the priority ...
Henrik
6-Feb-2010
[467]
perhaps the fixes are required for the host kit.
Graham
6-Feb-2010
[468]
That's so nice of you Henrik :)
Henrik
6-Feb-2010
[469]
anyhow A97 is clearly marked before the hostkit in the priorities 
list.
BrianH
6-Feb-2010
[470]
He's still sing the queue-with-timeouts priority model. The hostkit 
got put on hold while some of the timed out items were handled: R2, 
the web site, and now bug fixes.
Graham
6-Feb-2010
[471]
Well, the only bug that bugs me is http://www.curecode.org/rebol3/ticket.rsp?id=682&cursor=56
BrianH
6-Feb-2010
[472]
Agreed, that's a priority for me too (though not as high as TO or 
THRU charset not working).
Paul
6-Feb-2010
[473]
I think using append/insert on binary should be a high priority.
BrianH
6-Feb-2010
[474]
Well, I think that problems with workarounds get a lower priority 
than problems without workarounds, but I agree.
Paul
6-Feb-2010
[475]
The workaround for the binary issue is nested joins for me.
Graham
6-Feb-2010
[476]
the main workround is to use R2
BrianH
6-Feb-2010
[477]
Or chained inserts or appends.
Paul
6-Feb-2010
[478]
I got a big project I want to turn off of R3DBMS and need many of 
these core fixes.
BrianH
6-Feb-2010
[479]
Finished the LOAD decoder for compressed scripts/modules, now working 
on the SAVE encoder.
Pekr
7-Feb-2010
[480]
A97 released for Windows and OS-X with over 40 fixes. Can't be reached 
by 'upgrade function though, probably due to website changes. You 
can find it here: http://www.rebol.com/r3/downloads.html
Graham
7-Feb-2010
[481]
must be hostkit next?
BrianH
7-Feb-2010
[482]
Darn, I was hoping to get compressed scripts/modules done in time 
for inclusion in a97.
Pekr
7-Feb-2010
[483]
not all critical bugs might be fixed. Maybe we could have A98 with 
few additional fixes too?
BrianH
7-Feb-2010
[484]
Compressed scripts/modules are now done. Alpha 97 came one hour or 
so too early.
Graham
7-Feb-2010
[485]
never too early
BrianH
7-Feb-2010
[486]
Guess we have something to look forward to for a98 :)
Graham
7-Feb-2010
[487]
using the http scheme ... very annoying that's there no trace/net 
... keep having to fire up wireshark
Steeve
7-Feb-2010
[488]
We neef of a trace scheme, that can be stuck with any other scheme.

But At first,  we need to think about a framework to be able to compose 
several schemes together, like the pipe idea someone else already 
proposed.
Ashley
7-Feb-2010
[489]
I hope there's going to be an a97 release for OS X Intel ...
Pekr
7-Feb-2010
[490]
BrianH: maybe you should bump some important to solve tickets importance, 
so that Carl sees, what bugs are our priority?
BrianH
7-Feb-2010
[491x3]
I have to confer with him first about the general category of what 
he plans to work on next before I can know what kind of thing would 
be important now. Without knowing the plan, I can't choose.
Not the overall plan, the plan for the next release in specific.
Here's the proposal for compressed scripts/modules: http://curecode.org/rebol3/ticket.rsp?id=1466

And the original blog (complete with comment flame war): http://www.rebol.net/r3blogs/0274.html
Paul
7-Feb-2010
[494x4]
When I run the latest build for windows I get the following error:

Evaluating: /C/Users/Paul/Desktop/R3DBMS/r3dbms.r3
** Script error: cannot access words in path system/words
** Where: catch either either do begin do
** Near: catch/quit intern code if flags/halt [sys/halt]
The previous build worked fine but this one gives me an error and 
I can't execute my functions.  Currently my script has a halt at 
the end and I just run it and execute the functions from the console.
This build is a97
>> system/version
== 2.100.97.3.1
Ashley
7-Feb-2010
[498]
The system object has changed ... system/words no longer exists.
Paul
7-Feb-2010
[499]
that a change in the latest release?
Henrik
7-Feb-2010
[500]
I don't see it in A96 either.
Paul
7-Feb-2010
[501x2]
hmmm.
So where is system/words at now? Or was it removed all together?