Load-ini |
ini.r | v:0.0.3 2.2 KB 13 Mar 2003 | Tries to load ini-structured file to Rebol author: oldes |
Minify |
minify.r documentation | 1.3 KB 21 Aug 2012 | Strips Whitespace and Comments from a Script author: Christopher Ross-Gill |
web page links |
oneliner-print-links.r | v:1.0.0 580 bytes 20 Jul 2003 | Load a web page, parse it to extract and print all links found author: Christophe Coussement |
Paypal Reports |
paypal-reports.r | 2.6 KB 22 Jan 2013 | This is a beginner's example taken from the tutorial at:
http://re-bol.com/business_programming.html
It creates reports on columns and rows of data in a .csv table.
The script demonstrates typical CSV file operations using parse, foreach,
and simple series functions. The code performs sums upon columns, and
selective calculations [...] author: nick |
Parseen |
parseen.r | 2.8 KB 28 Nov 2010 | Parse enhancements for R2 author: Ladislav Mecir |
Patches |
patches.r | v:1.4.0 5.6 KB 14 Nov 2003 | Various patches to Rebol. author: A J Martin |
XML to HTML node parser |
quickparser.r | v:0.0.2 12.0 KB 21 Dec 2004 | To parse xml, xhtml, css, and html
so you can search and update, remove,
or add to your markup quickly. author: daniel murrill |
Remove part of a string using parse |
rm.r | 809 bytes 10 Jun 2006 | When use with foreach line lines to remove specific columns in a text file.
e.g. remove column 10 to column 13 in file.txt
lines: read/lines %file.txt
foreach line lines [
parse/all line [9 skip mark: (remove/part mark 4) to end]
]
write %file.txt lines author: ~to be supplied~ |
RSS feed reader |
rss.r | v:2.0.6 28.9 KB 20 Jul 2007 | Live Bookmarks author: Piotr Gapinski |
Remove Comments |
remove-comments.r | 463 bytes 29 Jun 2008 | A parse example that removes comments from Rebol code.
Taken from the tutorial at http://musiclessonz.com/rebol_tutorial.html author: nick antonaccio |
Dialect Object Model |
rebol-dom-mdlparser.r | 71.6 KB 7 Jul 2023 | ----a future Rebol browser API?----
%Rebol-DOM.r mdlparser.r can view DOM's as VID.
The Rebol-dom code in the mdlparser has
been updated. I'll improve the mdlparser
and post updates as time permits or if anyone
request specific changes that will improve it.
This mdlparser [...] author: daniel |
Server object handler script |
server.r | 5.1 KB 19 Oct 2004 | This script will parse robot.txt files and store
a hash! of forbidden paths. This is very useful for
webbots or spiders of any kind (at least if obeying
robot exclusion standards is desirable).
I looked at the ht://dig package (http://www.htdig.org/)
script that does the same thing as this script to see if I [...] author: hy |
Simple System Tray |
simple-system-tray.r | 2.8 KB 18 Oct 2013 | After learning Rebol 1.3 could place itself in the System Tray on Windows,
and after finding Graham's example, I decided to make a slightly simpler
version of the System Tray dialect.
Since it's based on Graham's example, it may well be missing stuff...
Later note: This was also an experiment for me, learning the parse dialect. author: Izkata |
Sort an array of records |
sort-array.r | v:1.0.0 1.8 KB 7 Nov 2005 | Sort an array where each record is separated by a 'newline' and
each field in each record is separated by a comma. author: Gordon Raboud |
Templating |
templating.r | 3.8 KB 9 Nov 2009 | Use a template (a master html document) to maintain
child document(s) that hold individual editable content(s).
Editable content are delimited by the following two tags:
<!-- b_editable name="title1" -->
<!-- e_editable name="title1" --> author: Cedric G. |
UTF-8 |
utf-8.r discussion | v:1.0.2 14.3 KB 14 Nov 2003 | Encoding and decoding of UCS strings
to and from UTF-8 strings. author: Jan Skibinski |
WHOIS Maker |
whoismaker.r | v:1.0.0 1.4 KB 13 Mar 2003 | WhoIs query, parse, and save as a file author: David Handy |
REBOL Mapping of all win32 API errors |
win32-errors.r | v:1.0 193.9 KB 8 Sep 2010 | [no purpose header found] author: Maxim Olivier-Adlhoch |
WHOIS Maker |
whoismaker2.r | v:2.0.0 2.1 KB 16 Dec 2004 | WhoIs query, parse, and save as a file author: David Handy |
XML to RebXML Converter |
xml2rebxml.r | v:1.2.0 4.8 KB 2 Mar 2009 | Convert XML to RebXML block structure. author: John Niclasen |