Closed Thread
Page 5 of 9 FirstFirst ... 3 4 5 6 7 ... LastLast
Results 41 to 50 of 89

Thread: RoundCube Calendar (jQuery Calendar)

  1. #41
    lacri's Avatar
    lacri is offline Registered User
    Join Date
    Jan 2009
    Location
    Lutherstadt Wittenberg, Germany
    Posts
    179
    Downloads
    5
    Uploads
    0

    Default

    great great ... the categorys are cool many thanks

  2. #42
    sckramer is offline Registered User
    Join Date
    Jul 2009
    Posts
    17
    Downloads
    1
    Uploads
    0

    Default multiple / shared

    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.

  3. #43
    Lazlo is offline Registered User
    Join Date
    May 2007
    Posts
    41
    Downloads
    0
    Uploads
    0

    Default

    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.

  4. #44
    batemice is offline Roundcube Newcomer
    Join Date
    Jan 2010
    Location
    Bulgaria
    Posts
    3
    Downloads
    0
    Uploads
    0

    Default

    Updated Bulgarian translation for Beta 2:
    Attached Files

  5. #45
    Lazlo is offline Registered User
    Join Date
    May 2007
    Posts
    41
    Downloads
    0
    Uploads
    0

    Default

    Thanks, updated in the development version.

  6. #46
    phireware's Avatar
    phireware is offline Registered User
    Join Date
    Dec 2008
    Location
    USA
    Posts
    68
    Downloads
    0
    Uploads
    0

    Default

    I hope it's ok, but I have implemented this calendar in the MobileCube theme! Great job, love the plugin!

  7. #47
    touzeau is offline Roundcube Newcomer
    Join Date
    Sep 2009
    Location
    Paris
    Posts
    4
    Downloads
    1
    Uploads
    0

    Default Group calendar and added in Artica

    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

  8. #48
    bagu is offline Registered User
    Join Date
    Jan 2010
    Posts
    97
    Downloads
    15
    Uploads
    0

    Default

    Here is the french translation for 2 beta 2 :

    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';
    
    ?>
    With mysql 5.1.34, i must use this mysql.sql file :

    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.

  9. #49
    Lazlo is offline Registered User
    Join Date
    May 2007
    Posts
    41
    Downloads
    0
    Uploads
    0

    Default

    Thank you, added the translation to the latest development version (LazloNL's roundcube-calendar at master - GitHub).

  10. #50
    sh0x is offline Roundcube Newcomer
    Join Date
    Feb 2009
    Posts
    2
    Downloads
    1
    Uploads
    0

    Default Server Error (OK!) still

    Quote Originally Posted by rosali View Post
    It never loads events. It does not even see calendar.php::getEvents. I get Error message "Server Error! (OK)". Nothing in the logs. It is not a browser issue (both IE/FF).

    Events are created successfully in the database. It looks like the problem is anywhere in the javascript stuff.
    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",

Closed Thread
Page 5 of 9 FirstFirst ... 3 4 5 6 7 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts