• Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

AltME groups: search

Help · search scripts · search articles · search mailing list

results summary

worldhits
r4wp211
r3wp2311
total:2522

results window for this page: [start: 2401 end: 2500]

world-name: r3wp

Group: Parse ... Discussion of PARSE dialect [web-public]
Ladislav:
27-Apr-2011
Now, check the PARSE documentation at:

http://www.rebol.com/r3/docs/concepts/parsing-summary.html

and then we can continue the discussion
Geomol:
27-Apr-2011
Oh, I got my understanding from http://www.rebol.com/docs/core23/rebolcore-15.html#section-4
The little example there is a good way to understand it:

page: read http://www.rebol.com/
parse page [thru <title> copy text to </title>]
print text
REBOL Technologies


I was thinking R2, maybe you guys talked about R3 only? Has this 
changed?
Ladislav:
27-Apr-2011
http://www.rebol.com/r3/docs/concepts/parsing-summary.html
Geomol:
4-May-2011
Here: http://www.rebol.com/r3/docs/concepts/parsing-summary.html#section-11

Input position must change
. And the solution was to invent a new keyword, WHILE. Hm...
Sunanda:
31-Oct-2011
Can anyone gift me an effecient R2 'parse solution for this problem 
(I am assuming 'parse will out-perform any other approach):

SET UP

I have a huge list of HTML named character entities, eg (a very short 
example):

       named-entities: ["nbsp" "cent" "agrave" "larr" "rarr" "crarr" ] ;; 
       etc
   
And I have some text that may contain some named entities, eg:

       text: "To send, press the &larr; arrow & then press &crarr;."
   
PROBLEM

I want to escape every "&" in the text, unless it is part of a named 
entity, eg (assuming a function called escape-amps):
        probe escape-amps text entities

         == "To send, press the &larr; arrow &amp; then press &crarr;."
  
TO MAKE IT EASY....

You can can assume a different set up for the named-entities block 
if you want; eg, this may be better for you:

       named-entities: ["&nbsp;" "&cent;" "&agrave;" "&larr;" "&rarr;" "&crarr;" 
       ] ;; etc 
   
Any help on this would be much appreciated!
Pekr:
31-Oct-2011
not fluent with html escaping, what's the aim? To replace stand-alone 
#"&" with "&amp"?
Gabriele:
1-Nov-2011
Sunanda, note that this is already available in the text encoding 
module: http://www.rebol.it/power-mezz/mezz/text-encoding.html
BrianH:
2-Dec-2011
My func handles 100% of the CSV standard - http://tools.ietf.org/html/rfc4180
- at least for a single line. To really parse CSV you need a full-file 
parser, because you have to consider that newlines in values surrounded 
by quotes are counted as part of the value, but if the value is not 
surrounded completely by quotes (including leading and trailing spaces) 
then newlines are treated as record separators.
Group: !REBOL2 Releases ... Discuss 2.x releases [web-public]
Geomol:
30-Nov-2006
REBOL [
	Comment: {
		Inspired by http://www.rebol.com/how-to/feel.html
	}
]

view/new layout [
	across
	tabs 120
    the-box: box 200x200 "Test Events Here" forest feel [
        engage: func [face action event] [
			ac/text: mold action show ac
			ty/text: mold event/type show ty
			of/text: mold event/offset show of
			co/data: event/control show co
			sh/data: event/shift show sh
			ke/text: mold event/key show ke
			kt/text: mold type? event/key show kt
			ti/text: mold event/time show ti
			dc/data: event/double-click show dc
        ]
    ] return
	lbl "action:" tab ac: info 100 return
	lbl "event/" return
	lbl "type:" tab ty: info 100 return
	lbl "offset:" tab of: info 100 return
	lbl "control:" tab co: led off return
	lbl "shift:" tab sh: led off return
	lbl "key:" tab ke: info 100 return
	lbl "type? key:" tab kt: info 100 return
	lbl "time:" tab ti: info 100 return
	lbl "double-click:" tab dc: led off
	key #"Q" [quit]
]
focus the-box
do-events
Anton:
16-Sep-2008
Accessing ODBC data sources with Core and View

http://anton.wildit.net.au/rebol/doc/translated/AccessODBC/odbcsockserv_english.html
WuJian:
23-Aug-2009
amacleod:   Do you mean the download address?   
http://rebol.com/view-platforms.html
http://rebol.com/platforms.html
Carl:
29-Dec-2009
Testing...

>> read https://secure28.inmotionhosting.com/~rebolc5/cgi-bin/order.cgi?cmd=buy&prod=sdk&
== {<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>

So far, so good.
BrianH:
2-Jan-2010
Release announcement: http://www.rebol.com/article/0447.html
Simple change notes: http://www.rebol.com/docs/v2-7.html


I'm trying to post the more detailed release notes in the comments 
of the announcement blog, but I'm getting caught by the blogger limits. 
One more message and I'll be done.
Graham:
2-Jan-2010
definitive answer is here http://www.mail-archive.com/[rebol-list-:-rebol-:-com]/msg11178.html
Graham:
3-Jan-2010
so,

man //

WIKI:
    http://www.rebol.com/r3/docs/functions/z-q-q.html
Will:
17-Jan-2010
been looking for 2.7.7 changes, maybe a link to this blog http://www.rebol.com/cgi-bin/blog.r?view=0447
sholuld be put on this page http://www.rebol.com/docs/v2-7.html
Will:
30-Jan-2010
Graham I suggest you use Chris's http://www.ross-gill.com/r/altjson.html
  text: {print "hello"}              
;   {print "hello"}
  a: to-json make object! [ t: text ]
;   {{"t":"print \"hello\""}}
  probe load-json a                  
make object! [
    t: {print "hello"}
]
Andreas:
14-Mar-2010
Brian: http://www.rebol.com/release-archive.htmlshould have all 
of the old platform numbers
GiuseppeC:
19-Mar-2010
It seems they will be reviewed soon. http://www.rebol.com/docs/changes-2-7.html
Look at REBOL 2.7.8 last line
Carl:
26-Mar-2010
Updated http://www.rebol.com/docs/changes-2-7.html
Graham:
14-Apr-2010
http://monetdb.cwi.nl/SQL/Documentation/Programming-Interfaces.html
TomBon:
15-Apr-2010
the cli is currently using the original utilities from the db manufacturer 
to ensure max. performance and robustness. 

there are already many switches to modify out & input. for example 
take a look here for the monetdb switches:

http://monetdb.cwi.nl/XQuery/Documentation/The-Mapi-Client-Utility.html#The-Mapi-Client-Utility
Graham:
11-Sep-2010
Is anyone tracking what we need for 2.7.8 ??  http://www.rebol.com/docs/changes-2-7.html
This was supposed to be released months ago ...
nve:
11-Dec-2010
REBOL 2.7.8 (In Development)
http://www.rebol.com/docs/changes-2-7.html

Carl, is this still in development ?
Pekr:
2-Jan-2011
I can find this one, but not sure what got implemented in the end 
- http://www.rebol.com/docs/changes-2-7.html
Oldes:
2-Jan-2011
as usualy http://www.rebol.com/download-view.html
Dockimbel:
4-Jan-2011
Pity that the 2.7.8 roadmap wasn't updated: http://www.rebol.com/docs/changes-2-7.html
Group: Power Mezz ... Discussions of the Power Mezz [web-public]
Gabriele:
3-May-2011
No, though it could easily be used to reimplement Temple, this time 
with the ability to load any html.
Group: ReBorCon 2011 ... REBOL & Boron Conference [web-public]
nve:
6-Mar-2011
A short message on Rebol Week : http://rebolweek.blogspot.com/2011/03/reborcon-2011-quick-report.html
Group: Core ... Discuss core issues [web-public]
Dockimbel:
19-Mar-2011
http://www.mail-archive.com/[rebol-list-:-rebol-:-com]/msg14312.html 


Tim said in 2002 in that post that "Is working intermittenly"...I 
wonder if this bug is not hiding there since the begginning (assuming 
that Tim was testing on Windows).
Geomol:
26-Apr-2011
I still think, these refinements are not on purpose. :-)

Check this part in the Core manual: http://www.rebol.com/docs/core23/rebolcore-16.html#section-3.7
Geomol:
26-Apr-2011
I went through the scanner systematically 2 years ago, produced a 
document, which I sent to Carl. It's here:
http://www.fys.ku.dk/~niclasen/rebol/rebol_scanner.html
BrianH:
26-Apr-2011
XML and HTML are relatively easy to lex, and require Unicode support, 
so hand-written lexers are probably best. Schema validation is a 
diffferent issue.
Geomol:
14-May-2011
Tonight's Moment of REBOL Zen:

Literal and Get Arguments in R2

see: http://www.rebol.com/docs/core23/rebolcore-9.html#section-3.2

These functions use Literal Arguments:


 ++ -- ? ?? cd default deflag-face first+ flag-face flag-face? for 
 forall foreach forskip help l ls map-each remove-each repeat secure 
 set-font set-para source

This function uses Get Argument:

	quote

It could be questioned, why functions like

	get set unset in catch throw checksum


, which all have arguments named WORD, don't use Literal Arguments?
Gabriele:
8-Oct-2011
eg. see http://www.rebol.it/power-mezz/schemes/hardball.html#section-7.1
Gabriele:
8-Oct-2011
and http://www.rebol.it/power-mezz/mezz/messages.html#section-9
Pavel:
30-Nov-2011
2 amacleod: time protocol is not very accurate, the same levely of 
accuracy you can get by reading any HTML size and distile the time 
from HTML header. OTOH NTP protocol is able to get milisecond accuracy 
but by quite difficult handshake and as far as I know not yet written 
for rebol
Group: Red ... Red language group [web-public]
Dockimbel:
25-Mar-2011
A link for Andreas: http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/MachOTopics/1-Articles/dynamic_code.html


I was thinking about using some similar trick for ELF to allow efficient 
PIC support (avoiding the indirection table). It works by having 
a fixed offset between CODE and DATA segments in memory, so DATA's 
start address can be calculated at runtime, and all globals can be 
accessed using a simple offset.


It should be enough to reserve enough space for CODE segment (let's 
say 10MB) and make DATA entry point fixed? I wonder if the relative 
offsets between segments are preserved when the segments are moved 
by OSes (I hope so)?
BrianH:
28-Mar-2011
Note that there is a typo in the manual you linked here: http://www.rebol.com/docs/core23/rebolcore-16.html#section-3.1
- the caret character is listed as #"^" when it should be #"^^".
Dockimbel:
29-Mar-2011
Specs doc updated with now an additional CSS skin with white background 
(as requested by several ppl): http://sidl.fr/red/red-system-specs.html
Dockimbel:
8-Apr-2011
It is intended, I'm updating the HTML docs only then a revision is 
completed, which is not yet the case with "draft 3". It should be 
finished in a few hours and the HTML docs updated by tonight.
Andreas:
10-Apr-2011
http://sidl.fr/red/red-system-specs.html
Dockimbel:
10-Apr-2011
Geomol: I thought people were already used to go to http://www.red-lang.org/p/documentation.html
Dockimbel:
15-Apr-2011
Direct link to Red/System specifications draft changed, it is now 
available from: http://static.red-lang.org/red-system-specs.html
Kaj:
27-May-2011
http://development.syllable.org/news/2009-05-24-16-19-Memory-mapped-input-output-implemented.html
Dockimbel:
27-May-2011
I have use this document (among other sources) for implementing syscalls 
support for Linux: http://www.win.tue.nl/~aeb/linux/lk/lk-4.html
(See 4.3)
Kaj:
27-May-2011
http://development.syllable.org/documentation/introduction/part-1.html
Dockimbel:
1-Jun-2011
Binding: only static binding. See my presentation slides: http://www.red-lang.org/p/about.html
Dockimbel:
4-Jun-2011
Pushed a new commit:

- added support for callbacks (just place 'callback in a function 
attribute block, see http://static.red-lang.org/red-system-specs.html#section-6.3)
- specification draft revision 11
Dockimbel:
5-Jun-2011
And more details here: http://www.red-lang.org/p/about.html
Dockimbel:
10-Jun-2011
Kaj: you can do an explicit casting, if is allowed by this matrix: 
http://static.red-lang.org/red-system-specs.html#section-4.7
Dockimbel:
14-Jun-2011
Steeve: I failed to install that version too, but here are special 
install images for Vmware and VirtualBox under "Emulate Syllable" 
bar here: http://web.syllable.org/pages/get-Syllable.html#installation-CD
Dockimbel:
23-Jun-2011
Btw, allowed expressions are now documented: http://static.red-lang.org/red-system-specs.html#section-5.1
Kaj:
4-Jul-2011
http://www.red-lang.org/2011/07/redsystem-goes-beta.html
Kaj:
5-Jul-2011
http://development.syllable.org/news/2011-07-05-02-54-Red-System-programming-language-now-beta.html
Kaj:
5-Jul-2011
http://development.syllable.org/documentation/introduction/part-1.html
Maxim:
8-Jul-2011
just found this... it could be a good reference for low-level bit 
handling in Red.
  

though the code is in C, its probably easier to understand this way 
and convert to Assembly after (when no comparable machine instruction 
exists).
http://graphics.stanford.edu/~seander/bithacks.html
Dockimbel:
9-Jul-2011
For those curious about Mac OS X low-level ABI for function calls: 
http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/LowLevelABI/130-IA-32_Function_Calling_Conventions/IA32.html
Kaj:
9-Jul-2011
http://www.cs.uaf.edu/2010/fall/cs301/lecture/10_27_sse.html
Geomol:
10-Jul-2011
I use #pragma pack(4) to control alignment. Read about it here:


http://developer.apple.com/library/mac/#documentation/Darwin/Conceptual/64bitPorting/MakingCode64-BitClean/MakingCode64-BitClean.html
nve:
13-Jul-2011
New editor in REBOL for Red/System : edit | compile | run for Windows, 
Linux, MacOSX !
http://www.red-chronicle.com/2011/07/new-red-editor-in-rebol.html
Dockimbel:
17-Jul-2011
Mac OS X now fully supported: http://www.red-lang.org/2011/07/mac-os-x-port-released.html
Dockimbel:
1-Aug-2011
cURL link added to Contributions section: http://www.red-lang.org/p/contributions.html
Dockimbel:
8-Aug-2011
New attribute 'variadic documentation: http://static.red-lang.org/red-system-specs.html#section-6.3.3
Dockimbel:
8-Aug-2011
New attribute 'typeinfo documentation: http://static.red-lang.org/red-system-specs.html#section-6.3.4
jocko:
22-Aug-2011
just a detail on my dll :

tts uses the SAPI4 or SAPI5 voice synthesis normally installed on 
the PC (you can install other voices), while gTTS uses the Google 
TTS api. 

For the details on the SAPI5 interface, see http://www.colineau.fr/rebol/R3_extensions.html#section-2
PeterWood:
5-Sep-2011
Nenad keeps the status updated on the RoadMap http://www.red-lang.org/p/roadmap.html


Since taking the decision for Red to compile to Red/System code, 
Nenad has been spending additional time extending  Red/System to 
be able to do so. It will probably result in less work being needed 
on the first Red static compiler.
Dockimbel:
21-Sep-2011
I have put the current contributions on a new page: http://www.red-lang.org/p/contributions_21.html
Kaj:
28-Sep-2011
http://curl.haxx.se/libcurl/c/libcurl-tutorial.html
Andreas:
11-Oct-2011
http://tools.ietf.org/html/rfc3629#section-4s
Dockimbel:
11-Oct-2011
Thanks, I see that everything I need is in http://tools.ietf.org/html/rfc3629#section-4
Kaj:
28-Oct-2011
http://www.red-lang.org/p/contributions_21.html
MikeL:
3-Nov-2011
For the RED import, I am getting "Compilation Error: attempt to redefine 
existing function name: printf" when trying to compile the example 
for variadic  http://static.red-lang.org/red-system-specs-light.html
    Get same message for "free" when trying to compile example from 
9.1 #import.     What novice error am I  making?
Dockimbel:
6-Nov-2011
http://developer.android.com/resources/dashboard/platform-versions.html

2.1: 10.7%
2.2: 40.7%
2.3: 43.9%
Geomol:
9-Nov-2011
The RFC for TLS (Transport Layer Security) is 100 pages:
http://tools.ietf.org/html/rfc5246


Is it necessary to implement TLS these days, or is its predecessor 
(SSL) enough?
Dockimbel:
9-Nov-2011
Some serious bugs seem to have been fixed in the latest release: 
http://www.chiark.greenend.org.uk/~sgtatham/putty/changes.html
MikeL:
19-Nov-2011
Agreed. I tried to combine a GTK with a ZMQ.... I start to get collisions 
on #includes.      Is there an #include/check option that I didnot 
see in Section 10  http://static.red-lang.org/red-system-specs-light.html#section-10.2
Dockimbel:
23-Nov-2011
(that's why I've left the progress bar at 90% in the Roadmap: http://www.red-lang.org/p/roadmap.html)
Steeve:
13-Dec-2011
For your information: A small code editor including lua scripting 
(GTK + scintilla bindings)
All sources included.
Low c footprint.
A good inspiration for further RED evolution.
http://caladbolg.net/luadoc/textadept/manual/1_Introduction.html
Dockimbel:
26-Dec-2011
http://www.red-lang.org/2011/12/arm-support-released.html
GrahamC:
26-Dec-2011
http://www.english-test.net/forum/ftopic25371.html


And then in Microsoft Manual of Style (version 3.0) we can read "To 
form the plural of an acronym, use a lowercase "s" without an apostrophe." 
Example: several IFSs.
Henrik:
29-Dec-2011
Missing double-quote in:

http://static.red-lang.org/red-system-specs.html

either a > 0 [print "TRUE"][print "FALSE]
Dockimbel:
29-Dec-2011
I forgot to add an entry for CASE in the "Planned features" of the 
spec document. CASE and SWITCH were announced in slide 36 of my presentation 
at SFD: http://www.red-lang.org/2011/09/red-at-software-freedom-day-2011.html
Dockimbel:
29-Dec-2011
New handier (I hope) chapters layout: http://static.red-lang.org/red-system-specs.html
Dockimbel:
30-Dec-2011
ANY/ALL: yes, see http://static.red-lang.org/red-system-specs.html#section-9
Dockimbel:
3-Jan-2012
Donation page opened: http://www.red-lang.org/p/donations.html
Dockimbel:
10-Jan-2012
Yes, using system/args-count and system/args-list, see: http://static.red-lang.org/red-system-specs.html#section-12
Dockimbel:
26-Jan-2012
The grammar rules I wrote for Red/System expressions should also 
pass through a BNF loader (except for the first five definitions): 
http://static.red-lang.org/red-system-specs.html#section-5.1
Dockimbel:
27-Jan-2012
The testing framework done by Peter WA Wood is documented here: http://static.red-lang.org/red-system-quick-test.html
Dockimbel:
28-Jan-2012
A warning could be added easily, the issue is that it would then 
make all datatypes names reserved words that would need to be added 
there: http://static.red-lang.org/red-system-specs.html#section-18
Dockimbel:
30-Jan-2012
Struct aliases are there for that. See http://static.red-lang.org/red-system-specs.html#section-4.5.5
GrahamC:
31-Jan-2012
Is http://www.red-lang.org/p/roadmap.html
Bootstrap 4 referring to the RED language?
Dockimbel:
7-Feb-2012
No, the one from here: http://www.red-lang.org/p/contributions.html
Kaj:
12-Feb-2012
http://static.red-lang.org/red-system-specs-light.html#section-19.9
Dockimbel:
14-Feb-2012
Btw - how do I wrap properly function, which does not return any 
result? I tried just without the return clause, but it is not possible. 
Is e.g. return: [] (empty block allowed?)


It's in the spec document and same as the routine! interface in R2, 
just do not put a RETURN: definition if the function does not return 
anything:

http://static.red-lang.org/red-system-specs.html#section-14.1
PeterWood:
22-Feb-2012
From the spec Red/System does not support the use of  the logic! 
datatype in #import  - http://static.red-lang.org/red-system-specs.html#section-14.1


The spec is also silent about how a the logic! field is actually 
stored. I'd guess a byte! but I'd probably be wrong.


By the way no need to cast byte! to integer!, just test for #"^(00)" 
or #"^(01)".
Dockimbel:
22-Feb-2012
The main point is being able to properly call this "beast" from Red/System: 
http://www.msbit.com:82/LSB/booksets/LSB-Core-generic/LSB-Core-generic/baselib---libc-start-main-.html
Group: Topaz ... The Topaz Language [web-public]
Gabriele:
27-Jun-2011
nve: i don't have a home page yet, except for the try-topaz.html 
thing. so github is the place for now.
Gabriele:
27-Aug-2011
You can play with it at http://www.colellachiara.com/soft/topaz/try-topaz.html
Gabriele:
17-Sep-2011
onetom: I used Keynote, it can export to a few formats, including 
HTML (by just making PNGs, so it gets pretty big). I can also provide 
the keynote file if useful. (Unfortunately, I was very tight on time 
and was unable to do this in Topaz itself.)
2401 / 252212345...222324[25] 26