[Bug 38079] Transform date in the author line to user preference date format

2012-12-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

Nemo  changed:

   What|Removed |Added

 CC||br...@wikimedia.org,
   ||federicol...@tiscali.it

--- Comment #7 from Nemo  ---
See also Brion on
http://lists.wikimedia.org/pipermail/wikitech-l/2012-December/065400.html

> I'm not sure if we have full localization for dates in JS...
> 
> ...but you can use the browser's built-in support. You won't get the same
> formatting, and it may not match the user's *time zone preference* in
> MediaWiki...
> 
> eg
> https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date/toLocaleString

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-12-29 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

Nischay Nahata  changed:

   What|Removed |Added

 CC||nischay...@gmail.com

--- Comment #6 from Nischay Nahata  ---
See also: https://bugzilla.wikimedia.org/show_bug.cgi?id=43365 which involves
tz correction

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

Ryan Kaldari  changed:

   What|Removed |Added

 Depends on||19992

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

--- Comment #5 from Ryan Kaldari  2012-09-19 21:34:48 
UTC ---
This looks like it's actually going to be rather difficult to fix as the
formatting depends on having access to about 1500 formatting strings (5 formats
x 300 languages) which currently aren't available on the client side. Siebrand
says the i18n team is eventually going to implement a solution for this, but
suggests in the meantime we work around the problem by having our API handle
the formatting on the server-side. This will require some refactoring in
PageTriage so it might be a little while before it gets implemented.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

--- Comment #4 from Ryan Kaldari  2012-09-19 19:13:04 
UTC ---
There's also a timecorrection preference that might be needed.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

--- Comment #3 from Ryan Kaldari  2012-09-19 19:11:30 
UTC ---
First step will be to retrieve the user's date format preference:

mw.user.options.get( 'date' )

This will return one of the following:
* default
* mdy
* dmy
* ymd
* ISO 8601

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

--- Comment #2 from Ryan Kaldari  2012-09-19 18:44:21 
UTC ---
The problem is this is all being done on the client side, and the API is not
aware of the user's date format, or even that there is a user. Perhaps we need
to build some date handling functionality into mw.language or mw.util.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-09-19 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

Ryan Kaldari  changed:

   What|Removed |Added

 CC||amir.ahar...@mail.huji.ac.i
   ||l

--- Comment #1 from Ryan Kaldari  2012-09-19 18:40:40 
UTC ---
*** Bug 39379 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-08-13 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

Ryan Kaldari  changed:

   What|Removed |Added

   Priority|Unprioritized   |Low
   Severity|normal  |trivial

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 38079] Transform date in the author line to user preference date format

2012-07-02 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=38079

[[kgh]]  changed:

   What|Removed |Added

   Keywords||i18n

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l