summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2009-04-09Create a pause method on the server_add controller and get rid of theTim Almdal
optional parameter/
2009-04-09Fix server add to correctly ignore a authorized path if there are noTim Almdal
files to be uploaded from it.
2009-04-09Here is the current state of "organize". I'm having trouble gettingTim Almdal
drag and drop to work. And to get it to layout properly. Any thoughts would be appreciated.
2009-04-09Fix for ticket 181: don't ignore the locale option when adding usersAndy Staudacher
2009-04-09Fix the spelling of "appearance_menu" and update user_menu so that theBharat Mediratta
user/groups admin menu option appears again.
2009-04-08Fixes issues with Server Add:Tim Almdal
1) Fixes Ticket #208 2) Fixes Ticket #190 3) Fixes an unticketed issue where two items could collide when creating the thumbnail and/or resize. For example, loading a.flv and a.jpg would have generated the same thumbnail image. This change adds a random value to the name to avoid conflicts. 4) Added item::__set() to clear the relative path if the name changes
2009-04-06Fix whitespaceBharat Mediratta
2009-04-06Fix preambleBharat Mediratta
2009-04-06Visually connect the selected album to the album thumbnail grid. Edit item ↵Chad Kieffer
opacity, selected items become opaque.
2009-04-06Hide the "no comments yet" text after the first comment is posted.Bharat Mediratta
Fixes ticket #196.
2009-04-06Fix for ticket #207, which should then generate a whole bunch ofTim Almdal
errors that are described in ticket #208.
2009-04-05Don't do graphics detection in core_installer::install() because thatBharat Mediratta
gets run at scaffolding::package() time, not on the target machine. Instead, create a core module variable to trigger running graphics::choose_default_toolkit() on the first admin login after install. Fixes ticket #206.
2009-04-05Remove extra blank line.Bharat Mediratta
2009-04-05Remove extra blank line.Bharat Mediratta
2009-04-05Remove obsolete code.Bharat Mediratta
2009-04-05Add a weight column to the items model. Change the album ordering toTim Almdal
use this as the default instead of id. This prepares the way for manual reordering in the organize functionality.
2009-04-05Get the preamble right so the unit test passesTim Almdal
2009-04-05Strip trailing nulls off of some tags.Bharat Mediratta
2009-04-05Don't try to insert exif keys if there aren't any.Bharat Mediratta
2009-04-05Optimization: add all exif/iptc keys in a single insert, instead ofBharat Mediratta
many separate queries. In the process, rip out the summary column, we weren't using it. Clean up the test, and drop the exif_records database on uninstall.
2009-04-05Use the optimized version of PicLens to reduce download times ftw!Bharat Mediratta
2009-04-05Change the way we launch PicLensLite so that it doesn't upscale small images.Bharat Mediratta
This resolves ticket #205.
2009-04-03Concatenate chopped up internationalized string.Bharat Mediratta
2009-04-03Clean up JS/HTML so that renaming works properly (it had hardcodedBharat Mediratta
urls before). Clean up indentation and localization code while I'm in there.
2009-04-03Fix for ticket #201. Tim Almdal
1) create common update function so processing consistent between the user edit and admin edit. 2) created common private helper function to build the user edit form the same way. So a user can now change their user name if the new one doesn't exist.
2009-04-03Fix for ticket #200. When an error occurs the current uri is noTim Almdal
longer admin/server_add but admin/server_add/add_path and the equality check fails.
2009-04-03First iteration of the organize functionality (orginally called bulkTim Almdal
edit). There is limited functionality in no edits work. This is primary a chance for the team to review the ui. It is in a separate module to isolate the changes. Eventually, it will be moved back into core.
2009-03-27Put csrf token into Admin_View and Theme_View by default, then use itBharat Mediratta
directly wherever possible instead of access::csrf_token().
2009-03-26Gracefully deal with the case where we resume a stalled task but thereBharat Mediratta
was no work left to be done. This fixes a divide by zero error.
2009-03-25Fix for ticket #184. Sort the output children as DirectoryIteratorTim Almdal
does not provide a sort order. Separate the directory and files, sort them individually and then merge them together so directories are at the top of the list
2009-03-25Fix for ticket #181. Valiant take note of the change toTim Almdal
admin_users.php. I had to remove the check for the locale as it hasn't been added to the form.
2009-03-25tag changes in the tag admin should now work as expectedJakob Hilden
2009-03-24Fix the problem I created by trying to run the task again after it was ↵Tim Almdal
completed.
2009-03-24Add a pause button to the server add dialog and if it is clicked thenTim Almdal
the upload is paused. If the dialog is closed and the task is not complete then a warning message is displayed on the album.
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.