| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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 | |
| 2009-01-01 | Standard Forge Library doesn't support radio buttons. | Felix Rabinovich | |
| Added support from http://forum.kohanaphp.com/comments.php?DiscussionID=164 | |||
| 2009-01-01 | Move debug CSS into core/css/debug.css, and enable it for admin themes also | Bharat Mediratta | |
| 2008-12-30 | Add a "Graphics Settings" page that lets admins choose which graphics | Bharat Mediratta | |
| toolkit we use. We only allow users to use one toolkit. The UI needs work! | |||
| 2008-12-30 | Add site_status() to the regular Theme_View | Bharat Mediratta | |
| 2008-12-29 | Separate permanent messages out of the message helper and put them | Bharat Mediratta | |
| into site_status. Show site status in the header in the admin theme. | |||
| 2008-12-25 | Ajaxify 'add users' | Felix Rabinovich | |
| 2008-12-24 | Normalize our Admin controllers so that functions always print out | Bharat Mediratta | |
| their results, as opposed to having them return their view back upstream. This is a little more code in every controller, but it's much less magical and more consistent. Look up the active_theme and active_admin_theme inside the view itself, no need to do that in the controllers. This makes view initialization easier in the controllers. | |||
| 2008-12-23 | Reload parent after adding a new item since the left/right pointers have ↵ | Bharat Mediratta | |
| changed. | |||
| 2008-12-22 | Add messaging system for reporting actions back to the user. Make | Bharat Mediratta | |
| module install/uninstall work and tie it into the messaging system. | |||
| 2008-12-22 | Normalize CSRF handling into the access helper. Probably not the best | Bharat Mediratta | |
| place for it, but it'll do for now. Do CSRF checking in the Admin controller so that we're safe across the board on the admin side. | |||
| 2008-12-22 | Add some admin theme callbacks and make them explicitly admin_xxx for ↵ | Bharat Mediratta | |
| consistency with the callbacks in the xxx_block helpers. So in the theme we have: admin.html.php: $theme->admin_page_bottom() then in the helpers: core_block.php: function admin_page_bottom() { } | |||
| 2008-12-20 | Add admin sidebar blocks, and move the stats block into that pattern. | Bharat Mediratta | |
| 2008-12-20 | Create a pattern for admin dashboard blocks and make the "welcome" | Bharat Mediratta | |
| block. | |||
