| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
and constants to make overloading easier. Fixes #1510.
|
|
|
|
|
|
|
|
This reverts commit 2d948cb39fd2da6a5f966a10cbeb4f5d5caec5a3.
Valiant said that tn_ZA is right:
http://gallery.menalto.com/node/97840#comment-352865
|
|
Botswana anyway according to @sagemaniac in
http://gallery.menalto.com/node/97840
|
|
|
|
|
|
rules, thus no changes in Gallery_I18n.php or on the server side required.
|
|
|
|
with CLDR data.
|
|
for a config value "force_rtl" which will layout the gallery pages in rtl mode
without having to change to an language that is no longer understandable to the
developer.
Adding the line "$config['force_rtl'] = true;" to the config/locales.php file
will make it happen.
|
|
Unicode in the source code for the locale names (as we do in other places already).
Note: Also fixing the localized name of Ukrainian. For some reason it was garbled before.
|
|
The preference block must have been broken by a jquery update, and the cookie reading by a Kohana update.
|
|
On the current hostgater setup (PHP 5.2.12), locales::available() was returning an array and isset($locales->$code) would always (silently) return false.
Choosing array over stdClass since count($someStdClass) will always return 1, and not the number of object members.
|
|
|
|
|
|
Create a helper class called identity to simplify call the Identity Provider. Move the contents of MY_Session.php to the new helper class and remove the MY_Session class
|
|
MY_Session class to provide the user state changes in the session and a login.php helper that has the login form.
|
|
and group.php. Tried creating a identity helper, but the helper identity.php was confused with the library Identity.php. So got around this by making the methods on Identity static and calling the instance within the static methods. Also temporarily moved the user.php and group.php back into the user module.
|
|
|
|
Conflicts:
modules/gallery/helpers/gallery_block.php
modules/gallery/helpers/gallery_theme.php
modules/gallery/helpers/user.php
modules/user/helpers/user_event.php
|
|
gallery module.
|
|
providing the default Identity implementation.
* Remove the user_event callbacks and move them to the gallery_event callbacks. This will insure that the active user is always loaded (because the gallery callbacks are always called first) to its available to other gallery_ready handlers. Moved the method set_request_locale to the locales helper as it is more related to locales.
* Move the user controllers and views into the gallery module.
* Move the theme and block processing out of the user module and into core.
|
|
same-language match over exact locale match for lower qvalue.
|
|
(And the tests should illustrate that kohana 2.4's API doesn't quite fit our purpose of simply getting the best match between the accepted (client) and the installed (g3) locales.)
|
|
request::accepts_language() when we upgrade to Kohana 2.4
|
|
and check the browser's / OS' locale preferences.
Ticket 582.
|
|
Fixes ticket #194
|