| Age | Commit message (Collapse) | Author |
|
buttons to the
quick pane. The quick pane is now divided into 4 sections: left, center, right and
additional. Additional items appear in the drop down box. Buttons are not sorted
within the groupings.
In addition, the quick pane will overflow onto the "additional" dropdown if there is not
enough room to display all the buttons.
The use case is the digibug printing module needed to add a button to the quick pane, and
I don't like putting code into core that says if module is active... That's another one
of those code smells :-)
Signed-off-by: Tim Almdal <tnalmdal@shaw.ca>
|
|
too conservative before). Fixes ticket #413.
|
|
1) Put a "starting up..." message before there's any feedback from the server
2) show the title of the task in the dialog.
|
|
forms)
|
|
strings
|
|
TODO: The "Show All" link is almost invisible (link color ~= background)
|
|
|
|
|
|
functions that format a unix timestamp into a date+time/date/time
string.
Partial fix for ticket #347.
|
|
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
|
|
68fd196d66e2d21f571ff3b5a673f18cd129abf9 leaving us in a temporarily
broken state.
|
|
without using our regular code paths.
|
|
mod_rewrite installed.
|
|
|
|
|
|
upgrade is complete.
|
|
|
|
* made only the block headers draggable, so that the rest of the block could be normal
* this should fix bug #292
|
|
|
|
|
|
|
|
|
|
|
|
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
|
|
|
|
|
|
|
|
|
|
long strings show up only on one line.
|
|
Internationalize the admin dashboard common title.
|
|
Removed the <br/> though since we're trying to avoid structural HTML
in internationalized strings.
|
|
Merge branch 'master' of git@github.com:gallery/gallery3
Conflicts:
modules/gallery/views/simple_uploader.html.php
|
|
|
|
size shorthand, and convert the simple_uploader code to use it.
|
|
* now users get an error when they try to upload too big files
* this should fix bug #337
* maybe it also needs to check for max_post_size
|
|
|
|
Ticket 148.
|
|
and verifying user permissions, but there are several above-the-bar
changes:
1) Server add is now only available to admins. This is a hard
requirement because we have to limit server access (eg:
server_add::children) to a user subset and the current permission
model doesn't include that. Easiest fix is to restrict to admins.
Got rid of the server_add permission.
2) We now know check permissions at every level, which means in
controllers AND in helpers. This "belt and suspenders" approach will
give us defense in depth in case we overlook it in one area.
3) We now do CSRF checking in every controller method that changes the
code, in addition to the Forge auto-check. Again, defense in depth
and it makes scanning the code for security much simpler.
4) Moved Simple_Uploader_Controller::convert_filename_to_title to
item:convert_filename_to_title
5) Fixed a bug in sending notification emails.
6) Fixed the Organize code to verify that you only have access to your
own tasks. In general, added permission checks to organize which had
pretty much no validation code.
I did my best to verify every feature that I touched.
|
|
core -> modules/gallery. Fixed, and incidentally make the link appear
in a new tab/window.
|
|
|
|
|
|
which showed stack traces to non-admins.
|
|
|
|
gallery module. This type of mass update is prone to some small bugs.
|
|
Kohana makes this type of transition fairly straightforward in that
all controllers/helpers/etc are still located in the cascading
filesystem without any extra effort, except that I've temporarily
added a hack to force modules/gallery into the module path.
Rename what's left of "core" to be "application" so that it conforms
more closely to the Kohana standard (basically, just
application/config/config.php which is the minimal thing that you need
in the application directory)
There's still considerable work left to be done here.
|