summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-01-23Add support for parenthetical grouping to Database queries. Turns outBharat Mediratta
that this is something they kind of want for Kohana :-) Upstream ticket for this change: http://dev.kohanaphp.com/ticket/1070
2009-01-23Ajaxified user edit forms. They're populated, but don't submit yet.Chad Kieffer
2009-01-23Minor formatting cleanup, removed unecessary line.Chad Kieffer
2009-01-22Require mysqli_set_charset to use the mysqli extensionBharat Mediratta
2009-01-22Don't allow the installer to run if PHP < 5.2.3Bharat Mediratta
2009-01-22toggling 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-22Added 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-22CSS updates for form validation messages and icons. Don't show error, info, ↵Chad Kieffer
warning icons next to form fields, just messages.
2009-01-22Theme details. Save values 2Felix Rabinovich
2009-01-22Theme details. Save valuesFelix Rabinovich
2009-01-22Theme details. Initial releaseFelix Rabinovich
2009-01-21Require 5.2.3Bharat Mediratta
2009-01-21Update Kohana to r3918Bharat Mediratta
2009-01-21Fix bug in add_to_group / remove_from_group where we were looking up users ↵Bharat Mediratta
using Group_Model.
2009-01-20totally incomplete version of user admin UI.Jakob Hilden
2009-01-20Use xxx_test as the default database name. This means that we noBharat Mediratta
longer have to manually tweak database.php, yay!
2009-01-20Revert r19765 -- the installer works fine with it the way it is.Bharat Mediratta
2009-01-20Fix indentation.Bharat Mediratta
2009-01-20Quick edit now lets you set the album cover.Bharat Mediratta
2009-01-20fix indentationBharat Mediratta
2009-01-20Add a quick edit pane for albums, too.Bharat Mediratta
2009-01-20Deal gracefully with bad mysql connection and database information.Bharat Mediratta
2009-01-20Fix preambles, delete unused fileBharat Mediratta
2009-01-20Move install.html.php into views, tooBharat Mediratta
2009-01-20Move pages -> views for consistency, which simplifies the life of the ↵Bharat Mediratta
File_Structure_Test
2009-01-20Undo r19818, an accidental submitBharat Mediratta
2009-01-20Comment out the code that checks for form elements named "submit". ItBharat Mediratta
appears not to work correctly and is getting in the way. Commenting it out here means that it'll get overwitten on the next update of this library (but that's ok).
2009-01-20Make VARPATH accessible to all.Bharat Mediratta
2009-01-20Update README with new install instructionsBharat Mediratta
2009-01-20Web based installer. It's still got some rough edges, but you can nowBharat Mediratta
do a complete CLI or web based install.
2009-01-19Pull the environment check out into a separate web page to simplifyBharat Mediratta
the CLI installer. Put a link to it in the footer of every web install page. Don't allow users to run it if Gallery 3 is already installed.
2009-01-19Incremental additions to the web installer. This is getting messy,Bharat Mediratta
going to pause here and do some refactoring.
2009-01-19Replace mysql_create_db with a mysql_query() call as recommended by the PHP ↵Bharat Mediratta
manual.
2009-01-19Stub of the web based installer.Bharat Mediratta
2009-01-19implement already_installed()Bharat Mediratta
2009-01-19setup_varpath() -> setup_var()Bharat Mediratta
2009-01-19Only run the installer from the CLI for nowBharat Mediratta
2009-01-19Remove the prefix arg, we don't support it yet.Bharat Mediratta
2009-01-19mysql_create_db() might not existBharat Mediratta
2009-01-19Fix up various little things to get File_Structure_Test to pass.Bharat Mediratta
2009-01-19Make get_add_block_form() static.Bharat Mediratta
2009-01-19Flush the access_intent cache after ALTER TABLE queries, fixes aBharat Mediratta
problem where the install.sql had the wrong view permissions.
2009-01-19Put the <a> element inside the internationalized text.Bharat Mediratta
2009-01-19Use mysqli_init() instead of mysqli() as our detector.Bharat Mediratta
2009-01-19Remove -m flag.Bharat Mediratta
2009-01-19Packager now does a clean reinstall of just the packages we want, thenBharat Mediratta
rebuilds the install.sql and init_var.php files accordingly.
2009-01-19Change ORM and the MySql driver to clear static caches usingBharat Mediratta
clear_cache(). This supercedes the TEST_MODE checks. Upstream ticket: http://dev.kohanaphp.com/ticket/1062
2009-01-19Simplification pass over the installer:Bharat Mediratta
- Flattened the directory structure - Greatly simplified structure in installer; it now only reports environmental checks that fail. Simplified code that prints exceptions. Use only mysql calls for the installer, but select mysqli automatically if it's available. Drop the response file; that's easily replicated with flag support - Create a random password for the admin user - Delete unused controllers - Invert the form of the database config template to be mostly non-PHP with just a few PHP calls
2009-01-19Replace exec("mysql") call with directy mysql() calls.Bharat Mediratta
2009-01-19Get rid of the driver libaries. Use mysql calls directly in theBharat Mediratta
installer for now. If we detect mysqli, we can always use that as a driver instead, but we don't require it for the installer.