| Age | Commit message (Collapse) | Author |
|
tree and expands it if it's not already expanded.
|
|
|
|
reversed. organize_dialog contains the stuff that pops up in the dialog,
organize_frame contains the stuff that's in the embedded iframe.
|
|
- Add support for dragging a selection box.
Visual improvements;
- The "ghost" selection now has minimized thumbnails so that
you're dragging a smaller div around the screen.
|
|
|
|
Set the min width and min height to what IE8 wants the thumbnail's box
to be when the inner image maxes out at 120 pixels (specified in
Organize_Controller::album_info()).
Avoid using inline-block.
|
|
message.
Add a comment explaining the TreeLoader preload hack.
|
|
thumbnails and using float: left.
|
|
|
|
|
|
|
|
- Fix a bug in the prior commit where we could no longer drag/drop in
the thumb_data_view.
- Change the CSS class when dropping items in the tree panel to be a
check box, not a plus symbol.
|
|
- Restrict drag and drop to albums where the user has edit permissions.
- Use the existing TreeDropZone instead of making a new DropZone to take
advantage of TreeDropZone features.
- Properly use dropConfig in TreePanel.
|
|
of Chrome 10.x.
references:
http://www.sencha.com/forum/showthread.php?117836-3.3.1-Invalid-regular-expression
http://code.google.com/p/v8/source/detail?r=5911
http://trac.webkit.org/changeset/73594
http://codereview.chromium.org/5703001/
This change has been reverted in Chrome, and the regex was fixed in ExtJS so
this patch should be short lived.
|
|
|
|
a little cleaner.
|
|
|
|
- Let the thumb data view scroll on drag/drop
- Switch the album panel to be a FitLayout and use a title and
bbar instead of nested panels.
- Set the tree_panel width to be 200px to start.
|
|
|
|
|
|
JavaScript library. It's got all the functionality from the Flash
version except it doesn't support creating new albums or uploading
photos.
Only tested in Chrome 10.0.x so far.
|
|
try to use $(this).data("reload.location") if it hasn't been set,
which can happen if Flash isn't available. Fixes #1362
|
|
color not the border color.
|
|
full url of the current album(non-REST). When the dialog is closed the window location is set to this value and the page gets loaded appropriately.
|
|
|
|
uploader for convenient localization.
|
|
see if the loaded item is the requested item.
|
|
see if the loaded item is the requested item.
|
|
the l10n_scanner cannot parse it properly and drops those from the
localization list. Fixes ticket #1284.
|
|
http://github.com/gallery/gallery3-flex/commit/1e42ddf6574d7632474b8cfbd5b9171a9bb53552
which contains fixes for both #1174 and #1305.
|
|
This commit reintroduces the bug in https://sourceforge.net/apps/trac/gallery/ticket/1305
This reverts commit efa1fce9de1acc126ce0f2f607cf568e1f6a43af.
|
|
|
|
the organize module to 2 in 8fb56abf034dd1f5c561e7af12bf6e097a3de6f6
|
|
a call to Organize with the appropriate album open. I have not yet
figured out how to get the SWF code to highlight the active image, but
that's coming. Partial fix for #1204.
|
|
http://github.com/gallery/gallery3-flex/commit/88efbd77b45ae888b035295a8034229c645267c2
|
|
sending the wrong custom headers back. Fixed the names of the headers
to be slightly more meta. Fixes #1305
Implemented in gallery3-flex bea5f67efa93a3921eec8cd03a15d68f513f1dc0
|
|
|
|
back to the same canonical domain that we came from. Else Flash makes
crossdomain.xml requests, fails, and falls over.
Fixes ticket #1298.
|
|
|
|
by the following rules:
1) An initial dialog or panel load can take either HTML or JSON, but
the mime type must accurately reflect its payload.
2) dialog form submits can handle a pure HTML response, but the mime
type must also be correct. This properly resolves the problem
where the reauth code gets a JSON response first from the reauth
code, and then an HTML response when you reauth and continue on to
a given form -- try it out with Admin > Settings > Advanced.
3) All JSON replies must set the mime type correctly. The json::reply
convenience function does this for us.
4) By default, any HTML content sent back in the JSON response should be
in the "html" field, no longer the "form" field.
The combination of these allows us to stop doing boilerplate code like
this in our controllers:
// Print our view, JSON encoded
json::reply(array("form" => (string) $view));
instead, controllers can just return HTML, eg:
// Print our view
print $view;
That's much more intuitive for developers.
|
|
method to set the content type header and encode the response as a json object
|
|
file. Fixes ticket #1241."
This breaks organize on Chrome 5 (Linux) and Chrome 6 (OSX). See ticket #1241.
This reverts commit 423fca2d5ffca1e953694793ad118589db1756d0.
|
|
Not sure why it was done in JS in the first place. Fixes ticket #1256.
|
|
|
|
Fixes ticket #1241.
|
|
use it in the internationalized string. Fix capitalization.
|
|
message and a button to download the latest version if the minimum versiion is not installed.
|
|
|
|
|
|
dialog. Convert all the controllers
that create the data to go into a dialog to return the html as part of a json object.
|