Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-03-17 | Fix correctness issue if there are no tables (list_tables will return null) | Bharat Mediratta | |
Clean out the module caches directly now that the module loading robustness code is gone. | |||
2009-03-17 | Fix minor correctness issues | Bharat Mediratta | |
2009-03-17 | Fix the locale field in the change user settings form | Andy Staudacher | |
2009-03-17 | Fix edit user form handler | Andy Staudacher | |
2009-03-17 | Even out the padding for #gAddPhotosQueue .box | Bharat Mediratta | |
2009-03-17 | Updated lib/swfupload to SWFUpload v2.2.0 Beta 5 | Bharat Mediratta | |
2009-03-17 | Style breadcrumb in photo upload dialog | Chad Kieffer | |
2009-03-17 | rss/updates doesn't have an item. Clean up some typos here. | Bharat Mediratta | |
2009-03-17 | filesize() dies if the file doesn't exist, which can happen in the | Bharat Mediratta | |
case that a gallery is slightly corrupt. In that case, just ignore the error. | |||
2009-03-17 | Make the gAddPhotosCanvas take up the entire dialog, for now. | Bharat Mediratta | |
2009-03-17 | Initialize $tags properly | Bharat Mediratta | |
2009-03-17 | Fix typo: $max_page -> $max_pages | Bharat Mediratta | |
2009-03-17 | Switch from using SimpleUploader to using swfUpload as our flash based | Bharat Mediratta | |
uploader. This is modeled on http://codex.gallery2.org/Gallery3:Upload_UX but is not yet complete. Notes: * Changed #gProgressBar to .gProgressBar to support multiple progress bars on the same page * Added a bunch of CSS to the "needs a home" section in themes/default/css/screen.css | |||
2009-03-17 | Simplify gError, gWarning, gInfo, gSuccess selectors to allow them to be ↵ | Chad Kieffer | |
used within more elements. Updated gError styles in forms. | |||
2009-03-17 | Remove mptt warning message hack | Tim Almdal | |
2009-03-17 | Fix typo: tag_block -> tag_theme | Bharat Mediratta | |
Overlooked when I renamed this class. | |||
2009-03-16 | Oops, I used the wrong resize variables in my last change. | Bharat Mediratta | |
2009-03-16 | Set $item and $tag in the Theme_View so that calls like $theme->item() | Bharat Mediratta | |
which fall through to calling &View::__get() have an lvalue to return, else you can't return them by reference. Also, don't show sidebar blocks for pages that don't have an item so that the rss and tag modules don't break the search page. | |||
2009-03-16 | Get rid of $hidden; it was never defined | Bharat Mediratta | |
2009-03-16 | Switch the locale::$locales data structure to be an array instead of a | Bharat Mediratta | |
stdClass because we're not allowed to asort() stdClass objects in PHP 5.2.6. | |||
2009-03-16 | Fix indentation | Bharat Mediratta | |
2009-03-16 | Fix bug, $active -> $site. | Bharat Mediratta | |
2009-03-16 | Remove unused orig_public_key from the form, it wasn't actually doing ↵ | Bharat Mediratta | |
anything (and was causing an error). | |||
2009-03-16 | Initialize some variables | Bharat Mediratta | |
2009-03-16 | Revive the install() and uninstall() functions in Scaffold_Controller | Bharat Mediratta | |
because we need those to make a package. Fix the packaging code to ignore whatever prefix is being used by the developer who is doing the packaging. Update the install.sql file (there were a variety of small inconsistencies, probably from hand-editing. Don't hand-edit this file!) | |||
2009-03-16 | Set the sort_column and sort_order for the root album | Bharat Mediratta | |
2009-03-16 | Oops, fix a typo. | Bharat Mediratta | |
2009-03-16 | Move security into the constructor. Protecting the index() call is easily ↵ | Bharat Mediratta | |
bypassed. | |||
2009-03-16 | Use a query to get the database version. Newer versions of PHP bomb | Bharat Mediratta | |
if you're using mysqli, and it asks for a connection which we can't easily get from Kohana. | |||
2009-03-16 | Proxy the url through _auth() to user::get_login_form() | Bharat Mediratta | |
2009-03-16 | Get rid of the extra robust code we had in here to make the | Bharat Mediratta | |
scaffolding work when the Gallery wasn't installed yet. Now we force users through the installer. | |||
2009-03-16 | Get rid of obsolete/undefined $block_adder | Bharat Mediratta | |
2009-03-16 | Initialize $result in get_html() | Bharat Mediratta | |
2009-03-16 | Provide an empty sidebar by default | Bharat Mediratta | |
2009-03-16 | Don't count on the uri having 3 components; that breaks on newer versions of ↵ | Bharat Mediratta | |
PHP. | |||
2009-03-16 | Illegal use of $this in static function site(). Replace with $theme. | Bharat Mediratta | |
2009-03-16 | Remove unnecessary __get() function | Bharat Mediratta | |
2009-03-16 | clean up style attr | Bharat Mediratta | |
2009-03-16 | Remove unnecessary slash from url::site() arg. | Bharat Mediratta | |
2009-03-16 | Ticket #97. Applied button css where missing. Minor form css improvements. | Chad Kieffer | |
2009-03-16 | Combined "Logged in as..." and "Modify Profile" to by just "Logged in as ↵ | Chad Kieffer | |
FullName" | |||
2009-03-16 | Missed this in the last commit | Bharat Mediratta | |
2009-03-16 | Clean up the login, maintenance login and required-top-level-login code. | Bharat Mediratta | |
We now have two clear and separate login approaches: login/ajax login/html Choose the one that's appropriate. Totally simplified the maintenance page to be separate from the theme and dead simple, and use login/html approach there. Totally simplified the top level login (login_page.html.php) to just be a login page, not the rest of the chrome on the page and use the login/ajax approach there. Don't use access::required in albums and then catch the exception, instead use access::can and check the return code. Improve the text for maintenance mode. | |||
2009-03-16 | Stop loading jeditable-- we don't use it anymore | Bharat Mediratta | |
2009-03-16 | Thin down the scaffolding code so that all that is there is the test | Tim Almdal | |
data creation and the packaging code. The rest ofthe functionality is either no longer required, or moved to the developer module (MPTT Tree). Also provide checking for the active user to be an admin. | |||
2009-03-16 | Add a new css selector for the high lighting a warning on the MPTT | Tim Almdal | |
graphical display screen in the developer module. | |||
2009-03-15 | ignore the developer directory | Tim Almdal | |
2009-03-15 | Remove automatic load of atom module. | Bharat Mediratta | |
2009-03-15 | Move the start/stop translating menu item to the admin menu | Tim Almdal | |
2009-03-15 | Move atom, developer, polar_rose and gmaps modules into gallery-contrib | Bharat Mediratta | |