Re: [Orgmode] Worldcup + time zone question

2010-06-07 Thread Russell Adams
Dirk,

My understanding is that time zones aren't currently supported in org,
or well supported in emacs in general. I've looked a few times at
allowing data entry from another TZ to just be converted to localtime,
and haven't had a good answer yet.

Thanks.

On Mon, Jun 07, 2010 at 10:48:14PM +0300, Dirk-Jan C. Binnema wrote:
> Hi All,
> 
> I made a little org-mode schedule for the Football World Cup in South-Africa
> (attached); it may be useful for some.
> 
> Anyway, my question: the times are the local times in South Africa -- is there
> some way to have the times shown in my org-agenda automatically corrected for
> my local time zone?
> 
> Thanks,
> Dirk.
> 

> #+STARTUP:content
> #+category:FIFA2010
> 
> Note: all time are local (UTC+2 times)
> 
> * Group A:A:
> ** Uruguay- France   <2010-06-11 Fri 20:30>   
> ** South Africa   - Mexico   <2010-06-11 Fri 16:00>  
> ** South Africa   - Uruguay  <2010-06-16 Wed 20:30>   
> ** France - Mexico   <2010-06-17 Thu 20:30>   
> ** France - South Africa <2010-06-22 Tue 16:00>   
> ** Mexico - Uruguay  <2010-06-22 Tue 16:00>
>
> * Group B:B:
> ** Korea Republic - Greece   <2010-06-12 Sat 13:30>   
> ** Argentina  - Nigeria  <2010-06-12 Sat 16:00>   
> ** Argentina  - Korea Republic   <2010-06-17 Thu 13:30>   
> ** Greece - Nigeria  <2010-06-17 Thu 16:00>   
> ** Greece - Argentina<2010-06-22 Tue 20:30>   
> ** Nigeria- Korea Republic   <2010-06-22 Tue 20:30>
>
> * Group C:C:
> ** England- USA  <2010-06-12 Sat 20:30>   
> ** Algeria- Slovenia <2010-06-13 Sun 13:30>   
> ** Slovenia   - USA  <2010-06-18 Fri 16:00>   
> ** England- Algeria  <2010-06-18 Fri 20:30>   
> ** Slovenia   - England  <2010-06-23 Wed 16:00>   
> ** USA- Algeria  <2010-06-23 Wed 16:00>   
> 
> * Group D:D:
> ** Serbia - Ghana<2010-06-13 Sun 16:00>   
> ** Germany- Australia<2010-06-13 Sun 20:30>   
> ** Germany- Serbia   <2010-06-18 Fri 13:30>   
> ** Ghana  - Australia<2010-06-19 Sat 16:00>   
> ** Australia  - Serbia   <2010-06-23 Wed 20:30>   
> ** Ghana  - Germany  <2010-06-23 Wed 20:30>   
> 
> * Group E:E:
> ** Netherlands- Denmark  <2010-06-14 Mon 13:30>   
> ** Japan  - Cameroon <2010-06-14 Mon 16:00>   
> ** Netherlands- Japan<2010-06-19 Sat 13:30>   
> ** Cameroon   - Denmark  <2010-06-19 Sat 20:30>   
> ** Cameroon   - Netherlands  <2010-06-24 Thu 20:30>   
> ** Denmark- Japan<2010-06-24 Thu 20:30>   
> 
> * Group F:F:
> ** Italy  - Paraguay <2010-06-14 Mon 20:30>   
> ** New Zealand- Slovakia <2010-06-15 Tue 13:30>   
> ** Slovakia   - Paraguay <2010-06-20 Sun 13:30>   
> ** Italy  - New Zealand  <2010-06-20 Sun 16:00>   
> ** Paraguay   - New Zealand  <2010-06-24 Thu 16:00>   
> ** Slovakia   - Italy<2010-06-24 Thu 16:00>   
> 
> * Group G:G:
> ** C??te d'Ivoire  - Portugal <2010-06-15 Tue 16:00>   
> ** Brazil - Korea DPR<2010-06-15 Tue 20:30>   
> ** Brazil - C??te d'Ivoire<2010-06-20 Sun 20:30>   
> ** Portugal   - Korea DPR<2010-06-21 Mon 13:30>   
> ** Korea DPR  - C??te d'Ivoire<2010-06-25 Fri 16:00>   
> ** Portugal   - Brazil   <2010-06-25 Fri 16:00>   
> 
> * Group H:H:
> ** Honduras   - Chile<2010-06-16 Wed 13:30>   
> ** Spain  - Switzerland  <2010-06-16 Wed 16:00>   
> ** Chile  - Switzerland  <2010-06-21 Mon 16:00>   
> ** Spain  - Honduras <2010-06-21 Mon 20:30>   
> ** Chile  - Spain<2010-06-25 Fri 20:30>   
> ** Switzerland- Honduras <2010-06-25 Fri 20:30>   
> 
> * 8th Finals  :8F:
> ** M1: 1A - 2B <2010-06-26 Sat 16:00>
> ** M3: 1C - 2D <2010-06-26 Sat 20:30>
> ** M4: 1D - 2C <2010-06-27 Sun 16:00>
> ** M2: 1B - 2A <2010-06-27 Sun 20:30>
> ** M5: 1E - 2F <2011-06-27 Mon 16:00

Re: [Orgmode] Worldcup + time zone question

2010-06-07 Thread Juan Pechiar
Here is a quick and dirty function to update all timestamps in a
buffer by N hours:

8<

(defun uphours ( n )
  "update all timestamps n hours"
  (interactive "nAdd hours: ")
  (save-excursion
(goto-char (point-min))
 (while (re-search-forward "[[<]" nil t)
   (when (org-at-timestamp-p t)
 (org-timestamp-change n 'hour)
 

8<

S.Africa is UTC+2. To change to UTC-3 call with -5 as argument.

Use and modify as needed.

Regards,
.j.

On Mon, Jun 07, 2010 at 10:48:14PM +0300, Dirk-Jan C. Binnema wrote:
> I made a little org-mode schedule for the Football World Cup in South-Africa
> (attached); it may be useful for some.
>
> Anyway, my question: the times are the local times in South Africa -- is there
> some way to have the times shown in my org-agenda automatically corrected for
> my local time zone?

> #+STARTUP:content
> #+category:FIFA2010
>
> Note: all time are local (UTC+2 times)
>
> * Group A:A:
> ** Uruguay- France   <2010-06-11 Fri 20:30>

(will we beat France on Friday?)

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Worldcup + time zone question

2010-06-07 Thread Bill White
On Mon Jun 07 2010 at 14:48, "Dirk-Jan C. Binnema"  wrote:

> Hi All,
>
> I made a little org-mode schedule for the Football World Cup in
> South-Africa (attached); it may be useful for some.
>
> Anyway, my question: the times are the local times in South Africa --
> is there some way to have the times shown in my org-agenda
> automatically corrected for my local time zone?

Norm Walsh's nifty wwtime.el may provide some ideas:
http://nwalsh.com/emacs/wwtime/

Cheers -

bw
-- 
Bill White . bi...@wolfram.com
"No ma'am, we're musicians."

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Worldcup + time zone question

2010-06-07 Thread Daniel Martins
Dirk,

Great schedule! I am really interested, in the same way, if it is possible
to adjust timezones to Brazil as well.

If it is not, I will adjust "by hand" your table.

Daniel

2010/6/7 Dirk-Jan C. Binnema 

> Hi All,
>
> I made a little org-mode schedule for the Football World Cup in
> South-Africa
> (attached); it may be useful for some.
>
> Anyway, my question: the times are the local times in South Africa -- is
> there
> some way to have the times shown in my org-agenda automatically corrected
> for
> my local time zone?
>
> Thanks,
> Dirk.
>
>
>
>
> --
> Dirk-Jan C. Binnema  Helsinki, Finland
> e:d...@djcbsoftware.nlw:
> www.djcbsoftware.nl
> pgp: D09C E664 897D 7D39 5047 A178 E96A C7A1 017D DA3C
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode