looks really nice so far!!
With the db design etc, are you guys thinking about how in the future to add features like: multiple cals per account, and sharing cals with other accounts?
Thanks!
great great ... the categorys are coolmany thanks
looks really nice so far!!
With the db design etc, are you guys thinking about how in the future to add features like: multiple cals per account, and sharing cals with other accounts?
Thanks!
Last edited by sckramer; 02-16-2010 at 03:58 PM.
Haven't planned to add sharing of cals with other users.
Only planned feature (before stable release) is a print feature (which rosali is working on), like Google Calendar's Agenda view. To easily print your events.
Updated Bulgarian translation for Beta 2:
I hope it's ok, but I have implemented this calendar in the MobileCube theme! Great job, love the plugin!
I have added your project in my open source project
Add a calendar in the RoundCube Webmail System | Artica Official web site | web based administration interface
It will be very cool if you plan to provide a group/shared calendar
Here is the french translation for 2 beta 2 :
With mysql 5.1.34, i must use this mysql.sql file :Code:<?php /** * RoundCube Calendar * * Plugin to add a calendar to RoundCube. * * @version 0.2 BETA 2 * @author Lazlo Westerhof * @url http://rc-calendar.lazlo.me * @licence GNU GPL * @copyright (c) 2010 Lazlo Westerhof - Netherlands * **/ $labels = array(); // config $labels['default_view'] = 'Vue par défaut'; $labels['time_format'] = 'Format de l\'heure'; $labels['timeslots'] = 'Intervalle de temps par heure'; $labels['first_day'] = 'Premier jour de la semaine'; // calendar $labels['calendar'] = 'Calendrier'; $labels['day'] = 'Jour'; $labels['week'] = 'Semaine'; $labels['month'] = 'Mois'; $labels['new_event'] = 'Nouvel évènement'; $labels['edit_event'] = 'Editer l\'évènement'; $labels['save'] = 'Enregistrer'; $labels['remove'] = 'Supprimer'; $labels['cancel'] = 'Annuler'; $labels['summary'] = 'Sommaire'; $labels['description'] = 'Description'; $labels['all-day'] = 'Toute la journée'; $labels['export'] = 'Exporter en format ICS'; $labels['category'] = 'Categorie'; ?>
Code:CREATE TABLE `events` ( `event_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` int(10) UNSIGNED NOT NULL DEFAULT '0', `start` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `end` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `summary` varchar(255) NOT NULL, `description` text NOT NULL, `category` varchar(255) NOT NULL DEFAULT '', `all_day` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY(`event_id`), CONSTRAINT `user_id_fk_events` FOREIGN KEY (`user_id`) REFERENCES `users`(`user_id`) )
Last edited by bagu; 02-17-2010 at 12:09 PM.
Thank you, added the translation to the latest development version (LazloNL's roundcube-calendar at master - GitHub).
I'm having this problem using roundcube 0.3.1 and latest calendar from git (.2 beta 2, but changelog shows beta 3). I dropped the events table and recreated it. I also see events being created in the database but when viewing the calendar in IE/FF I get "Server Error (OK!)". The earlier fix appears to be in calendar.js:
events: "./?_task=dummy&_action=plugin.getEvents",
There are currently 1 users browsing this thread. (0 members and 1 guests)