Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-25 | added sprintf to strings for tranlation support | Felix Rabinovich | |
2008-12-25 | Don't let the admin delete themselves, either. That would be bad. | Bharat Mediratta | |
2008-12-25 | Only admins can delete users. | Bharat Mediratta | |
2008-12-25 | Fix rules for editing users. | Bharat Mediratta | |
2008-12-25 | Rest_Controller -> REST_Controller everywhere, for consistency. | Bharat Mediratta | |
2008-12-25 | User administration: 1. Add users; 2. Group administration; 3. General cleanup | Felix Rabinovich | |
2008-12-25 | Convert tag module over to returning JSON. | Bharat Mediratta | |
2008-12-25 | Fix the way we dump out comment in _show(). | Bharat Mediratta | |
2008-12-25 | Update the form first, then clear it on success (else it doesn't get cleared ↵ | Bharat Mediratta | |
on success) | |||
2008-12-25 | Be consistent: resource is a url, data is the actual JSON encoded result. | Bharat Mediratta | |
2008-12-25 | Gut the comment module and simplify it. Stop trying to support Atom | Bharat Mediratta | |
and XML for now, we have no driver for those technologies so anything we implement is not going to be sufficiently tested and therefore it'll be broken. Change all comment functions to return JSON and update the JS to deal purely with JSON. This is our new protocol for talking to the browser and it should be flexible and portable. Create comments.html.php. This duplicates comment.html.php, but will be more efficient for rendering comments since we won't be creating a new View for every comment we render. | |||
2008-12-24 | Adding user | Felix Rabinovich | |
2008-12-24 | Remove stray response:: (not yet time for this.. it's coming!) | Bharat Mediratta | |
2008-12-24 | Normalize our Admin controllers so that functions always print out | Bharat Mediratta | |
their results, as opposed to having them return their view back upstream. This is a little more code in every controller, but it's much less magical and more consistent. Look up the active_theme and active_admin_theme inside the view itself, no need to do that in the controllers. This makes view initialization easier in the controllers. | |||
2008-12-24 | Tersify a log message | Bharat Mediratta | |
2008-12-24 | Minor cleanups. | Bharat Mediratta | |
2008-12-24 | Lots of deltas rolled up into a bigger change. Sorry for the mess. | Bharat Mediratta | |
1) Deleted in-place-editing. We'll be replacing this with a real edit system that groups settings together and is more coherent. 2) Tweaked the way that dialog boxes work to get the ajax stuff working again. It's imperfect and does not work properly for uploading images. This is going to get redone also, but this is a good resting point. 3) Created edit forms for albums and photos. Moved _update and _create out of Items_Controller and into the individual subclasses. 4) Created access::required which is a shorthand for: if (!access::can(...)) { access::forbidden(); } 5) Added validation rules to Items_Model 6) Converted login to use the regular modal dialog approach in the theme. | |||
2008-12-23 | Edit user - first draft | Felix Rabinovich | |
2008-12-23 | Can't self-close a <div>. | Bharat Mediratta | |
2008-12-23 | Fixed indents | Chad Kieffer | |
2008-12-23 | Change photo::create() and album::create() to take ORM instances | Bharat Mediratta | |
instead of ids. | |||
2008-12-23 | Add very simple graphics toolkits. | Bharat Mediratta | |
Track a set of rules in Graphics_Rule_Model which specify how we turn original images into thumbnails and resizes. There's one set of rules that applies to every image in the Gallery. Track the state of thumbs and resizes with a "dirty" bit. The new graphics helper manages the rules and can rebuild the thumbs and resizes for any images that are considered "dirty". Introduce the concept of an "album cover" which is an item that an album points to. We'll use that item as the source for the album's thumbnail/resize. Conflated with this change (sorry!) I also changed the Var table to use module_name instead of module_id. This may be marginally less efficient, but it's much easier to follow in the database. | |||
2008-12-23 | Allow the site admin to upload watermark images. Can't do much with them yet. | Bharat Mediratta | |
2008-12-23 | Step 1 of converting watermarks over to be an admin page. | Bharat Mediratta | |
2008-12-23 | Add attribute to <script> element. | Bharat Mediratta | |
2008-12-23 | Remove stray comma. | Bharat Mediratta | |
2008-12-22 | Remove extraneous view, not necessary | Bharat Mediratta | |
2008-12-22 | Remove module.info from infrastructure modules that are effectively | Bharat Mediratta | |
libraries that would ship with the core. Refactor welcome.php to use the newly refactored module::available() | |||
2008-12-22 | Change the way that we track modules. | Bharat Mediratta | |
Each module now has a "module.info" file that has information about the module, including the core. We can display the installed version, and the version in the code. Also take a first shot at a modules admin page. | |||
2008-12-22 | Fix capitalization. | Bharat Mediratta | |
2008-12-21 | Add info/warning/error classes to log messages. | Bharat Mediratta | |
2008-12-21 | Move logging up to the controllers so that our logging can operate at a more ↵ | Bharat Mediratta | |
meta level | |||
2008-12-21 | Add a logging facility, and instrument login/logout to use it. | Bharat Mediratta | |
2008-12-21 | Implement the "recent comments" block with real data. | Bharat Mediratta | |
2008-12-21 | Change "datetime" to "created" to give some semantics to this field. | Bharat Mediratta | |
2008-12-20 | Fix a problem with magenta | Bharat Mediratta | |
2008-12-20 | Add view counts and show them properly. | Bharat Mediratta | |
2008-12-20 | Fix preamble | Bharat Mediratta | |
2008-12-20 | Move Recent Comments into its own block. | Bharat Mediratta | |
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. | |||
2008-12-19 | Don't try to validate the form unless it's a POST request. | Bharat Mediratta | |
2008-12-19 | Fix indentation. | Bharat Mediratta | |
2008-12-19 | Don't restrict image overlays | Bharat Mediratta | |
2008-12-18 | Add labels to the form groups. | Bharat Mediratta | |
2008-12-18 | Add <fh:complete/> | Bharat Mediratta | |
2008-12-18 | Refactor site admin menu into a theme function and build the menus in | Bharat Mediratta | |
the various modules. In the process, rename xxx_menu::site_navigation() to just xxx_menu::site(). And add xxx_menu::admin(). The menus are the same as before, but I changed the HTML to be consistent with the way that we do it in the regular site, and this broke the superfish styles. I don't know how to fix this.. help me Chad! | |||
2008-12-18 | Dialog polishing. They now resize their height. Updated form styles in the ↵ | Chad Kieffer | |
context of dialog display (don't show legends, fieldset border, or submit button). Let's make sure that all forms generated are complete and well formed and then use JS and CSS to control their display and behavior in different contexts. | |||
2008-12-18 | Add <generator> element to try to make Polar Rose happy (it doesn't work, ↵ | Bharat Mediratta | |
though) | |||
2008-12-18 | Absoluteify some urls to make feedvalidator.org happy | Bharat Mediratta | |