| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-05-26 | Link to gallery.panel.js from the head, not body. | Chad Kieffer | |
| 2009-05-26 | Split out re-used JavaScript for common functions (messages, valign), panel ↵ | Chad Kieffer | |
| toggle, and forms to external files. | |||
| 2009-05-13 | Make the 'this user cannot be deleted' link actually not clickable. | Bharat Mediratta | |
| 2009-05-13 | Colorize admin user rows to make them stand out | Bharat Mediratta | |
| 2009-04-05 | Add a weight column to the items model. Change the album ordering to | Tim Almdal | |
| use this as the default instead of id. This prepares the way for manual reordering in the organize functionality. | |||
| 2009-03-27 | Put csrf token into Admin_View and Theme_View by default, then use it | Bharat Mediratta | |
| directly wherever possible instead of access::csrf_token(). | |||
| 2009-02-26 | Add slightly more visual feedback when you're hovering over a | Bharat Mediratta | |
| draggable user. Also, drag the icon and name not just the icon. | |||
| 2009-02-23 | Remove second Add User button, don't need it, at least not now. | Chad Kieffer | |
| 2009-02-11 | Button mania continues. Make edit and delete user/group links buttons, ↵ | Chad Kieffer | |
| buttons, buttons! | |||
| 2009-02-08 | Clean up add user and group buttons to move the + icon to the left. The + ↵ | Chad Kieffer | |
| icon doesn't appear within the button outline with buttons that aren't floated. Will have to debug later. | |||
| 2009-02-06 | jQuery-based buttons! Form updates, short form updates. Need to fix add ↵ | Chad Kieffer | |
| user/group buttons and search form on search results page. | |||
| 2009-02-03 | Beginning of edit user panel fix. Form is displayed again. Added display of ↵ | Chad Kieffer | |
| user email address to list. | |||
| 2009-02-01 | For consistency with the rest of the admin UI, display User list as table, ↵ | Chad Kieffer | |
| not list. Apply cursor: move to jQuery UI draggable and sortable. Clean up admin table styles a bit. | |||
| 2009-01-29 | Fix lint errors | Bharat Mediratta | |
| 2009-01-28 | Fully implement the user administration backend with drag/drop to add | Bharat Mediratta | |
| users to groups. | |||
| 2009-01-28 | Add drag and drop support to the admin_users interface. This is still | Bharat Mediratta | |
| a work in progress but it actually works mostly. | |||
| 2009-01-27 | Add gravatars to users | Bharat Mediratta | |
| 2009-01-27 | Clean up indentation | Bharat Mediratta | |
| 2009-01-25 | Use url:site() on add user link, change user list from class to id to make ↵ | Chad Kieffer | |
| it unique, changed gFirstRow to gHeaderRow to make more semantically meaningful. Fixed closing span that I broke after Bharat fixed it last night. | |||
| 2009-01-25 | Admin theme style cleanup. Merged separate selected, available, unavailable ↵ | Chad Kieffer | |
| into a single set of reusable classes. Applied alternating row bg colors. Removed inline CSS from admin views. Moved user admin css into admin_default theme style sheet. | |||
| 2009-01-25 | Fix all 'add' links and make them open in a dialog | Bharat Mediratta | |
| 2009-01-25 | Fix indentation which helped me to find an extra </span>. Simplified | Bharat Mediratta | |
| some of the logic. | |||
| 2009-01-24 | Admin theme style cleanup. Merged separate selected, available, unavailable ↵ | Chad Kieffer | |
| into a single set of reusable classes. Applied alternating row bg colors. Removed inline CSS from admin views. Moved user admin css into admin_default theme style sheet. | |||
| 2009-01-23 | Ajaxified user edit forms. They're populated, but don't submit yet. | Chad Kieffer | |
| 2009-01-22 | toggling of user edit panel works now. | Jakob Hilden | |
| added groups to the admin_user view, so you will eventually be able to edit users, groups and memberships on one admin page. | |||
| 2009-01-22 | Added new UI element, gPanel, which is a similar mechanism to gDialog. ↵ | Chad Kieffer | |
| Panels are hidden inline elements that can be revealed within list items, tables cells, etc. Still need to add the toggle off and ajaxify content. | |||
| 2009-01-20 | totally incomplete version of user admin UI. | Jakob Hilden | |
| 2009-01-08 | i18n refactoring: Rename all _() (reserved by gettext) calls to t(). | Andy Staudacher | |
| - And refactor printf to our string interpolation / pluralization syntax - Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key. | |||
| 2009-01-06 | Fix up all the various little forms to have submit buttons, fieldset ↵ | Bharat Mediratta | |
| legends, etc etc. | |||
| 2009-01-01 | Change the preamble for views in two ways: | Bharat Mediratta | |
| 1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure) | |||
| 2008-12-26 | Added title to user/group administration dialogs | Felix Rabinovich | |
| 2008-12-26 | User/Group administration cleanup | Felix Rabinovich | |
| 2008-12-26 | Separate GET and POST in User Administration | Felix Rabinovich | |
| 2008-12-26 | User Administration. Add users. Take 3 | Felix Rabinovich | |
| 2008-12-26 | User Administration. Edit users. Take 3 | Felix Rabinovich | |
| 2008-12-25 | Ajaxify 'add users' | Felix Rabinovich | |
| 2008-12-25 | fixes in user edit and delete | Felix Rabinovich | |
| 2008-12-25 | Big round of normalization of the way that our controllers | Bharat Mediratta | |
| communicate. Almost all controllers now use JSON to speak to the theme when we're dealing with form processing. This means tht we only send the form back and forth, but we use a JSON protocol to tell the browser success/error status as well as the location of any newly created resources, or where the browser should redirect the user. Lots of small changes: 1) Admin -> Edit Profile is gone. Instead I fixed the "Modify Profile" link in the top right corner to be a modal dialog 2) We use json_encode everywhere. No more Atom/XML for now. We can bring those back later, though. For now there's a lot of code duplication but that'll be easy to clean up. 3) REST_Controller is no longer abstract. All methods its subclasses should create throw exceptions, which means that subclasses don't have to implement stubs for those methods. 4) New pattern: helper method get_add_form calls take an Item_Model, not an id since we have to load the Item_Model in the controller anyway to check permissions. 5) User/Groups REST resources are separate from User/Group in the site admin. They do different things, we should avoid confusing overlap. | |||
| 2008-12-25 | User administration: 1. Add users; 2. Group administration; 3. General cleanup | Felix Rabinovich | |
| 2008-12-24 | Adding user | Felix Rabinovich | |
| 2008-12-23 | Edit user - first draft | Felix Rabinovich | |
| 2008-12-19 | Implement admin user editing. It's still very rough. Trying to | Bharat Mediratta | |
| figure out how to share forms between user and admin editing. Incremental improvement | |||
| 2008-12-19 | Create a new pattern for Site Admin controllers: | Bharat Mediratta | |
| 1) They must all start with "admin_". This pattern is not directly routable. 2) Their urls must be /admin/xxx. 3) The Admin_Controller will take the xxx and look for Admin_Xxx_Controller and will delegate to that admin controller, after doing security checks. Moved the users and dashboard views into individual modules for now. | |||
