| Age | Commit message (Collapse) | Author | 
 | 
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
 | 
 | 
1) We don't need to loop over the elements to bind the event handler.
2) Just include gallery.panel.js for all the admin pages.
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
 | 
 | 
children(), thanks Tim!
 | 
 | 
remove Gallery3 concepts from ORM_MPTT.
The following API methods:
  ORM_MPTT::children
  ORM_MPTT::children_count
  ORM_MPTT::descendants
  ORM_MPTT::descendants_count
All now take a $where clause that allow you to pass through additional
field parameters.
old API:
  $album->children(10, 0, "photos")
  $album->children_count("photos")
new API:
  $album->children(10, 0, array("type" => "photos"))
  $album->children_count(array("type" => "photos"))
This gives us a more flexible API and simplifies the code.  While I
was in there, I changed the way we deal with default orderby values so
that we just assign the default value in the function definition,
which allows us to get rid of all conditionals in the implementation
which results in simpler code.
 | 
 | 
This reverts commit 1f014aae6c16bbda62d8f5937180f11ccb0eb1b1.
 | 
 | 
 | 
 | 
specify a type parameter, so tht we can filter the children based
on type (i.e. album, photo, etc).
In addition, expose the sort order, so that we can specify the order
we want to return the children.
 | 
 | 
 | 
 | 
log for maximum exposure.
 | 
 | 
 | 
 | 
Old API:  $obj->original("field_name")
  New API:  $obj->original()->field_name
This allows us to revert the varous xxx_updated events back to passing
an original ORM as well as the the updated one.  This makes for a
cleaner event API.
  Old API:  comment_updated($comment) { $comment->original("field_name") }
  Old API:  comment_updated($old, $new) { $old->field_name }
 | 
 | 
 | 
 | 
graphics_resize
  graphics_resize_completed
  graphics_rotate
  graphics_rotate_completed
  graphics_composite
  graphics_composite_completed
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
we're doing an initial install.
 | 
 | 
 | 
 | 
Conflicts:
	modules/gallery/models/item.php
 | 
 | 
View.  This allows modules to piggyback on it.
 | 
 | 
but change it to use Database instead of ORM for a little more
efficiency.
 | 
 | 
 | 
 | 
 | 
 | 
 | 
 | 
Add a weight index to the item table and changed the retrieval of the maximum
weight to select weight from items order by weight desc limit 1.
Upgrades the gallery module to version 10
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
 | 
 | 
Add a weight index to the item table and changed the retrieval of the maximum
weight to select weight from items order by weight desc limit 1.
Upgrades the gallery module to version 10
 | 
 | 
 | 
 | 
updates to get smoother scrolling.
 | 
 | 
 | 
 | 
 | 
 | 
can call admin_menu.
 | 
 | 
progressbar trucks along slowly even though the task is done).
 | 
 | 
xxx_search helpers and into xxx_event helpers.
 | 
 | 
This is the first step towards having a simple, lightweight and
unified API for module interaction.
 | 
 | 
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
 | 
 | 
 | 
 | 
tag_event:item_edit_form to use the new Form_Script library to inject
script into a form.
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
 | 
 | 
tag_event:item_edit_form to use the new Form_Script library to inject
script into a form.
 | 
 | 
of either a url to a script file or in line text which will be included
in a script block.
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
 | 
 | 
of either a url to a script file or in line text which will be included
in a script block.
 | 
 | 
 | 
 | 
get_position(), and instead apply an ORDER BY on `id` in the 2nd query
so that we have stability among the equal elements.  This should
result in cheaper (and more sensible) queries.
 | 
 | 
javascript lib (gallery.reload.js) which defines the functions
gallery_reload() and gallery_location(new_location).  They just
do a window.location.reload() and window.location = new_location.
This change breaks the assumption that all themes will handle page reloads
the same and allows the theme to customize the page refresh.
 | 
 | 
 | 
 | 
 | 
 | 
This reverts commit c80d2da0a95a63b76f5a4c835f1a0e1022ec2f53.
Conflicts:
	modules/gallery/models/item.php
 | 
 | 
This reverts commit 809e52d80cbf3beb75b238fddb0da3951fb9a8e7.
 | 
 | 
Revert "Changed access::user_can to force the owner of an item to have"
This reverts commit 0b97cfd6f098be08be5f3cf1dbca1cce580ae330.
 |