| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-01-13 | Did the old commit then save trick | Tim Almdal | |
| 2010-01-13 | Fix for ticket #978. Don't reset the original property as part of the save ↵ | Tim Almdal | |
| processing, because that will overwrite the original values with all the new values. The problem with the original approach is that when changed event handlers used ->original(), it had already been reset as part of the save processing. Went back and forth on either leaving this alone and forcing callers to save the original prior to calling the save function, but there were a few event handlers that used ->original(). This seemed the easier change. So to reset the original you need to call reload() or clear(). There is now an optional parameter on the reload to only reload the original. | |||
| 2010-01-08 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| 2010-01-08 | Remove stray semicolons. | Bharat Mediratta | |
| 2010-01-08 | Remove the display of the "body_attributes" div when in debug mode. debug ↵ | Tim Almdal | |
| mode is by default set up to add new div's to display the location of the content. "body_attributes" are attributes on the body tag and trying to add content introduces an extra > in the html stream. | |||
| 2010-01-08 | Expect merge_where and merge_or_where to handle empty tuples. | Bharat Mediratta | |
| 2009-12-27 | Fix a bug where we weren't replacing table names when there's no | Bharat Mediratta | |
| prefix. This is wrong because even when there's no prefix we have to get rid of the {curly} braces. | |||
| 2009-12-22 | Don't use as_array() on the result from db::build()->execute() -- it's no ↵ | Bharat Mediratta | |
| longer necessary. | |||
| 2009-12-22 | The default value for $offset should always be null (according to the | Bharat Mediratta | |
| new K24 ORM). Fix up a bad where tuple in the test. | |||
| 2009-12-21 | Updates for the latest version of Kohana 2.4: | Bharat Mediratta | |
| 1) Controller::$input is gone -- use Input::instance() now 2) Handle new 'database.<default>.connection.params' parameter 3) Handle new 'cache.<default>.prefix' parameter | |||
| 2009-12-21 | Fix some bugs in the cache database driver, and update the tests for K24. | Bharat Mediratta | |
| 2009-12-21 | Add Database::set_default_instance() for tests | Bharat Mediratta | |
| 2009-12-17 | Simplify add_table_prefixes. In Kohana 2.4, it returns the bare table | Bharat Mediratta | |
| name, not the prefixed one so this makes our logic easier. | |||
| 2009-12-06 | Add the current file/line at the top of the trace. | Bharat Mediratta | |
| 2009-12-06 | Overload Kohana_Exception::text() to dump out the complete stack trace | Bharat Mediratta | |
| so that we have useful data in the logs. | |||
| 2009-12-06 | Oops, removed the overload for query() before, we need this back so | Bharat Mediratta | |
| that we can prefix table names properly. | |||
| 2009-12-05 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| 2009-12-04 | Reload relevant models after acquiring a lock so that we don't make | Bharat Mediratta | |
| database calls based on obsolete data, which can lead to data corruption. Fixes ticket #926. | |||
| 2009-12-02 | Rename the "upload_limit" variable to "simultaneous_upload_limit" for | Bharat Mediratta | |
| clarity, since it only limits concurrency not the number of actual uploads. Move the default-setting code into the upgrader so that we avoid creating the variable as a side-effect of the view (personal preference to avoid side-effect code since it's led to problems in the past). | |||
| 2009-12-02 | Allow users to override the number of simulatenous uploads. This setting ↵ | Tim Almdal | |
| won't appear until after they have attempted to upload at least once and have issues. | |||
| 2009-12-02 | Use select() instead of select("*") | Bharat Mediratta | |
| 2009-12-02 | Convert more database calls over to the new format | Bharat Mediratta | |
| - admin/maintenance page loads, the rebuild thumbs/resizes task works - Fixed up some conversion bugs in the Cache driver | |||
| 2009-11-29 | Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_dev | Bharat Mediratta | |
| Conflicts: modules/gallery/helpers/theme.php modules/gallery/libraries/Admin_View.php modules/gallery/libraries/Theme_View.php | |||
| 2009-11-28 | Give the theme a chance to handle theme function callbacks as well. | Bharat Mediratta | |
| 2009-11-27 | Move the theme fallback checking into theme::load_themes() so that | Bharat Mediratta | |
| we're calling it once per request. | |||
| 2009-11-26 | Convert some more Database::instance() calls to db::build() form. | Bharat Mediratta | |
| 2009-11-26 | ORM::find_all() now uses null as the default value for offset. | Bharat Mediratta | |
| 2009-11-26 | Overload Database_Builder to add merge_where() which takes predefined | Bharat Mediratta | |
| where clauses and adds them to the existing query. Update all existing queries that take an additional where clause to use it. | |||
| 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-26 | ORM::$rules now has a special meaning. Use $form_rules for our | Bharat Mediratta | |
| internal rules code. | |||
| 2009-11-25 | Move the CSRF initialization into the constructor, I don't see why we | Bharat Mediratta | |
| need it also in render(). | |||
| 2009-11-25 | Make globals work if you access the the variables directly with | Bharat Mediratta | |
| $v->foo instead of doing it in a rendered template. | |||
| 2009-11-25 | Fix set_global() to be more elegant and preserve local trumping | Bharat Mediratta | |
| 2009-11-25 | Switch from stdClass to arrays for global data. | Bharat Mediratta | |
| 2009-11-25 | Call execute() after upate() and insert(). | Bharat Mediratta | |
| 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-24 | K2.4 has its own parentheses support | Bharat Mediratta | |
| 2009-11-24 | Rename I18n to Gallery_I18n to avoid conflict with Kohana 2.4 | Bharat Mediratta | |
| 2009-11-21 | Don't use realpath when calculating the relative paths of embedded ↵ | Tim Almdal | |
| references in css files. This fixes ticket #910 | |||
| 2009-11-20 | Paginator: don't try to set the position for "other" page types. | Bharat Mediratta | |
| 2009-11-20 | Convert the Simple Uploader form over to Forge, and use the event | Bharat Mediratta | |
| model to let the Tags module modify it. This brings it inline with our other module-extensible form based interactions. | |||
| 2009-11-19 | Revert "Create theme::get_var(), theme::set_var() methods to set the options ↵ | Tim Almdal | |
| of the active site theme. Change all refrences to theme options to use these methods. Update the version number of Gallery to 20 and move any them related options to the be stored under the active theme." This reverts commit 26114972c3388f065220b94a0d5962f20a6ccd0c. | |||
| 2009-11-18 | Create theme::get_var(), theme::set_var() methods to set the options of the ↵ | Tim Almdal | |
| active site theme. Change all refrences to theme options to use these methods. Update the version number of Gallery to 20 and move any them related options to the be stored under the active theme. | |||
| 2009-11-18 | For album pagination, don't let the last_visible_position exceed the | Bharat Mediratta | |
| total. Fixes ticket #903. | |||
| 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 | If an empty array is passed into set method, then make sure the tag value ↵ | Tim Almdal | |
| being stored in the database is null, not "Array" | |||
| 2009-11-15 | Fix a couple of errors in the refctored paginator code: | Bharat Mediratta | |
| 1) We weren't showing previous page links for albums when we should have 2) We needed to wrap the results of url::merge() in url::site() so that we generate server-relative urls. | |||
| 2009-11-14 | Oops. Fix a typo that the forced page_type to always be "tag" | Bharat Mediratta | |
| 2009-11-14 | Fix pagination so that it does not require any domain specific logic | Bharat Mediratta | |
| to support tags and search. Instead, just modify the page param to the current page. | |||
| 2009-11-14 | Rename "pager" to "paginator" so that we differentiate page.html.php | Bharat Mediratta | |
| from paginator.html.php | |||
