| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2009-05-13 | Create a new "add" permission and require it at the controller level | Bharat Mediratta | |
| when adding photos/movies/albums | |||
| 2009-05-13 | updated to reflect tinyint(2) -> smallint(6) change | Bharat Mediratta | |
| 2009-05-13 | Warn the user if they're attemping to reinstall into a database that | Bharat Mediratta | |
| already has Gallery 3 tables. Otherwise, permit it to continue. We key this off of the existence of the g3_items table. Theoretically it's possible that the g3_items table is gone but other tables are still there, which could mess things up. I'm not going to worry about that for now. Fixes ticket #175 | |||
| 2009-05-07 | Grab photo capture date and captions from EXIF/IPTC data. | Bharat Mediratta | |
| - Add a "captured" column to the items table. - Pull the DateTime EXIF field and put it into the captured column - Pull the Caption EXIF & IPTC fields and put them into the description field if there was not already a value there | |||
| 2009-04-28 | Root album weight is now 1; Organize module is auto-activated; search_record ↵ | Bharat Mediratta | |
| has a key on item_id | |||
| 2009-04-23 | Use single quotes so that user data containing $ doesn't suffer | Bharat Mediratta | |
| variable interpolation. Fixes ticket #229. | |||
| 2009-04-05 | Don't do graphics detection in core_installer::install() because that | Bharat Mediratta | |
| gets run at scaffolding::package() time, not on the target machine. Instead, create a core module variable to trigger running graphics::choose_default_toolkit() on the first admin login after install. Fixes ticket #206. | |||
| 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-20 | Oops, we need UNIX_TIMESTAMP() instead of NOW() | Bharat Mediratta | |
| 2009-03-20 | Do some data normalization so that the install files will have stable | Bharat Mediratta | |
| ordering and known values. This way subsequent packaging runs won't have any differences unless there's a real data change. | |||
| 2009-03-18 | Make sure that the SPL library is installed | Bharat Mediratta | |
| 2009-03-16 | Revive the install() and uninstall() functions in Scaffold_Controller | Bharat Mediratta | |
| because we need those to make a package. Fix the packaging code to ignore whatever prefix is being used by the developer who is doing the packaging. Update the install.sql file (there were a variety of small inconsistencies, probably from hand-editing. Don't hand-edit this file!) | |||
| 2009-03-10 | Add info about -x flag | Bharat Mediratta | |
| 2009-03-09 | Restructure the sort order to maintain the sort column and sort order | Tim Almdal | |
| as two separate columns in the item table. | |||
| 2009-03-09 | On second thought, make the description column varchar(2048) instead. | Bharat Mediratta | |
| If I understand correctly, this is better for performance. I could be wrong here, though. | |||
| 2009-03-09 | Make the description a text column so that we can handle much larger | Bharat Mediratta | |
| descriptions. | |||
| 2009-03-09 | Instead of putting after_install in the url, put it in the session. | Bharat Mediratta | |
| This helps us to make sure that we only see the welcome message once. | |||
| 2009-03-08 | Log the user in as admin after running the web installer, and give | Bharat Mediratta | |
| them a nice "Welcome to Gallery 3" dialog. The text in there needs a little work but it's a start. In the process, re-build the install.sql using the scaffolding code. | |||
| 2009-03-08 | Implement Sortable albums. Current sort fields include (Creation | Tim Almdal | |
| Date, Update Date, Random Key, Title, Mime Type, Item Type & Number of views) | |||
| 2009-03-02 | Forgot to update the install.sql when i changed the [] to {} to | Tim Almdal | |
| identify table names that need substitution. | |||
| 2009-02-28 | Change the pattern to identify tables that need prefix substitution to | Tim Almdal | |
| mirror the drupal pattern of using braces {}. | |||
| 2009-02-27 | Both the command line and web installer installer now supports | Tim Almdal | |
| creating tables with a table prefix. There are still some queries that haven't been converted, so don't start using prefixes yet. However, if you do, you can login and modify the user profile. | |||
| 2009-02-27 | * Refactor task management methods from admin_maintenance.php to | Tim Almdal | |
| task.php * Added a owner_id field to the task database * Modified the admin maintenace to show the owner of the task <<**** Requires a reinstallation of core ****>> | |||
| 2009-02-26 | Update to image_block based on bharat's feedback | Tim Almdal | |
| 1) move the rand_key column into core 2) don't do a max rand, just try to a get a random number less than the current random number if that doesn't successd look the other way | |||
| 2009-02-23 | A couple of references to media_rss that were overlooked | Tim Almdal | |
| 2009-02-23 | Changing from binary(16) to char(32) as translation message key. | Andy Staudacher | |
| Although less efficient as a storage / transmission / comparison format, it's friendlier on the eyes and universally supported. | |||
| 2009-02-23 | Better yet, rename gallery2.png to just gallery.png. Reference logo from ↵ | Chad Kieffer | |
| scaffold too. | |||
| 2009-02-23 | Use local Gallery Project logo in the installer | Chad Kieffer | |
| 2009-02-17 | added mkdir command to error message if "var" is not found, for people that ↵ | Jakob Hilden | |
| don't know how to create a folder on unix | |||
| 2009-02-17 | Move private key generation into the installer so that we're not | Bharat Mediratta | |
| generating it lazily. | |||
| 2009-02-15 | Get rid of InstallException and handle exceptions from create_admin() | Bharat Mediratta | |
| properly. | |||
| 2009-02-10 | Move site default_locale into DB (vars) and add a per user locale preference. | Andy Staudacher | |
| There's no UI to select the locale yet. | |||
| 2009-02-09 | Add local localization functionality. Local = no means to upload / download ↵ | Andy Staudacher | |
| translations to a translation server yet. - Added an outgoing_translations table to store translations from the local translation UI. - I18n class is checking incoming_ and outgoing_translations for translations, giving the latter priority. - Not handling plural strings in the translations UI yet. | |||
| 2009-01-22 | Require mysqli_set_charset to use the mysqli extension | Bharat Mediratta | |
| 2009-01-22 | Don't allow the installer to run if PHP < 5.2.3 | Bharat Mediratta | |
| 2009-01-21 | Require 5.2.3 | Bharat Mediratta | |
| 2009-01-20 | Deal gracefully with bad mysql connection and database information. | Bharat Mediratta | |
| 2009-01-20 | Fix preambles, delete unused file | Bharat Mediratta | |
| 2009-01-20 | Move install.html.php into views, too | Bharat Mediratta | |
| 2009-01-20 | Move pages -> views for consistency, which simplifies the life of the ↵ | Bharat Mediratta | |
| File_Structure_Test | |||
| 2009-01-20 | Make VARPATH accessible to all. | Bharat Mediratta | |
| 2009-01-20 | Update README with new install instructions | Bharat Mediratta | |
| 2009-01-20 | Web based installer. It's still got some rough edges, but you can now | Bharat Mediratta | |
| do a complete CLI or web based install. | |||
| 2009-01-19 | Pull the environment check out into a separate web page to simplify | Bharat 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-19 | Incremental additions to the web installer. This is getting messy, | Bharat Mediratta | |
| going to pause here and do some refactoring. | |||
| 2009-01-19 | Replace mysql_create_db with a mysql_query() call as recommended by the PHP ↵ | Bharat Mediratta | |
| manual. | |||
| 2009-01-19 | Stub of the web based installer. | Bharat Mediratta | |
| 2009-01-19 | implement already_installed() | Bharat Mediratta | |
| 2009-01-19 | setup_varpath() -> setup_var() | Bharat Mediratta | |
| 2009-01-19 | Only run the installer from the CLI for now | Bharat Mediratta | |
