| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-02-26 | Minor style changes. | Bharat Mediratta | |
| 2009-02-23 | Changing from binary(16) to char(32) as translation message key. | Andy Staudacher | |
| Although less efficient as a storage / transmission / comparison format, it's friendlier on the eyes and universally supported. | |||
| 2009-02-19 | Adding a l10n scanner - scans for t() and t2() calls, inserts the extracted ↵ | Andy Staudacher | |
| messages into incoming_translations. See: https://apps.sourceforge.net/trac/gallery/ticket/74 | |||
| 2009-02-12 | Change i18n message key to include the plural form (to ensure that it's ↵ | Andy Staudacher | |
| truly unique). | |||
| 2009-02-12 | Added a show comment form button. Add comment form is revealed when the ↵ | Chad Kieffer | |
| button is clicked. Used jQuery UI Effect to .highlight() to bring attention to newly added comments. Also added a named anchor to our block library to allow direct linking/scrolling to those blocks on the page. | |||
| 2009-02-10 | style fixes (style for method names, style for vars in locale.php) | Andy Staudacher | |
| 2009-02-10 | Adding UI for site language selection and user language preference. | Andy Staudacher | |
| 2009-02-10 | Remove extra blank lines | Bharat Mediratta | |
| 2009-02-10 | Move site default_locale into DB (vars) and add a per user locale preference. | Andy Staudacher | |
| There's no UI to select the locale yet. | |||
| 2009-02-09 | Add local localization functionality. Local = no means to upload / download ↵ | Andy Staudacher | |
| translations to a translation server yet. - Added an outgoing_translations table to store translations from the local translation UI. - I18n class is checking incoming_ and outgoing_translations for translations, giving the latter priority. - Not handling plural strings in the translations UI yet. | |||
| 2009-02-09 | Adding translation UI. Not backed by any model yet (submissions are ignored). | Andy Staudacher | |
| The code is based on the l10n_client module from Drupal 6, by Gabor Hojtsy (http://drupal.org/user/4166). | |||
| 2009-02-08 | Fix a bug that I think I introduced in my last sendmail refactor where | Bharat Mediratta | |
| I inverted the expectations on the result from mail() causing image uploads to fail (even though the mail gets sent!) | |||
| 2009-02-06 | Correct comment on factory | Tim Almdal | |
| 2009-02-06 | Convert all item->type == "album" to item->is_album() | Tim Almdal | |
| Convert all item->type == "photo" to item->is_photo() | |||
| 2009-02-06 | Apply default link styles to links in dialogs, including the Forgot Password ↵ | Chad Kieffer | |
| link. | |||
| 2009-02-05 | Move test-related extensions to Sendmail into a subclass that we only | Bharat Mediratta | |
| use in the test code (Sendmail_For_Test). | |||
| 2009-02-05 | Minor code style changes. | Bharat Mediratta | |
| 2009-02-03 | Doh! Fix a bug in add_after() that caused it to drop the item we were ↵ | Bharat Mediratta | |
| adding it after. | |||
| 2009-02-02 | Do 1 DB query for l10n per HTTP request (per locale), not one per t() call. | Andy Staudacher | |
| 2009-02-02 | Changed the Sendmail library to allow the separator between mail | Tim Almdal | |
| headers to be specified as a parameter. The documents say that it should be "\r\n". Some sendmail programs seem to violate the specification and get confused. In these cases the header separator is just "\n". This change allows the header separator to be set by the a configuration parameter. | |||
| 2009-02-01 | Update the handling of the to field if the input field is an array | Tim Almdal | |
| 2009-01-29 | Add the ability to generate the id parameter on Menu Dialog. | Tim Almdal | |
| 2009-01-29 | Fix an off-by-one issue-- the destination level is the target's child, not ↵ | Bharat Mediratta | |
| the target itself. | |||
| 2009-01-29 | Update the level when moving items | Bharat Mediratta | |
| 2009-01-28 | Add Menu::add_after() | Bharat Mediratta | |
| 2009-01-28 | Create a sendmail library to wrap the call to the system sendmail | Tim Almdal | |
| facility. Something quirky is happening in the first test, see comment in code, but I couldn't figure it out. Left a @todo for now. | |||
| 2009-01-24 | Add move support. Use the move icon in the quick pane. You can't | Bharat Mediratta | |
| move an item into its own hierarchy, or into an album where you don't have edit permission. | |||
| 2009-01-23 | Add support for parenthetical grouping to Database queries. Turns out | Bharat Mediratta | |
| that this is something they kind of want for Kohana :-) Upstream ticket for this change: http://dev.kohanaphp.com/ticket/1070 | |||
| 2009-01-18 | Rename theme callback helpers from xxx_block to xxx_theme to make room | Bharat Mediratta | |
| for us to rename the dashboard helper to be a block helper since sidebar blocks are not just in the dashboard. | |||
| 2009-01-16 | Rename Task to Task_Definition to avoid confusion with Task_Model. | Bharat Mediratta | |
| Order the finished tasks by update time in the task list. | |||
| 2009-01-16 | Break task definitions out into the <module>_task helper and create a | Bharat Mediratta | |
| Task library class as a data structure to hold task definitions. | |||
| 2009-01-15 | Changing t() placeholder syntax from {{replace_me}} to %replace_me. | Andy Staudacher | |
| 2009-01-15 | Simplifying the way t() is called. Refactoring localization function ↵ | Andy Staudacher | |
| t($message, $options=array()) into 2 separate functions: - the new t($message, $options=array()) is for simple strings, optionally with placeholder interpolation. - t2($singular, $plural, $count, $options=array()) is for plurals. | |||
| 2009-01-13 | Change admin/themes to show both styles of themes side by side. This | Bharat Mediratta | |
| eliminates the menu, which is kind of clunky. While I'm at it, let's call the "regular" themes a "site theme" so we have "site" and "admin" themes. | |||
| 2009-01-13 | Reverse the last change; forgot that {$key} is treated specially | Bharat Mediratta | |
| inside a string. We could do "{{{$key}}}" but that's misleading. | |||
| 2009-01-13 | Use variable interpolation to reduce code size | Bharat Mediratta | |
| 2009-01-13 | Models should be named in adjective_noun form to make pluralizatoin | Bharat Mediratta | |
| more intuitive. Renamed Translations_Incoming to Incoming_Translation to suit. | |||
| 2009-01-12 | Implement deleting dashboard blocks. | Bharat Mediratta | |
| * Refactor blocks so that they have a separate id vs css_id. This way we can have a unique identifier for each visual block. * Store blocks with a random id as their unique identifier * Add Admin_Dashboard::remove_block() and modify themes/admin_default/views/block.html.php to call it when you click the remove box. | |||
| 2009-01-12 | Dashboard blocks are now data driven, and you can add new blocks to | Bharat Mediratta | |
| both the sidebar and the center content area from a dropdown at the top of the dashboard sidebar. | |||
| 2009-01-11 | Deleted unused MY_Form_Radio | Bharat Mediratta | |
| 2009-01-11 | Let admins override the theme with a query param | Bharat Mediratta | |
| 2009-01-10 | Use the theme's avatar as the default if Gravatar doesn't have one. | Bharat Mediratta | |
| 2009-01-08 | i18n refactoring: Rename all _() (reserved by gettext) calls to t(). | Andy Staudacher | |
| - And refactor printf to our string interpolation / pluralization syntax - Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key. | |||
| 2009-01-08 | First step of i18n refactoring: | Andy Staudacher | |
| - Using DB table translations_incomings as translations storage (file cache to be added) - Removed overly complex i18n code which will be unnecessary with the future compiled cache files - Added t() as a translation function (global refactoring from _() to t() to follow) | |||
| 2009-01-07 | Properly implement 'root' as a legal factory type | Bharat Mediratta | |
| 2009-01-07 | Add 'root' as a legal factory type | Bharat Mediratta | |
| 2009-01-06 | Tabs -> spaces | Bharat Mediratta | |
| 2009-01-04 | Extend Theme_View to look in modules for photo and album menus. Move | Bharat Mediratta | |
| "view comments" link to the comment menu helper. | |||
| 2009-01-04 | Started to wire up album and photo view menus. Need photo's parent album ↵ | Chad Kieffer | |
| link added. Also need add the slideshow link to the menu. | |||
| 2009-01-02 | fix line endings | Bharat Mediratta | |
