Update of /cvsroot/phpicalendar/phpicalendar
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27791
Modified Files:
admin.php day.php month.php preferences.php print.php
search.php week.php year.php
Log Message:
Initial wiring of rss index and template.
Index: admin.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/admin.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** admin.php 8 Feb 2004 23:46:47 -0000 1.12
--- admin.php 9 Feb 2004 00:51:48 -0000 1.13
***************
*** 52,55 ****
--- 52,56 ----
'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
'event_js' => BASE.'functions/event.js',
+ 'default_path' => '',
'template' => $template,
'cal' => $cal,
Index: day.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/day.php,v
retrieving revision 1.110
retrieving revision 1.111
diff -C2 -d -r1.110 -r1.111
*** day.php 8 Feb 2004 00:43:13 -0000 1.110
--- day.php 9 Feb 2004 00:51:48 -0000 1.111
***************
*** 41,44 ****
--- 41,45 ----
'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
'event_js' => BASE.'functions/event.js',
+ 'default_path' => '',
'template' => $template,
'cal' => $cal,
Index: month.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v
retrieving revision 1.115
retrieving revision 1.116
diff -C2 -d -r1.115 -r1.116
*** month.php 3 Feb 2004 23:02:10 -0000 1.115
--- month.php 9 Feb 2004 00:51:48 -0000 1.116
***************
*** 61,64 ****
--- 61,65 ----
'display_date' => $display_date,
'rss_powered' => $rss_powered,
+ 'default_path' => '',
'rss_available' => '',
'rss_valid' => '',
Index: preferences.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/preferences.php,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** preferences.php 8 Feb 2004 23:46:47 -0000 1.43
--- preferences.php 9 Feb 2004 00:51:48 -0000 1.44
***************
*** 137,140 ****
--- 137,141 ----
'footer' => BASE.'templates/'.$template.'/footer.tpl',
'template' => $template,
+ 'default_path' => '',
'cal' => $cal,
'getdate' => $getdate,
Index: print.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** print.php 8 Feb 2004 00:43:13 -0000 1.21
--- print.php 9 Feb 2004 00:51:48 -0000 1.22
***************
*** 57,60 ****
--- 57,61 ----
'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
'event_js' => BASE.'functions/event.js',
+ 'default_path' => '',
'template' => $template,
'cal' => $cal,
Index: search.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/search.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** search.php 8 Feb 2004 23:46:47 -0000 1.28
--- search.php 9 Feb 2004 00:51:48 -0000 1.29
***************
*** 277,280 ****
--- 277,281 ----
'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
'event_js' => BASE.'functions/event.js',
+ 'default_path' => '',
'template' => $template,
'cal' => $cal,
Index: week.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v
retrieving revision 1.108
retrieving revision 1.109
diff -C2 -d -r1.108 -r1.109
*** week.php 8 Feb 2004 08:10:28 -0000 1.108
--- week.php 9 Feb 2004 00:51:48 -0000 1.109
***************
*** 44,47 ****
--- 44,48 ----
'sidebar' => BASE.'templates/'.$template.'/sidebar.tpl',
'event_js' => BASE.'functions/event.js',
+ 'default_path' => '',
'template' => $template,
'cal' => $cal,
Index: year.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** year.php 1 Feb 2004 04:16:36 -0000 1.28
--- year.php 9 Feb 2004 00:51:48 -0000 1.29
***************
*** 2,6 ****
define('BASE', './');
! include_once(BASE.'functions/ical_parser.php');
require_once(BASE.'functions/template.php');
$current_view = 'year';
--- 2,6 ----
define('BASE', './');
! require_once(BASE.'functions/ical_parser.php');
require_once(BASE.'functions/template.php');
$current_view = 'year';
***************
*** 21,28 ****
--- 21,30 ----
'footer' => BASE.'templates/'.$template.'/footer.tpl',
'template' => $template,
+ 'default_path' => '',
'cal' => $cal,
'getdate' => $getdate,
'calendar_name' => $calendar_name,
'display_date' => $this_year,
+ 'default_path' => '',
'rss_powered' => $rss_powered,
'rss_available' => '',
|