Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-16 | slap my wrist... i forgot a debugging statement | Tim Almdal | |
2010-06-16 | Fix for ticket #1131. If the rss feed is for an item, then retrieve the ↵ | Tim Almdal | |
item. Using the left and right pointers find all the comments for the child items. Thanks to jankoprowski for the initial investigation. | |||
2010-06-15 | Fix a bug in the upgrader where we weren't bumping the version number | Bharat Mediratta | |
during the upgrade path, so the 2nd stanza (version 2 to version 3) was never getting executed. | |||
2010-06-05 | Create a UI under Admin > Settings > Comments where you can limit | Bharat Mediratta | |
comments only to registered users. It's simplistic, but is better than adding a permission since generally this setting will be used Gallery-wide. Fixes ticket #1002 | |||
2010-05-16 | Rename the admin_comments view to admin_manage_comments to match the controller. | Bharat Mediratta | |
2010-05-16 | Rename admin/comments to admin/manage_comments to make room for | Bharat Mediratta | |
admin/comments to be a settings page. | |||
2010-05-14 | Require a well-formed email address for all comments. | Bharat Mediratta | |
2010-04-30 | Add page_title to admin views. Closes #1038. | ckieffer | |
2010-04-21 | Comment updates. Add empty <li> to empty <ul> for HTML validation, fixes ↵ | Chad Kieffer | |
#1066. Minor CSS/JS fixes. Add scrollTo effect when clicking on 'Add a Comment'. | |||
2010-03-03 | Update the copyright to 2010. It's only 3 months into the year :-) | Bharat Mediratta | |
2010-02-23 | Reset the active user to admin in all test cases where we change the | Bharat Mediratta | |
user to something else. | |||
2010-02-18 | Don't need 'right' class here. Positioning is absolute to the right. | Chad Kieffer | |
2010-02-14 | HTML validation, avoid empty <ul> | Andy Staudacher | |
2010-01-31 | Fix lots of warnings that pop up when we're in E_STRICT mode. They're | Bharat Mediratta | |
mostly issues around uninitialized variables, calling non-static functions in a static context, calling Session functions directly instead of on its singleton, passing non-variables by reference, and subclasses not using the same interface as the parent class. | |||
2010-01-29 | Strongly type the argument list to the model::validate method. | Tim Almdal | |
2010-01-28 | Don't show a link to the user profile for the guest user | Tim Almdal | |
2010-01-27 | Localize validation messages. | Bharat Mediratta | |
2010-01-27 | Localize error messages. | Bharat Mediratta | |
2010-01-27 | Convert back to using ORM::factory(..., $id) instead of calling where(). | Bharat Mediratta | |
2010-01-25 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
Conflicts: modules/gallery/libraries/MY_ORM.php | |||
2010-01-24 | Refactor creating the user profile page content into the the event module. ↵ | Tim Almdal | |
The show_user_profile is used to provide content to the user profile page. Add the list of the users comments to the profile page. | |||
2010-01-23 | Create a user profile page that is used as a landing page when referencing a ↵ | Tim Almdal | |
user in messages or pages. Partial fix for ticket #889 and a fix for #931. | |||
2010-01-23 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
Conflicts: modules/gallery/tests/xss_data.txt | |||
2010-01-22 | Treat identity providers just like other modules and use the admin_module to | Tim Almdal | |
install and switch to a different identity provider. | |||
2010-01-20 | Stop using MY_ORM::original(). | Bharat Mediratta | |
2010-01-19 | Extend Gallery_Unit_Test_Case instead of Unit_Test_Case. | Bharat Mediratta | |
2010-01-17 | Updated for model based validation. | Bharat Mediratta | |
2010-01-17 | Updated for model based validation. | Bharat Mediratta | |
2010-01-17 | Add validation for guest_email and guest_url. | Bharat Mediratta | |
2010-01-17 | Updated for model based validation. | Bharat Mediratta | |
2010-01-17 | Move rules down into validate() and improve valid_author(). | Bharat Mediratta | |
2010-01-16 | Convert comment code over to model based validation. | Bharat Mediratta | |
2010-01-16 | Don't pass MY_ORM::original() to update event handlers, since after | Bharat Mediratta | |
parent::save() it'll be reset. Clone it first. This is an alternate fix for #978. | |||
2010-01-09 | Fix for ticket #972 and more. In Kohana 2.4, ORM::delete_all ignores any where | Tim Almdal | |
clauses and deletes all the entries in the table unless an array of id's are passed as the parameter. This fix used the Database_builder to specify any where conditions. Thanks psvo for find the first one. :-) | |||
2009-12-21 | Add missing execute() call -- tests ftw! | Bharat Mediratta | |
2009-12-21 | Updated for K24 | Bharat Mediratta | |
2009-12-06 | Update database queries. | Bharat Mediratta | |
2009-11-26 | Convert some more Database::instance() calls to db::build() form. | Bharat Mediratta | |
2009-11-26 | Convert another Database::instance() query over to using db::build() | Bharat Mediratta | |
2009-11-26 | Modify the expiration code to work with db::build() | Bharat Mediratta | |
2009-11-26 | Convert all DB where() calls to take 3 arguments. | Bharat Mediratta | |
Convert all open_paren() calls to and_open() or or_open() as appropriate. | |||
2009-11-25 | ORM::orderby -> ORM::order_by | Bharat Mediratta | |
2009-11-25 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
Conflicts: modules/gallery/controllers/rest.php | |||
2009-11-25 | Preliminary work to cut over to Kohana 2.4 | Bharat Mediratta | |
- Kohana::log() -> Kohana_Log::add() - Kohana::config_XXX -> Kohana_Config::instance()->XXX - Implement View::set_global in MY_View - Updated Cache_Database_Driver to latest APIs - ORM::$loaded -> ORM::loaded() - Updated item::viewable() to use K2.4 parenthesization | |||
2009-11-25 | Refactor the comment module as part of ticket: #917 "Remove Rest Controller" | Tim Almdal | |
* Remove the methods create, update, delete, get_edit_form as there are not used * Change the return when a comment is created to return the html for the new comment. This saves a second get request to down load the comment. | |||
2009-11-18 | Rename g-pager to g-paginator after the recent pagination update. | Chad Kieffer | |
2009-11-17 | Redesign the way that we consider page types to create buckets of page | Bharat Mediratta | |
types, and a subtype for specifics. Currently the top level bucket collection, item, other Here are the core subtypes so far: collection: album, search, tag item: movie, photo other: login, reset, comment-fragment, comment It's legal to create new page_subtypes whenever you want. Use the appropriate page_type to get the coarse grain behavior that you want. | |||
2009-11-16 | Make sure that we have a valid resource from the server side before we | Bharat Mediratta | |
fetch its url. Fixes ticket #888. | |||
2009-11-15 | Fix ticket 890 (related to 879): Don't double-escape menu labels on the ↵ | Andy Staudacher | |
comment admin screen. | |||
2009-11-15 | Use text::alternate() instead of hand-rolled even/odd code. | Bharat Mediratta | |