summaryrefslogtreecommitdiff
path: root/modules/rearrange
AgeCommit message (Collapse)Author
2009-01-25Delete the rearrange module; it's been subsumed by the move controllerBharat Mediratta
2009-01-18Rename theme callback helpers from xxx_block to xxx_theme to make roomBharat Mediratta
for us to rename the dashboard helper to be a block helper since sidebar blocks are not just in the dashboard.
2009-01-14Make sure that helper functions are all static. Add newBharat Mediratta
File_Structure_Test to make sure we don't regress. According to the PHP docs, the "public" keyword is implied on static functions, so remove it. Also, require private static functions to start with an _. http://php.net/manual/en/language.oop5.visibility.php
2009-01-01Change the preamble for views in two ways:Bharat Mediratta
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
2008-12-22Change the way that we track modules.Bharat Mediratta
Each module now has a "module.info" file that has information about the module, including the core. We can display the installed version, and the version in the code. Also take a first shot at a modules admin page.
2008-12-15Fix the reference to jquery-ui.packed.jsTim Almdal
2008-12-11Add the base url to the rearrange ajax call back scriptTim Almdal
2008-12-09Combine all the ui.jquery files into a single packed file at version ↵Tim Almdal
(1.6rc2) copied from the the corresponding vendor branch. Move into the application/lib directory and remove from the theme. Remove the ui.jquery javascript from the rearrange module and use the common library.
2008-12-07Rename moveTo to move_to and extend the test a bit.Bharat Mediratta
2008-12-04Moving albums around with a drag and drop interface seems to work and ↵Tim Almdal
preserve the left right pointers. * changed _lock and _unlock to protected methods lock and lock respectively * added a moveTo method on the Item_Model * Corrected the hole closure on delete. * added moveTo on the ORM_MTPP class * Changed the rearrange javascript to do moves with ajax
2008-12-04remove unused ->rootTim Almdal
2008-12-04Get rid of the rearrange helper as the code could be inlinedTim Almdal
2008-12-04Remove an resemblence to a RESTful controller from Rearrange_ControllerTim Almdal
2008-12-04style updatesBharat Mediratta
2008-12-03Drag and drop seems to work in the rearrange moduleTim Almdal
2008-12-03Fix errors in the preambleBharat Mediratta
2008-12-02The rearrange module will now add an album if you drag the "new album" onto ↵Tim Almdal
the album tree. I haven't had a chance to figure out why the form does get any styling or why a textarea is no included as a list item.
2008-12-01Turn <div/> into <div></div> to make Chrome happy.Bharat Mediratta
2008-12-01Add missing closing >Bharat Mediratta
2008-12-01Drag and Drop is starting to work. You can drag the New Album over any of ↵Tim Almdal
the directorys and it will be allowed. Drag anything over New Album and it will return. You can drag an tree item except the root over the delete icon and it will be accepted. Now I need to build the ajax and server side functionality the at allows this to all work.
2008-12-01Fix the fact that the tree wouldn't show up... just a wee bit overly ↵Tim Almdal
aggressive in cleaning up what i thought was unused files
2008-12-01New Rearrange gui based on jqueryFileTree ↵Tim Almdal
(http://www.abeautifulsite.net/notebook.php?article=58). I like the look of this one better. Still need to implement the drag and drop functionality.
2008-11-29The gui part of rearranging albums and photos on the welcome page. Haven't ↵Tim Almdal
finished the ajax back end to actually do the move, but thought i'd put the gui up so people can play
2008-11-28The start of a rearrange moduleTim Almdal