Package:
Summary:
Get book information using the LibraryThing API
Groups:
Author:
Description:
This class can be used to get book information using the LibraryThing API.
It can send requests to the LibraryThing Web services API to obtain information about books. Currently it can:
- Get the list of related works given the ISBN of a book
- Get the language of a book with a given ISBN
- Get the identifier, page URL and related works of a book with a given ISBN
Package:
Summary:
Generate random text and sanitize strings
Groups:
Author:
Description:
This is a very simple class that can be used to generate random text and sanitize strings.
It provides a function that generates a string of a given length made of random hexadecimal characters.
The class also provides another function to sanitize text strings by adding slash characters.
A new Smalltalk compiler has been added to the Free Smalltalk Compilers and Interpreters page. Smalltalk/X
is a complete implementation of the Smalltalk programming language, and comes with an IDE that has an editor, a debugger, a GUI builder, a compiler that can generate standalone programs as well
as DLLs, etc. Check it out and write your own computer programs with this development environment (or use one of the other free Smalltalk compilers listed on the page).
Package:
Summary:
Display rotating banners from a MySQL database
Groups:
Author:
Description:
This class can be used to display rotating banners from a MySQL database.
It queries a MySQL database table to retrieve the details of random banner of a given category.
The class generates HTML to display the a link with the banner image.
It also handles requests that redirect to the banner URL when the user clicks on the banner. It records information about the users that clicked in the banners, except for those from users of banned IP addresses.
Package:
Summary:
Manage site users within 5 levels of hierarchy
Groups:
Author:
Description:
This package can be used to manage site users within 5 levels of hierarchy.
It can manage the records of users in a MySQL database giving them 5 possible levels of hierarchy: administrator, master, agent, member and guest.
The package comes with classes that can add and remove user records, authenticate user password, manage user sessions and edit user accounts.
Package:
Summary:
Template engine that replaces variables in files
Groups:
Author:
Description:
This class implements a template engine that replaces variables in files
It can load a template file and process it to extract the list of template variables and replace them by template variable values.
The class supports replacing variables from a given array values,
or taking the values from global variables, including other template files.
The class all so processes a .conf file which any thing in there is load as Template.Key
Package:
Summary:
Generate PHP code that represents an array value
Groups:
Author:
Description:
This class can be used to generate PHP code that represents an array value.
It takes an array parameter and traverses it recursively to generate a string of PHP code that can be used in PHP scripts to initialize the array with the same value structure.