Main > Free Download Search >

Free calendar template software for linux

calendar template

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1356
Darwin Calendar Server

Darwin Calendar Server


Darwin Calendar Server provides a CalDAV server. more>>
Darwin Calendar Server provides a CalDAV server.

The Darwin Calendar Server is a standards-compliant server that allows multiple users to collaboratively share calendaring information. It provides a shared location on the network to store schedules, and allows users to send each other and manage invitations.

In order to provide interoperability with multiple calendaring clients, the server implements the CalDAV protocol, which is an extension of WebDAV, which is in turn an extension of HTTP.

<<less
Download (MB)
Added: 2007-02-07 License: The Apache License Price:
1003 downloads
@1 Calendar Publisher I 2.0

@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
My Calendar 2.71

My Calendar 2.71


My Calendar is a lightweight, easy-to-use Web calendar that is easily customizable using CSS. more>>
My Calendar is a lightweight, easy-to-use Web calendar that is easily customizable using CSS.
There is also an included email script that you can have cron run every day to remind you of upcoming appointments.
My Calendar can also generate great looking printable calendars in Postscript and Adobe PDF format. Microsoft Outlook schedules can be easily imported.
Main features:
- lightweight and easy to setup
- email scrip to remind you of upcomming events
- email script can be run by cron and/or used to send emails to a mailing list for clugs and organizations
- easily generated pretty printable versiosn in postscript and PDF
- import events from Microsoft Outlook.
- easily customizeable with CSS and templating.
<<less
Download (0.023MB)
Added: 2006-09-02 License: GPL (GNU General Public License) Price:
1156 downloads
kmail templates 20061018

kmail templates 20061018


kmail templates is a patch for current 3.5 branch of kdepim package. more>>
kmail templates is a patch for current 3.5 branch of kdepim package which replaces Phrases configuration with more rich templates engine.

Templates use template syntax of well-known Thebat! mail client and allow construct a little more complicated messages than now.
<<less
Download (MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1112 downloads
Milo Calendar 0.6

Milo Calendar 0.6


Milo Calendar reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar. more>>
Milo Calendar is a SuperKaramba script that reads the dates stored by KOrganizer and displays them on your desktop in a clear, neat calendar.

The calendar also displays todays date and it can move back/forward months. the descriptions of the events are shown via tooltips.

The images for this theme should be very customizable. In the next versions I will try to make them compatible with rainlendar themes found all over the net!

I must thank DeVoeSquared.com for the iCal module, and rainy (rainlendar) for the theme.

Note: if you have multiple KOrganizer resources, you can change the name of the file that milo calendar reads:

the default is:
reader = iCal.ICalReader(std)
in the dir: ~/.kde/share/apps/korganizer/std.ics

<<less
Download (0.083MB)
Added: 2007-06-25 License: GPL (GNU General Public License) Price:
853 downloads
MfGames.Template 1.1.0

MfGames.Template 1.1.0


The MfGames.Template library is a C# native library for creating template libaries. more>>
The MfGames.Template library is a C# native library for creating template libaries.

MfGames.Template was inspired by NVelocity, but was designed from the ground up to use the CIL internals, such as System.CodeDom and internal compliation to handle the template language.

Because of this, it supports C# code as the template "language". In addition, compiled templates are actually compiled down into bytecode, using the built-in compiler.

<<less
Download (0.017MB)
Added: 2006-04-07 License: LGPL (GNU Lesser General Public License) Price:
1295 downloads
HTML::Template 2.9

HTML::Template 2.9


HTML::Template module attempts to make using HTML templates simple and natural. more>>
HTML::Template module attempts to make using HTML templates simple and natural.
HTML::Template library extends standard HTML with a few new tags for variables, loops, if/else blocks and includes.
A file written with HTML and these new tags is called a template. Using this module you fill in the values for the variables and loops declared in the template.
This allows you to seperate design (the HTML) from the data, which you generate in the Perl script. While there are many other HTML template systems available, this module is simple and fast.
It doesnt try to reinvent Perl CGI, it just augments HTML with a few new and very useful abilities.
Enhancements:
- A new option was added to enforce Taint mode for unescaped variables.
- Several long-standing bugs were fixed.
- The enhanced tests produced by the Phalanx project are now part of the module.
<<less
Download (0.061MB)
Added: 2007-01-31 License: GPL (GNU General Public License) Price:
998 downloads
IAM Calendar 1.1.0

IAM Calendar 1.1.0


IAM Calendar is a PHP class that can be used to display calendar of a given month in an HTML page. more>>
Holidays or other events can be configured to be highlighted in a special way (using CSS styles). The days of the month can rendered with a form checkbox or radio buttons so they can be selected by the user.

Rendering of the different calendar elements can be configured using CSS styles. The names of the months and days of the week can be configured, so that they’re displayed in a language other than English.

This class is licensed under the GNU Lesser General Public License (LGPL), so feel free to use it, modify it as you want, although a little credit is always welcome.
<<less
Download (0.066MB)
Added: 2007-07-04 License: LGPL (GNU Lesser General Public License) Price:
842 downloads
Piffle::Template 0.3.1

Piffle::Template 0.3.1


Piffle::Template is a Perlish templating language. more>>
Piffle::Template is a Perlish templating language.

SYNOPSIS

use Piffle::Template;
use Piffle::Template qw{template_to_perl expand_template};

# OO syntax, with output stored and returned:
print Piffle::Template->expand(source_file => foo/fish.xml,
include_path => [foo/inc,foo]);

# Immediate: OO syntax: output goes directly to STDOUT:
Piffle::Template->expand(source_file => foo/fish.xml,
output_file => *STDOUT);

# Procedural syntax, data from a string
$string =
< ?perl } ? >
< ?include std_disclaimer.txt? >
__END__
expand_template(source => $string,
output_file => *FILE);

This is a simple Perl-embedding syntax for template code which is geared towards allowing authors to validate their templates directly against schemas or DTDs. The embedded language is Perl itself, which allows great flexibility at the expense of having to be disciplined about the barrier between template code and module code.

In operation, the source template is transformed to an in-memory Perl script which is then run using Perls eval operator. Errors can be redirected to files or subroutines, and the output can be either caught in a variable or written to a file or open filehandle.

<<less
Download (0.009MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1136 downloads
PHP-Calendar 0.10.8

PHP-Calendar 0.10.8


PHP-Calendar is a Web-based calendar written in PHP/SQL. more>>
PHP-Calendar is a Web-based calendar that uses PostgreSQL or MySQL to store data. It is designed to display properly only with modern browsers.
The project is designed with accessibility in mind, but does not degrade very well on Netscape 4.x.
Requierments:
- PHP 4.0 or greater
- MySQL 3.23.x or PostgreSQL 7
Enhancements:
- 0.10.6 changed the DB schema by accident. the result of this new schema is handled properly in 0.10.7. both schemas are compatible.
- updated entry in 0.10.7 to properly describe the cause.
- fixed doctype typo and updated some meta-data
- make redirects HTTP compliant to fix an issue with Safari
- allow start_monday to work again
<<less
Download (0.038MB)
Added: 2007-06-22 License: GPL (GNU General Public License) Price:
858 downloads
Google Calendar Notifier 2.5.3

Google Calendar Notifier 2.5.3


Google Calendar Notifier brings you a powerful and extremely useful extension which provides robust notifications and display of your Google Calendars for today, as well as showing any upcoming all day events for tomorrow. more>> <<less
Added: 2008-07-16 License: MPL Price: FREE
1 downloads
 
Other version of Google Calendar Notifier
Google Calendar Notifier 2.5Google Calendar Notifier is an extension which provides robust ... This extension provides robust notifications and display of your Google Calendars for today
License:MPL (Mozilla Public License)
Download (0.061MB)
931 downloads
Added: 2007-04-06
HCKit::Template 0.02

HCKit::Template 0.02


HCKit::Template is a Perl module with a template system for HTML construction. more>>
HCKit::Template is a Perl module with a template system for HTML construction.

This module constructs an HTML page from a template. The conversion proceeds with the help of rewrite rules and data sources. Rewrite rules can be specified in the template file itself, or in the Perl script. Data sources can be XML files, or dynamically constructed in the Perl script.

<<less
Download (0.011MB)
Added: 2006-09-20 License: Perl Artistic License Price:
1129 downloads
GPE calendar 0.73 RC2

GPE calendar 0.73 RC2


GPE calendar stores and manages scheduled events. more>>
GPE calendar stores and manages scheduled events. GPE calendar supports entries without due times, recurring events (birthdays or other anniversaries), and different view modes to give the user a good overview.
Main features:
- Entries without due-time, just a note for a particular day.
- Recurring events with options for daily, workdays, weekends, monthly, yearly (birthdays or other anniversaries)
- Different view modes to give the user a good overview.
<<less
Download (0.21MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1113 downloads
Periodic Calendar 2.0

Periodic Calendar 2.0


Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction. more>>
Periodic Calendar is a GUI utility which assists in women menstrual cycles tracking and fertility periods prediction.

The information tracked by this application can be used either to became pregnant or to prevent pregnancy.

At this point the fertility prediction is based on the calendar method which is not very precise. It is not recommended to use this method alone for the birth control.

<<less
Download (0.10MB)
Added: 2005-10-31 License: GPL (GNU General Public License) Price:
1457 downloads
Hebrew Calendar 0.6.3

Hebrew Calendar 0.6.3


Hebrew Calendar is a GTK class which shows the Hebrew dates and holydays and their corresponding Gregorian date. more>>
Hebrew Calendar is a GTK class which shows the Hebrew dates and holydays and their corresponding Gregorian date. Hebrew Calendar is based on the GTK toolkit and it can be integrated in any piece of GTK software.

The dates convertor is a C++ class written by Nachum Dershowitz and Edward M. Reingold, and available in the Public Domain. There is also support for libhdate which is an open source hebrew to gregorian date library available in debian hebrew packages.

<<less
Download (0.26MB)
Added: 2006-08-03 License: GPL (GNU General Public License) Price:
1277 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5