summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-12-08Rename access::can() to access::group_can()Bharat Mediratta
2008-12-08Ignore gallery_unit_test/views/kohana_*.phpBharat Mediratta
2008-12-08Some minor beautification.Bharat Mediratta
2008-12-08Only add the unit_test and gallery_unit_test modules if we're in TEST_MODEBharat Mediratta
2008-12-08moved erro page from unit_test to gallery_unit_testFelix Rabinovich
2008-12-08moved erro page from unit_test to gallery_unit_testFelix Rabinovich
2008-12-08Refactor Menu code to create allow you to create menus using aBharat Mediratta
chainable factory interface and retrieve them by ids. Streamlined the HTML creation code a little bit in the process, moved the basic menu functionality into Theme_View and created the option to have different menus other than site_navigation().
2008-12-08Show unit test errors as text; not as htmlFelix Rabinovich
2008-12-08Replace protected array and __get() with just class variables. This is ↵Bharat Mediratta
faster and tighter.
2008-12-08Minor cleanups.Bharat Mediratta
2008-12-08Minor cleanups.Bharat Mediratta
2008-12-08Tighten up head()Bharat Mediratta
2008-12-08Restructure Menu processing to respect the differnent types of menu items ↵Tim Almdal
(Menu's, Menu_Link, Menu_Dialog)
2008-12-07Move form.html.php from themes/default/views to core/viewsTim Almdal
2008-12-07correct menu processing such that urls=# aren't given class gDialogLinkTim Almdal
2008-12-07Change the menu processing to add the gDialogLink class if the url starts ↵Tim Almdal
with a #. this results in a modal dialog box being opened. At this point the url is not retrieved and the text just shows up in the dialog box... need to look at that
2008-12-07Changed how drawForms handles hidden fields. I make the assumption that ↵Tim Almdal
hidden fields will never have an error or label so rather then recursing to draw the hidden fields, we just render them. Also moved the hidden fields outside the <ul>.
2008-12-07Remove debugging codeTim Almdal
2008-12-071) Revert the changes to Form_Upload and Form_Textarea, so we don't have to ↵Tim Almdal
change third party code. 2) Change drawForm to check for a non empty $input->class in order to determime if the element should be wrapped in <li>...</li>. If $input->class is empty then treat as a hidden field.
2008-12-07Merge gallery3/branches/menus back into gallery3/trunkTim Almdal
2008-12-071) Change the photo description field to a text areaTim Almdal
2) Added a 'type' data element to both forge/Form_Textarea and forge/Form_Upload The second change allows the drawForm to correctly render both of these elements enclosed in a <li>...</li> html blocl
2008-12-07Finish writing unit tests for Access. No bugs found!Bharat Mediratta
2008-12-07Leave all locking in ORM_MPTT::move_to, don't worry about it inBharat Mediratta
Item_Model::move_to, unless it turns out that we really need to.
2008-12-07Change ORM_MPTT::add_to_parent() to take an ORM instead of an id soBharat Mediratta
that it's consistent with ORM_MPTT::move_to()
2008-12-07Adjust exception text to our normal form.Bharat Mediratta
2008-12-07fix a couple of typos.Bharat Mediratta
2008-12-07Rename moveTo to move_to and extend the test a bit.Bharat Mediratta
2008-12-07Style cleanups to make File_Structure_Test pass.Bharat Mediratta
2008-12-07Yay! Working item upload dialog from the album page! Chad Kieffer
2008-12-07Let dialogs be draggable for now.Chad Kieffer
2008-12-07Fix a bug in the redirect after adding photos.Bharat Mediratta
2008-12-07First go around at reusable modal dialogs. Moved jQuery UI CSS into ↵Chad Kieffer
screen.css, moved default theme JS to js folder. Named jQuery UI files to match the file names as they distribute them. Removed accordion, it's not used yet.
2008-12-07Added title attribute.Chad Kieffer
2008-12-07* Don't call _getadd_photo_html() when we don't have an items table.Bharat Mediratta
* Guard against errors when uninstalling modules that don't have any code left (eg: carousel) * Create the var/uploads dir automatically.
2008-12-06Removed tabs, todo, added descriptionChad Kieffer
2008-12-06Implemented photo::_get_photo_add(). You need to create the var/uploads ↵Tim Almdal
directory and make it writable by the server. The location of the temporary upload directory is specified in config/upload.php
2008-12-06Correct @todo's in Item_ControllerTim Almdal
2008-12-06Switch the slideshow link from text to icon. Chad Kieffer
2008-12-06Add firing comment_added and comment_updated eventsTim Almdal
2008-12-05Fix a bug where any uninstall removed the entire database.Bharat Mediratta
2008-12-05Make sure the pager clears the album grid.Chad Kieffer
2008-12-05Removing carousel. Slideshow and planned album views should cover this ↵Chad Kieffer
functionality
2008-12-05Added album and item view icons (album, hybrid, slideshow, full size). Added ↵Chad Kieffer
"Options" menu placeholder to display item options (add, edit, subscribe, permissions, etc.). Renamed gAlbumHeaderMenu to gItemMenu which can be used on both album and item views.
2008-12-05Don't need to pass the event, it's not used.Chad Kieffer
2008-12-05Read that $("#Selector").length was a good way to check whether an element ↵Chad Kieffer
exists in the DOM/jQuery object.
2008-12-05* Add a moveTo unit testTim Almdal
* Pass the module::event(..., $data) by reference to the handlers
2008-12-05Removed right border off of #Content container, don't need the separation ↵Chad Kieffer
between it and the Sidebar.
2008-12-04Tweak some issues with the moveTo ProcessingTim Almdal
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-04Fix up the test framework to work now that we're only loading installed modulesBharat Mediratta
via the autoloader.