You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Eduard Martinescu (JIRA)" <de...@myfaces.apache.org> on 2006/11/30 22:17:21 UTC

[jira] Created: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Have the 'schedule' component deal with timezones
-------------------------------------------------

                 Key: TOMAHAWK-811
                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-811
             Project: MyFaces Tomahawk
          Issue Type: Improvement
          Components: Schedule
    Affects Versions: 1.1.5-SNAPSHOT
            Reporter: Eduard Martinescu


Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Posted by "Joost Schouten (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498074 ] 

Joost Schouten commented on TOMAHAWK-811:
-----------------------------------------

I have to bent over backward to make my calendar work across multiple timezones. This patch would greatly help me. Is there a reason it has been on hold? Is there anything I can do to contribute?

Thanks,
Joost

> Have the 'schedule' component deal with timezones
> -------------------------------------------------
>
>                 Key: TOMAHAWK-811
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-811
>             Project: MyFaces Tomahawk
>          Issue Type: Improvement
>          Components: Schedule
>    Affects Versions: 1.1.5-SNAPSHOT
>            Reporter: Eduard Martinescu
>         Assigned To: Jurgen Lust
>         Attachments: schedule.timezone.patch
>
>
> Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Posted by "Peter Mahoney (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12506140 ] 

Peter Mahoney commented on TOMAHAWK-811:
----------------------------------------

I would have thought it more appropriate to add a "timeZone" property to UIScheduleBase, rather than the model as it could be argued that timezone is more presentation than data model. It would also then be consistent with other timezone enabled components.

I think also that it would be good to add a getCalendarInstance() method to UIScheduleBase to avoid lots of GregorianCalendar.getInstance(getTimeZone()) calls.

I will try to get this done ASAP.

> Have the 'schedule' component deal with timezones
> -------------------------------------------------
>
>                 Key: TOMAHAWK-811
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-811
>             Project: MyFaces Tomahawk
>          Issue Type: Improvement
>          Components: Schedule
>    Affects Versions: 1.1.5-SNAPSHOT
>            Reporter: Eduard Martinescu
>            Assignee: Jurgen Lust
>         Attachments: schedule.timezone.patch
>
>
> Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Posted by "Eduard Martinescu (JIRA)" <de...@myfaces.apache.org>.
     [ http://issues.apache.org/jira/browse/TOMAHAWK-811?page=all ]

Eduard Martinescu updated TOMAHAWK-811:
---------------------------------------

    Status: Patch Available  (was: Open)

> Have the 'schedule' component deal with timezones
> -------------------------------------------------
>
>                 Key: TOMAHAWK-811
>                 URL: http://issues.apache.org/jira/browse/TOMAHAWK-811
>             Project: MyFaces Tomahawk
>          Issue Type: Improvement
>          Components: Schedule
>    Affects Versions: 1.1.5-SNAPSHOT
>            Reporter: Eduard Martinescu
>
> Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Posted by "Peter Mahoney (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/TOMAHAWK-811?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peter Mahoney updated TOMAHAWK-811:
-----------------------------------

       Resolution: Fixed
    Fix Version/s: 1.1.7-SNAPSHOT
           Status: Resolved  (was: Patch Available)

This has been commited. In the end the timezone was added to the model, as per the patch, as adding it to the UIScheduleBase would have coupled the model to the component unnecessarily.

> Have the 'schedule' component deal with timezones
> -------------------------------------------------
>
>                 Key: TOMAHAWK-811
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-811
>             Project: MyFaces Tomahawk
>          Issue Type: Improvement
>          Components: Schedule
>    Affects Versions: 1.1.5-SNAPSHOT
>            Reporter: Eduard Martinescu
>            Assignee: Peter Mahoney
>             Fix For: 1.1.7-SNAPSHOT
>
>         Attachments: schedule.timezone.patch
>
>
> Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TOMAHAWK-811) Have the 'schedule' component deal with timezones

Posted by "Eduard Martinescu (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/TOMAHAWK-811?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12494043 ] 

Eduard Martinescu commented on TOMAHAWK-811:
--------------------------------------------

Any update on this issue?

> Have the 'schedule' component deal with timezones
> -------------------------------------------------
>
>                 Key: TOMAHAWK-811
>                 URL: https://issues.apache.org/jira/browse/TOMAHAWK-811
>             Project: MyFaces Tomahawk
>          Issue Type: Improvement
>          Components: Schedule
>    Affects Versions: 1.1.5-SNAPSHOT
>            Reporter: Eduard Martinescu
>         Assigned To: Jurgen Lust
>         Attachments: schedule.timezone.patch
>
>
> Currently, the schedule component makes all calculations in the default timezone of the server. However, it is desirable to display schedules in alternate timezones.  For example, I have an app that runs in EST5EDT, but the users want all scheduling to occur in GMT.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.