mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Upgrade to 2.0.
The major changes compared to the Kronolith 1.x versions are: * Shared calendars. * Meeting management through iCalendar and iTip messages. * Event reminders through email. * iCalendar import and export. * Generation of free/busy information. * Remote calendars. * Kolab server support. * Search capability. * Access keys.
This commit is contained in:
parent
e003a17469
commit
a033fd5e91
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125202
24 changed files with 777 additions and 627 deletions
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= kronolith
|
PORTNAME= kronolith
|
||||||
PORTVERSION= 1.1.2
|
PORTVERSION= 2.0
|
||||||
CATEGORIES= deskutils www
|
CATEGORIES= deskutils www
|
||||||
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
||||||
|
@ -17,44 +17,55 @@ MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
||||||
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
||||||
http://ftp.horde.org/pub/kronolith/
|
http://ftp.horde.org/pub/kronolith/
|
||||||
|
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||||
|
|
||||||
MAINTAINER= thierry@FreeBSD.org
|
MAINTAINER= thierry@FreeBSD.org
|
||||||
COMMENT= Kronolith is the Horde calendar application
|
COMMENT= Kronolith is the Horde calendar application
|
||||||
|
|
||||||
RUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp3
|
#----------------------------------------------------------------------------
|
||||||
|
# You may define this option:
|
||||||
|
#
|
||||||
|
# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend
|
||||||
|
# (only for PHP4).
|
||||||
|
#
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||||
|
|
||||||
NO_BUILD= yes
|
NO_BUILD= yes
|
||||||
USE_PHP= mcal
|
USE_PHP= yes # modules set by Horde, but needed to get PHP_VER
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
|
|
||||||
.if defined(WITH_APACHE2)
|
REINPLACE_ARGS= -i ""
|
||||||
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
|
||||||
.else
|
|
||||||
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
|
||||||
.endif
|
|
||||||
|
|
||||||
REINPLACE_ARGS= -i.beforeKronolith
|
|
||||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||||
docs/RELEASE_NOTES
|
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||||
CONFFILE= conf.php html.php keywords.php menu.php prefs.php
|
CONFFILE= keywords.php menu.php prefs.php
|
||||||
SUB_DIRS= config graphics lib locale po scripts templates util
|
SUB_DIRS= config lib locale po scripts templates themes
|
||||||
|
|
||||||
LHORDEDIR?= www/horde
|
LHORDEDIR?= www/horde
|
||||||
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
||||||
|
|
||||||
PLIST_SUB= HORDEDIR=${LHORDEDIR} KRONOLITHDIR=${LKRONOLITHDIR}
|
PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR}
|
||||||
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||||
|
|
||||||
HORDEDIR= ${PREFIX}/${LHORDEDIR}
|
|
||||||
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
||||||
CONFDIR= ${KRONOLITHDIR}/config
|
CONFDIR= ${KRONOLITHDIR}/config
|
||||||
VAR_CAL= /var/calendar
|
VAR_CAL= /var/calendar
|
||||||
|
|
||||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||||
|
|
||||||
post-patch:
|
.include <bsd.port.pre.mk>
|
||||||
@${RM} ${WRKSRC}/config/conf.php.dist.orig
|
|
||||||
|
.if exists(${LOCALBASE}/sbin/htpasswd)
|
||||||
|
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
||||||
|
.else
|
||||||
|
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
||||||
|
.endif
|
||||||
|
|
||||||
|
pre-configure:
|
||||||
|
@${RM} ${WRKSRC}/config/conf.xml.orig
|
||||||
|
@${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \
|
||||||
|
${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
@${MKDIR} ${KRONOLITHDIR}
|
@${MKDIR} ${KRONOLITHDIR}
|
||||||
|
@ -62,22 +73,14 @@ do-install:
|
||||||
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
||||||
.endfor
|
.endfor
|
||||||
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
||||||
@${MKDIR} ${KRONOLITHDIR}/scripts
|
|
||||||
.for FILE in ${CONFFILE}
|
.for FILE in ${CONFFILE}
|
||||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||||
fi
|
fi
|
||||||
.endfor
|
.endfor
|
||||||
@${CHOWN} -R www:www ${KRONOLITHDIR}
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}
|
||||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||||
@${CP} -p ${FILESDIR}/httpd.conf.kronolith ${HORDE_INC}
|
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC}
|
||||||
@${REINPLACE_CMD} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:g" \
|
|
||||||
${HORDE_INC}/httpd.conf.kronolith
|
|
||||||
@${RM} ${HORDE_INC}/httpd.conf.kronolith.beforeKronolith
|
|
||||||
@${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTKRONOLITH::" \
|
|
||||||
${HORDEDIR}/config/registry.php
|
|
||||||
@${CP} -p ${HORDEDIR}/config/registry.php \
|
|
||||||
${HORDEDIR}/config/registry.php.afterKronolith
|
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
@${MKDIR} ${DOCSDIR}
|
@${MKDIR} ${DOCSDIR}
|
||||||
.for FILE in ${DOCS}
|
.for FILE in ${DOCS}
|
||||||
|
@ -87,6 +90,7 @@ do-install:
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
|
.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4)
|
||||||
@if [ ! -d ${VAR_CAL} ]; then \
|
@if [ ! -d ${VAR_CAL} ]; then \
|
||||||
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
||||||
${MKDIR} ${VAR_CAL} ; \
|
${MKDIR} ${VAR_CAL} ; \
|
||||||
|
@ -98,21 +102,23 @@ post-install:
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
||||||
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
else \
|
else \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \
|
||||||
fi
|
fi
|
||||||
@${RM} ${CONFDIR}/conf.php.beforeKronolith
|
. endif
|
||||||
.endif
|
.endif
|
||||||
|
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||||
|
-e "s:%%LOCALBASE%%:${LOCALBASE}:" < ${FILESDIR}/pkg-message.in \
|
||||||
|
> ${PKGMESSAGE}
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g" \
|
@${CAT} ${PKGMESSAGE}
|
||||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%LOCALBASE%%:${LOCALBASE}:" ${PKGMESSAGE}
|
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.post.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (kronolith-1.1.2.tar.gz) = bb81207fe39000ab9030b3e283216dfc
|
MD5 (kronolith-h3-2.0.tar.gz) = 7ee17a4a4ed1882381c9ae093685621c
|
||||||
SIZE (kronolith-1.1.2.tar.gz) = 505727
|
SIZE (kronolith-h3-2.0.tar.gz) = 1175123
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
--- config/conf.php.dist.orig Fri Apr 4 21:23:54 2003
|
|
||||||
+++ config/conf.php.dist Sat Apr 5 17:57:35 2003
|
|
||||||
@@ -28,9 +28,9 @@
|
|
||||||
$conf['calendar']['params']['driver'] = 'mstore';
|
|
||||||
|
|
||||||
// The mstore driver requires a username and a password that is in
|
|
||||||
-// /etc/mpasswd in order to access local calendars.
|
|
||||||
-$conf['calendar']['params']['username'] = '';
|
|
||||||
-$conf['calendar']['params']['password'] = '';
|
|
||||||
+// /usr/local/etc/mpasswd in order to access local calendars.
|
|
||||||
+$conf['calendar']['params']['username'] = 'www';
|
|
||||||
+$conf['calendar']['params']['password'] = '%%PASSCAL%%';
|
|
||||||
|
|
||||||
// This is an example configuration for an sql driver, in this case MySQL.
|
|
||||||
// $conf['calendar']['params']['phptype'] = 'mysql';
|
|
||||||
@@ -48,7 +48,7 @@
|
|
||||||
// If this is true, then an array of keywords will be read from
|
|
||||||
// config/keywords.php and you will be able to assign any or all of
|
|
||||||
// them to events.
|
|
||||||
-$conf['metadata']['keywords'] = false;
|
|
||||||
+$conf['metadata']['keywords'] = true;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
14
deskutils/horde-kronolith/files/patch-config::conf.xml
Normal file
14
deskutils/horde-kronolith/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- config/conf.xml.orig Sun Oct 3 15:24:09 2004
|
||||||
|
+++ config/conf.xml Mon Nov 29 21:48:21 2004
|
||||||
|
@@ -13,9 +13,9 @@
|
||||||
|
<configstring name="driver" desc="What MCAL driver is being
|
||||||
|
used?">mstore</configstring>
|
||||||
|
<configstring name="username" desc="Connect to MCAL
|
||||||
|
- as">horde</configstring>
|
||||||
|
+ as">www</configstring>
|
||||||
|
<configstring name="password" required="false" desc="Password to connect
|
||||||
|
- with">****</configstring>
|
||||||
|
+ with">%%PASSCAL%%</configstring>
|
||||||
|
</configsection>
|
||||||
|
</case>
|
||||||
|
|
29
deskutils/horde-kronolith/files/pkg-message.in
Normal file
29
deskutils/horde-kronolith/files/pkg-message.in
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
**************************************************************************
|
||||||
|
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
||||||
|
blank configuration files.
|
||||||
|
|
||||||
|
Horde must be configured; if not, see `pkg_info -D -x horde'.
|
||||||
|
|
||||||
|
With PHP4:
|
||||||
|
If you choose the mcal backend, libmcal must be configured with the driver
|
||||||
|
mstore for the user www:
|
||||||
|
|
||||||
|
- mkdir /var/calendar
|
||||||
|
- chmod 1777 /var/calendar
|
||||||
|
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
||||||
|
|
||||||
|
(this port has tried to make it for you, perhaps you'll just have to
|
||||||
|
check - see `pkg_info -D -x libmcal')
|
||||||
|
|
||||||
|
If you choose a database backend, you have to create some tables from the
|
||||||
|
SQL scripts in %%KRONOLITHDIR%%/scripts/sql.
|
||||||
|
|
||||||
|
WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter
|
||||||
|
******** your schemas.
|
||||||
|
Please read the doc %%DOCSDIR%%/UPGRADING.
|
||||||
|
|
||||||
|
Finally, you must login to Horde as a Horde Administrator to finish the
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
To protect your configuration files, you have to restart Apache.
|
||||||
|
**************************************************************************
|
|
@ -1,11 +1,7 @@
|
||||||
Kronolith is the Horde calendar application. It is currently in the
|
Kronolith is the Horde calendar application.
|
||||||
development stages, and makes heavy use of the Horde framework to
|
|
||||||
provide integration with other applications.
|
|
||||||
|
|
||||||
Right now, Kronolith implements a solid, stand-alone calendar system,
|
Right now, Kronolith implements a solid, stand-alone calendar system,
|
||||||
allowing repeating events, all-day events, custom fields, keywords,
|
allowing repeating events, all-day events, custom fields, keywords,
|
||||||
and managing multiple users through Horde Authentication. The calendar
|
and managing multiple users through Horde Authentication.
|
||||||
API that Kronolith uses is abstracted such that it could work with any
|
|
||||||
backend, but right now it uses the MCAL calendar library for a backend.
|
|
||||||
|
|
||||||
WWW: http://horde.org/kronolith/
|
WWW: http://horde.org/kronolith/
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
************************************************************************
|
|
||||||
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
|
||||||
blank configuration files.
|
|
||||||
|
|
||||||
Horde and IMP must be configured; if not, see:
|
|
||||||
- %%PORTSDIR%%/www/horde2/pkg-message
|
|
||||||
- %%PORTSDIR%%/mail/imp3/pkg-message
|
|
||||||
|
|
||||||
libmcal must be configured with the driver mstore for the user www:
|
|
||||||
|
|
||||||
- mkdir /var/calendar
|
|
||||||
- chmod 1777 /var/calendar
|
|
||||||
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
|
||||||
|
|
||||||
(this port has tried to make it for you, perhaps you'll just have to
|
|
||||||
check - see %%PORTSDIR%%/misc/libmcal/pkg-message)
|
|
||||||
|
|
||||||
Then, you may have to tune the configuration files located in
|
|
||||||
%%CONFDIR%%/, specially the files conf.php.
|
|
||||||
|
|
||||||
To protect your configuration files, you have to restart Apache.
|
|
||||||
************************************************************************
|
|
|
@ -4,66 +4,65 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||||
%%KRONOLITHDIR%%/addevent.php
|
%%KRONOLITHDIR%%/addevent.php
|
||||||
%%KRONOLITHDIR%%/addeventaction.php
|
%%KRONOLITHDIR%%/addeventaction.php
|
||||||
|
%%KRONOLITHDIR%%/attendees.php
|
||||||
|
%%KRONOLITHDIR%%/calendars.php
|
||||||
%%KRONOLITHDIR%%/config/.htaccess
|
%%KRONOLITHDIR%%/config/.htaccess
|
||||||
%%KRONOLITHDIR%%/config/conf.php
|
%%KRONOLITHDIR%%/config/conf.xml
|
||||||
%%KRONOLITHDIR%%/config/conf.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/html.php
|
|
||||||
%%KRONOLITHDIR%%/config/html.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/keywords.php
|
%%KRONOLITHDIR%%/config/keywords.php
|
||||||
%%KRONOLITHDIR%%/config/keywords.php.dist
|
%%KRONOLITHDIR%%/config/keywords.php.dist
|
||||||
%%KRONOLITHDIR%%/config/menu.php
|
%%KRONOLITHDIR%%/config/menu.php
|
||||||
%%KRONOLITHDIR%%/config/menu.php.dist
|
%%KRONOLITHDIR%%/config/menu.php.dist
|
||||||
%%KRONOLITHDIR%%/config/prefs.php
|
%%KRONOLITHDIR%%/config/prefs.php
|
||||||
%%KRONOLITHDIR%%/config/prefs.php.dist
|
%%KRONOLITHDIR%%/config/prefs.php.dist
|
||||||
|
%%KRONOLITHDIR%%/contacts.php
|
||||||
%%KRONOLITHDIR%%/data.php
|
%%KRONOLITHDIR%%/data.php
|
||||||
%%KRONOLITHDIR%%/day.php
|
%%KRONOLITHDIR%%/day.php
|
||||||
%%KRONOLITHDIR%%/delevent.php
|
%%KRONOLITHDIR%%/delevent.php
|
||||||
%%KRONOLITHDIR%%/deleventaction.php
|
%%KRONOLITHDIR%%/deleventaction.php
|
||||||
%%KRONOLITHDIR%%/editevent.php
|
%%KRONOLITHDIR%%/editevent.php
|
||||||
%%KRONOLITHDIR%%/editeventaction.php
|
%%KRONOLITHDIR%%/editeventaction.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm.gif
|
%%KRONOLITHDIR%%/fb.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm_small.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/bullet.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/clear.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.png
|
|
||||||
%%KRONOLITHDIR%%/graphics/dayview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/delete.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/event.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/goto.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/kronolith.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/monthview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/new.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/next.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/prev.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/print.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/recur.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/today.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/weekview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/workweekview.gif
|
|
||||||
%%KRONOLITHDIR%%/index.php
|
%%KRONOLITHDIR%%/index.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/month.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/monthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/summary.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/tree_menu.php
|
||||||
%%KRONOLITHDIR%%/lib/Day.php
|
%%KRONOLITHDIR%%/lib/Day.php
|
||||||
%%KRONOLITHDIR%%/lib/DayView.php
|
%%KRONOLITHDIR%%/lib/DayView.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver.php
|
%%KRONOLITHDIR%%/lib/Driver.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/ical.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/kolab.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/Event.php
|
%%KRONOLITHDIR%%/lib/FBView.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/day.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/week.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/workweek.php
|
||||||
%%KRONOLITHDIR%%/lib/Kronolith.php
|
%%KRONOLITHDIR%%/lib/Kronolith.php
|
||||||
%%KRONOLITHDIR%%/lib/Notification/kronolith.php
|
%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/kolab.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/WeekView.php
|
%%KRONOLITHDIR%%/lib/WeekView.php
|
||||||
%%KRONOLITHDIR%%/lib/api.php
|
%%KRONOLITHDIR%%/lib/api.php
|
||||||
%%KRONOLITHDIR%%/lib/base.php
|
%%KRONOLITHDIR%%/lib/base.php
|
||||||
|
%%KRONOLITHDIR%%/lib/prefs.php
|
||||||
%%KRONOLITHDIR%%/lib/version.php
|
%%KRONOLITHDIR%%/lib/version.php
|
||||||
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/de_DE/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/es_ES/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
||||||
|
@ -72,21 +71,20 @@
|
||||||
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/pt_BR/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES/kronolith.mo
|
|
||||||
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/menu.php
|
|
||||||
%%KRONOLITHDIR%%/month.php
|
%%KRONOLITHDIR%%/month.php
|
||||||
%%KRONOLITHDIR%%/po/Makefile
|
|
||||||
%%KRONOLITHDIR%%/po/README
|
%%KRONOLITHDIR%%/po/README
|
||||||
%%KRONOLITHDIR%%/po/ar_SY.po
|
%%KRONOLITHDIR%%/po/ar_SY.po
|
||||||
%%KRONOLITHDIR%%/po/bg_BG.po
|
%%KRONOLITHDIR%%/po/bg_BG.po
|
||||||
|
@ -95,7 +93,6 @@
|
||||||
%%KRONOLITHDIR%%/po/de_DE.po
|
%%KRONOLITHDIR%%/po/de_DE.po
|
||||||
%%KRONOLITHDIR%%/po/el_GR.po
|
%%KRONOLITHDIR%%/po/el_GR.po
|
||||||
%%KRONOLITHDIR%%/po/es_ES.po
|
%%KRONOLITHDIR%%/po/es_ES.po
|
||||||
%%KRONOLITHDIR%%/po/extract.pl
|
|
||||||
%%KRONOLITHDIR%%/po/fi_FI.po
|
%%KRONOLITHDIR%%/po/fi_FI.po
|
||||||
%%KRONOLITHDIR%%/po/fr_FR.po
|
%%KRONOLITHDIR%%/po/fr_FR.po
|
||||||
%%KRONOLITHDIR%%/po/hu_HU.po
|
%%KRONOLITHDIR%%/po/hu_HU.po
|
||||||
|
@ -103,6 +100,7 @@
|
||||||
%%KRONOLITHDIR%%/po/ko_KR.po
|
%%KRONOLITHDIR%%/po/ko_KR.po
|
||||||
%%KRONOLITHDIR%%/po/kronolith.pot
|
%%KRONOLITHDIR%%/po/kronolith.pot
|
||||||
%%KRONOLITHDIR%%/po/lt_LT.po
|
%%KRONOLITHDIR%%/po/lt_LT.po
|
||||||
|
%%KRONOLITHDIR%%/po/lv_LV.po
|
||||||
%%KRONOLITHDIR%%/po/nb_NO.po
|
%%KRONOLITHDIR%%/po/nb_NO.po
|
||||||
%%KRONOLITHDIR%%/po/nl_NL.po
|
%%KRONOLITHDIR%%/po/nl_NL.po
|
||||||
%%KRONOLITHDIR%%/po/nn_NO.po
|
%%KRONOLITHDIR%%/po/nn_NO.po
|
||||||
|
@ -110,118 +108,171 @@
|
||||||
%%KRONOLITHDIR%%/po/pt_BR.po
|
%%KRONOLITHDIR%%/po/pt_BR.po
|
||||||
%%KRONOLITHDIR%%/po/ro_RO.po
|
%%KRONOLITHDIR%%/po/ro_RO.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.po
|
%%KRONOLITHDIR%%/po/ru_RU.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.KOI8-R.po
|
|
||||||
%%KRONOLITHDIR%%/po/shtool
|
|
||||||
%%KRONOLITHDIR%%/po/sk_SK.po
|
%%KRONOLITHDIR%%/po/sk_SK.po
|
||||||
%%KRONOLITHDIR%%/po/sv_SE.po
|
%%KRONOLITHDIR%%/po/sv_SE.po
|
||||||
%%KRONOLITHDIR%%/po/xgettext.sh
|
|
||||||
%%KRONOLITHDIR%%/po/zh_CN.po
|
%%KRONOLITHDIR%%/po/zh_CN.po
|
||||||
%%KRONOLITHDIR%%/po/zh_TW.po
|
%%KRONOLITHDIR%%/po/zh_TW.po
|
||||||
%%KRONOLITHDIR%%/prefs.php
|
%%KRONOLITHDIR%%/scripts/.htaccess
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.oracle.sql
|
%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.sql
|
%%KRONOLITHDIR%%/scripts/reminders.php
|
||||||
%%KRONOLITHDIR%%/status.php
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql
|
||||||
%%KRONOLITHDIR%%/templates/common-footer.inc
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql
|
||||||
|
%%KRONOLITHDIR%%/search.php
|
||||||
|
%%KRONOLITHDIR%%/templates/attendees/attendees.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/calendars/calendars.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/category_legend.inc
|
||||||
%%KRONOLITHDIR%%/templates/common-header.inc
|
%%KRONOLITHDIR%%/templates/common-header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/contacts/contacts.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/export.inc
|
%%KRONOLITHDIR%%/templates/data/export.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/import.inc
|
%%KRONOLITHDIR%%/templates/data/import.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/foot.inc
|
%%KRONOLITHDIR%%/templates/day/foot.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/head.inc
|
%%KRONOLITHDIR%%/templates/day/head.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row.inc
|
%%KRONOLITHDIR%%/templates/day/row.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/one.inc
|
%%KRONOLITHDIR%%/templates/delete/one.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
||||||
%%KRONOLITHDIR%%/templates/index/css.inc
|
%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/index/notconfigured.inc
|
%%KRONOLITHDIR%%/templates/fbview/header.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/legend.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/linesblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/row.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/section.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
||||||
%%KRONOLITHDIR%%/templates/javascript/open_print_win.js
|
%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js
|
||||||
%%KRONOLITHDIR%%/templates/javascript/print.inc
|
%%KRONOLITHDIR%%/templates/menu.inc
|
||||||
%%KRONOLITHDIR%%/templates/menu/menu.inc
|
|
||||||
%%KRONOLITHDIR%%/templates/month/head.inc
|
%%KRONOLITHDIR%%/templates/month/head.inc
|
||||||
%%KRONOLITHDIR%%/templates/prefs/category_management.inc
|
%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/shareselect.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/empty.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_footers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_headers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_summaries.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search_advanced.inc
|
||||||
%%KRONOLITHDIR%%/templates/view/view.inc
|
%%KRONOLITHDIR%%/templates/view/view.inc
|
||||||
%%KRONOLITHDIR%%/templates/week/head.inc
|
%%KRONOLITHDIR%%/templates/week/head.inc
|
||||||
%%KRONOLITHDIR%%/util/colorpicker.php
|
%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/themes/bluewhite/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/alarm_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/attendees.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/calendars.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/dayview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/goto.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/kronolith.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/monthview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/recur.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/today.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/unknown-background.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/weekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/workweekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/mozilla/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/print/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/simplex/screen.css
|
||||||
%%KRONOLITHDIR%%/viewevent.php
|
%%KRONOLITHDIR%%/viewevent.php
|
||||||
%%KRONOLITHDIR%%/week.php
|
%%KRONOLITHDIR%%/week.php
|
||||||
%%KRONOLITHDIR%%/workweek.php
|
%%KRONOLITHDIR%%/workweek.php
|
||||||
@dirrm %%KRONOLITHDIR%%/config
|
|
||||||
@dirrm %%KRONOLITHDIR%%/graphics
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Notification
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale
|
|
||||||
@dirrm %%KRONOLITHDIR%%/po
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts/drivers
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/data
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/day
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/delete
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/edit
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/index
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/menu
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/month
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/view
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/week
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates
|
|
||||||
@dirrm %%KRONOLITHDIR%%/util
|
|
||||||
@dirrm %%KRONOLITHDIR%%
|
|
||||||
etc/horde/httpd.conf.kronolith
|
etc/horde/httpd.conf.kronolith
|
||||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||||
@unexec if cmp -s %D/www/horde/config/registry.php %D/www/horde/config/registry.php.afterKronolith; then rm -f %D/www/horde/config/registry.php.afterKronolith; mv %D/www/horde/config/registry.php.beforeKronolith %D/www/horde/config/registry.php; fi
|
@dirrm %%KRONOLITHDIR%%/themes/simplex
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/print
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/mozilla
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/graphics
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/bluewhite
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/week
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/view
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/search
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/month
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/fbview
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/edit
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/delete
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/day
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/data
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/contacts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/calendars
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/attendees
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/upgrades
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/sql
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/po
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Storage
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Scheduler
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/FBView
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Block
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= kronolith
|
PORTNAME= kronolith
|
||||||
PORTVERSION= 1.1.2
|
PORTVERSION= 2.0
|
||||||
CATEGORIES= deskutils www
|
CATEGORIES= deskutils www
|
||||||
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
||||||
|
@ -17,44 +17,55 @@ MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
||||||
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
||||||
http://ftp.horde.org/pub/kronolith/
|
http://ftp.horde.org/pub/kronolith/
|
||||||
|
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||||
|
|
||||||
MAINTAINER= thierry@FreeBSD.org
|
MAINTAINER= thierry@FreeBSD.org
|
||||||
COMMENT= Kronolith is the Horde calendar application
|
COMMENT= Kronolith is the Horde calendar application
|
||||||
|
|
||||||
RUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp3
|
#----------------------------------------------------------------------------
|
||||||
|
# You may define this option:
|
||||||
|
#
|
||||||
|
# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend
|
||||||
|
# (only for PHP4).
|
||||||
|
#
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||||
|
|
||||||
NO_BUILD= yes
|
NO_BUILD= yes
|
||||||
USE_PHP= mcal
|
USE_PHP= yes # modules set by Horde, but needed to get PHP_VER
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
|
|
||||||
.if defined(WITH_APACHE2)
|
REINPLACE_ARGS= -i ""
|
||||||
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
|
||||||
.else
|
|
||||||
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
|
||||||
.endif
|
|
||||||
|
|
||||||
REINPLACE_ARGS= -i.beforeKronolith
|
|
||||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||||
docs/RELEASE_NOTES
|
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||||
CONFFILE= conf.php html.php keywords.php menu.php prefs.php
|
CONFFILE= keywords.php menu.php prefs.php
|
||||||
SUB_DIRS= config graphics lib locale po scripts templates util
|
SUB_DIRS= config lib locale po scripts templates themes
|
||||||
|
|
||||||
LHORDEDIR?= www/horde
|
LHORDEDIR?= www/horde
|
||||||
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
||||||
|
|
||||||
PLIST_SUB= HORDEDIR=${LHORDEDIR} KRONOLITHDIR=${LKRONOLITHDIR}
|
PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR}
|
||||||
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||||
|
|
||||||
HORDEDIR= ${PREFIX}/${LHORDEDIR}
|
|
||||||
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
||||||
CONFDIR= ${KRONOLITHDIR}/config
|
CONFDIR= ${KRONOLITHDIR}/config
|
||||||
VAR_CAL= /var/calendar
|
VAR_CAL= /var/calendar
|
||||||
|
|
||||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||||
|
|
||||||
post-patch:
|
.include <bsd.port.pre.mk>
|
||||||
@${RM} ${WRKSRC}/config/conf.php.dist.orig
|
|
||||||
|
.if exists(${LOCALBASE}/sbin/htpasswd)
|
||||||
|
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
||||||
|
.else
|
||||||
|
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
||||||
|
.endif
|
||||||
|
|
||||||
|
pre-configure:
|
||||||
|
@${RM} ${WRKSRC}/config/conf.xml.orig
|
||||||
|
@${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \
|
||||||
|
${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
@${MKDIR} ${KRONOLITHDIR}
|
@${MKDIR} ${KRONOLITHDIR}
|
||||||
|
@ -62,22 +73,14 @@ do-install:
|
||||||
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
||||||
.endfor
|
.endfor
|
||||||
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
||||||
@${MKDIR} ${KRONOLITHDIR}/scripts
|
|
||||||
.for FILE in ${CONFFILE}
|
.for FILE in ${CONFFILE}
|
||||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||||
fi
|
fi
|
||||||
.endfor
|
.endfor
|
||||||
@${CHOWN} -R www:www ${KRONOLITHDIR}
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}
|
||||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||||
@${CP} -p ${FILESDIR}/httpd.conf.kronolith ${HORDE_INC}
|
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC}
|
||||||
@${REINPLACE_CMD} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:g" \
|
|
||||||
${HORDE_INC}/httpd.conf.kronolith
|
|
||||||
@${RM} ${HORDE_INC}/httpd.conf.kronolith.beforeKronolith
|
|
||||||
@${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTKRONOLITH::" \
|
|
||||||
${HORDEDIR}/config/registry.php
|
|
||||||
@${CP} -p ${HORDEDIR}/config/registry.php \
|
|
||||||
${HORDEDIR}/config/registry.php.afterKronolith
|
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
@${MKDIR} ${DOCSDIR}
|
@${MKDIR} ${DOCSDIR}
|
||||||
.for FILE in ${DOCS}
|
.for FILE in ${DOCS}
|
||||||
|
@ -87,6 +90,7 @@ do-install:
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
|
.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4)
|
||||||
@if [ ! -d ${VAR_CAL} ]; then \
|
@if [ ! -d ${VAR_CAL} ]; then \
|
||||||
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
||||||
${MKDIR} ${VAR_CAL} ; \
|
${MKDIR} ${VAR_CAL} ; \
|
||||||
|
@ -98,21 +102,23 @@ post-install:
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
||||||
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
else \
|
else \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \
|
||||||
fi
|
fi
|
||||||
@${RM} ${CONFDIR}/conf.php.beforeKronolith
|
. endif
|
||||||
.endif
|
.endif
|
||||||
|
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||||
|
-e "s:%%LOCALBASE%%:${LOCALBASE}:" < ${FILESDIR}/pkg-message.in \
|
||||||
|
> ${PKGMESSAGE}
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g" \
|
@${CAT} ${PKGMESSAGE}
|
||||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%LOCALBASE%%:${LOCALBASE}:" ${PKGMESSAGE}
|
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.post.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (kronolith-1.1.2.tar.gz) = bb81207fe39000ab9030b3e283216dfc
|
MD5 (kronolith-h3-2.0.tar.gz) = 7ee17a4a4ed1882381c9ae093685621c
|
||||||
SIZE (kronolith-1.1.2.tar.gz) = 505727
|
SIZE (kronolith-h3-2.0.tar.gz) = 1175123
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
--- config/conf.php.dist.orig Fri Apr 4 21:23:54 2003
|
|
||||||
+++ config/conf.php.dist Sat Apr 5 17:57:35 2003
|
|
||||||
@@ -28,9 +28,9 @@
|
|
||||||
$conf['calendar']['params']['driver'] = 'mstore';
|
|
||||||
|
|
||||||
// The mstore driver requires a username and a password that is in
|
|
||||||
-// /etc/mpasswd in order to access local calendars.
|
|
||||||
-$conf['calendar']['params']['username'] = '';
|
|
||||||
-$conf['calendar']['params']['password'] = '';
|
|
||||||
+// /usr/local/etc/mpasswd in order to access local calendars.
|
|
||||||
+$conf['calendar']['params']['username'] = 'www';
|
|
||||||
+$conf['calendar']['params']['password'] = '%%PASSCAL%%';
|
|
||||||
|
|
||||||
// This is an example configuration for an sql driver, in this case MySQL.
|
|
||||||
// $conf['calendar']['params']['phptype'] = 'mysql';
|
|
||||||
@@ -48,7 +48,7 @@
|
|
||||||
// If this is true, then an array of keywords will be read from
|
|
||||||
// config/keywords.php and you will be able to assign any or all of
|
|
||||||
// them to events.
|
|
||||||
-$conf['metadata']['keywords'] = false;
|
|
||||||
+$conf['metadata']['keywords'] = true;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
14
deskutils/horde4-kronolith/files/patch-config::conf.xml
Normal file
14
deskutils/horde4-kronolith/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- config/conf.xml.orig Sun Oct 3 15:24:09 2004
|
||||||
|
+++ config/conf.xml Mon Nov 29 21:48:21 2004
|
||||||
|
@@ -13,9 +13,9 @@
|
||||||
|
<configstring name="driver" desc="What MCAL driver is being
|
||||||
|
used?">mstore</configstring>
|
||||||
|
<configstring name="username" desc="Connect to MCAL
|
||||||
|
- as">horde</configstring>
|
||||||
|
+ as">www</configstring>
|
||||||
|
<configstring name="password" required="false" desc="Password to connect
|
||||||
|
- with">****</configstring>
|
||||||
|
+ with">%%PASSCAL%%</configstring>
|
||||||
|
</configsection>
|
||||||
|
</case>
|
||||||
|
|
29
deskutils/horde4-kronolith/files/pkg-message.in
Normal file
29
deskutils/horde4-kronolith/files/pkg-message.in
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
**************************************************************************
|
||||||
|
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
||||||
|
blank configuration files.
|
||||||
|
|
||||||
|
Horde must be configured; if not, see `pkg_info -D -x horde'.
|
||||||
|
|
||||||
|
With PHP4:
|
||||||
|
If you choose the mcal backend, libmcal must be configured with the driver
|
||||||
|
mstore for the user www:
|
||||||
|
|
||||||
|
- mkdir /var/calendar
|
||||||
|
- chmod 1777 /var/calendar
|
||||||
|
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
||||||
|
|
||||||
|
(this port has tried to make it for you, perhaps you'll just have to
|
||||||
|
check - see `pkg_info -D -x libmcal')
|
||||||
|
|
||||||
|
If you choose a database backend, you have to create some tables from the
|
||||||
|
SQL scripts in %%KRONOLITHDIR%%/scripts/sql.
|
||||||
|
|
||||||
|
WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter
|
||||||
|
******** your schemas.
|
||||||
|
Please read the doc %%DOCSDIR%%/UPGRADING.
|
||||||
|
|
||||||
|
Finally, you must login to Horde as a Horde Administrator to finish the
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
To protect your configuration files, you have to restart Apache.
|
||||||
|
**************************************************************************
|
|
@ -1,11 +1,7 @@
|
||||||
Kronolith is the Horde calendar application. It is currently in the
|
Kronolith is the Horde calendar application.
|
||||||
development stages, and makes heavy use of the Horde framework to
|
|
||||||
provide integration with other applications.
|
|
||||||
|
|
||||||
Right now, Kronolith implements a solid, stand-alone calendar system,
|
Right now, Kronolith implements a solid, stand-alone calendar system,
|
||||||
allowing repeating events, all-day events, custom fields, keywords,
|
allowing repeating events, all-day events, custom fields, keywords,
|
||||||
and managing multiple users through Horde Authentication. The calendar
|
and managing multiple users through Horde Authentication.
|
||||||
API that Kronolith uses is abstracted such that it could work with any
|
|
||||||
backend, but right now it uses the MCAL calendar library for a backend.
|
|
||||||
|
|
||||||
WWW: http://horde.org/kronolith/
|
WWW: http://horde.org/kronolith/
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
************************************************************************
|
|
||||||
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
|
||||||
blank configuration files.
|
|
||||||
|
|
||||||
Horde and IMP must be configured; if not, see:
|
|
||||||
- %%PORTSDIR%%/www/horde2/pkg-message
|
|
||||||
- %%PORTSDIR%%/mail/imp3/pkg-message
|
|
||||||
|
|
||||||
libmcal must be configured with the driver mstore for the user www:
|
|
||||||
|
|
||||||
- mkdir /var/calendar
|
|
||||||
- chmod 1777 /var/calendar
|
|
||||||
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
|
||||||
|
|
||||||
(this port has tried to make it for you, perhaps you'll just have to
|
|
||||||
check - see %%PORTSDIR%%/misc/libmcal/pkg-message)
|
|
||||||
|
|
||||||
Then, you may have to tune the configuration files located in
|
|
||||||
%%CONFDIR%%/, specially the files conf.php.
|
|
||||||
|
|
||||||
To protect your configuration files, you have to restart Apache.
|
|
||||||
************************************************************************
|
|
|
@ -4,66 +4,65 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||||
%%KRONOLITHDIR%%/addevent.php
|
%%KRONOLITHDIR%%/addevent.php
|
||||||
%%KRONOLITHDIR%%/addeventaction.php
|
%%KRONOLITHDIR%%/addeventaction.php
|
||||||
|
%%KRONOLITHDIR%%/attendees.php
|
||||||
|
%%KRONOLITHDIR%%/calendars.php
|
||||||
%%KRONOLITHDIR%%/config/.htaccess
|
%%KRONOLITHDIR%%/config/.htaccess
|
||||||
%%KRONOLITHDIR%%/config/conf.php
|
%%KRONOLITHDIR%%/config/conf.xml
|
||||||
%%KRONOLITHDIR%%/config/conf.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/html.php
|
|
||||||
%%KRONOLITHDIR%%/config/html.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/keywords.php
|
%%KRONOLITHDIR%%/config/keywords.php
|
||||||
%%KRONOLITHDIR%%/config/keywords.php.dist
|
%%KRONOLITHDIR%%/config/keywords.php.dist
|
||||||
%%KRONOLITHDIR%%/config/menu.php
|
%%KRONOLITHDIR%%/config/menu.php
|
||||||
%%KRONOLITHDIR%%/config/menu.php.dist
|
%%KRONOLITHDIR%%/config/menu.php.dist
|
||||||
%%KRONOLITHDIR%%/config/prefs.php
|
%%KRONOLITHDIR%%/config/prefs.php
|
||||||
%%KRONOLITHDIR%%/config/prefs.php.dist
|
%%KRONOLITHDIR%%/config/prefs.php.dist
|
||||||
|
%%KRONOLITHDIR%%/contacts.php
|
||||||
%%KRONOLITHDIR%%/data.php
|
%%KRONOLITHDIR%%/data.php
|
||||||
%%KRONOLITHDIR%%/day.php
|
%%KRONOLITHDIR%%/day.php
|
||||||
%%KRONOLITHDIR%%/delevent.php
|
%%KRONOLITHDIR%%/delevent.php
|
||||||
%%KRONOLITHDIR%%/deleventaction.php
|
%%KRONOLITHDIR%%/deleventaction.php
|
||||||
%%KRONOLITHDIR%%/editevent.php
|
%%KRONOLITHDIR%%/editevent.php
|
||||||
%%KRONOLITHDIR%%/editeventaction.php
|
%%KRONOLITHDIR%%/editeventaction.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm.gif
|
%%KRONOLITHDIR%%/fb.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm_small.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/bullet.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/clear.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.png
|
|
||||||
%%KRONOLITHDIR%%/graphics/dayview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/delete.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/event.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/goto.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/kronolith.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/monthview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/new.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/next.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/prev.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/print.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/recur.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/today.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/weekview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/workweekview.gif
|
|
||||||
%%KRONOLITHDIR%%/index.php
|
%%KRONOLITHDIR%%/index.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/month.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/monthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/summary.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/tree_menu.php
|
||||||
%%KRONOLITHDIR%%/lib/Day.php
|
%%KRONOLITHDIR%%/lib/Day.php
|
||||||
%%KRONOLITHDIR%%/lib/DayView.php
|
%%KRONOLITHDIR%%/lib/DayView.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver.php
|
%%KRONOLITHDIR%%/lib/Driver.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/ical.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/kolab.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/Event.php
|
%%KRONOLITHDIR%%/lib/FBView.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/day.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/week.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/workweek.php
|
||||||
%%KRONOLITHDIR%%/lib/Kronolith.php
|
%%KRONOLITHDIR%%/lib/Kronolith.php
|
||||||
%%KRONOLITHDIR%%/lib/Notification/kronolith.php
|
%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/kolab.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/WeekView.php
|
%%KRONOLITHDIR%%/lib/WeekView.php
|
||||||
%%KRONOLITHDIR%%/lib/api.php
|
%%KRONOLITHDIR%%/lib/api.php
|
||||||
%%KRONOLITHDIR%%/lib/base.php
|
%%KRONOLITHDIR%%/lib/base.php
|
||||||
|
%%KRONOLITHDIR%%/lib/prefs.php
|
||||||
%%KRONOLITHDIR%%/lib/version.php
|
%%KRONOLITHDIR%%/lib/version.php
|
||||||
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/de_DE/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/es_ES/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
||||||
|
@ -72,21 +71,20 @@
|
||||||
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/pt_BR/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES/kronolith.mo
|
|
||||||
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/menu.php
|
|
||||||
%%KRONOLITHDIR%%/month.php
|
%%KRONOLITHDIR%%/month.php
|
||||||
%%KRONOLITHDIR%%/po/Makefile
|
|
||||||
%%KRONOLITHDIR%%/po/README
|
%%KRONOLITHDIR%%/po/README
|
||||||
%%KRONOLITHDIR%%/po/ar_SY.po
|
%%KRONOLITHDIR%%/po/ar_SY.po
|
||||||
%%KRONOLITHDIR%%/po/bg_BG.po
|
%%KRONOLITHDIR%%/po/bg_BG.po
|
||||||
|
@ -95,7 +93,6 @@
|
||||||
%%KRONOLITHDIR%%/po/de_DE.po
|
%%KRONOLITHDIR%%/po/de_DE.po
|
||||||
%%KRONOLITHDIR%%/po/el_GR.po
|
%%KRONOLITHDIR%%/po/el_GR.po
|
||||||
%%KRONOLITHDIR%%/po/es_ES.po
|
%%KRONOLITHDIR%%/po/es_ES.po
|
||||||
%%KRONOLITHDIR%%/po/extract.pl
|
|
||||||
%%KRONOLITHDIR%%/po/fi_FI.po
|
%%KRONOLITHDIR%%/po/fi_FI.po
|
||||||
%%KRONOLITHDIR%%/po/fr_FR.po
|
%%KRONOLITHDIR%%/po/fr_FR.po
|
||||||
%%KRONOLITHDIR%%/po/hu_HU.po
|
%%KRONOLITHDIR%%/po/hu_HU.po
|
||||||
|
@ -103,6 +100,7 @@
|
||||||
%%KRONOLITHDIR%%/po/ko_KR.po
|
%%KRONOLITHDIR%%/po/ko_KR.po
|
||||||
%%KRONOLITHDIR%%/po/kronolith.pot
|
%%KRONOLITHDIR%%/po/kronolith.pot
|
||||||
%%KRONOLITHDIR%%/po/lt_LT.po
|
%%KRONOLITHDIR%%/po/lt_LT.po
|
||||||
|
%%KRONOLITHDIR%%/po/lv_LV.po
|
||||||
%%KRONOLITHDIR%%/po/nb_NO.po
|
%%KRONOLITHDIR%%/po/nb_NO.po
|
||||||
%%KRONOLITHDIR%%/po/nl_NL.po
|
%%KRONOLITHDIR%%/po/nl_NL.po
|
||||||
%%KRONOLITHDIR%%/po/nn_NO.po
|
%%KRONOLITHDIR%%/po/nn_NO.po
|
||||||
|
@ -110,118 +108,171 @@
|
||||||
%%KRONOLITHDIR%%/po/pt_BR.po
|
%%KRONOLITHDIR%%/po/pt_BR.po
|
||||||
%%KRONOLITHDIR%%/po/ro_RO.po
|
%%KRONOLITHDIR%%/po/ro_RO.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.po
|
%%KRONOLITHDIR%%/po/ru_RU.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.KOI8-R.po
|
|
||||||
%%KRONOLITHDIR%%/po/shtool
|
|
||||||
%%KRONOLITHDIR%%/po/sk_SK.po
|
%%KRONOLITHDIR%%/po/sk_SK.po
|
||||||
%%KRONOLITHDIR%%/po/sv_SE.po
|
%%KRONOLITHDIR%%/po/sv_SE.po
|
||||||
%%KRONOLITHDIR%%/po/xgettext.sh
|
|
||||||
%%KRONOLITHDIR%%/po/zh_CN.po
|
%%KRONOLITHDIR%%/po/zh_CN.po
|
||||||
%%KRONOLITHDIR%%/po/zh_TW.po
|
%%KRONOLITHDIR%%/po/zh_TW.po
|
||||||
%%KRONOLITHDIR%%/prefs.php
|
%%KRONOLITHDIR%%/scripts/.htaccess
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.oracle.sql
|
%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.sql
|
%%KRONOLITHDIR%%/scripts/reminders.php
|
||||||
%%KRONOLITHDIR%%/status.php
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql
|
||||||
%%KRONOLITHDIR%%/templates/common-footer.inc
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql
|
||||||
|
%%KRONOLITHDIR%%/search.php
|
||||||
|
%%KRONOLITHDIR%%/templates/attendees/attendees.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/calendars/calendars.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/category_legend.inc
|
||||||
%%KRONOLITHDIR%%/templates/common-header.inc
|
%%KRONOLITHDIR%%/templates/common-header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/contacts/contacts.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/export.inc
|
%%KRONOLITHDIR%%/templates/data/export.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/import.inc
|
%%KRONOLITHDIR%%/templates/data/import.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/foot.inc
|
%%KRONOLITHDIR%%/templates/day/foot.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/head.inc
|
%%KRONOLITHDIR%%/templates/day/head.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row.inc
|
%%KRONOLITHDIR%%/templates/day/row.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/one.inc
|
%%KRONOLITHDIR%%/templates/delete/one.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
||||||
%%KRONOLITHDIR%%/templates/index/css.inc
|
%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/index/notconfigured.inc
|
%%KRONOLITHDIR%%/templates/fbview/header.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/legend.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/linesblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/row.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/section.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
||||||
%%KRONOLITHDIR%%/templates/javascript/open_print_win.js
|
%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js
|
||||||
%%KRONOLITHDIR%%/templates/javascript/print.inc
|
%%KRONOLITHDIR%%/templates/menu.inc
|
||||||
%%KRONOLITHDIR%%/templates/menu/menu.inc
|
|
||||||
%%KRONOLITHDIR%%/templates/month/head.inc
|
%%KRONOLITHDIR%%/templates/month/head.inc
|
||||||
%%KRONOLITHDIR%%/templates/prefs/category_management.inc
|
%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/shareselect.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/empty.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_footers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_headers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_summaries.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search_advanced.inc
|
||||||
%%KRONOLITHDIR%%/templates/view/view.inc
|
%%KRONOLITHDIR%%/templates/view/view.inc
|
||||||
%%KRONOLITHDIR%%/templates/week/head.inc
|
%%KRONOLITHDIR%%/templates/week/head.inc
|
||||||
%%KRONOLITHDIR%%/util/colorpicker.php
|
%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/themes/bluewhite/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/alarm_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/attendees.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/calendars.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/dayview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/goto.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/kronolith.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/monthview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/recur.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/today.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/unknown-background.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/weekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/workweekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/mozilla/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/print/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/simplex/screen.css
|
||||||
%%KRONOLITHDIR%%/viewevent.php
|
%%KRONOLITHDIR%%/viewevent.php
|
||||||
%%KRONOLITHDIR%%/week.php
|
%%KRONOLITHDIR%%/week.php
|
||||||
%%KRONOLITHDIR%%/workweek.php
|
%%KRONOLITHDIR%%/workweek.php
|
||||||
@dirrm %%KRONOLITHDIR%%/config
|
|
||||||
@dirrm %%KRONOLITHDIR%%/graphics
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Notification
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale
|
|
||||||
@dirrm %%KRONOLITHDIR%%/po
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts/drivers
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/data
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/day
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/delete
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/edit
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/index
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/menu
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/month
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/view
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/week
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates
|
|
||||||
@dirrm %%KRONOLITHDIR%%/util
|
|
||||||
@dirrm %%KRONOLITHDIR%%
|
|
||||||
etc/horde/httpd.conf.kronolith
|
etc/horde/httpd.conf.kronolith
|
||||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||||
@unexec if cmp -s %D/www/horde/config/registry.php %D/www/horde/config/registry.php.afterKronolith; then rm -f %D/www/horde/config/registry.php.afterKronolith; mv %D/www/horde/config/registry.php.beforeKronolith %D/www/horde/config/registry.php; fi
|
@dirrm %%KRONOLITHDIR%%/themes/simplex
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/print
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/mozilla
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/graphics
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/bluewhite
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/week
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/view
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/search
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/month
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/fbview
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/edit
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/delete
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/day
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/data
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/contacts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/calendars
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/attendees
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/upgrades
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/sql
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/po
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Storage
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Scheduler
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/FBView
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Block
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= kronolith
|
PORTNAME= kronolith
|
||||||
PORTVERSION= 1.1.2
|
PORTVERSION= 2.0
|
||||||
CATEGORIES= deskutils www
|
CATEGORIES= deskutils www
|
||||||
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
ftp://ftp.planetmirror.com/pub/horde/kronolith/ \
|
||||||
|
@ -17,44 +17,55 @@ MASTER_SITES= ftp://ftp.horde.org/pub/kronolith/ \
|
||||||
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
ftp://ftp.nl.horde.org/mirror/horde-ftp/pub/kronolith/ \
|
||||||
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
ftp://ftp.uk.horde.org/mirrors/ftp.horde.org/pub/kronolith/ \
|
||||||
http://ftp.horde.org/pub/kronolith/
|
http://ftp.horde.org/pub/kronolith/
|
||||||
|
DISTNAME= ${PORTNAME}-h3-${PORTVERSION}
|
||||||
|
|
||||||
MAINTAINER= thierry@FreeBSD.org
|
MAINTAINER= thierry@FreeBSD.org
|
||||||
COMMENT= Kronolith is the Horde calendar application
|
COMMENT= Kronolith is the Horde calendar application
|
||||||
|
|
||||||
RUN_DEPENDS= ${LOCALBASE}/www/horde/imp/index.php:${PORTSDIR}/mail/imp3
|
#----------------------------------------------------------------------------
|
||||||
|
# You may define this option:
|
||||||
|
#
|
||||||
|
# - WITHOUT_MCAL: you won't use the MCAL driver but a database backend
|
||||||
|
# (only for PHP4).
|
||||||
|
#
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
|
||||||
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
RUN_DEPENDS+= ${LOCALBASE}/www/horde/rpc.php:${PORTSDIR}/www/horde
|
||||||
|
|
||||||
NO_BUILD= yes
|
NO_BUILD= yes
|
||||||
USE_PHP= mcal
|
USE_PHP= yes # modules set by Horde, but needed to get PHP_VER
|
||||||
USE_REINPLACE= yes
|
USE_REINPLACE= yes
|
||||||
|
|
||||||
.if defined(WITH_APACHE2)
|
REINPLACE_ARGS= -i ""
|
||||||
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
|
||||||
.else
|
|
||||||
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
|
||||||
.endif
|
|
||||||
|
|
||||||
REINPLACE_ARGS= -i.beforeKronolith
|
|
||||||
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
DOCS= COPYING README docs/CHANGES docs/CREDITS docs/INSTALL \
|
||||||
docs/RELEASE_NOTES
|
docs/RELEASE_NOTES docs/TODO docs/UPGRADING
|
||||||
CONFFILE= conf.php html.php keywords.php menu.php prefs.php
|
CONFFILE= keywords.php menu.php prefs.php
|
||||||
SUB_DIRS= config graphics lib locale po scripts templates util
|
SUB_DIRS= config lib locale po scripts templates themes
|
||||||
|
|
||||||
LHORDEDIR?= www/horde
|
LHORDEDIR?= www/horde
|
||||||
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
LKRONOLITHDIR?= ${LHORDEDIR}/kronolith
|
||||||
|
|
||||||
PLIST_SUB= HORDEDIR=${LHORDEDIR} KRONOLITHDIR=${LKRONOLITHDIR}
|
PLIST_SUB= KRONOLITHDIR=${LKRONOLITHDIR}
|
||||||
|
PKGMESSAGE= ${WRKDIR}/pkg-message
|
||||||
|
|
||||||
HORDEDIR= ${PREFIX}/${LHORDEDIR}
|
|
||||||
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
KRONOLITHDIR= ${PREFIX}/${LKRONOLITHDIR}
|
||||||
CONFDIR= ${KRONOLITHDIR}/config
|
CONFDIR= ${KRONOLITHDIR}/config
|
||||||
VAR_CAL= /var/calendar
|
VAR_CAL= /var/calendar
|
||||||
|
|
||||||
HORDE_INC= ${LOCALBASE}/etc/horde
|
HORDE_INC= ${LOCALBASE}/etc/horde
|
||||||
|
|
||||||
post-patch:
|
.include <bsd.port.pre.mk>
|
||||||
@${RM} ${WRKSRC}/config/conf.php.dist.orig
|
|
||||||
|
.if exists(${LOCALBASE}/sbin/htpasswd)
|
||||||
|
HTPASSWD= ${LOCALBASE}/sbin/htpasswd
|
||||||
|
.else
|
||||||
|
HTPASSWD= ${LOCALBASE}/bin/htpasswd
|
||||||
|
.endif
|
||||||
|
|
||||||
|
pre-configure:
|
||||||
|
@${RM} ${WRKSRC}/config/conf.xml.orig
|
||||||
|
@${SED} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:" \
|
||||||
|
${FILESDIR}/httpd.conf.kronolith > ${WRKDIR}/httpd.conf.kronolith
|
||||||
|
|
||||||
do-install:
|
do-install:
|
||||||
@${MKDIR} ${KRONOLITHDIR}
|
@${MKDIR} ${KRONOLITHDIR}
|
||||||
|
@ -62,22 +73,14 @@ do-install:
|
||||||
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
@${CP} -Rp ${WRKSRC}/${REP} ${KRONOLITHDIR}
|
||||||
.endfor
|
.endfor
|
||||||
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
@${CP} -p ${WRKSRC}/*.php ${KRONOLITHDIR}
|
||||||
@${MKDIR} ${KRONOLITHDIR}/scripts
|
|
||||||
.for FILE in ${CONFFILE}
|
.for FILE in ${CONFFILE}
|
||||||
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
@if [ ! -f ${CONFDIR}/${FILE} ]; then \
|
||||||
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
${CP} ${CONFDIR}/${FILE}.dist ${CONFDIR}/${FILE} ; \
|
||||||
fi
|
fi
|
||||||
.endfor
|
.endfor
|
||||||
@${CHOWN} -R www:www ${KRONOLITHDIR}
|
@${CHOWN} -R ${WWWOWN}:${WWWGRP} ${KRONOLITHDIR}
|
||||||
@${CHMOD} -R o-rwx ${CONFDIR}
|
@${CHMOD} -R o-rwx ${CONFDIR}
|
||||||
@${CP} -p ${FILESDIR}/httpd.conf.kronolith ${HORDE_INC}
|
@${INSTALL_DATA} ${WRKDIR}/httpd.conf.kronolith ${HORDE_INC}
|
||||||
@${REINPLACE_CMD} -e "s:/home/httpd/html/horde/kronolith:${KRONOLITHDIR}:g" \
|
|
||||||
${HORDE_INC}/httpd.conf.kronolith
|
|
||||||
@${RM} ${HORDE_INC}/httpd.conf.kronolith.beforeKronolith
|
|
||||||
@${REINPLACE_CMD} -e "s://UNCOMMENTWHENINSTKRONOLITH::" \
|
|
||||||
${HORDEDIR}/config/registry.php
|
|
||||||
@${CP} -p ${HORDEDIR}/config/registry.php \
|
|
||||||
${HORDEDIR}/config/registry.php.afterKronolith
|
|
||||||
.if !defined(NOPORTDOCS)
|
.if !defined(NOPORTDOCS)
|
||||||
@${MKDIR} ${DOCSDIR}
|
@${MKDIR} ${DOCSDIR}
|
||||||
.for FILE in ${DOCS}
|
.for FILE in ${DOCS}
|
||||||
|
@ -87,6 +90,7 @@ do-install:
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
|
.if !defined(WITHOUT_MCAL) && (${PHP_VER} == 4)
|
||||||
@if [ ! -d ${VAR_CAL} ]; then \
|
@if [ ! -d ${VAR_CAL} ]; then \
|
||||||
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
${ECHO_MSG} "===> Creating ${VAR_CAL}" ; \
|
||||||
${MKDIR} ${VAR_CAL} ; \
|
${MKDIR} ${VAR_CAL} ; \
|
||||||
|
@ -98,21 +102,23 @@ post-install:
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
${HTPASSWD} -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \
|
||||||
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \
|
||||||
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
${ECHO} -n "Please enter a password for www's calendar: " ; \
|
||||||
(read PASSCAL; \
|
(read PASSCAL; \
|
||||||
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
${HTPASSWD} -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.xml) \
|
||||||
else \
|
else \
|
||||||
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \
|
${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.xml ; \
|
||||||
fi
|
fi
|
||||||
@${RM} ${CONFDIR}/conf.php.beforeKronolith
|
. endif
|
||||||
.endif
|
.endif
|
||||||
|
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%DOCSDIR%%:${DOCSDIR}:g" \
|
||||||
|
-e "s:%%LOCALBASE%%:${LOCALBASE}:" < ${FILESDIR}/pkg-message.in \
|
||||||
|
> ${PKGMESSAGE}
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
@${SED} -e "s:%%KRONOLITHDIR%%:${KRONOLITHDIR}:g;s:%%PORTSDIR%%:${PORTSDIR}:g" \
|
@${CAT} ${PKGMESSAGE}
|
||||||
-e "s:%%CONFDIR%%:${CONFDIR}:g;s:%%LOCALBASE%%:${LOCALBASE}:" ${PKGMESSAGE}
|
|
||||||
@${ECHO_MSG}
|
@${ECHO_MSG}
|
||||||
|
|
||||||
.include <bsd.port.mk>
|
.include <bsd.port.post.mk>
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
MD5 (kronolith-1.1.2.tar.gz) = bb81207fe39000ab9030b3e283216dfc
|
MD5 (kronolith-h3-2.0.tar.gz) = 7ee17a4a4ed1882381c9ae093685621c
|
||||||
SIZE (kronolith-1.1.2.tar.gz) = 505727
|
SIZE (kronolith-h3-2.0.tar.gz) = 1175123
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
--- config/conf.php.dist.orig Fri Apr 4 21:23:54 2003
|
|
||||||
+++ config/conf.php.dist Sat Apr 5 17:57:35 2003
|
|
||||||
@@ -28,9 +28,9 @@
|
|
||||||
$conf['calendar']['params']['driver'] = 'mstore';
|
|
||||||
|
|
||||||
// The mstore driver requires a username and a password that is in
|
|
||||||
-// /etc/mpasswd in order to access local calendars.
|
|
||||||
-$conf['calendar']['params']['username'] = '';
|
|
||||||
-$conf['calendar']['params']['password'] = '';
|
|
||||||
+// /usr/local/etc/mpasswd in order to access local calendars.
|
|
||||||
+$conf['calendar']['params']['username'] = 'www';
|
|
||||||
+$conf['calendar']['params']['password'] = '%%PASSCAL%%';
|
|
||||||
|
|
||||||
// This is an example configuration for an sql driver, in this case MySQL.
|
|
||||||
// $conf['calendar']['params']['phptype'] = 'mysql';
|
|
||||||
@@ -48,7 +48,7 @@
|
|
||||||
// If this is true, then an array of keywords will be read from
|
|
||||||
// config/keywords.php and you will be able to assign any or all of
|
|
||||||
// them to events.
|
|
||||||
-$conf['metadata']['keywords'] = false;
|
|
||||||
+$conf['metadata']['keywords'] = true;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
14
deskutils/kronolith/files/patch-config::conf.xml
Normal file
14
deskutils/kronolith/files/patch-config::conf.xml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
--- config/conf.xml.orig Sun Oct 3 15:24:09 2004
|
||||||
|
+++ config/conf.xml Mon Nov 29 21:48:21 2004
|
||||||
|
@@ -13,9 +13,9 @@
|
||||||
|
<configstring name="driver" desc="What MCAL driver is being
|
||||||
|
used?">mstore</configstring>
|
||||||
|
<configstring name="username" desc="Connect to MCAL
|
||||||
|
- as">horde</configstring>
|
||||||
|
+ as">www</configstring>
|
||||||
|
<configstring name="password" required="false" desc="Password to connect
|
||||||
|
- with">****</configstring>
|
||||||
|
+ with">%%PASSCAL%%</configstring>
|
||||||
|
</configsection>
|
||||||
|
</case>
|
||||||
|
|
29
deskutils/kronolith/files/pkg-message.in
Normal file
29
deskutils/kronolith/files/pkg-message.in
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
**************************************************************************
|
||||||
|
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
||||||
|
blank configuration files.
|
||||||
|
|
||||||
|
Horde must be configured; if not, see `pkg_info -D -x horde'.
|
||||||
|
|
||||||
|
With PHP4:
|
||||||
|
If you choose the mcal backend, libmcal must be configured with the driver
|
||||||
|
mstore for the user www:
|
||||||
|
|
||||||
|
- mkdir /var/calendar
|
||||||
|
- chmod 1777 /var/calendar
|
||||||
|
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
||||||
|
|
||||||
|
(this port has tried to make it for you, perhaps you'll just have to
|
||||||
|
check - see `pkg_info -D -x libmcal')
|
||||||
|
|
||||||
|
If you choose a database backend, you have to create some tables from the
|
||||||
|
SQL scripts in %%KRONOLITHDIR%%/scripts/sql.
|
||||||
|
|
||||||
|
WARNING! if you are upgrading from Kronolith v. 1.1.x, you have to alter
|
||||||
|
******** your schemas.
|
||||||
|
Please read the doc %%DOCSDIR%%/UPGRADING.
|
||||||
|
|
||||||
|
Finally, you must login to Horde as a Horde Administrator to finish the
|
||||||
|
configuration.
|
||||||
|
|
||||||
|
To protect your configuration files, you have to restart Apache.
|
||||||
|
**************************************************************************
|
|
@ -1,11 +1,7 @@
|
||||||
Kronolith is the Horde calendar application. It is currently in the
|
Kronolith is the Horde calendar application.
|
||||||
development stages, and makes heavy use of the Horde framework to
|
|
||||||
provide integration with other applications.
|
|
||||||
|
|
||||||
Right now, Kronolith implements a solid, stand-alone calendar system,
|
Right now, Kronolith implements a solid, stand-alone calendar system,
|
||||||
allowing repeating events, all-day events, custom fields, keywords,
|
allowing repeating events, all-day events, custom fields, keywords,
|
||||||
and managing multiple users through Horde Authentication. The calendar
|
and managing multiple users through Horde Authentication.
|
||||||
API that Kronolith uses is abstracted such that it could work with any
|
|
||||||
backend, but right now it uses the MCAL calendar library for a backend.
|
|
||||||
|
|
||||||
WWW: http://horde.org/kronolith/
|
WWW: http://horde.org/kronolith/
|
||||||
|
|
|
@ -1,22 +0,0 @@
|
||||||
************************************************************************
|
|
||||||
Kronolith has been installed in %%KRONOLITHDIR%% with your
|
|
||||||
blank configuration files.
|
|
||||||
|
|
||||||
Horde and IMP must be configured; if not, see:
|
|
||||||
- %%PORTSDIR%%/www/horde2/pkg-message
|
|
||||||
- %%PORTSDIR%%/mail/imp3/pkg-message
|
|
||||||
|
|
||||||
libmcal must be configured with the driver mstore for the user www:
|
|
||||||
|
|
||||||
- mkdir /var/calendar
|
|
||||||
- chmod 1777 /var/calendar
|
|
||||||
- htpasswd -c %%LOCALBASE%%/etc/mpasswd www
|
|
||||||
|
|
||||||
(this port has tried to make it for you, perhaps you'll just have to
|
|
||||||
check - see %%PORTSDIR%%/misc/libmcal/pkg-message)
|
|
||||||
|
|
||||||
Then, you may have to tune the configuration files located in
|
|
||||||
%%CONFDIR%%/, specially the files conf.php.
|
|
||||||
|
|
||||||
To protect your configuration files, you have to restart Apache.
|
|
||||||
************************************************************************
|
|
|
@ -4,66 +4,65 @@
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
%%PORTDOCS%%%%DOCSDIR%%/INSTALL
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||||
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
%%PORTDOCS%%%%DOCSDIR%%/RELEASE_NOTES
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/TODO
|
||||||
|
%%PORTDOCS%%%%DOCSDIR%%/UPGRADING
|
||||||
%%KRONOLITHDIR%%/addevent.php
|
%%KRONOLITHDIR%%/addevent.php
|
||||||
%%KRONOLITHDIR%%/addeventaction.php
|
%%KRONOLITHDIR%%/addeventaction.php
|
||||||
|
%%KRONOLITHDIR%%/attendees.php
|
||||||
|
%%KRONOLITHDIR%%/calendars.php
|
||||||
%%KRONOLITHDIR%%/config/.htaccess
|
%%KRONOLITHDIR%%/config/.htaccess
|
||||||
%%KRONOLITHDIR%%/config/conf.php
|
%%KRONOLITHDIR%%/config/conf.xml
|
||||||
%%KRONOLITHDIR%%/config/conf.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/html.php
|
|
||||||
%%KRONOLITHDIR%%/config/html.php.dist
|
|
||||||
%%KRONOLITHDIR%%/config/keywords.php
|
%%KRONOLITHDIR%%/config/keywords.php
|
||||||
%%KRONOLITHDIR%%/config/keywords.php.dist
|
%%KRONOLITHDIR%%/config/keywords.php.dist
|
||||||
%%KRONOLITHDIR%%/config/menu.php
|
%%KRONOLITHDIR%%/config/menu.php
|
||||||
%%KRONOLITHDIR%%/config/menu.php.dist
|
%%KRONOLITHDIR%%/config/menu.php.dist
|
||||||
%%KRONOLITHDIR%%/config/prefs.php
|
%%KRONOLITHDIR%%/config/prefs.php
|
||||||
%%KRONOLITHDIR%%/config/prefs.php.dist
|
%%KRONOLITHDIR%%/config/prefs.php.dist
|
||||||
|
%%KRONOLITHDIR%%/contacts.php
|
||||||
%%KRONOLITHDIR%%/data.php
|
%%KRONOLITHDIR%%/data.php
|
||||||
%%KRONOLITHDIR%%/day.php
|
%%KRONOLITHDIR%%/day.php
|
||||||
%%KRONOLITHDIR%%/delevent.php
|
%%KRONOLITHDIR%%/delevent.php
|
||||||
%%KRONOLITHDIR%%/deleventaction.php
|
%%KRONOLITHDIR%%/deleventaction.php
|
||||||
%%KRONOLITHDIR%%/editevent.php
|
%%KRONOLITHDIR%%/editevent.php
|
||||||
%%KRONOLITHDIR%%/editeventaction.php
|
%%KRONOLITHDIR%%/editeventaction.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm.gif
|
%%KRONOLITHDIR%%/fb.php
|
||||||
%%KRONOLITHDIR%%/graphics/alarm_small.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/bullet.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/clear.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/colorpicker.png
|
|
||||||
%%KRONOLITHDIR%%/graphics/dayview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/delete.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/event.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/goto.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/kronolith.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/monthview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/new.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/next.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/prev.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/print.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/recur.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/today.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/weekview.gif
|
|
||||||
%%KRONOLITHDIR%%/graphics/workweekview.gif
|
|
||||||
%%KRONOLITHDIR%%/index.php
|
%%KRONOLITHDIR%%/index.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/month.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/monthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/prevmonthlist.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/summary.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Block/tree_menu.php
|
||||||
%%KRONOLITHDIR%%/lib/Day.php
|
%%KRONOLITHDIR%%/lib/Day.php
|
||||||
%%KRONOLITHDIR%%/lib/DayView.php
|
%%KRONOLITHDIR%%/lib/DayView.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver.php
|
%%KRONOLITHDIR%%/lib/Driver.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/ical.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Driver/kolab.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
%%KRONOLITHDIR%%/lib/Driver/mcal.php
|
||||||
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
%%KRONOLITHDIR%%/lib/Driver/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/Event.php
|
%%KRONOLITHDIR%%/lib/FBView.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/day.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/week.php
|
||||||
|
%%KRONOLITHDIR%%/lib/FBView/workweek.php
|
||||||
%%KRONOLITHDIR%%/lib/Kronolith.php
|
%%KRONOLITHDIR%%/lib/Kronolith.php
|
||||||
%%KRONOLITHDIR%%/lib/Notification/kronolith.php
|
%%KRONOLITHDIR%%/lib/Scheduler/kronolith.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/kolab.php
|
||||||
|
%%KRONOLITHDIR%%/lib/Storage/sql.php
|
||||||
%%KRONOLITHDIR%%/lib/WeekView.php
|
%%KRONOLITHDIR%%/lib/WeekView.php
|
||||||
%%KRONOLITHDIR%%/lib/api.php
|
%%KRONOLITHDIR%%/lib/api.php
|
||||||
%%KRONOLITHDIR%%/lib/base.php
|
%%KRONOLITHDIR%%/lib/base.php
|
||||||
|
%%KRONOLITHDIR%%/lib/prefs.php
|
||||||
%%KRONOLITHDIR%%/lib/version.php
|
%%KRONOLITHDIR%%/lib/version.php
|
||||||
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/de_DE/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
%%KRONOLITHDIR%%/locale/en_US/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/es_ES/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
%%KRONOLITHDIR%%/locale/fi_FI/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES/kronolith.mo
|
||||||
|
@ -72,21 +71,20 @@
|
||||||
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES/kronolith.mo
|
||||||
|
%%KRONOLITHDIR%%/locale/pt_BR/help.xml
|
||||||
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES/kronolith.mo
|
|
||||||
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
%%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES/kronolith.mo
|
||||||
%%KRONOLITHDIR%%/menu.php
|
|
||||||
%%KRONOLITHDIR%%/month.php
|
%%KRONOLITHDIR%%/month.php
|
||||||
%%KRONOLITHDIR%%/po/Makefile
|
|
||||||
%%KRONOLITHDIR%%/po/README
|
%%KRONOLITHDIR%%/po/README
|
||||||
%%KRONOLITHDIR%%/po/ar_SY.po
|
%%KRONOLITHDIR%%/po/ar_SY.po
|
||||||
%%KRONOLITHDIR%%/po/bg_BG.po
|
%%KRONOLITHDIR%%/po/bg_BG.po
|
||||||
|
@ -95,7 +93,6 @@
|
||||||
%%KRONOLITHDIR%%/po/de_DE.po
|
%%KRONOLITHDIR%%/po/de_DE.po
|
||||||
%%KRONOLITHDIR%%/po/el_GR.po
|
%%KRONOLITHDIR%%/po/el_GR.po
|
||||||
%%KRONOLITHDIR%%/po/es_ES.po
|
%%KRONOLITHDIR%%/po/es_ES.po
|
||||||
%%KRONOLITHDIR%%/po/extract.pl
|
|
||||||
%%KRONOLITHDIR%%/po/fi_FI.po
|
%%KRONOLITHDIR%%/po/fi_FI.po
|
||||||
%%KRONOLITHDIR%%/po/fr_FR.po
|
%%KRONOLITHDIR%%/po/fr_FR.po
|
||||||
%%KRONOLITHDIR%%/po/hu_HU.po
|
%%KRONOLITHDIR%%/po/hu_HU.po
|
||||||
|
@ -103,6 +100,7 @@
|
||||||
%%KRONOLITHDIR%%/po/ko_KR.po
|
%%KRONOLITHDIR%%/po/ko_KR.po
|
||||||
%%KRONOLITHDIR%%/po/kronolith.pot
|
%%KRONOLITHDIR%%/po/kronolith.pot
|
||||||
%%KRONOLITHDIR%%/po/lt_LT.po
|
%%KRONOLITHDIR%%/po/lt_LT.po
|
||||||
|
%%KRONOLITHDIR%%/po/lv_LV.po
|
||||||
%%KRONOLITHDIR%%/po/nb_NO.po
|
%%KRONOLITHDIR%%/po/nb_NO.po
|
||||||
%%KRONOLITHDIR%%/po/nl_NL.po
|
%%KRONOLITHDIR%%/po/nl_NL.po
|
||||||
%%KRONOLITHDIR%%/po/nn_NO.po
|
%%KRONOLITHDIR%%/po/nn_NO.po
|
||||||
|
@ -110,118 +108,171 @@
|
||||||
%%KRONOLITHDIR%%/po/pt_BR.po
|
%%KRONOLITHDIR%%/po/pt_BR.po
|
||||||
%%KRONOLITHDIR%%/po/ro_RO.po
|
%%KRONOLITHDIR%%/po/ro_RO.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.po
|
%%KRONOLITHDIR%%/po/ru_RU.po
|
||||||
%%KRONOLITHDIR%%/po/ru_RU.KOI8-R.po
|
|
||||||
%%KRONOLITHDIR%%/po/shtool
|
|
||||||
%%KRONOLITHDIR%%/po/sk_SK.po
|
%%KRONOLITHDIR%%/po/sk_SK.po
|
||||||
%%KRONOLITHDIR%%/po/sv_SE.po
|
%%KRONOLITHDIR%%/po/sv_SE.po
|
||||||
%%KRONOLITHDIR%%/po/xgettext.sh
|
|
||||||
%%KRONOLITHDIR%%/po/zh_CN.po
|
%%KRONOLITHDIR%%/po/zh_CN.po
|
||||||
%%KRONOLITHDIR%%/po/zh_TW.po
|
%%KRONOLITHDIR%%/po/zh_TW.po
|
||||||
%%KRONOLITHDIR%%/prefs.php
|
%%KRONOLITHDIR%%/scripts/.htaccess
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.oracle.sql
|
%%KRONOLITHDIR%%/scripts/migrate_to_sql_driver.php
|
||||||
%%KRONOLITHDIR%%/scripts/drivers/kronolith.sql
|
%%KRONOLITHDIR%%/scripts/reminders.php
|
||||||
%%KRONOLITHDIR%%/status.php
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.mysql.sql
|
||||||
%%KRONOLITHDIR%%/templates/common-footer.inc
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.oci8.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.pgsql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/sql/kronolith.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/1.1_to_2.0.mysql.sql
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-05-19_convert_categories_to_strings.php
|
||||||
|
%%KRONOLITHDIR%%/scripts/upgrades/2004-12-21_add_event_uid.sql
|
||||||
|
%%KRONOLITHDIR%%/search.php
|
||||||
|
%%KRONOLITHDIR%%/templates/attendees/attendees.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/calendars/calendars.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/category_legend.inc
|
||||||
%%KRONOLITHDIR%%/templates/common-header.inc
|
%%KRONOLITHDIR%%/templates/common-header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/contacts/contacts.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/export.inc
|
%%KRONOLITHDIR%%/templates/data/export.inc
|
||||||
%%KRONOLITHDIR%%/templates/data/import.inc
|
%%KRONOLITHDIR%%/templates/data/import.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
%%KRONOLITHDIR%%/templates/day/all_day.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/foot.inc
|
%%KRONOLITHDIR%%/templates/day/foot.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/head.inc
|
%%KRONOLITHDIR%%/templates/day/head.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/day/head_side_by_side.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row.inc
|
%%KRONOLITHDIR%%/templates/day/row.inc
|
||||||
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
%%KRONOLITHDIR%%/templates/day/row_half.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
%%KRONOLITHDIR%%/templates/delete/delete.inc
|
||||||
%%KRONOLITHDIR%%/templates/delete/one.inc
|
%%KRONOLITHDIR%%/templates/delete/one.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
%%KRONOLITHDIR%%/templates/edit/edit.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/edit/edit_timespan.inc
|
||||||
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
%%KRONOLITHDIR%%/templates/edit/javascript.inc
|
||||||
%%KRONOLITHDIR%%/templates/index/css.inc
|
%%KRONOLITHDIR%%/templates/fbview/busyblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/index/notconfigured.inc
|
%%KRONOLITHDIR%%/templates/fbview/header.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/legend.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/linesblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/meetingblock.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/row.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/section.tpl
|
||||||
|
%%KRONOLITHDIR%%/templates/fbview/unknownblock.tpl
|
||||||
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
%%KRONOLITHDIR%%/templates/javascript/goto.inc
|
||||||
%%KRONOLITHDIR%%/templates/javascript/open_print_win.js
|
%%KRONOLITHDIR%%/templates/javascript/open_attendees_win.js
|
||||||
%%KRONOLITHDIR%%/templates/javascript/print.inc
|
%%KRONOLITHDIR%%/templates/menu.inc
|
||||||
%%KRONOLITHDIR%%/templates/menu/menu.inc
|
|
||||||
%%KRONOLITHDIR%%/templates/month/head.inc
|
%%KRONOLITHDIR%%/templates/month/head.inc
|
||||||
%%KRONOLITHDIR%%/templates/prefs/category_management.inc
|
%%KRONOLITHDIR%%/templates/month/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/remote_cal_management.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/search_abook_select.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/prefs/shareselect.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/empty.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_footers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_headers.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/event_summaries.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/header.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search.inc
|
||||||
|
%%KRONOLITHDIR%%/templates/search/search_advanced.inc
|
||||||
%%KRONOLITHDIR%%/templates/view/view.inc
|
%%KRONOLITHDIR%%/templates/view/view.inc
|
||||||
%%KRONOLITHDIR%%/templates/week/head.inc
|
%%KRONOLITHDIR%%/templates/week/head.inc
|
||||||
%%KRONOLITHDIR%%/util/colorpicker.php
|
%%KRONOLITHDIR%%/templates/week/head_side_by_side.inc
|
||||||
|
%%KRONOLITHDIR%%/themes/bluewhite/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/alarm_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/attendees.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/calendars.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/dayview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/goto.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/kronolith.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/monthview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/new_small.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/recur.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/today.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/unknown-background.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/weekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/graphics/workweekview.png
|
||||||
|
%%KRONOLITHDIR%%/themes/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/mozilla/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/print/screen.css
|
||||||
|
%%KRONOLITHDIR%%/themes/simplex/screen.css
|
||||||
%%KRONOLITHDIR%%/viewevent.php
|
%%KRONOLITHDIR%%/viewevent.php
|
||||||
%%KRONOLITHDIR%%/week.php
|
%%KRONOLITHDIR%%/week.php
|
||||||
%%KRONOLITHDIR%%/workweek.php
|
%%KRONOLITHDIR%%/workweek.php
|
||||||
@dirrm %%KRONOLITHDIR%%/config
|
|
||||||
@dirrm %%KRONOLITHDIR%%/graphics
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib/Notification
|
|
||||||
@dirrm %%KRONOLITHDIR%%/lib
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/ru_RU.KOI8-R
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
|
||||||
@dirrm %%KRONOLITHDIR%%/locale
|
|
||||||
@dirrm %%KRONOLITHDIR%%/po
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts/drivers
|
|
||||||
@dirrm %%KRONOLITHDIR%%/scripts
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/data
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/day
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/delete
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/edit
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/index
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/menu
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/month
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/view
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates/week
|
|
||||||
@dirrm %%KRONOLITHDIR%%/templates
|
|
||||||
@dirrm %%KRONOLITHDIR%%/util
|
|
||||||
@dirrm %%KRONOLITHDIR%%
|
|
||||||
etc/horde/httpd.conf.kronolith
|
etc/horde/httpd.conf.kronolith
|
||||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||||
@unexec if cmp -s %D/www/horde/config/registry.php %D/www/horde/config/registry.php.afterKronolith; then rm -f %D/www/horde/config/registry.php.afterKronolith; mv %D/www/horde/config/registry.php.beforeKronolith %D/www/horde/config/registry.php; fi
|
@dirrm %%KRONOLITHDIR%%/themes/simplex
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/print
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/mozilla
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/graphics
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes/bluewhite
|
||||||
|
@dirrm %%KRONOLITHDIR%%/themes
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/week
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/view
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/search
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/prefs
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/month
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/javascript
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/fbview
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/edit
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/delete
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/day
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/data
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/contacts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/calendars
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates/attendees
|
||||||
|
@dirrm %%KRONOLITHDIR%%/templates
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/upgrades
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts/sql
|
||||||
|
@dirrm %%KRONOLITHDIR%%/scripts
|
||||||
|
@dirrm %%KRONOLITHDIR%%/po
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_TW
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/zh_CN
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sv_SE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/sk_SK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ru_RU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ro_RO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pt_BR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/pl_PL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nn_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nl_NL
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/nb_NO
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lv_LV
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/lt_LT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ko_KR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/it_IT
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/hu_HU
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fr_FR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/fi_FI
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/es_ES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/en_US
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/el_GR
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/de_DE
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/da_DK
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/cs_CZ
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/bg_BG
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY/LC_MESSAGES
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale/ar_SY
|
||||||
|
@dirrm %%KRONOLITHDIR%%/locale
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Storage
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Scheduler
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/FBView
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Driver
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib/Block
|
||||||
|
@dirrm %%KRONOLITHDIR%%/lib
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%%/config 2>/dev/null || true
|
||||||
|
@unexec rmdir %D/%%KRONOLITHDIR%% 2>/dev/null || true
|
||||||
|
|
Loading…
Add table
Reference in a new issue