+ Reply to Thread
Page 3 of 6 FirstFirst 1 2 3 4 5 ... LastLast
Results 21 to 30 of 51

Thread: jQuery Weekcalendar plugin (deprecated)

  1. #21
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    Lazlo,

    I have solved all things. It is your plugin. But to avoid wasting time I suggest to wait 2-3 day until I come up with my stuff ... Currently I'm implementing a datepicker to navigate weeks picked up by date (creating far in future events is a pain currently ...).

    Localization etc. is completed. I had to take care to remove/recode stuff which conflicts with other favorit plugins like keyboard_shortcuts which use also jquery dialog ...

    The code project is a good idea. Wait and decide if you agree with my modifications. Then we should decide which version is the starting point for a release candidate

    The Roundcube community was waiting for this plugin ... and it should be a runner!
    Last edited by rosali; 01-27-2010 at 08:47 PM.
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

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

    Default

    I will wait, I have some exams coming so I will not be working on the plugin this week.

    BTW, it is not my plugin, it is Open Source. That makes it ours. :P
    Last edited by Lazlo; 01-27-2010 at 08:56 PM.

  3. #23
    Erendur is offline Roundcube Newcomer
    Join Date
    Jan 2010
    Posts
    1
    Downloads
    0
    Uploads
    0

    Default

    Hello,

    first nice new calender plugin. One of the features I really miss on the TODO-List is the month view and day view. Fullcalendar(JQuery) supports already these features. Maybe it is easier to use this version as the jquery week calendar where "month" and "day" view must be implemented. Fullcalendar also provides a google calender extension.

    Another needed feature is the synchronisation between Thunderbird/Sunbird iCal calender application. Maybe it can be included with the import/export iCal feature.

  4. #24
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    @ Erendur
    I agree. But let us first finish the weekcalendar. In most parts this will be a good framework for the full calendar.

    @ Lazlo
    Are you interested in coding the framework for fullcalendar? It looks like you are much better than me when it comes to jquery! I would contribute your framework like I did with weekcalendar.

    I have finished my work on your calendar plugin and will upload the result today evening.

    Major changes:
    #1 Renamed it to weekcalendar (avoid conflicts with fullcalendar later).
    #2 Save events in Database in GMT time and consider Roundcube Timezone settings when returning events to client (your way caused problems when client and server are in different timezones).
    #3 Datepicker to make navigation into weeks far in future easier.
    #4 Separated jquery stuff into a new plugin "jquery" (Reason: I use jquery-ui in serveral other plugins. To have the stuff centralized makes maintenance easier).
    #5 Finished localization

    Still missing:
    #1 A basic print feature
    #2 A message while weekcalendar is loading

    I don't think we should add more features and spend our time for coding on fullcalendar.

    You can check my results at RoundCube Webmail :: Welcome to RoundCube Webmail (Notice: The duplicate Calendar icon will disappear as soon I've coded the calendar switch plugin).

    I think it is a release candidate now.
    Last edited by rosali; 01-29-2010 at 02:20 PM.
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

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

    Default

    The fullcalendar is in basic the same jQuery script. I will replace the weekCalendar with the fullcalendar.

    The datepicker doesn't work for me, if you select a day it works, but if you change month or year nothing happens.

  6. #26
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    I think this is the intended datepicker behavior. First change month/year and then select a day. This should navigate to the week where the day is. Doesn't it?
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

  7. #27
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    Please find attached the current development version. Please don't miss to register "jquery" plugin.

    If you going to implement fullcalendar just search files for "weekcalendar" and replace with "fullcalendar".

    I need opions for timezone handling:

    #1 - The database is GMT - that's ok
    #2 - If Roundcube timezone is not "auto" then js timezone and Roundcube timezone are different
    #3- If Roundcube offset is -5 and a user adds an event 12:00 the event is created at 7:00 - technically ok but could be confusing.
    Attached Files
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

  8. #28
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    solved

    use that:
    Code:
      function get_events()
      {
        $rcmail = rcmail::get_instance();
    
        $tz = isset($_SESSION['timezone']) ? $_SESSION['timezone'] : date('Z')/3600;
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

  9. #29
    rosali's Avatar
    rosali is offline Super Moderator
    Join Date
    Dec 2007
    Location
    Germany
    Posts
    2,394
    Downloads
    36
    Uploads
    0

    Default

    I've noticed a bug:

    #1- First view of weekcalendar
    #2- Edit event -> times are not selected (0:00 start)
    #3- Add a new event
    #4- Edit event -> times selection is ok

    I'll stop working on it now and wait for your feedback (mailto myroundcube at mail4us.net)
    Regards,
    Rosali

    __________________
    MyRoundcube Project http://myroundcube.googlecode.com
    MyRoundcube Online Demo - Free Email Address http://mail4us.net
    MyRoundcube Plugins Generic Installation Guide http://mail4us.net/myroundcube/index.php
    Mailing List http://mail4us.net/?_action=plugin.nabble

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

    Default

    Do you have a diff of the changes? Otherwise I have to rename everything.

    Don't see the point of moving jquery weekCalendar into the jQuery plugin since it is online used bij the calendar, jquery-ui could be used by other plugins.

    That bug doesn't exist in the previous version.

+ Reply to Thread
Page 3 of 6 FirstFirst 1 2 3 4 5 ... 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