summaryrefslogtreecommitdiff
path: root/modules/gallery/views
AgeCommit message (Collapse)Author
2010-02-28Apply ui-helper-clearfix to the breadcrumb in the upload dialog to ensure it ↵Chad Kieffer
clears the upload canvas in webkit-based browsers.
2010-02-28Updates to upload CSS to make it themeable and RTL compatible. Use absolute ↵Chad Kieffer
positioning to handle upload button positioning. Remove color definitions to allow jQuery UI theme to set button colors. Consolidate upload dialog CSS to modules/css/gallery.css. Closes #885.
2010-02-27Fix for ticket #1036 - Don't echo any sensitive information such as ↵Andy Staudacher
passwords, hashes or personally identifiable information.
2010-02-24Fix multi-column layout of language admin.Andy Staudacher
2010-02-19Refactor away the "display_all" construct in User_Profile_Controller.Bharat Mediratta
"display_all" is too coarse, and we should be letting event handlers make the appropriate decision on what to display and when. This duplicates some code, but it's now very clear in the event handlers what's getting shown. Throw a 404 if we try to view the user profile for a missing user. The only feature change in this should be that we now display the name, full name and website for a user to any other registered user, which makes sense since these are typically public fields. Don't show any of the edit buttons unless identity::is_writable()
2010-02-19Add spaces around %name in the "create a file" text so thatBharat Mediratta
double-clicking the token only selects that one word, not the word on the line before (which happens on Chrome/Linux)
2010-02-18Merge branch 'master' of github.com:gallery/gallery3Chad Kieffer
2010-02-18First pass at user profile formatting updates. Moved buttons to the top, ↵Chad Kieffer
simplified HTML and CSS.
2010-02-18Revert "Fix for ticket #491: Make user and group names translatable."Bharat Mediratta
This reverts commit 409121942590e12692eaf4e6e9e8b71bfe5ed60c.
2010-02-15Put focus on password field in reauthenticate dialog.Andy Staudacher
2010-02-14Fix for ticket #491: Make user and group names translatable.Andy Staudacher
Also fixed a UI bug: No longer showing the edit user buttons to admins in the profile view (to be consistent with the requirements in the controller).
2010-02-14HTML validation fix (<script>)Andy Staudacher
2010-02-14Some HTML validation fixes (don't render empty <ul> lists, empty id ↵Andy Staudacher
attributes, use &amp; not &)
2010-02-12Tighten up the text.Bharat Mediratta
2010-02-12Fix for tickets 1009 and 603: Show a themed error page to guests / ↵Andy Staudacher
registered users (not to admins though). And show a login form to guests for 404 (incl. insufficient view permissions) errors.
2010-02-11Use the admin/users/edit_user_form version of the user editing formBharat Mediratta
right after initial install so that we're not requiring the user to re-enter the auto-generated password to change their password and email. Fixes ticket #1007
2010-02-09Formated upgrader for RTL languages. Closes ticket #883Chad Kieffer
2010-02-07Revert "Add the scheduler component to the admin maintenance screen."Tim Almdal
This reverts commit 48cb5021c6bd7e65a13a0ff50a9e76f72da7d3a1.
2010-02-07Revert "Refactor the admin maintenance screen so that events are used toTim Almdal
populate the action buttons and other content such as the list of scheduled tasks." Leaving this api out of RC1. This reverts commit 19fee6b5e4ceb8a5f90cafe4ad770856ece108ef. Conflicts: modules/gallery/views/admin_maintenance.html.php
2010-02-07Change welcome message dialog to link to the user_profile page instead of ↵Andy Staudacher
the change user dialog. a) the edit user form doesn't include the password anymore b) the new admin would probably also like to change the email, so directing him to the profile page with options to change the pw / email. Ideally, we'd have a special purpose edit profile page for the install experience, without prompting for the randomly generated password. But that's something for another task.
2010-02-07Last partial fix for ticket 585: Compartmentalize the admin area and require ↵Andy Staudacher
active authentication every 20 minutes to access the admin area. Also renaming auth::validate_too_many_failed_password_changes to validate_too_many_failed_auth_attempts since it's used in this generalized way in 3 places now.
2010-02-06Partial fix for ticket 585: Require current password when changing an ↵Andy Staudacher
account's email address. Still leaving the user/group admin page wide open though.
2010-02-06Merge commit 'upstream/master'Andy Staudacher
2010-02-02Require the current password to change your password.Bharat Mediratta
Fixes ticket #585. Separate out the password change form from the regular edit user form. Require the old password to enter a new one. While I'm at it, roll the password strength javascript into a Form_Script element so that we can get rid of the old view (which incidentally fixes a bug where the password strength meter would go away on form errors).
2010-02-02Merge branch 'master' into talmdal_devTim Almdal
2010-02-02use html::purify to cleans the additional content on the admin maintence page.Tim Almdal
2010-02-02Refactor the admin maintenance screen so that events are used to pupluate ↵Tim Almdal
the action buttons and other content such as the list of scheduled tasks.
2010-02-02Merge commit 'upstream/master'Andy Staudacher
2010-02-02Change the view to display 'empty' when the variable value is a null ↵Tim Almdal
string(""). Fixes ticket #987.
2010-02-02Display the error message for the in place edit. Also improve the double ↵Tim Almdal
click guard. Fixes ticket #1000.
2010-02-01Add the scheduler component to the admin maintenance screen.Tim Almdal
2010-01-31Minir l10n message cleanup. Avoid <br/> in messages since the server ↵Andy Staudacher
normalizes them to <br />, i.e. leading to a mismatch.
2010-01-30Make the error page more robust in the case where there's a failureBharat Mediratta
early on in the framework code before we can load Gallery_I18n.php
2010-01-29Merge branch 'master' of git@github.com:gallery/gallery3Tim Almdal
Conflicts: modules/gallery/views/in_place_edit.html.php
2010-01-29Replace <?= form::close() ?> with </form>. Also add a call to ↵Tim Almdal
access::csrf_form_field in the form template. Fixes ticket #996.
2010-01-29Stop using obsolete form::close()Bharat Mediratta
Update the way we include the hidden CSRF field for InPlaceEdit.
2010-01-28Fix language preference block / language cookie reading.Andy Staudacher
The preference block must have been broken by a jquery update, and the cookie reading by a Kohana update.
2010-01-28Make the return button work in chrome, FF, IE, safari and opera.Tim Almdal
2010-01-28Rename $class to $css_class for clarity.Bharat Mediratta
2010-01-28Secure the t("Completed") call.Bharat Mediratta
2010-01-28Secure the t("Continue") strings in javascript.Bharat Mediratta
2010-01-28Make the varible for the profile name more descriptive and clean the labelTim Almdal
2010-01-28Don't show a link to the user profile for the guest userTim Almdal
2010-01-28Do all the html::clean|purify calls in the views and not the controller. ↵Tim Almdal
Also clean the subject line and email message body of the contact user email.
2010-01-25Remove the return url and change the return button on the user profile page ↵Tim Almdal
to use javascript to return to the previous page.
2010-01-24Merge branch 'master' of git@github.com:gallery/gallery3Tim Almdal
2010-01-24Refactor creating the user profile page content into the the event module. ↵Tim Almdal
The show_user_profile is used to provide content to the user profile page. Add the list of the users comments to the profile page.
2010-01-23Change the hover text to just display 'Your profile'.Tim Almdal
2010-01-23Create a user profile page that is used as a landing page when referencing a ↵Tim Almdal
user in messages or pages. Partial fix for ticket #889 and a fix for #931.
2010-01-23Fix typo: change $entryr to $entry->userBharat Mediratta