publishers weekly
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 121
Panda Publisher RC3
Panda Publisher provides a lightweight, standards-compliant content management system. more>>
Panda Publisher provides a lightweight, standards-compliant content management system.
Panda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
<<lessPanda Publisher is a lightweight content management system. It aims to be fast, scalable, standards-compliant and meta-data rich in order to serve page viewers better and allow Web masters to concentrate on writing content rather than all the little things that make visiting Web sites easier for users.
Meta-data is created on the fly to ensure that it is up-to-date. Menus, Site Maps, Searches, etc. are all generated automatically to give consistent navigation to the end user.
Enhancements:
- Shiny new installer
- Standards Compliance improvements
- Fixed style sheet selector in admin
- New Offline-mode
- Code clean-ups
- Security Fixes
Download (MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
934 downloads
Smart Publisher 1.0.2
Smart Publisher is a web-based open source and easy-to-use application which offers you an effective way to publish a static or dynamic website on the internet more>> <<less
Added: 2008-03-05 License: GPL Price: FREE
17 downloads
Other version of Smart Publisher
License:GPL (GNU General Public License)
Pandora Publisher 0.4.4
Pandora is a simple web document and application platform written in Ruby. more>>
Pandora is a simple web document and application platform written in Ruby. Pandora Publisher aims to make it easy for a team of people to quickly collaborate on the network and develop custom document components and extensions to meet their specific needs.
Main features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
<<lessMain features:
Easy to install and maintain
- Just unpack the package archive and run under Windows, Mac OS X, or Linux. The only prerequisite is Ruby, which you can install following these instructions.
Simple, extensible, and powerful
- Pandora does not require any relational database, but it lets you build your own web applications that can use databases with Ruby and Pandora Box object-oriented application framework.
Textile and Silk Veil formatting for site contents
- There is no need to code web pages in HTML with Pandora. Instead, just use Textile and Silk Veil, which are almost as easy to learn as plain text formatting.
Portable web site contents
- Pandora site contents are stored in a simple format that can be exported, zipped, moved, and viewed anywhere with its built in web server.
User selectable page design and templates
- You can easily customize the appearance of your Pandora site by creating new skins with Ruby, HTML, and CSS.
Integrated user account management functions
- Pandora comes with a built-in user account management functions that perform automated email verification and support a manual or automated registration approval process.
Enhancements:
- A new way to delete existing pages and chapters, a recent changes page, a default sidebar for new books, a trail path attachment indicator, and iconified file links were added.
- A defect that caused an exception when a book is deleted was fixed.
- The documentation was edited.
Download (1.5MB)
Added: 2006-08-27 License: Other/Proprietary License Price:
1155 downloads
Podcast::Publisher 0.50
Podcast::Publisher is a Perl module for creating and managing podcasts. more>>
Podcast::Publisher is a Perl module for creating and managing podcasts.
SYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
<<lessSYNOPSIS
use Podcast::Publisher;
my $podcast = Podcast::Publisher->new;
$podcast->set_logger( sub { my $msg = shift; print $msg; } );
$podcast->set_error_logger( sub { my $msg = shift; print STDERR $msg; } );
my $xml = "./podcast.xml";
$podcast->set_file( $xml );
$podcast->set_remote_root( "http://localhost.localdomain/podcast/publishing/" );
$podcast->set_db_connection( { driver => "mysql",
username => foo,
password => bar,
host => localhost,
database => podcast } );
# If we change podcast information, synchronize this information in the MP3 file itself
$podcast->set_synchronize( 1 );
$podcast->set_metadata( { title => "Chris Podcast",
description => "All About Chris",
"docs" => "http://localhost",
"editor" => "podcastmanager@localhost",
"webmaster" => "podcastmanager@localhost",
} );
# This adds an item to the database, and synchronizes the
# MP3 Tag information in the file with the database
$podcast->add_new_episode( { title => Some title,
author => Chris of course
category => Jazz
description => First in a series of many
mp3 => /home/foobar/mp3s/episode1.mp3 } );
$podcast->set_upload_settings( { host => localhost.localdomain,
username => someuser,
password => somepass,
path => podcast/publishing/,
remote_root => http://localhost.localdomain/podcast/publishing/ } );
$podcast->upload();
Download (0.012MB)
Added: 2006-11-09 License: GPL (GNU General Public License) Price:
1081 downloads

@1 Calendar Publisher I 2.0
Publish events, schedules or news to an online web calendar. more>> Publish events, schedules or news to an online web calendar. Multiple events can be posted on the same day. The calendar can be called directly or via SSI. No MySQL required. View in full or compact mode. Show X number of upcoming events. Header, footer colors and so on are highly customizable. Newly added features: "Todays Events" and "Tomorrows Events".<<less
Download (37KB)
Added: 2009-04-02 License: Freeware Price: Free
204 downloads
blogBuddies 0.3
blogBuddies provides an RSS and Atom aggregator that emulates the LiveJournal Friends page. more>>
blogBuddies provides an RSS and Atom aggregator that emulates the LiveJournal Friends page.
blogBuddies gathers RSS and Atom feeds into a layout similar to the LiveJournal Friends page. It is optimized for blogs, and works with Blogger, LiveJournal, DeadJournal, GreatestJournal, Xanga, RSS, and Atom feeds.
About blogBuddies
I originally started writing blogBuddies in my spare time as a response to the lack of a LiveJournal-type friends system in Blogger. Over the course of a few months, blogBuddies grew from a paltry, one-user system to a full multi-user, themable system supporting both LiveJournal and Blogger.
Going from there, blogBuddies was expanded to offer service for GreatestJournal, DeadJournal, Xanga, and RSS/Atom feeds. In the next release (0.4), blogBuddies will support MySpace blogs. I still write blogBuddies in my spare time, and do not know what I want to do with it at this point. If anyone wishes to help, they are free to PM me.
Enhancements:
- Added RSS and Atom support (URLs)
- Code cleanup
- Changed the UserAgent so that publishers can see blogBuddies
- Added support for GreatestJournal, DeadJournal, and Xanga
- Cross-site scripting: A PATCH IS NOW AVAILALBE - patch zip contains only the changed files
<<lessblogBuddies gathers RSS and Atom feeds into a layout similar to the LiveJournal Friends page. It is optimized for blogs, and works with Blogger, LiveJournal, DeadJournal, GreatestJournal, Xanga, RSS, and Atom feeds.
About blogBuddies
I originally started writing blogBuddies in my spare time as a response to the lack of a LiveJournal-type friends system in Blogger. Over the course of a few months, blogBuddies grew from a paltry, one-user system to a full multi-user, themable system supporting both LiveJournal and Blogger.
Going from there, blogBuddies was expanded to offer service for GreatestJournal, DeadJournal, Xanga, and RSS/Atom feeds. In the next release (0.4), blogBuddies will support MySpace blogs. I still write blogBuddies in my spare time, and do not know what I want to do with it at this point. If anyone wishes to help, they are free to PM me.
Enhancements:
- Added RSS and Atom support (URLs)
- Code cleanup
- Changed the UserAgent so that publishers can see blogBuddies
- Added support for GreatestJournal, DeadJournal, and Xanga
- Cross-site scripting: A PATCH IS NOW AVAILALBE - patch zip contains only the changed files
Download (0.075MB)
Added: 2007-04-13 License: GPL (GNU General Public License) Price:
925 downloads
PieSpy 0.4.0
PieSpy is an IRC bot that monitors a set of IRC channels. more>>
PieSpy is an IRC bot that monitors a set of IRC channels. It uses a simple set of heuristic methods to infer relationships between pairs of users. These inferrences allow PieSpy to build a mathematical model of a social network for any channel. These social networks can be drawn and used to create animations of evolving social networks.
PieSpy has also been used to visualize Shakespearean social networks.This page got slashdotted on 11 March 2004, with the site getting 250,000 hits per hour. Thanks to Notnet for making sure it all stayed alive!
PieSpy was presented at the Information Visualization conference (IV04) in July 2004. Read the full paper online. It has also appeared in Computer Weekly, ct magazine, and I was interviewed live on BBC Radio Kent.
Enhancements:
- Now tracks nickname changes. Generates images five times faster. Removes formatting and colors from messages. The source code has been refactored to make it easy to add new InferenceHeuristics, which are used to work out who is talking to whom - if you create any good ones, let me know! The config file lets you apply different weightings to each InferenceHeuristic.
<<lessPieSpy has also been used to visualize Shakespearean social networks.This page got slashdotted on 11 March 2004, with the site getting 250,000 hits per hour. Thanks to Notnet for making sure it all stayed alive!
PieSpy was presented at the Information Visualization conference (IV04) in July 2004. Read the full paper online. It has also appeared in Computer Weekly, ct magazine, and I was interviewed live on BBC Radio Kent.
Enhancements:
- Now tracks nickname changes. Generates images five times faster. Removes formatting and colors from messages. The source code has been refactored to make it easy to add new InferenceHeuristics, which are used to work out who is talking to whom - if you create any good ones, let me know! The config file lets you apply different weightings to each InferenceHeuristic.
Download (0.143MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
1226 downloads
diskfree 2.1.0
diskfree is a sh-based util for monitoring disk usage with email reporting. more>>
diskfree project is a shell script designed to be run periodically from cron to let you know how much disk space youve used, what directories have grown, which directories have shrunk, etc.
Installing
1. If you have Bash installed, then edit line 1 and point it to Bash. If you dont have Bash installed, but have the Korn shell installed, edit line 1 and point it to that (typically #!/bin/ksh).
2. Decide which directories you want reported on or if youre paranoid, remember to use the -p option. If you want something other than the default then use the -d option
3. Decide who should get the report. If it should go to root, dont do anything. If it goes to someone else, use the -m option (-m someone@somewhere.net)
4. Decide where you want the files this script creates to be put. If /tmp is OK with you, do nothing. If you want them elsewhere use the -l option (-l /var/log)
5. Decide how frequently you want the report run (daily, weekly, monthly, etc) If you want it run daily, then create on entry in your crontab like:
00 00 * * * /some/path/diskfree
If you want to run it monthly as well, I suggest you also add this to crontab:
00 02 01 * * /some/path/diskfree -e monthly
And quarterly would appear in crontab like:
00 04 01 */4 * /some/path/diskfree -e quarterly
6. Save your crontab.
7. Copy diskfree.8 /usr/man/man8
8. Wait for the script to run TWICE, then check your email and review the report
9. Send comments, bugs, suggestions to dhunley@columbus.rr.com
Enhancements:
- Altered the output to put the df output first and the details second.
<<lessInstalling
1. If you have Bash installed, then edit line 1 and point it to Bash. If you dont have Bash installed, but have the Korn shell installed, edit line 1 and point it to that (typically #!/bin/ksh).
2. Decide which directories you want reported on or if youre paranoid, remember to use the -p option. If you want something other than the default then use the -d option
3. Decide who should get the report. If it should go to root, dont do anything. If it goes to someone else, use the -m option (-m someone@somewhere.net)
4. Decide where you want the files this script creates to be put. If /tmp is OK with you, do nothing. If you want them elsewhere use the -l option (-l /var/log)
5. Decide how frequently you want the report run (daily, weekly, monthly, etc) If you want it run daily, then create on entry in your crontab like:
00 00 * * * /some/path/diskfree
If you want to run it monthly as well, I suggest you also add this to crontab:
00 02 01 * * /some/path/diskfree -e monthly
And quarterly would appear in crontab like:
00 04 01 */4 * /some/path/diskfree -e quarterly
6. Save your crontab.
7. Copy diskfree.8 /usr/man/man8
8. Wait for the script to run TWICE, then check your email and review the report
9. Send comments, bugs, suggestions to dhunley@columbus.rr.com
Enhancements:
- Altered the output to put the df output first and the details second.
Download (0.012MB)
Added: 2005-04-07 License: GPL (GNU General Public License) Price:
1668 downloads
Exercise Tip Email Buddy 1.3
Exercise Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for an exercise tip mailing list. more>>
Do you have a health-related web site and need to start generating a good list of e-mail list subscribers for an upcoming newsletter?
Exercise Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for an exercise tip mailing list. It works out-of the-box, so you can start building your subscriber list before you put together a full-blown newletter.
Exercise Tip Email Buddy comes with 26 exercise tips built in, so you already have a unique mailing twice a month for a full year!
Main features:
- Installation is easy, just upload the script and run the install file to automatically install your database tables and set up your configuration.
- Set the time between mailings. Want a weekly e-mailing? Daily? No problem you set the length.
- Easily set how many e-mails can be sent in a day or hour to avoid getting on your hosting providers bad side. The e-mails are stored and those that cant be sent right away will be sent later.
- Add custom exercise tips of your own!
- Visitor sign-up script includes a Captcha device to avoid automated signups by spammers.
<<lessExercise Tip Buddy is an easy-to-install Web site tool that allows your visitors to sign up for an exercise tip mailing list. It works out-of the-box, so you can start building your subscriber list before you put together a full-blown newletter.
Exercise Tip Email Buddy comes with 26 exercise tips built in, so you already have a unique mailing twice a month for a full year!
Main features:
- Installation is easy, just upload the script and run the install file to automatically install your database tables and set up your configuration.
- Set the time between mailings. Want a weekly e-mailing? Daily? No problem you set the length.
- Easily set how many e-mails can be sent in a day or hour to avoid getting on your hosting providers bad side. The e-mails are stored and those that cant be sent right away will be sent later.
- Add custom exercise tips of your own!
- Visitor sign-up script includes a Captcha device to avoid automated signups by spammers.
Download (0.057MB)
Added: 2006-05-11 License: Freeware Price:
1261 downloads
PROPS 0.7
PROPS is an open, extensible Internet publishing system designed specifically for periodicals. more>>
PROPS is an open, extensible Internet publishing system designed specifically for periodicals such as newspapers and magazines who want to publish online, either exclusively or as an extension of their print publication.
PROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
<<lessPROPS is written entirely in PHP4 using a MySQL database backend, and is free software released under the GNU General Public License (GPL).
Main features:
- Easy to install
- Well-documented, robust API allowing third party developers to create plug-ins to extend base functionality
- Delivery of content to multiple target platforms (HTML, XML/XSL, WAP/WML, text, etc)
- Readers may format a story for printing, or email to a friend
- Pages are presented as static URLs so that spider type search engines may crawl and index them
- Strict separation of design and content - designers control site look and feel by developing templates using standard site editing tools such as Dreamweaver, GoLive, BBEdit, etc., while editors manage site content via a web interface
- Permissions-based multiuser site management screens allow a PROPS site to be maintained by a distributed team of reporters and editors
- Will support the XML-based News Industry Text Format
- Will speak various XML dialects for both import and export, allowing syndication in both directions, and enabling PROPS sites to participate in distributed news networks
- Is targeted at mid-sized publishers serving fewer than one million page views daily, however will be architected to scale through deployment of multiple front-end web servers, separate image servers, etc.
Download (0.70MB)
Added: 2005-10-28 License: GPL (GNU General Public License) Price:
1459 downloads
dpkg-changes 1.2
dpkg-changes is a simple script which will report on the packages which have been installed, or uninstalled. more>>
dpkg-changes is a simple script which will report on the packages which have been installed and uninstalled, since the script was last run.
It does this by building up a list of all the packages installed upon your system the first time it is run, then comparing that list against what the system reports whenever it is subsequently run.
The intention is that it can be placed in a crontab file for a user and be run on a daily/weekly basis to give a good idea of what has changed upon the machine.
This is particularly handy when a server is maintained by multiple people, as it allows all admins to be informed when a new package is installed.
<<lessIt does this by building up a list of all the packages installed upon your system the first time it is run, then comparing that list against what the system reports whenever it is subsequently run.
The intention is that it can be placed in a crontab file for a user and be run on a daily/weekly basis to give a good idea of what has changed upon the machine.
This is particularly handy when a server is maintained by multiple people, as it allows all admins to be informed when a new package is installed.
Download (0.013MB)
Added: 2006-06-09 License: GPL (GNU General Public License) Price:
1237 downloads
ProShield 3.7.47
ProShield is a security program for Debian Linux. more>>
ProShield is a security program for Debian Linux. Regular use is recommended.
Main features:
- Helps you backup your system weekly.
- Checks for extra root accounts.
- Checks account & password files for correct permissions.
- Makes sure a few security-hazardous packages are not installed.
- Checks for a packet sniffer.
- Removes unneeded packages from the local package archive.
- Checks for new software releases, in order to see if installed software is reasonably up to date. Smart-suggestion to upgrade if an important package is released.
- Checks to see if apt is fetching unnecessary information when checking for software updates.
- Makes sure system time is accurate.
- Checks to make sure the user isnt logged into the system (GUI) as root.
- Checks the configuration of the ssh server ([sshd] if installed) for insecure settings.
- At runtime, ProShield will also check to see if there has been a new version released, and can download and install it at the users preference.
Enhancements:
- proshield (3.7.47) unstable;
- urgency=low * ProShield should always be able to correctly calculate amount of space freed from apt cache cleaning. Previously, it would say "?? megs of space were freed" a lot.
<<lessMain features:
- Helps you backup your system weekly.
- Checks for extra root accounts.
- Checks account & password files for correct permissions.
- Makes sure a few security-hazardous packages are not installed.
- Checks for a packet sniffer.
- Removes unneeded packages from the local package archive.
- Checks for new software releases, in order to see if installed software is reasonably up to date. Smart-suggestion to upgrade if an important package is released.
- Checks to see if apt is fetching unnecessary information when checking for software updates.
- Makes sure system time is accurate.
- Checks to make sure the user isnt logged into the system (GUI) as root.
- Checks the configuration of the ssh server ([sshd] if installed) for insecure settings.
- At runtime, ProShield will also check to see if there has been a new version released, and can download and install it at the users preference.
Enhancements:
- proshield (3.7.47) unstable;
- urgency=low * ProShield should always be able to correctly calculate amount of space freed from apt cache cleaning. Previously, it would say "?? megs of space were freed" a lot.
Download (0.020MB)
Added: 2006-06-23 License: GPL (GNU General Public License) Price:
1219 downloads
APbyAS 01a
APbyAS provides Italian Web-based process re-engineering support. more>>
APbyAS provides Italian Web-based process re-engineering support.
Each employee survey his own real job and registers activities and times on weekly and annual basis. Results are summarized per unit and whole organization, with totals and averages.
<<lessEach employee survey his own real job and registers activities and times on weekly and annual basis. Results are summarized per unit and whole organization, with totals and averages.
Download (MB)
Added: 2007-01-08 License: GPL (GNU General Public License) Price:
1019 downloads
Debarchiver 0.4.2
Debarchiver is a tool to sort debian packages in a automated way so that you can publish debian packages in a easy way. more>>
Debarchiver is a tool to sort debian packages in a automated way so that you can publish debian packages in a easy way.
Main features:
- Sort debian packages in the "potato" way.
- Generates the Packages and Sources files.
- Prepared for web publishing.
The idea is to make a simpler version of the Debian katie software that is useable by system administrators and software publishers. Of course you should try to get your software in the Debian distribution but sometimes that is not possible or even good.
Debarchiver is licensed under GPL.
Enhancements:
- Allows for signed release files (currently only ones without a password).
<<lessMain features:
- Sort debian packages in the "potato" way.
- Generates the Packages and Sources files.
- Prepared for web publishing.
The idea is to make a simpler version of the Debian katie software that is useable by system administrators and software publishers. Of course you should try to get your software in the Debian distribution but sometimes that is not possible or even good.
Debarchiver is licensed under GPL.
Enhancements:
- Allows for signed release files (currently only ones without a password).
Download (0.076MB)
Added: 2005-09-26 License: GPL (GNU General Public License) Price:
1490 downloads
php-residence 0.7
php-residence is designed to manage weekly or daily rental of house apartments or small hotel rooms. more>>
php-residence is designed to manage weekly or daily rental of house apartments or small hotel rooms. php-residence uses a MySQL or PostgreSQL database as a backend. Reservations can be assigned to an apartment automatically with user-defined rules.
Main features:
- Software released under GPL licence (free and modifiable).
- Automatic assignment of the apartments with user defined rules. Details -->
- Configurable in number and characteristics of the apartments, periods, rates...
- Possibility to add weekly-daily or percentage extra costs to the rates. Details -->
- Visualization of contracts with inserted data for printing.
- Creation of templates to check availability from an internet site.
- Multi-user with privileges system. Details -->
- Backup all your data on a single text file.
- In english, italian and spanish.
Enhancements:
- Support was added for the sqlite database, recording of guests data, and assignment of reservations in close apartments.
<<lessMain features:
- Software released under GPL licence (free and modifiable).
- Automatic assignment of the apartments with user defined rules. Details -->
- Configurable in number and characteristics of the apartments, periods, rates...
- Possibility to add weekly-daily or percentage extra costs to the rates. Details -->
- Visualization of contracts with inserted data for printing.
- Creation of templates to check availability from an internet site.
- Multi-user with privileges system. Details -->
- Backup all your data on a single text file.
- In english, italian and spanish.
Enhancements:
- Support was added for the sqlite database, recording of guests data, and assignment of reservations in close apartments.
Download (0.35MB)
Added: 2007-06-04 License: GPL (GNU General Public License) Price:
875 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 publishers weekly 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