gitweb.js: Add UI for selecting common timezone to display dates
commit2ae8da2552f43802476676bb86b037e9028b7a7c
authorJohn 'Warthog9' Hawley <warthog9@eaglescrag.net>
Thu, 28 Apr 2011 19:04:10 +0000 (28 21:04 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 24 May 2011 18:22:45 +0000 (24 11:22 -0700)
tree7601b996a962534129e32f0ed0d497f589bad474
parent291e52bd19877dc8fdd77079ba4c4326f114c461
gitweb.js: Add UI for selecting common timezone to display dates

This will modify HTML, add CSS rules and add DOM event handlers so
that clicking on any date (the common part, not the localtime part)
will display a drop down menu to choose the timezone to change to.

Currently menu displays only the following timezones:

  utc
  local
  -1200
  -1100
  ...
  +1100
  +1200
  +1300
  +1400

In timezone selection menu each timezone is +1hr to the previous.  The
code is capable of handling fractional timezones, but those have not
been added to the menu.

All changes are saved to a cookie, so page changes and closing /
reopening browser retains the last known timezone setting used.

[jn: Changed from innerHTML to DOM, moved to event delegation for
onclick to trigger menu, added close button and cookie refreshing]

Helped-by: Kevin Cernekee <cernekee@gmail.com>
Signed-off-by: John 'Warthog9' Hawley <warthog9@eaglescrag.net>
Signed-off-by: Jakub Narebski <jnareb@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
gitweb/gitweb.perl
gitweb/static/gitweb.css
gitweb/static/js/adjust-timezone.js
gitweb/static/js/lib/common-lib.js