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

World: r3wp

[Script Library] REBOL.org: Script library and Mailing list archive

Sunanda
14-Mar-2008
[658]
Thanks Oldes.

Part of the problem is that all pages served from REBOL.org are served 
as
   charset=utf-8
even if a specific needs a different charset.
We need to make that more flexible :-)
btiffin
3-Apr-2008
[659x2]
How many people use the Desktop Librarian?   If not, why?  If so, 
how?


And if the answer to the first question is more than 1, who would 
be up for a documented experiment in REBOL/Agile team development? 
 It would be starting from a 60%ish completed RebGUI app with big 
big plans (and a potential complete rewrite to fit with a could-be-soon 
Revault).  There are definite and defineable 'pieces' involved.


R2 mind.  See; I dropped the ball a few months back and need a reason 
slash motivation to restart as rebol.org is too valuable a resource 
to not.  :)
If what I know about Agile is anywhere near close, we'd also need 
a "customer" or two.  To be open, honest and critical.   But those 
individuals, while having an idea of what they want to see, can't 
really be exisiting Library Team members ... I don't think.  Any 
Library Team members not involved in dev, would be the "management"
Geomol
3-Apr-2008
[661]
I don't use Desktop Librarian. I'm not absolutely sure why. Maybe 
because I don't use the desktop much. And why not that? Again, not 
absolutely sure. Because it feels a little weird!? Because it needs 
a Directory Opus (from Amiga) kind of tool!?
btiffin
3-Apr-2008
[662x2]
Plus ... if you can't tell; I've read Agile, never done Agile, but 
I think it fits as a counter balance to REBOL Cowboy.  Plus ... don't 
take me using the moniker Cowboy to mean a bad thing.  It has been 
the method of many a good piece of REBOL software, just perhaps not 
what  some IT managers want to see.
John;  Gabriele posted ropus.r to the library!  :)   I think it only 
needs a change to an OPEN/WAIT to be 2.7
Geomol
3-Apr-2008
[664x3]
Cool! I'll see, if I can find it...
Do you know, with what version it works?
Hm, from dec. 1999, so not supported for a long time.
btiffin
3-Apr-2008
[667x2]
I had it running on 2.7.6 Win98.  But it required a change of an 
OPEN/WAIT to OPEN/NO-WAIT.  It's from 2001 so ...
Other than Help flashing to quickly it seemed to operate ... perusal 
mode that is.
Gabriele
4-Apr-2008
[669]
lol, ropus.r was for Core 2.0... heh. it says a lot that it still 
works though. (not that it does anything weird.)
Gregg
4-Apr-2008
[670x4]
I haven't used it for a long time, because it's out of date WRT content.
Looks like it was just updated thought. :-)
So it's a psychological and feature problem.
Feature problem with my old install that is. The new Refresh option 
is what was needed. Excellent.
Sunanda
8-Jul-2008
[674x2]
Can anyone help with this problem with Sterling's Calendar application?
I thought it might be version related, but one of the VID versions 
I have exhibit the problem:
** Script Error: Cannot use multiply on none! value
** Where: edit-text
** Near: 2 * face/edge/size

http://www.rebol.org/cgi-bin/cgiwrap/rebol/discussion.r?script=calendar.r
Gregg
8-Jul-2008
[676x2]
Looks like this line is the problem:

        dp-area: area (dp-info/size - 4x0) ivory ivory edge [size: none] 
        with [show?: false ff: day: time: none]

Change to:

        dp-area: area (dp-info/size - 4x0) ivory ivory edge [size: 0x0] with 
        [show?: false ff: day: time: none]
Posted as a reply on REBOL.org as well.
Sunanda
10-Jul-2008
[678]
Thanks Gregg....That seems to have done the trick:

http://www.rebol.org/cgi-bin/cgiwrap/rebol/discussion.r?script=calendar.r
BrianH
3-Sep-2008
[679x3]
I would like a way to search the script library for words in scripts, 
that would not return scripts that have those words in strings. I 
would use this function several times a week when researching function 
usage for my mezzanines work.
Just a search that filters out string!, file! and url! types would 
be fine. I am only interested in searching the various word and path 
types.
Read above as: Just a search that filters out any-string! types would 
be fine. I am only interested in searching any-word! and *path! types.
Anton
4-Sep-2008
[682x4]
Hmm... How to do that?
We need to know where a particular
Maybe:
1. Read script *and* Load script
2. Visit each item in the loaded block, recursively.
3. As each item is visited, check its type.

4. Depending somewhat on type, parse (in the READed script) to the 
molded item:
4.1  If it's a series, search for the "opener", eg. block! -> "["
4.2  If it's a non-series, search for it molded.
4.3
(oops.. incomplete post, sorry)
We need to know where a particular .. value is in the original source 
string (read from file).
4.3 (Cater for variations in molding, eg. strings in the source written 
as "..." can be molded {...} and vice versa, depending on length.)
Sunanda
4-Sep-2008
[686]
Interesting idea. Brian. We could certainly weight the results so 
those with words in the body rather than strings etc are listed higher....In 
fact, we already do that as one of the ranking factors.
Let me think about it....
BrianH
4-Sep-2008
[687x2]
When I am making changes to the mezzanines, I use the script library 
for research on existing usage of these mezzanines to see whether 
anything would break. When the name of a function is a common word 
that would show up in comments or strings, this is much more difficult. 
I would also like to look for third-party functions that I can't 
remember where they are defined or their author.
Would it be useful to index the files? That way you could extract 
keywords on posting rather than at search time.
Sunanda
4-Sep-2008
[689]
We do index the files, and we have several indexes, some built by 
parsing parts of the script. So we can, usually, search for special 
parts of scripts -- like strings or comments.

Part of the difficulty is that there are some scripts that we cannot 
do a 'load or a 'load/header on - they are broken or have an incompatible 
'needs: header. So we cannot add those scripts to the sepcialised 
indexes. They need specialised handling :-)

Watch this space -- I'm fiddling with some code that may partially 
need your need.
Anton
4-Sep-2008
[690x3]
Can't load ? Just skip it with with a warning message :) You still 
get your 99% solution.
Oh, sorry, I don't know how many are not loadable in rebol.org. I 
just loaded my entire source base after fixing one that was unloadable.
but I am obviously not taking public submissions like rebol.org.
Sunanda
4-Sep-2008
[693]
If we can't load, we try a few tricks (like commenting out the needs: 
header and reloading).

But still, there are one ot two that we fail with. So they don't 
get as well indexed as the others...And (for the same reasons) they 
are the ones that appear in black and white even if you click the 
"view in color" link.
BrianH
4-Sep-2008
[694x2]
How easy is it to edit your scripts after they have been submitted? 
Do you feel comfortable adding the appropriate needs header where 
needed, provided you know enough about REBOL versions to determine? 
Can you flag the appropriate files as problematic?
For that matter, do you index line comments separately, as LOAD filters 
them out?
Sunanda
4-Sep-2008
[696x3]
It's pretty easy to update a script after you've contributed it.....Use 
the [update] link to add a new version.
Yes, we also index comment lines separately. Basically, we use the 
same logic as Carl's color-code.r to analyze the parts of a script:

  http://www.rebol.org/cgi-bin/cgiwrap/rebol/view-script.r?script=color-code.r
Brianh: <I am only interested in searching the various word and path 
types.>

Try this quick concept code. In REBOL.org's search box, use [b] as 
a sort-of inline refinement to limit script searches to just the 
body of a script, eg
     sing

  -- finds nearly 300 scripts which contain the string "sing"    but
    sing [b]

-- finds just three scripts that have the word-part "sing" in their 
body
Alan
14-Sep-2008
[699]
.
Sunanda
31-Oct-2008
[700]
Even better script searching at REBOL.org -- we've extended the "[b]" 
notation to include other parts of a script and any tags the script 
has. The search can now be highly tuned to what you are looking for:
http://www.rebol.org/boiler.r?display=introduction.html
Robert
1-Nov-2008
[701]
BTW: Is it possible to search by script comments?
Sunanda
1-Nov-2008
[702]
Do you mean comments _in_ a script; or comments about a script (ie 
the discussion threads)?

Either way, yes -- check the link in my previous post for the syntax 
and some examples.
Robert
1-Nov-2008
[703]
In the script. But cool that it's supported.
Izkata
1-Mar-2009
[704x2]
Is there something going on with packages?  I uploaded a new one 
several days ago and can't easily redownload it (for testing) - repack.r 
keeps giving me "ERROR 306:  not available right now"
nothing happens if I click on "help", either..
Sunanda
1-Mar-2009
[706]
It's not a clear message -- sorry......I think it is because the 
package is not set as being available for downloading:

http://www.rebol.org/package-information.r?script-name=arff-datamining.r
Izkata
1-Mar-2009
[707]
Yeah, 'tis my own mistake.. oops