[ALLY] ally archive
From: ryan::christiansen::intellisol::com at: 16-Apr-2001 8:26
Is there a web-based archive of this list? Searchable?
Thanks.
Ryan C. Christiansen
Web Developer
Intellisol International
4733 Amber Valley Parkway
Fargo, ND 58104
701-235-3390 ext. 6671
FAX: 701-235-9940
http://www.intellisol.com
Global Leader in People Performance Software
_____________________________________
Confidentiality Notice
This message may contain privileged and confidential information. If you
think, for any reason, that this message may have been addressed to you in
error, you must not disseminate, copy or take any action in reliance on it,
and we would ask you to notify us immediately by return email to
[ryan--christiansen--intellisol--com]
"Graham Chiu"
<[gchiu--compkar] To: [ally-list--rebol--com]
ori.co.nz> cc:
Sent by: Subject: [ALLY] Retroweb
[ally-bounce--re]
bol.com
04/15/2001
05:01 PM
Please respond
to ally-list
I was wondering how useful it would be to try Rebol's VID
for browsing purposes to communicate with a web server.
I modified my home page to contain some VID, and the
following displays it.
To be useful, what I really require is a VID table superior
to html tables, that allows me to manipulate large amounts
of data - eg sort on columns, search on columns etc without
downloading the data each time. A reblet as it were. Is such
a beast available or in the making??
REBOL [
Title: "Rebol VID Browser"
Date: [ 15-April-2001 ]
Version: .2
Author: "Graham Chiu"
Rights: "Copyright G Chiu 2001"
File: %rbrowser.r
Notes: {
reads layout code from a web page and displays it
}
]
testurl: http://203.79.82.38
currenturl: copy ""
text: copy ""
layout-code: [
copy laycode [ "<layout>" to "</layout>" ] (append
text laycode) |
skip
]
rbrowse: func [
{ browses web pages marked up in Rebol VID }
rurl [url!]
/local targetpage
] [
text: copy ""
targetpage: read rurl
parse targetpage [ to "<!--" some layout-code ] replace/all text
<layout> "" either empty? text [ view layout [ size 800x600
at 200x250 vh2 join form rurl " does not contain VID
source" at 200x300 button "back" [
rbrowse currenturl ] ] ] [ currenturl: rurl
view layout load text ]]rbrowse testurl--Graham Chiu-- To
unsubscribe from this list, please send an email [toally-request--rebol--com]
with "unsubscribe" in the subject, without the quotes.