| Age | Commit message (Collapse) | Author |
|
stored in the persistant cache for 30 days. On the admin_maintenance page
there is a new link for completed tasks "browse log". Clicking this will
open a dialog box that has the the contents of the log displayed.
The user can then view the log and close the dialog, or press the save button
to download the log to their local machine.
|
|
approach using html::specialchars and purify uses HTMLPurifier to intelligently
cleanse the output fields. Use purifier for text and title fields where it is
likely that a user would enter html to format their data.
|
|
productivity improvement)
|
|
present the done box if you're done and let you get rid of it if you
want. It's not beautiful, by any means, but it gives you an easy link
back to your Gallery when you're finished.
Fixes ticket #479.
|
|
Created a new view "movieplayer.html.php", which is rendered by
Item_Model::movie_img(). Changed movie.html.php to use movie_img to render
the movie player link.
|
|
truncate incoming_translations after this
update to get rid of bad messages in your DB.
|
|
|
|
|
|
fix for bug report #92
removed containment parameter for the jQuery sortable plugin
seems to work in Firefox, Chrome and IE 8
|
|
|
|
moved the cancel link to above the upload queue (where the textual upload progress also is)
|
|
|
|
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.
|