baked apples
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 186
Bake 1.0
Bake is a small domain specific programming language for describing how to transform one file into another. more>>
Bake is a small domain specific programming language for describing how to transform one file into another. Bake uses the typical topological sort, but has features that make describing this relatively easy.
Bake has patterns, similar to make, but which are part of the dependency graph (unlike in make).
<<lessBake has patterns, similar to make, but which are part of the dependency graph (unlike in make).
Download (0.092MB)
Added: 2006-06-06 License: GPL (GNU General Public License) Price:
1235 downloads
Snow-Apple
Snow-Apple provides an icon pack for Gnome. more>>
Snow-Apple provides an icon pack for Gnome.
Mark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.
<<lessMark Finlay fairly converted the nautilus 2.0.x theme called Snow-Apple, to an icon theme for gnome 2.2.x. thanks to him.
Download (0.50MB)
Added: 2007-01-27 License: GPL (GNU General Public License) Price:
1010 downloads
DVD-Baker 0.7.43
DVD-Baker is a small suite of programmes designed to turn your image collection into a DVD. more>>
DVD-Baker project is a small suite of programmes designed that can turn your image collection into a DVD.
Your image collection can be stored in a web gallery such as Menalto Gallery G2.
Formerly known as gallery2-to-dvd, DVD-Baker has evolved from a brute-force (hack) bash script to a php/bash combination that allows you to bake your DVD on a computer other than your webserver.
Main features:
- Menu system based on the root and branch albums/folders
- Slideshows made from the images in each leaf album using dvd-slideshow
- An albums highlight is embedded in its corresponding menu
- Subtitles for each image (switchable)
- Customisable image durations and transition effects
- Autoplay after menu timeout plays each slideshow sequentially
- Random autoplay (optional) if using dvdauthor 0.6.12
- Options menu (optional) for toggling subtitles, autoplay and repeat modes
- Either NTSC or PAL video formats
- DVD-compliant MPEG movies can be included
- High or low quality modes
How DVD-Baker works
Its as simple as RECIPE => BAKE => BURN !!!
1. Prepare the recipe:
For Menalto Gallery G2:
g2-dvd-recipe.php needs to be placed in the base directory of your G2 site.
2. Baking the ingredients:
Running dvd-baker will produce all the slideshows and menus as specified by the recipe.
A file called dvdauthor.xml will be produced describing all those menus and slideshows, and how they work together.
3. Burning the DVD:
If you didnt specify the -d option for dvd-baker, then:
$ dvdauthor -x dvdauthor.xml
To burn the dvd, use your preferred burning application to create a DVD-Video from the resultant ./DVD directory.
Enhancements:
- A few important features have been added.
- The most requested may be the ability to specify the gallery album to bake (rather than the users root album), and the ability to specify an album to use to create a DVD leader (a title played before the root menu is shown).
- Also included is an optional Options Menu System, which can be accessed by pressing the SUBTITLE button (or F3 in gxine) to toggle options such as SUBTITLES, AUTOPLAY, and REPEAT during playback.
- Minor cleanups and bugfixes are included.
<<lessYour image collection can be stored in a web gallery such as Menalto Gallery G2.
Formerly known as gallery2-to-dvd, DVD-Baker has evolved from a brute-force (hack) bash script to a php/bash combination that allows you to bake your DVD on a computer other than your webserver.
Main features:
- Menu system based on the root and branch albums/folders
- Slideshows made from the images in each leaf album using dvd-slideshow
- An albums highlight is embedded in its corresponding menu
- Subtitles for each image (switchable)
- Customisable image durations and transition effects
- Autoplay after menu timeout plays each slideshow sequentially
- Random autoplay (optional) if using dvdauthor 0.6.12
- Options menu (optional) for toggling subtitles, autoplay and repeat modes
- Either NTSC or PAL video formats
- DVD-compliant MPEG movies can be included
- High or low quality modes
How DVD-Baker works
Its as simple as RECIPE => BAKE => BURN !!!
1. Prepare the recipe:
For Menalto Gallery G2:
g2-dvd-recipe.php needs to be placed in the base directory of your G2 site.
2. Baking the ingredients:
Running dvd-baker will produce all the slideshows and menus as specified by the recipe.
A file called dvdauthor.xml will be produced describing all those menus and slideshows, and how they work together.
3. Burning the DVD:
If you didnt specify the -d option for dvd-baker, then:
$ dvdauthor -x dvdauthor.xml
To burn the dvd, use your preferred burning application to create a DVD-Video from the resultant ./DVD directory.
Enhancements:
- A few important features have been added.
- The most requested may be the ability to specify the gallery album to bake (rather than the users root album), and the ability to specify an album to use to create a DVD leader (a title played before the root menu is shown).
- Also included is an optional Options Menu System, which can be accessed by pressing the SUBTITLE button (or F3 in gxine) to toggle options such as SUBTITLES, AUTOPLAY, and REPEAT during playback.
- Minor cleanups and bugfixes are included.
Download (0.005MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1304 downloads
Net::DAAP::Client 0.42
Net::DAAP::Client is a client for Apple iTunes DAAP service. more>>
Net::DAAP::Client is a client for Apple iTunes DAAP service.
SYNOPSIS
my $daap; # see WARNING below
$daap = Net::DAAP::Client->new(SERVER_HOST => $hostname,
SERVER_PORT => $portnum,
PASSWORD => $password);
$dsn = $daap->connect;
$dbs_hash = $daap->databases;
$current_db = $daap->db;
$daap_db($new_db_id);
$songs_hash = $daap->songs;
$playlists_hash = $daap->playlists;
$array_of_songs_in_playlist = $daap->playlist($playlist_id);
$url = $daap->url($song_or_playlist_id);
$binary_audio_data = $obj->get($song_id);
$binary_audio_data = $obj->get(@song_ids);
$song_id = $obj->save($dir, $song_id);
@song_ids = $obj->get($dir, @song_ids);
$daap->disconnect;
if ($daap->error) {
warn $daap->error; # returns error string
}
Net::DAAP::Client provides objects representing connections to DAAP servers. You can fetch databases, playlists, and songs. This module was written based on a reverse engineering of Apples iTunes 4 sharing implementation. As a result, features that iTunes 4 doesnt support (browsing, searching) arent supported here.
Each connection object has a destructor, so that you can forget to disconnect without leaving the server expecting you to call back.
WARNING
If you store your object in a global variable, Perl cant seem to disconnect gracefully from the server. Until I figure out why, always store your object in a lexical (my) variable.
<<lessSYNOPSIS
my $daap; # see WARNING below
$daap = Net::DAAP::Client->new(SERVER_HOST => $hostname,
SERVER_PORT => $portnum,
PASSWORD => $password);
$dsn = $daap->connect;
$dbs_hash = $daap->databases;
$current_db = $daap->db;
$daap_db($new_db_id);
$songs_hash = $daap->songs;
$playlists_hash = $daap->playlists;
$array_of_songs_in_playlist = $daap->playlist($playlist_id);
$url = $daap->url($song_or_playlist_id);
$binary_audio_data = $obj->get($song_id);
$binary_audio_data = $obj->get(@song_ids);
$song_id = $obj->save($dir, $song_id);
@song_ids = $obj->get($dir, @song_ids);
$daap->disconnect;
if ($daap->error) {
warn $daap->error; # returns error string
}
Net::DAAP::Client provides objects representing connections to DAAP servers. You can fetch databases, playlists, and songs. This module was written based on a reverse engineering of Apples iTunes 4 sharing implementation. As a result, features that iTunes 4 doesnt support (browsing, searching) arent supported here.
Each connection object has a destructor, so that you can forget to disconnect without leaving the server expecting you to call back.
WARNING
If you store your object in a global variable, Perl cant seem to disconnect gracefully from the server. Until I figure out why, always store your object in a lexical (my) variable.
Download (0.012MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1083 downloads
Gnake 0.94b
Gnake project is a Nibbles-like game for the console. more>>
Gnake project is a Nibbles-like game for the console.
Its simple but customizable: you can change the number of apples, the size of the board, the time, apple growth, and other parameters.
This version of "Gnake" allows you to change:
- the playground size (potentially bigger than the size of the terminal),
- the speed,
- the number of apples,
- how much eating an apple makes you grow,
- the length of the snake and
- the time-based growth - as advised by my friend Luca.
Enhancements:
- Added support for terminal resize and (pretty stupid) computer driven worms.
<<lessIts simple but customizable: you can change the number of apples, the size of the board, the time, apple growth, and other parameters.
This version of "Gnake" allows you to change:
- the playground size (potentially bigger than the size of the terminal),
- the speed,
- the number of apples,
- how much eating an apple makes you grow,
- the length of the snake and
- the time-based growth - as advised by my friend Luca.
Enhancements:
- Added support for terminal resize and (pretty stupid) computer driven worms.
Download (0.064MB)
Added: 2006-12-05 License: GPL (GNU General Public License) Price:
1053 downloads
libopendaap 0.4.0
libopendaap is a library written in C which enables applications to discover, and connect to, iTunes music shares. more>>
libopendaap is a library written in C which enables applications to discover, and connect to, iTunes music shares.
Unlike all other daap implementations, this library is able to connect to recent iTunes shares which require a special authentication algorithm. See this page for more information.
Main features:
- Discovers iTunes shares automatically over Rendezvous
- Supports all recent iTunes versions
- Simple API
Enhancements:
- Playlist support now exists, a new API has been introduced to access playlists
- Use a free mdns library, instead of Apples mDNS library. This means that libopendaap is entirely free now. libopendaap now uses a highly modified version of mdnsd.
- You can now connect to servers with passwords.
- Better debugging support.
- Better platform support.
- Several possible buffer overflows fixed.
- Several bug fixes.
<<lessUnlike all other daap implementations, this library is able to connect to recent iTunes shares which require a special authentication algorithm. See this page for more information.
Main features:
- Discovers iTunes shares automatically over Rendezvous
- Supports all recent iTunes versions
- Simple API
Enhancements:
- Playlist support now exists, a new API has been introduced to access playlists
- Use a free mdns library, instead of Apples mDNS library. This means that libopendaap is entirely free now. libopendaap now uses a highly modified version of mdnsd.
- You can now connect to servers with passwords.
- Better debugging support.
- Better platform support.
- Several possible buffer overflows fixed.
- Several bug fixes.
Download (0.23MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1193 downloads
Apples Icons for Linux -
9 freeware icons of Apples products. more>> This is one of the Dirceu Veiga's products. This contains 9 freeware icons of Apples products.
Its content includes variations of Cinema Display, eMac and iMac<<less
Download (195KB)
Added: 2009-04-11 License: Freeware Price: Free
198 downloads
Tk::MultiMediaControls 1.0
Tk::MultiMediaControls is a Perl module to create media player control buttons. more>>
Tk::MultiMediaControls is a Perl module to create media player control buttons.
SYNOPSIS
$mmc = $parent->MultiMediaControls(-option => value, ... );
Create multimedia controls similar to that found on Apple applications like QuickTime, iMovie, iDVD, iTunes, etcetera. This mega-widget accepts a -buttons option that specifies a list of controller buttons, and a series of specialized options that bind callbacks to those buttons.
-buttons
A list of controller buttons: [ qw/ home rewind play stop fastforward / ]. You supply the callbacks that implement the above buttons, which nominally have this effect on the movie:
home - reset movie to first frame
rewind - play movie in fast reverse
play - a toggle: play movie at normal speed / pause movie
stop - stop movie (reset to first frame?)
fastforward - play movie in fast forward
-fastcommand
-fasthighlightcommand
-homecommand
-homehighlightcommand
-leftcommand
-pausecommand
-pausehighlightcommand
-playcommand
-playhighlightcommand
-rewindcommand
-rewindhighlightcommand
-rightcommand
-stopcommand
-stophighlightcommand
Callbacks that are invoked when control buttons are pressed or released. Callbacks that include the string highlight are invoked when Button-1 is pressed and held. With the exception of the -leftcommand and -rightcommand, all other callbacks are invoked when Button-1 is released.
Three keys have special meanings that parallel Apples bindings. The space bar (space) is bound to toggle the play/pause button. The left-arrow (Left) and right-arrow (Right) should, if possible, display the previous or next movie frame. Use -leftcommand and -rightcommand for this.
<<lessSYNOPSIS
$mmc = $parent->MultiMediaControls(-option => value, ... );
Create multimedia controls similar to that found on Apple applications like QuickTime, iMovie, iDVD, iTunes, etcetera. This mega-widget accepts a -buttons option that specifies a list of controller buttons, and a series of specialized options that bind callbacks to those buttons.
-buttons
A list of controller buttons: [ qw/ home rewind play stop fastforward / ]. You supply the callbacks that implement the above buttons, which nominally have this effect on the movie:
home - reset movie to first frame
rewind - play movie in fast reverse
play - a toggle: play movie at normal speed / pause movie
stop - stop movie (reset to first frame?)
fastforward - play movie in fast forward
-fastcommand
-fasthighlightcommand
-homecommand
-homehighlightcommand
-leftcommand
-pausecommand
-pausehighlightcommand
-playcommand
-playhighlightcommand
-rewindcommand
-rewindhighlightcommand
-rightcommand
-stopcommand
-stophighlightcommand
Callbacks that are invoked when control buttons are pressed or released. Callbacks that include the string highlight are invoked when Button-1 is pressed and held. With the exception of the -leftcommand and -rightcommand, all other callbacks are invoked when Button-1 is released.
Three keys have special meanings that parallel Apples bindings. The space bar (space) is bound to toggle the play/pause button. The left-arrow (Left) and right-arrow (Right) should, if possible, display the previous or next movie frame. Use -leftcommand and -rightcommand for this.
Download (0.48MB)
Added: 2006-12-27 License: Perl Artistic License Price:
1031 downloads

WebCalendar 1.1
WebCalendar can be configured as a single-user calendar more>> WebCalendar is a PHP-based calendar application that can be configured as a single-user calendar, a multi-user calendar for groups of users, or as an event calendar viewable by visitors. MySQL, PostgreSQL, Oracle, DB2, Interbase, MS SQL Server, or ODBC is required.
XHTML/CSS compliance
Multi-user support
30 supported languages: Basque, Bulgarian, Chinese-Big5, Chinese-GB2312, Czech, Danish, Dutch, English-US, Estonian, Finnish, French, Galician, German, Greek, Holo-Big5, Hungarian, Icelandic, Italian, Japanese, Korean, Norwegian, Polish, Portuguese_BR, Portuguese, Romanian, Russian, Spanish, Swedish, Turkish, Welsh
Auto-detect users language preference from browser settings
View calendars by day, week, month or year
View another users calendar
View one or more users calendar via layers on top of your own calendar
Add/Edit/Delete users
Add/Edit/Delete events
Repeating events including support for overriding or deleting (exceptions)
Configurable custom event fields
User-configurable preferences for colors, 12/24 time format, Sun/Mon week start
Online help
Checks for scheduling conflicts
Email reminders for upcoming events
Email notifications for new/updated/deleted events
Export events to iCalendar, vCalendar or Palm
Import from iCalendar, vCalendar or Palm
Optional general access (no login required) to allow calendar to be viewed by people without a login (useful for event calendars)
Users can make their calendar available publicly to anyone with an iCalendar-compliant calendar program (such as Apples iCal, Mozilla Calendar or Sunbird)
Publishing of free/busy schedules (part of the iCalendar standard)
RSS support that puts a users calendar into RSS (WebCalendar 1.1+)
Subscribe to "remote" calendars (hosted elsewhere on the net) in either iCalendar or hCalendar formats (WebCalendar 1.1+)
User authentication: Web-based, HTTP, LDAP or NIS.<<less
Download (1.54MB)
Added: 2009-04-03 License: Freeware Price: Free
205 downloads
Other version of WebCalendar
License:GPL (GNU General Public License)
PBButtonsd 0.8.1a
PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. more>>
PBButtons is a daemon to handle special hardware on the Apple iBook/PowerBook/TiBook. It controls the display brightness, the sound volume, mutes the sound, changes the trackpad mode, puts the machine to sleep, or ejects the CDROM on command.
PBButtonsd project also provides basic power management features. An included client gives the user visual feedback about all actions with nice little popup windows.
Enhancements:
- remove hdparm option -p because the option does not do what it is supposed to and anyway the kernel does a good controlling the IDE speed settings.
<<lessPBButtonsd project also provides basic power management features. An included client gives the user visual feedback about all actions with nice little popup windows.
Enhancements:
- remove hdparm option -p because the option does not do what it is supposed to and anyway the kernel does a good controlling the IDE speed settings.
Download (0.39MB)
Added: 2007-07-29 License: GPL (GNU General Public License) Price:
817 downloads
KMacBacklight 0.2
KMacBacklight project is a kicker applet to adjust the backlight of an Apple iMac or MacBook Pro. more>>
KMacBacklight project is a kicker applet to adjust the backlight of an Apple iMac or MacBook Pro. You also can assign shortcuts.
I take absolutely no responsibility for any kind of harm caused to your Mac.
Installation:
After unpacking with "tar xvfj" and changing to the directory with "cd kmacbacklight" the usual "./configure && make && sudo make install".
You might need the package "pciutils-dev" to compile backlight.c.
Afterwards you should be able to add the applet to your KDE panel.
Todo:
- MacBook support. Can anyone with a MacBook please confirm that this [ http://desrt.mcmaster.ca/code/macbook-backlight/macbook-backlight.c ] backlight adjuster works and which backlight values you can use. I use values between 33 and 255 for the MacBook Pro backlight adjuster at the moment.
Enhancements:
- removed sudo, setuid should be enough
<<lessI take absolutely no responsibility for any kind of harm caused to your Mac.
Installation:
After unpacking with "tar xvfj" and changing to the directory with "cd kmacbacklight" the usual "./configure && make && sudo make install".
You might need the package "pciutils-dev" to compile backlight.c.
Afterwards you should be able to add the applet to your KDE panel.
Todo:
- MacBook support. Can anyone with a MacBook please confirm that this [ http://desrt.mcmaster.ca/code/macbook-backlight/macbook-backlight.c ] backlight adjuster works and which backlight values you can use. I use values between 33 and 255 for the MacBook Pro backlight adjuster at the moment.
Enhancements:
- removed sudo, setuid should be enough
Download (0.52MB)
Added: 2007-02-19 License: GPL (GNU General Public License) Price:
982 downloads
Apple Disk Transfer ProDOS 1.0.2
Apple Disk Transfer ProDOS transfers diskettes and logical disk images between Apple ][-era computers and the modern world. more>>
Apple Disk Transfer ProDOS (or ADTPro for short) transfers diskettes and logical disk images between Apple ][-era computers and the modern world. If youre familiar with the original ADT, ADTPro extends ADTs reach by working with more logical disk formats, drive types, communications devices, and host operating systems.
Main features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
<<lessMain features:
- Compatibility with any device ProDOS can read
- Compatibility with any Apple ][ (or clone) computer with 64k memory
- Compatibility with many logical disk image formats: .DSK, .PO, .NIB, 2IMG
- Server compatibility with original ADT client program
- Server compatibility with Windows, Mac OSX, Linux, and probably Solaris
- Ability to bootstrap an Apple ][ from bare metal over serial or cassette ports
- Ability to send floppies in "batch" mode without having to name each one
Server
The server program runs on a computer capable of running Java. Depending on how you want to connect to your Apple, you might also need a serial port and cables, an Uthernet card for your apple, or a couple of audio patch cables. The server offers a compact user interface that shows what communications are taking place between the host and the Apple ][.
The servers primary role is to send and receive disk images as requested from the client. But if you have recently acquired an Apple and a disk drive, and you have no software for it - youre in a bit of a tricky situation if you want to move software from the Internet all the way to your shiny new Apple. ADTPros server can help get you get bootstrapped.
Client
The client side runs on the Apple ][. It handles most of the user interaction. When choosing disks/volumes to transfer, anything that ProDOS can see is fair game. Transferring data occurs with a 20k buffer on the Apple, so all transfers are broken up into 20k chunks. A progress indicator shows how far it is into the current chunk, as well as a running count of the total progress.
Enhancements:
- This release has been enhanced with Jean-Marc Boutillon (Deckard)s FASTDSK fast Disk II reading routines.
- This results in a speed boost of 25%-33% for Disk II to host transfers.
- Bootstrapping operations have been reduced, as there is no longer a dependency on ProDOS BASIC.
Download (MB)
Added: 2007-08-13 License: GPL (GNU General Public License) Price:
816 downloads
Really Simple CalDAV Store 0.8.0
Really Simple CalDAV Store project is a server implementation of the CalDAV protocol for storing calendaring resources. more>>
Really Simple CalDAV Store project is a server implementation of the CalDAV protocol for storing calendaring resources (iCalendar format) on a remote shared server.
An increasing number of calendar clients support the maintenance of shared remote calendars through CalDAV including Mozilla Calendar (Sunbird/Lightning), Evolution, Mulberry, and soon Apples iCal.
The Really Simple CalDAV Store supports basic delegation of read/write access among calendar users and multiple users or clients reading and writing the same calendar entries over time.
Enhancements:
- Lots of improvements were made to CalDAV specification compliance, especially around privacy of tasks and events.
- Two new translations of the administration interface were added (Polish and Hungarian).
- Support for authentication against an LDAP backend was added along with a number of performance, security, and bugfixes.
<<lessAn increasing number of calendar clients support the maintenance of shared remote calendars through CalDAV including Mozilla Calendar (Sunbird/Lightning), Evolution, Mulberry, and soon Apples iCal.
The Really Simple CalDAV Store supports basic delegation of read/write access among calendar users and multiple users or clients reading and writing the same calendar entries over time.
Enhancements:
- Lots of improvements were made to CalDAV specification compliance, especially around privacy of tasks and events.
- Two new translations of the administration interface were added (Polish and Hungarian).
- Support for authentication against an LDAP backend was added along with a number of performance, security, and bugfixes.
Download (0.31MB)
Added: 2007-06-05 License: GPL (GNU General Public License) Price:
880 downloads
acdctl 1.1
acdctl is a VESA/Apple Cinema Display controller. more>>
acdctl is a VESA/Apple Cinema Display controller.
acdctl is a commandline utility to control the otherwise inaccessible brightness levels of a VESA-compliant USB connected display such as the Apple Cinema Display.
acdctl works on any system with libusb support by directly manipulating the displays USB HID interface.
<<lessacdctl is a commandline utility to control the otherwise inaccessible brightness levels of a VESA-compliant USB connected display such as the Apple Cinema Display.
acdctl works on any system with libusb support by directly manipulating the displays USB HID interface.
Download (0.010MB)
Added: 2006-09-29 License: GPL (GNU General Public License) Price:
1120 downloads
HTML::Template::Set 1.009
HTML::Template::Set is a HTML::Template extension that adds set support. more>>
HTML::Template::Set is a HTML::Template extension that adds set support.
SYNOPSIS
in your HTML:
< TMPL_SET NAME="handler" >apples_to_oranges< /TMPL_SET >
< TMPL_SET NAME="title" >Apples Are Green< /TMPL_SET >
< HTML >
< HEAD >
< TITLE >< TMPL_VAR NAME="title" >< /TITLE >
< /HEAD >
< BODY >
< H1 >< TMPL_VAR NAME="title" >< /H1 >
< HR >
< BR >
< B >You authenticated as: < /B > < TMPL_VAR NAME="ENV_REMOTE_USER" >< BR >< BR >
< TMPL_IF NAME="oranges" >You prefer oranges< /TMPL_IF >
< /BODY >
< /HTML >
in your script:
use HTML::Template::Set;
my $tmpl = new HTML::Template::Set(
filename => foo.tmpl,
associate_env => 1
);
my $handler = $tmpl->param(handler);
if ($handler and $handler eq apples_to_oranges) {
$tmpl->param(oranges => 1);
}
print $tmpl->output();
<<lessSYNOPSIS
in your HTML:
< TMPL_SET NAME="handler" >apples_to_oranges< /TMPL_SET >
< TMPL_SET NAME="title" >Apples Are Green< /TMPL_SET >
< HTML >
< HEAD >
< TITLE >< TMPL_VAR NAME="title" >< /TITLE >
< /HEAD >
< BODY >
< H1 >< TMPL_VAR NAME="title" >< /H1 >
< HR >
< BR >
< B >You authenticated as: < /B > < TMPL_VAR NAME="ENV_REMOTE_USER" >< BR >< BR >
< TMPL_IF NAME="oranges" >You prefer oranges< /TMPL_IF >
< /BODY >
< /HTML >
in your script:
use HTML::Template::Set;
my $tmpl = new HTML::Template::Set(
filename => foo.tmpl,
associate_env => 1
);
my $handler = $tmpl->param(handler);
if ($handler and $handler eq apples_to_oranges) {
$tmpl->param(oranges => 1);
}
print $tmpl->output();
Download (0.009MB)
Added: 2007-08-16 License: Perl Artistic License Price:
799 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above baked apples search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed