aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2008-12-27 23:18:07 +0000
committerJim Hu <jimhu@users.sourceforge.net>2008-12-27 23:18:07 +0000
commitfb1fa4e8eeb2accaf71675dbf9810ec5af47bc79 (patch)
tree892273a81e75ff9929c558dc0bb4f6d0d06cbce4
parent195553ad26b4c8c3639041698309b47ae6d1b1f3 (diff)
downloadphpicalendar-fb1fa4e8eeb2accaf71675dbf9810ec5af47bc79.tar.gz
phpicalendar-fb1fa4e8eeb2accaf71675dbf9810ec5af47bc79.tar.bz2
phpicalendar-fb1fa4e8eeb2accaf71675dbf9810ec5af47bc79.zip
new rss icons;allow subweek calendars
-rw-r--r--config.inc.php113
-rw-r--r--default_config.php4
-rw-r--r--functions/ical_parser.php4
-rw-r--r--functions/init/configs.php20
-rw-r--r--functions/init/date_range.php5
-rw-r--r--functions/template.php13
-rw-r--r--languages/english.inc.php1
-rw-r--r--preferences.php6
-rw-r--r--rss/feed.pngbin0 -> 764 bytes
-rw-r--r--rss/index.php2
-rw-r--r--templates/default/preferences.tpl5
-rw-r--r--templates/green/rss_index.tpl61
-rw-r--r--templates/grey/rss_index.tpl61
-rw-r--r--templates/red/rss_index.tpl61
-rw-r--r--templates/tan/rss_index.tpl61
15 files changed, 125 insertions, 292 deletions
diff --git a/config.inc.php b/config.inc.php
index bc48501..72ac12b 100644
--- a/config.inc.php
+++ b/config.inc.php
@@ -2,53 +2,92 @@
/* Customizing phpicalendar configuration:
phpicalendar 2.3 should work with no additional configuration. This file can be changed to customize the behavior of phpicalendar.
-In version 2.3, there has been a change in the way configuration works in order to reduce the number of confusing global variables. Unfortunately, this means that config.inc.php files from older installations will have to be translated to the new format. The conversion is simple: use the old variable names as array keys for the $configs array below:
+In version 2.3, there has been a change in the way configuration works in order to reduce the number of confusing global variables. Unfortunately, this means that config.inc.php files from older installations will have to be translated to the new format. The conversion is simple: use the old variable names as array keys for the $configs array below.
+
+To change basic settings, uncomment (remove the first '#') from the desired line and adjust the value. For setting blacklists, autmatic webcals, locked calendars, and HTTP authorized calendars modify the arrays below the basic configuration section.
+
+The commented out lines below include alternatives to the default settings. Additional settings that can be overridden are in default_config.php
+
+For more info and help, go to http://phpicalendar.net or email phpicalendar@gmail.com
*/
-$secs = 6*60*60;
+
$configs = array(
-# 'calendar_path' => '/Library/WebServer/Documents/phpicalendar/calendars',
-# 'timezone' => 'US/Central',
-# 'allow_admin' => 'yes',
-# 'allow_login' => 'yes',
- 'allow_preferences' => 'yes',
- 'show_search' => 'yes',
-# 'show_todos' => 'no',
- 'show_completed' => 'no',
- 'timezone' => 'US/Central',
-# 'timezone' => 'America/Bogota',
-# 'timezone' => 'Europe/Paris',
-# 'gridLength' => 5,
-# 'second_offset' => $secs,
-# 'cookie_uri' => ''
+
+/* ========= BASIC CONFIGURATION =========
+ ** Server configuration **
+
+As noted, phpicalendar should work without adjusting the default settings. Change these if you are having problems or want to change where things are found. For example, it is often useful to have calendar_path in a different location.
+
+ calendar_path is a FILE path
+ default_path, cookie_uri, and download_uri are a URL paths, e.g. http://www.example.com/phpicalendar; set these if you are having problems.
+*/
+# 'calendar_path' => '/Library/WebServer/Documents/phpicalendar/calendars/recur_tests',
+# 'default_path' => '',
+# 'save_parsed_cals' => 'yes',
+# 'cookie_uri' => '',
+# 'download_uri' => '',
+
+/* ** Timezones **
+If timezone is not set, all events show in the local time of the source calendar. This isn't a problem if all your calendars are in the same timezone. If you set a timezone for the server, events in other timezones are shown when they occur at the server's time.
+*/
+# 'timezone' => 'US/Central',
+# 'second_offset' => $secs,
+
+/* ** Appearance **
+In this section you can set how phpicalendar will display calendar views.
+
+phpicalendar currently supports about 30 language variants. For a list of supported languages, see the languages folder.
+
+
+*/
+
+# 'language' => 'Spanish',
+# 'default_cal' => 'US Holidays', // Exact filename of calendar without .ics. Or set to 'ALL_CALENDARS_COMBINED to open all calenders combined into one.
+# 'template' => 'green'; // Template support: change this to have a different "skin" for your installation.
+# 'default_view' => 'month', // Default view for calendars' => 'day', 'week', 'month', 'year'
+# 'gridLength' => 10, // Grid size in day and week views. Allowed values are 1,2,3,4,10,12,15,20,30,60. Default is 15
+# 'minical_view' => 'current', // Where do the mini-calendars go when clicked?' => 'day', 'week', 'month', 'current'
+# 'allow_preferences' => 'no',
+# 'show_search' => 'yes',
+# 'show_todos' => 'no',
+# 'show_completed' => 'no',
+# 'allow_admin' => 'yes',
+ 'week_start_day' => 'Monday', // Day of the week your week starts on
+ 'week_length' => '5', // Number of days to display in the week view
+# 'day_start' => '0600', // Start time for day grid
+# 'day_end' => '2000', // End time for day grid
);
-$blacklisted_cals[] = ''; // Fill in between the quotes the name of the calendars
-$blacklisted_cals[] = ''; // you wish to 'blacklist' or that you don't want to show up in your calendar
-$blacklisted_cals[] = ''; // list. This should be the exact calendar filename without .ics
-$blacklisted_cals[] = ''; // the parser will *not* parse any cal that is in this list (it will not be Web accessible)
+/* ========= SPECIAL CALENDARS =========
+
+*/
+$blacklisted_cals[] = ''; // Fill in between the quotes the name of the calendars
+$blacklisted_cals[] = ''; // you wish to 'blacklist' or that you don't want to show up in your calendar
+$blacklisted_cals[] = ''; // list. This should be the exact calendar filename without .ics
+$blacklisted_cals[] = ''; // the parser will *not* parse any cal that is in this list (it will not be Web accessible)
// add more lines as necessary
-$list_webcals[] = ''; // Fill in between the quotes exact URL of a calendar that you wish
-$list_webcals[] = ''; // to show up in your calendar list. You must prefix the URL with http://
-$list_webcals[] = ''; // or webcal:// and the filename should contain the .ics suffix
-$list_webcals[] = ''; // $allow_webcals does *not* need to be "yes" for these to show up and work
+$list_webcals[] = ''; // Fill in between the quotes exact URL of a calendar that you wish
+$list_webcals[] = ''; // to show up in your calendar list. You must prefix the URL with http://
+$list_webcals[] = ''; // or webcal:// and the filename should contain the .ics suffix
+$list_webcals[] = ''; // $allow_webcals does *not* need to be "yes" for these to show up and work
// add more lines as necessary
-#$more_webcals['cpath'][] = '' //add webcals that will show up only for a particular cpath.
+#$more_webcals['cpath'][] = '' //add webcals that will show up only for a particular cpath.
-$locked_cals[] = ''; // Fill in-between the quotes the names of the calendars you wish to hide
-$locked_cals[] = ''; // unless unlocked by a username/password login. This should be the
-$locked_cals[] = ''; // exact calendar filename without the .ics suffix.
-$locked_cals[] = ''; //
+$locked_cals[] = ''; // Fill in-between the quotes the names of the calendars you wish to hide
+$locked_cals[] = ''; // unless unlocked by a username/password login. This should be the
+$locked_cals[] = ''; // exact calendar filename without the .ics suffix.
+$locked_cals[] = ''; //
// add more lines as necessary
-$locked_map['user1:pass'] = array(''); // Map username:password accounts to locked calendars that should be
-$locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is
-$locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix.
-$locked_map['user4:pass'] = array(''); // Example: $locked_map['username:password'] = array('Locked1', 'Locked2');
+$locked_map['user1:pass'] = array(''); // Map username:password accounts to locked calendars that should be
+$locked_map['user2:pass'] = array(''); // unlocked if logged in. Calendar names should be the same as what is
+$locked_map['user3:pass'] = array(''); // listed in the $locked_cals, again without the .ics suffix.
+$locked_map['user4:pass'] = array(''); // Example: $locked_map['username:password'] = array('Locked1', 'Locked2');
// add more lines as necessary
-$apache_map['user1'] = array(''); // Map HTTP authenticated users to specific calendars. Users listed here and
-$apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be
-$apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix.
-$apache_map['user4'] = array(''); // Example: $apache_map['username'] = array('Calendar1', 'Calendar2');
+$apache_map['user1'] = array(''); // Map HTTP authenticated users to specific calendars. Users listed here and
+$apache_map['user2'] = array(''); // authenticated via HTTP will not see the public calendars, and will not be
+$apache_map['user3'] = array(''); // given any login/logout options. Calendar names not include the .ics suffix.
+$apache_map['user4'] = array(''); // Example: $apache_map['username'] = array('Calendar1', 'Calendar2');
diff --git a/default_config.php b/default_config.php
index 3ced7b7..90c54e0 100644
--- a/default_config.php
+++ b/default_config.php
@@ -2,7 +2,7 @@
class Configs{
private static $instance;
private function __construct(){
- $this->phpicalendar_version = '2.3rc1.2';
+ $this->phpicalendar_version = '2.3rc1.3';
// Configuration file for PHP iCalendar 2.25rc1
//
// To set values, change the text between the single quotes
@@ -41,7 +41,7 @@ class Configs{
$this->enable_rss = 'yes'; // Enable RSS access to your calendars (good thing).
$this->rss_link_to_event = ''; // Set to yes to have links in the feed popup an event window. Default is to link to day.php
$this->show_search = 'no'; // Show the search box in the sidebar.
- $this->allow_preferences = 'no'; // Allow visitors to change various preferences via cookies.
+ $this->allow_preferences = 'yes'; // Allow visitors to change various preferences via cookies.
$this->printview_default = 'no'; // Set print view as the default view. day, week, and month only supported views for $this->default_view (listed well above).
$this->show_todos = 'yes'; // Show your todo list on the side of day and week view.
$this->show_completed = 'yes'; // Show completed todos on your todo list.
diff --git a/functions/ical_parser.php b/functions/ical_parser.php
index 2791f65..82e76fe 100644
--- a/functions/ical_parser.php
+++ b/functions/ical_parser.php
@@ -11,7 +11,7 @@ include_once(BASE.'functions/parse/recur_functions.php');
$parse_file = true;
if ($phpiCal_config->save_parsed_cals == 'yes') {
if (sizeof ($cal_filelist) > 1) {
- $parsedcal = $tmp_dir.'/parsedcal-'.urlencode($cpath.'::'.$cal_filename).'-'.$this_year;
+ $parsedcal = $phpiCal_config->tmp_dir.'/parsedcal-'.urlencode($cpath.'::'.$cal_filename).'-'.$this_year;
if (file_exists($parsedcal)) {
$fd = fopen($parsedcal, 'r');
$contents = fread($fd, filesize($parsedcal));
@@ -51,7 +51,7 @@ if ($phpiCal_config->save_parsed_cals == 'yes') {
} else {
foreach ($cal_filelist as $filename) {
$realcal_mtime = filemtime($filename);
- $parsedcal = $tmp_dir.'/parsedcal-'.urlencode($cpath.'::'.$cal_filename).'-'.$this_year;
+ $parsedcal = $phpiCal_config->tmp_dir.'/parsedcal-'.urlencode($cpath.'::'.$cal_filename).'-'.$this_year;
if (file_exists($parsedcal)) {
$parsedcal_mtime = filemtime($parsedcal);
if ($realcal_mtime == $parsedcal_mtime) {
diff --git a/functions/init/configs.php b/functions/init/configs.php
index f94c47b..17921ba 100644
--- a/functions/init/configs.php
+++ b/functions/init/configs.php
@@ -5,6 +5,25 @@ if (is_file(BASE.'config.inc.php')){
include(BASE.'config.inc.php');
foreach($configs as $key=>$value) $phpiCal_config->setProperty($key, $value);
}
+
+# adjust gridlength to allowed values
+$g = $phpiCal_config->gridLength;
+if (!in_array($g,array(1,2,3,4,10,12,15,20,30,60)) && $g < 11){
+ $g = 10;
+}elseif($g < 13){
+ $g = 12;
+}elseif($g < 17){
+ $g = 15;
+}elseif($g < 25){
+ $g = 20;
+}elseif($g < 45){
+ $g = 30;
+}else{
+ $g = 60;
+}
+$phpiCal_config->setProperty('gridLength', $g);
+
+
if ($phpiCal_config->cookie_uri == '') {
$phpiCal_config->setProperty('cookie_uri', $_SERVER['SERVER_NAME'].substr($_SERVER['PHP_SELF'],0,strpos($_SERVER['PHP_SELF'], '/')) );
if ($phpiCal_config->cookie_uri == 'localhost') $phpiCal_config->setProperty('cookie_uri', '');
@@ -23,6 +42,7 @@ if (isset($_COOKIE[$cookie_name]) && !isset($_POST['unset'])) {
if (isset($phpicalendar['cookie_startday'])) $phpiCal_config->setProperty('week_start_day', $phpicalendar['cookie_startday']);
if (isset($phpicalendar['cookie_time'])) $phpiCal_config->setProperty('day_start', $phpicalendar['cookie_time']);
if (isset($phpicalendar['cookie_endtime'])) $phpiCal_config->setProperty('day_end', $phpicalendar['cookie_endtime']);
+ if (isset($phpicalendar['cookie_timezone'])) $phpiCal_config->setProperty('timezone', $phpicalendar['timezone']);
}
# language support
diff --git a/functions/init/date_range.php b/functions/init/date_range.php
index 7a51b47..d9f7b54 100644
--- a/functions/init/date_range.php
+++ b/functions/init/date_range.php
@@ -33,6 +33,7 @@ switch ($current_view){
$mArray_begin = mktime (0,0,0,$start_month,1,($start_year));
$mArray_end = mktime (0,0,0,$end_month,31,($end_year));
break;
+ case 'error':
case 'preferences':
$mArray_begin = time();
$mArray_end = time();
@@ -45,3 +46,7 @@ switch ($current_view){
$mArray_begin = mktime (0,0,0,12,21,($this_year - 1));
$mArray_end = mktime (0,0,0,1,31,($this_year + 1));
}
+if ($phpiCal_config->save_parsed_cals == 'yes') {
+ $mArray_begin = mktime (0,0,0,12,21,($this_year - 1));
+ $mArray_end = mktime (0,0,0,1,31,($this_year + 1));
+} \ No newline at end of file
diff --git a/functions/template.php b/functions/template.php
index 95b0586..46f5163 100644
--- a/functions/template.php
+++ b/functions/template.php
@@ -269,7 +269,7 @@ class Page {
$event_length[$thisday] = array ();
$thisdate = ($thisdate + (25 * 60 * 60));
}
-
+ #echo "<pre>";print_r($nbrGridCols);
// Replaces the allday events
preg_match("!<\!-- loop allday on -->(.*)<\!-- loop allday off -->!Uis", $this->page, $match1);
preg_match("!<\!-- loop alldaysofweek on -->(.*)<\!-- loop allday on -->!Uis", $this->page, $match2);
@@ -510,7 +510,7 @@ class Page {
$loop_dof = trim($match1[1]);
$start_wt = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day));
$start_day = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day));
- for ($i=0; $i<7; $i++) {
+ for ($i=0; $i<$phpiCal_config->week_length; $i++) {
$day_num = date("w", $start_day);
$daylink = date('Ymd', $start_wt);
if ($current_view == 'day') {
@@ -883,7 +883,7 @@ class Page {
$weekday_loop = '';
$middle = '';
- for ($i=0; $i<7; $i++) {
+ for ($i=0; $i< $phpiCal_config->week_length; $i++) {
$day_num = date("w", $start_day);
$weekday = $langtype[$day_num];
$start_day = strtotime("+1 day", $start_day);
@@ -910,7 +910,7 @@ class Page {
} else {
$temp = $t_month[2];
}
- if (isset($master_array[$daylink])) {
+ if (isset($master_array[$daylink]) && $i <= $phpiCal_config->week_length) {
if ($type != 'small') {
foreach ($master_array[$daylink] as $cal_time => $event_times) {
foreach ($event_times as $uid => $val) {
@@ -953,7 +953,10 @@ class Page {
$middle .= $temp;
$start_day = strtotime("+1 day", $start_day);
- if ($i == 7) {
+ if ($i == $phpiCal_config->week_length) {
+ if ($phpiCal_config->week_length != 7) {
+ $start_day = strtotime("+".(7-$phpiCal_config->week_length)." day", $start_day);
+ }
$i = 0;
$middle .= $endweek;
$checkagain = date ("m", $start_day);
diff --git a/languages/english.inc.php b/languages/english.inc.php
index c174be1..a2a581b 100644
--- a/languages/english.inc.php
+++ b/languages/english.inc.php
@@ -69,6 +69,7 @@ $lang['l_select_lang'] = 'Select your default language';
$lang['l_select_cal'] = 'Select your default calendar';
$lang['l_select_view'] = 'Select your default view';
$lang['l_select_time'] = 'Select your default start time';
+$lang['l_select_timezone'] = 'Select your default timezone';
$lang['l_select_endtime'] = 'Select your default end time';
$lang['l_select_day'] = 'Select your default start day of week';
$lang['l_select_style'] = 'Select your default style';
diff --git a/preferences.php b/preferences.php
index 118a3b7..1067106 100644
--- a/preferences.php
+++ b/preferences.php
@@ -31,7 +31,7 @@ if ($action == 'setcookie') {
$cookie_time = $_POST['cookie_time'];
$cookie_endtime = $_POST['cookie_endtime'];
$cookie_unset = @$_POST['unset'];
- $the_cookie = array ("cookie_language" => "$cookie_language", "cookie_calendar" => "$cookie_calendar", "cookie_view" => "$cookie_view", "cookie_startday" => "$cookie_startday", "cookie_style" => "$cookie_style", "cookie_time" => "$cookie_time","cookie_endtime" => "$cookie_endtime", "cookie_cpath"=>"$cookie_cpath");
+ $the_cookie = array ("cookie_language" => "$cookie_language", "cookie_calendar" => "$cookie_calendar", "cookie_view" => "$cookie_view", "cookie_startday" => "$cookie_startday", "cookie_style" => "$cookie_style", "cookie_time" => "$cookie_time","cookie_endtime" => "$cookie_endtime", "cookie_cpath"=>"$cookie_cpath", "cookie_timezone"=>"$cookie_timezone");
$the_cookie = serialize($the_cookie);
if ($cookie_unset) {
setcookie("$cookie_name","$the_cookie",time()-(60*60*24*7) ,"/","$phpiCal_config->cookie_uri",0);
@@ -58,6 +58,7 @@ if (isset($_COOKIE[$cookie_name])) {
$cookie_startday = $phpicalendar['cookie_startday'];
$cookie_time = $phpicalendar['cookie_time'];
$cookie_endtime = $phpicalendar['cookie_endtime'];
+ $cookie_endtime = $phpicalendar['cookie_timezone'];
if ($cookie_unset) {
unset ($cookie_language, $cookie_calendar, $cookie_view, $cookie_style,$cookie_startday);
}
@@ -72,6 +73,7 @@ if ((!isset($_COOKIE[$cookie_name])) || ($cookie_unset)) {
$cookie_startday = $phpiCal_config->week_start_day;
$cookie_time = $phpiCal_config->day_start;
$cookie_endtime = $phpiCal_config->day_end;
+ $cookie_timezone = $phpiCal_config->timezone;
}
if ($action == 'setcookie') {
@@ -179,6 +181,7 @@ $page->replace_tags(array(
'rss_valid' => '',
'event_js' => '',
'language_select' => $language_select,
+ 'timezone_select' => $timezone_select,
'calendar_select' => $calendar_select,
'view_select' => $view_select,
'time_select' => $time_select,
@@ -193,6 +196,7 @@ $page->replace_tags(array(
'l_select_lang' => $lang['l_select_lang'],
'l_select_view' => $lang['l_select_view'],
'l_select_time' => $lang['l_select_time'],
+ 'l_select_timezone' => $lang['l_select_timezone'],
'l_select_endtime' => $lang['l_select_endtime'],
'l_select_day' => $lang['l_select_day'],
'l_select_cal' => $lang['l_select_cal'],
diff --git a/rss/feed.png b/rss/feed.png
new file mode 100644
index 0000000..1679ab0
--- /dev/null
+++ b/rss/feed.png
Binary files differ
diff --git a/rss/index.php b/rss/index.php
index f36ecbd..7f0168d 100644
--- a/rss/index.php
+++ b/rss/index.php
@@ -22,7 +22,7 @@ $current_view = "rssindex";
$display_date = "RSS Info";
$rss_list = "<table>\n";
-$xml_icon ="<img src = 'xml.gif' alt='xml'>";
+$xml_icon ="<img src = 'feed.png' alt='rss icon'>";
$filelist = availableCalendars($username, $password, $phpiCal_config->ALL_CALENDARS_COMBINED);
foreach ($filelist as $file) {
diff --git a/templates/default/preferences.tpl b/templates/default/preferences.tpl
index 8de7307..4ffc22b 100644
--- a/templates/default/preferences.tpl
+++ b/templates/default/preferences.tpl
@@ -43,6 +43,11 @@
<td width="10%"><select name="cookie_language" class="query_style">{LANGUAGE_SELECT}</select></td>
</tr>
<tr align="left" valign="top">
+ <td width="80%" nowrap="nowrap">{L_SELECT_TIMEZONE}:</td>
+ <td width="10%"><img src="images/spacer.gif" alt=" " width="20" height="1" border="0" /></td>
+ <td width="10%"><select name="cookie_timezone" class="query_style">{TIMEZONE_SELECT}</select></td>
+ </tr>
+ <tr align="left" valign="top">
<td nowrap="nowrap">{L_SELECT_CAL}:</td>
<td><img src="images/spacer.gif" alt=" " width="20" height="1" border="0" /></td>
<td><select name="cookie_calendar" class="query_style">{CALENDAR_SELECT}</select>
diff --git a/templates/green/rss_index.tpl b/templates/green/rss_index.tpl
deleted file mode 100644
index 7d61389..0000000
--- a/templates/green/rss_index.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-{HEADER}
-<center>
-<table border="0" width="700" cellspacing="0" cellpadding="0">
- <tr>
- <td width="700" valign="top" align="center">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="calborder">
- <tr>
- <td align="center" valign="middle">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td align="left" width="400" class="title"><h1>{L_RSS_INFO}</h1><span class="V9G">{L_RSS_SUBHEAD}</span></div></td>
- <td valign="top" align="right" width="120" class="navback">
- <div style="padding-top: 3px;">
- <table width="120" border="0" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td><a class="psf" href="../day.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" border="0" /></a></td>
- <td><a class="psf" href="../week.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" border="0" /></a></td>
- <td><a class="psf" href="../month.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" border="0" /></a></td>
- <td><a class="psf" href="../year.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" border="0" /></a></td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="dayborder"><img src="../images/spacer.gif" width="1" height="5" alt=" " /></td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="G10B">
- <tr>
- <td width="2%"></td>
- <td width="98%" valign="top" align="left">
- <br />
- <br />
- <br />
- {RSS_LIST}
- <br />
- <p>{RSS_DOCINFO}</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<table width="700" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tbll"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblbot"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblr"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- </tr>
-</table>
-</center>
-
-{FOOTER} \ No newline at end of file
diff --git a/templates/grey/rss_index.tpl b/templates/grey/rss_index.tpl
deleted file mode 100644
index 7d61389..0000000
--- a/templates/grey/rss_index.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-{HEADER}
-<center>
-<table border="0" width="700" cellspacing="0" cellpadding="0">
- <tr>
- <td width="700" valign="top" align="center">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="calborder">
- <tr>
- <td align="center" valign="middle">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td align="left" width="400" class="title"><h1>{L_RSS_INFO}</h1><span class="V9G">{L_RSS_SUBHEAD}</span></div></td>
- <td valign="top" align="right" width="120" class="navback">
- <div style="padding-top: 3px;">
- <table width="120" border="0" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td><a class="psf" href="../day.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" border="0" /></a></td>
- <td><a class="psf" href="../week.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" border="0" /></a></td>
- <td><a class="psf" href="../month.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" border="0" /></a></td>
- <td><a class="psf" href="../year.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" border="0" /></a></td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="dayborder"><img src="../images/spacer.gif" width="1" height="5" alt=" " /></td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="G10B">
- <tr>
- <td width="2%"></td>
- <td width="98%" valign="top" align="left">
- <br />
- <br />
- <br />
- {RSS_LIST}
- <br />
- <p>{RSS_DOCINFO}</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<table width="700" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tbll"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblbot"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblr"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- </tr>
-</table>
-</center>
-
-{FOOTER} \ No newline at end of file
diff --git a/templates/red/rss_index.tpl b/templates/red/rss_index.tpl
deleted file mode 100644
index 7d61389..0000000
--- a/templates/red/rss_index.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-{HEADER}
-<center>
-<table border="0" width="700" cellspacing="0" cellpadding="0">
- <tr>
- <td width="700" valign="top" align="center">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="calborder">
- <tr>
- <td align="center" valign="middle">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td align="left" width="400" class="title"><h1>{L_RSS_INFO}</h1><span class="V9G">{L_RSS_SUBHEAD}</span></div></td>
- <td valign="top" align="right" width="120" class="navback">
- <div style="padding-top: 3px;">
- <table width="120" border="0" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td><a class="psf" href="../day.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" border="0" /></a></td>
- <td><a class="psf" href="../week.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" border="0" /></a></td>
- <td><a class="psf" href="../month.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" border="0" /></a></td>
- <td><a class="psf" href="../year.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" border="0" /></a></td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="dayborder"><img src="../images/spacer.gif" width="1" height="5" alt=" " /></td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="G10B">
- <tr>
- <td width="2%"></td>
- <td width="98%" valign="top" align="left">
- <br />
- <br />
- <br />
- {RSS_LIST}
- <br />
- <p>{RSS_DOCINFO}</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<table width="700" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tbll"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblbot"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblr"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- </tr>
-</table>
-</center>
-
-{FOOTER} \ No newline at end of file
diff --git a/templates/tan/rss_index.tpl b/templates/tan/rss_index.tpl
deleted file mode 100644
index 7d61389..0000000
--- a/templates/tan/rss_index.tpl
+++ /dev/null
@@ -1,61 +0,0 @@
-{HEADER}
-<center>
-<table border="0" width="700" cellspacing="0" cellpadding="0">
- <tr>
- <td width="700" valign="top" align="center">
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="calborder">
- <tr>
- <td align="center" valign="middle">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr valign="top">
- <td align="left" width="400" class="title"><h1>{L_RSS_INFO}</h1><span class="V9G">{L_RSS_SUBHEAD}</span></div></td>
- <td valign="top" align="right" width="120" class="navback">
- <div style="padding-top: 3px;">
- <table width="120" border="0" cellpadding="0" cellspacing="0">
- <tr valign="top">
- <td><a class="psf" href="../day.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/day_on.gif" alt="{L_DAY}" border="0" /></a></td>
- <td><a class="psf" href="../week.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/week_on.gif" alt="{L_WEEK}" border="0" /></a></td>
- <td><a class="psf" href="../month.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/month_on.gif" alt="{L_MONTH}" border="0" /></a></td>
- <td><a class="psf" href="../year.php?cal={CAL}&amp;getdate={GETDATE}"><img src="../templates/{TEMPLATE}/images/year_on.gif" alt="{L_YEAR}" border="0" /></a></td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr>
- <td class="dayborder"><img src="../images/spacer.gif" width="1" height="5" alt=" " /></td>
- </tr>
- <tr>
- <td>
- <table width="100%" border="0" cellspacing="0" cellpadding="0" class="G10B">
- <tr>
- <td width="2%"></td>
- <td width="98%" valign="top" align="left">
- <br />
- <br />
- <br />
- {RSS_LIST}
- <br />
- <p>{RSS_DOCINFO}</p>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
-</table>
-<table width="700" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="tbll"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblbot"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- <td class="tblr"><img src="../images/spacer.gif" alt="" width="8" height="4" /></td>
- </tr>
-</table>
-</center>
-
-{FOOTER} \ No newline at end of file

© 2014-2024 Faster IT GmbH | imprint | privacy policy