summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2009-03-21Refactor all translation strings that have ambiguous placeholders.Andy Staudacher
E.g. "%link_startClick here%link_end" is now '<a href="%url">Click here</a>'. Note: This isn't always the best solution. E.g. consider "Foo <a href='%url' class='gDialogLink'>bar</a>." Now the translator has to deal with preserving CSS classes too...
2009-03-19Rejigger the way we do reinstalls while Kohana is running.Bharat Mediratta
core_installer::install() now takes an $initial_install param that allows us to enforce that we're doing a clean install. Use this in both the scaffolding and the unit test code. Greatly simplify the scaffolding uninstall/reinstall code.
2009-03-18Remove back ticks from sqlTim Almdal
2009-03-18Forgot to remove a back tickTim Almdal
2009-03-18Couple of sql statements that had incorrect prefix handling or noTim Almdal
prefix handling.
2009-03-17Remove the in-place tag editing code from the default theme. ItBharat Mediratta
should be implemented in the tags module for now, and then possibly generalized out to lib later on.
2009-03-17Don't allow empty tag namesBharat Mediratta
2009-03-17Fix 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-17Fix the locale field in the change user settings formAndy Staudacher
2009-03-17Fix edit user form handlerAndy Staudacher
2009-03-17rss/updates doesn't have an item. Clean up some typos here.Bharat Mediratta
2009-03-17filesize() dies if the file doesn't exist, which can happen in theBharat Mediratta
case that a gallery is slightly corrupt. In that case, just ignore the error.
2009-03-17Initialize $tags properlyBharat Mediratta
2009-03-17Fix typo: $max_page -> $max_pagesBharat Mediratta
2009-03-17Switch from using SimpleUploader to using swfUpload as our flash basedBharat 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-17Fix typo: tag_block -> tag_themeBharat Mediratta
Overlooked when I renamed this class.
2009-03-16Set $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-16Get rid of $hidden; it was never definedBharat Mediratta
2009-03-16Switch the locale::$locales data structure to be an array instead of aBharat Mediratta
stdClass because we're not allowed to asort() stdClass objects in PHP 5.2.6.
2009-03-16Fix indentationBharat Mediratta
2009-03-16Remove unused orig_public_key from the form, it wasn't actually doing ↵Bharat Mediratta
anything (and was causing an error).
2009-03-16Proxy the url through _auth() to user::get_login_form()Bharat Mediratta
2009-03-16Get rid of the extra robust code we had in here to make theBharat Mediratta
scaffolding work when the Gallery wasn't installed yet. Now we force users through the installer.
2009-03-16clean up style attrBharat Mediratta
2009-03-16Remove unnecessary slash from url::site() arg.Bharat Mediratta
2009-03-16Ticket #97. Applied button css where missing. Minor form css improvements.Chad Kieffer
2009-03-16Combined "Logged in as..." and "Modify Profile" to by just "Logged in as ↵Chad Kieffer
FullName"
2009-03-16Missed this in the last commitBharat Mediratta
2009-03-16Clean 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-16Stop loading jeditable-- we don't use it anymoreBharat Mediratta
2009-03-15Move atom, developer, polar_rose and gmaps modules into gallery-contribBharat Mediratta
2009-03-15Move profiling and debugging out of the scaffolding and into theTim Almdal
developer module.
2009-03-15Updates to the developer tool create module.Tim Almdal
It now creates a fully functional sidebar block, a dialog pop up on the option menu for albums or photos, a dashboard block and an admin screen.
2009-03-15Refactored the developer module. When a new module is generated aTim Almdal
skeleton adminstration page is generated as well. @todo is still generate a skeleton block and a skeleton dialog.
2009-03-14Use relative urls for the feed links.Bharat Mediratta
2009-03-14* remove debug codeTim Almdal
2009-03-14* Allow module names with spacesTim Almdal
* remove debug code
2009-03-13The first incarnation of the developer tools. This allows the user toTim Almdal
enter a module name, a description and pick the call backs and or events they want to support and generate the basic module skeleton with one click. @todo: clone a module, clone a theme, generate skeleton controller, view,
2009-03-13Make the exif_key value size 1kBharat Mediratta
2009-03-12Move the setting of the page title into the controller that isTim Almdal
creating the page. Provide for a default page title if none is set. This allows less changes to page.html.php as different modules want to change the page title.
2009-03-12Rename tag.html.php to dynamic.html.php as part of ticket #115Tim Almdal
creating Dynamic Albums. This name change reflects the usage better and allows multiple dynamic albums (including tags) to use the same page template.
2009-03-12Strip down the loin page (not sure if this is what bharat had in mind)Tim Almdal
2009-03-11Bag the header("Location:", ...);exit() and replace withTim Almdal
url:site(url::abs_file(...)) Create a login_page.html to be used when there is no guest access to the root album. It doesn't have a sidebar nor breadcrumb.
2009-03-11Fix ticket #119. Display the full name of the user in the same blockTim Almdal
as the Modify profile and logout links.
2009-03-11Force a login if everybody does not have access to the rootTim Almdal
item. ticket #118.
2009-03-11Refine the task api but removing the optional parameters on theTim Almdal
task::create method call
2009-03-10Refactor the server add module to make use of the task api (TicketTim Almdal
#125). Haven't quite figured out what to do with the errors in the context. Maybe they should show on the mainenance screen?
2009-03-10access::allow/deny/reset functions will now throw an exception if youBharat Mediratta
don't pass in a Group_Model as the argument. This prevents us from setting permissions on the wrong group by accidentally passing in a User_Model.
2009-03-09Fix for ticket #135Tim Almdal
2009-03-09Fix for ticket #133: If $max_pages is zero don't try to redirect toTim Almdal
max_page, just return an empty feed.