| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-06-27 | Implemented a Database driver for the Kohana Cache library. Rather then ↵ | Tim Almdal | |
| writing our own caching algorithm, we can leverage the Kohana library. This has the added advantage of allowing the administrator to replace the default caching with a 3rd party caching algorithm. | |||
| 2009-06-27 | Merge branch 'master' of git@github.com:gallery/gallery3 | Tim Almdal | |
| 2009-06-27 | Create a new thumb_menu() and convert Digibug over to use it. | Bharat Mediratta | |
| 1) Eliminate digibug_album.html 2) Get rid of the $(document).ready() in digibug.js and rename popUp() to digibug_popup() then just make direct calls to digibug_popup() in the menu urls. | |||
| 2009-06-26 | Implement the combined javascript controller. | Tim Almdal | |
| 2009-06-26 | Create a theme_view function script which allows modules in the head or ↵ | Tim Almdal | |
| admin_head functions to specify javascript files that are required for this page. In this commit, these script files are expressed at the end of the head or admin_head calls and appended to the beginning of the block stack. In a future commit these will be combined and gzipped for download. | |||
| 2009-06-26 | Move the inclusion of photo and movie specific javascript into gallery_theme | Tim Almdal | |
| 2009-06-26 | Change the movie controller to set the page type to "movie". Ticket #467 | Tim Almdal | |
| Signed-off-by: Tim Almdal <tnalmdal@shaw.ca> | |||
| 2009-06-26 | Change the movie controller to set the page type to "movie". Ticket #467 | Tim Almdal | |
| 2009-06-26 | 1) Move the generation of script tags to gallery_theme::head and ↵ | Tim Almdal | |
| gallery_theme::admin_head. This allows us to potentially manage the scripts like we do in g2 (single file and compressed) 2) Change Theme_View::_call to always call the gallery_theme::$function first. | |||
| 2009-06-25 | Go back to the upstream version because we choosed to use real booleans. | Romain LE DISEZ | |
| 2009-06-25 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| 2009-06-24 | Use ENT_QUOTEs when decoding the $current_uri otherwise apostrophes | Bharat Mediratta | |
| are treated as ' which doesn't match in our relative_path_cache. | |||
| 2009-06-24 | Look in /opt/local/bin for binaries, too. | Bharat Mediratta | |
| Fixes ticket #423. | |||
| 2009-06-24 | Remove an useless ORDER BY. | Romain LE DISEZ | |
| It improves compatibility with PgSQL. (Replay of c80d2da0a95a63b76f5a4c835f1a0e1022ec2f53) | |||
| 2009-06-24 | Merge commit 'upstream/master' | Romain LE DISEZ | |
| Conflicts: modules/comment/helpers/comment_installer.php modules/gallery/models/item.php | |||
| 2009-06-23 | Cache the page_type in pane() instead of looking it up twice. | Bharat Mediratta | |
| 2009-06-23 | Fix broken rotate urls. | Bharat Mediratta | |
| 2009-06-23 | Remove stray ? that was breaking ccw rotation. | Bharat Mediratta | |
| 2009-06-23 | Add gDialogLink to the delete button, since its got a jQuery | Bharat Mediratta | |
| confirmation dialog now. This was a regression in fa4bb5b7ac89bbbd0325e5c336c2e9b31f59d12b. Fixes ticket #459. | |||
| 2009-06-23 | Add a new "show credits" check box in the theme options so that you | Bharat Mediratta | |
| can disable any module credits if you want. Update the theme to obey it. | |||
| 2009-06-23 | Fix get_position() to properly deal with duplicate values in the sort ↵ | Bharat Mediratta | |
| column. Fixes #389 | |||
| 2009-06-23 | Escape {$this->sort_column} in get_position() | Bharat Mediratta | |
| 2009-06-23 | Don't allow renaming of the root album. | Bharat Mediratta | |
| 2009-06-23 | Refactor the install/upgrade code to be more flexible. | Bharat Mediratta | |
| Add xxx_installer::upgrade($version) method so that upgrade stanzas are separate from install stanzas. In the old code, to do an upgrade meant that you had to re-evolve everything from the initial install because we'd step through each version's changes. But what we really want is for the initial install to start off in the perfect initial state, and the upgrades to do the work behind the scenes. So now the install() function gets things set up properly the first time, and the upgrade() function does any work to catch you up to the latest code. See gallery_installer.php for a good example. | |||
| 2009-06-23 | Order log entries by id as well so that multiple events in the same | Bharat Mediratta | |
| second are still shown in descending order. | |||
| 2009-06-23 | Use an integer because the code store 0 and 1. It | Romain LE DISEZ | |
| improves compatiblity with PgSQL. The right way is to use a BOOLEAN and code with booleans. The values would be : - FALSE => deny - TRUE => allow - NULL => unknow | |||
| 2009-06-23 | Remove an useless ORDER BY. | Romain LE DISEZ | |
| It improves compatibility with PgSQL. | |||
| 2009-06-22 | Fix css indentation | Bharat Mediratta | |
| 2009-06-22 | Update version comparison to match latest gallery module version | Bharat Mediratta | |
| 2009-06-22 | Updated | Bharat Mediratta | |
| 2009-06-22 | Remove debugging output that was overlooked | Tim Almdal | |
| Signed-off-by: Tim Almdal <tnalmdal@shaw.ca> | |||
| 2009-06-22 | Change the quick pan from static to dynamic. This allows modules to add ↵ | Tim Almdal | |
| buttons to the quick pane. The quick pane is now divided into 4 sections: left, center, right and additional. Additional items appear in the drop down box. Buttons are not sorted within the groupings. In addition, the quick pane will overflow onto the "additional" dropdown if there is not enough room to display all the buttons. The use case is the digibug printing module needed to add a button to the quick pane, and I don't like putting code into core that says if module is active... That's another one of those code smells :-) Signed-off-by: Tim Almdal <tnalmdal@shaw.ca> | |||
| 2009-06-21 | Add Session::abort_save() to Kohana. | Bharat Mediratta | |
| Filed upstream as: http://dev.kohanaphp.com/issues/1801 | |||
| 2009-06-20 | Center the "all done" dialog. Use Jquery and externalize the CSS (I was being | Bharat Mediratta | |
| too conservative before). Fixes ticket #413. | |||
| 2009-06-20 | Fix a bug in gallery_installer where on an initial install we were | Bharat Mediratta | |
| only implementing schema version 1. This caused install.sql to be populated from version 1 which meant that after install you'd have to run the upgrader. No harm done, and the pattern is fixed for the future. Alphabetize the tables so it's easier to find stuff. | |||
| 2009-06-19 | Improve the task dialog | Bharat Mediratta | |
| 1) Put a "starting up..." message before there's any feedback from the server 2) show the title of the task in the dialog. | |||
| 2009-06-18 | Fix format of source message in l10n client (adding a newline between plural ↵ | Andy Staudacher | |
| forms) | |||
| 2009-06-18 | Fix plural messages in l10n scanner - Bad typo lead to basically breaking ↵ | Andy Staudacher | |
| all plural ("other") forms. | |||
| 2009-06-18 | Fix/remove unnecessary escaping of double quotes in l10n scanner. | Andy Staudacher | |
| 2009-06-17 | Correct the "inappropriate intimacy" smell that bharat's refined senses pick up | Tim Almdal | |
| 2009-06-17 | Fix for ticket #366 | Tim Almdal | |
| Move the creation of the setting menu back to gallery_menu::admin, now that there is a mechanism to remove empty menu items | |||
| 2009-06-17 | Fix for ticket #366 | Tim Almdal | |
| 1) Stored the menu element type in the menu element 2) Scanned the menu before display removing any empty sub menus. Went with the removal approach because there will more users than developers | |||
| 2009-06-16 | Merge branch 'master' of git@github.com:gallery/gallery3 | Bharat Mediratta | |
| 2009-06-16 | Fix a bug that was overwriting the quick-pane HTML causing the quick | Bharat Mediratta | |
| panes not to appear. Oops. Bug was introduced in the rss refactor: 1b656be7135efe51ba0eb34d6ac76c2632ec193a | |||
| 2009-06-16 | Change the page.html file so that if the type of page is login, the sidebar ↵ | Tim Almdal | |
| contents are are not shown | |||
| 2009-06-16 | Beautify "Show All" link, and only show when it's not already showing all ↵ | Andy Staudacher | |
| strings | |||
| 2009-06-16 | Merge branch 'master' of git@github.com:gallery/gallery3 | Andy Staudacher | |
| 2009-06-16 | Add option to list *all* l10n messages (that have been indexed) in l10n UI | Andy Staudacher | |
| TODO: The "Show All" link is almost invisible (link color ~= background) | |||
| 2009-06-16 | Add support for uploading .jpeg files (in addition to .jpg) | Bharat Mediratta | |
| Fix for ticket #428 | |||
| 2009-06-16 | Swap Jakob's placeholder in for mine. | Bharat Mediratta | |
