Rebol Tutorial

Rebol Programming - Learn Rebol with Real-World Examples

Archives for HTML

How to simply create a RSS Feed from a text file

How to simply create a RSS Feed from a text file
If you need to generate a RSS Feed from scratch - for example for an html static website or a site which is not your own - you can of course download some softwares to do so but after trying many of them, I didn't find them as productive as ...more»
9 Mar by admin in HTML, Parsing

Parsing Optional Html Tag Attributes using none keyword

Parsing Optional Html Tag Attributes using none keyword
You really hate Regular Expressions and discovered the power of Parse with our simple parse tutorials. Nevertheless after a while, you feel frustrated because even after reading the excellent manual, you're still lacking some real world examples. So here's an example for using none with Parse. Let's say you want ...more»

Protected: How to parse an HTML Web Page to extract all zip-exe or tar.gz links without using RegEX

Protected: How to parse an HTML Web Page to extract all zip-exe or tar.gz links without using RegEX
There is no excerpt because this is a protected post.

Enter your password to view comments

Tags: , , , , , ,

8 Dec by admin in All, HTML, Image, Interoperability, cgi

Building a Dynamic Web Gallery WITHOUT MySQL DB (or How to smoothly transition from PHP to Rebol)

Building a Dynamic Web Gallery WITHOUT MySQL DB (or How to smoothly transition from PHP to Rebol)
I have found a simple Php Gallery here. You can test it by clicking on the picture below: It is originally composed of a front gallery.php file plus these include files: . The add-images.php file contains this loop to generate the addimages array used by gallery.php (the one in the same directory): The documentation ...more»
7 Dec by admin in All, E-Learning, Funny, HTML, Javascript, cgi

Design Pattern Quiz in Rebol CGI (part II)

Design Pattern Quiz in Rebol CGI (part II)
In Design Pattern Quiz Part I, we created a Quiz with no GUI interface, in this part II, we're going to create the Quiz in Rebol CGI (see how to install Rebol on your Shared Hosting Service) and Javascript. For the Quiz, we used a Javascript component from dhtmlgoodies. You can ...more»
6 Dec by admin in All, Automation, Code Generation, HTML, Parsing

HTML scaffolding - Create an HTML form by just writing its specification

HTML scaffolding - Create an HTML form by just writing its specification
Scaffolding is generally used for Database Persistence Framework, according to Wikipedia Scaffolding is a meta-programming method of building database-backed software applications. It is a technique supported by some model-view-controller frameworks, in which the programmer may write a specification that describes how the application database may be used. The compiler uses this ...more»
27 Aug by admin in All, HTML, Internet, Project, cgi

Rebol CGI Form for the Rebtweeter Client Project (part I)

Rebol CGI Form for the Rebtweeter Client Project (part I)
We have seen in former lesson how to setup your windows local cgi-server (for Linux I'm sure you Geek know how-to). In this lesson, we're going to illustrate CGI Form for there is already some excellent tutorials from Rebol.com and from suite101.com so I don't need to parrot them. I will ...more»
22 Aug by admin in All, Automation, Beginner, Code Generation, HTML

How to generate hundreds of static web pages from a Web Template and a simple text data file

How to generate hundreds of static web pages from a Web Template and a simple text data file
It is well known fact that static website is better for SEO (Google does say it on their Webmaster Best Practice Pages). Let's say I want to generate a Directory for my list of Rebol Based Companies using this professional looking Business Directory Web Template to obtain this. Suppose I ...more»