Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add items and add albums are now working. What still needs to be done…
… is add a progress bar for longer running tasks
  • Loading branch information
Tim Almdal committed May 20, 2010
1 parent f9cbff9 commit e4ff302
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/organize/controllers/organize.php
Expand Up @@ -28,8 +28,10 @@ function dialog($album_id) {
$v = new View("organize_dialog.html");
$v->album = $album;
// @todo turn this into an api call.
$v->file_filter = json_encode(array("Images" => "*.jpg; *.jpeg; *.gif; *.png",
"Movies" => "*.flv; *.mp4"));
$v->file_filter = json_encode(
array("photo" => array("label" => "Images",
"types" => array("*.jpg", "*.jpeg", "*.png", "*.gif")),
"movie" => array("label" => "Movies", "types" => array("*.flv", "*.mp4"))));
$v->domain = $input->server("SERVER_NAME");
// @todo figure out how to connect this w/o a dependency
$v->base_url = url::abs_site("rest") . "/";
Expand Down
Binary file modified modules/organize/lib/Gallery3WebClient.swf
Binary file not shown.
Binary file modified modules/organize/source/Gallery3Organize_source.zip
Binary file not shown.

0 comments on commit e4ff302

Please sign in to comment.