summaryrefslogtreecommitdiff
path: root/modules/gallery/config
AgeCommit message (Collapse)Author
2013-01-21Update copyright to 2013. Fixes #1953.Bharat Mediratta
2012-02-27Update copyright to 2012. #1822Bharat Mediratta
2012-02-05Add Baidu, Bing and Ezooms to the robits list. Fixes #1817.Bharat Mediratta
2011-05-05Follow-on to 6f916e49d5b431c2c1961a13d1a61fef8c02d628 -- don't makeBharat Mediratta
database calls if Gallery isn't installed, else we fail to bounce the user to the installer on fresh packages. #1637.
2011-04-22Allow timezone to be configurableAndy Lindeman
* Fixes #1637 * New advanced setting gallery/timezone * Default setting comes from PHP
2011-01-21Update copyright to 2011.Bharat Mediratta
2010-12-15Amend db00958cee5e7373cf4bc439d65e687e7ef2d985 by extending the systemBharat Mediratta
user_agents.php instead of replacing it. This lets us avoid having to reformat the file to get File_Structure_Test to pass and will let us take advantage of further improvements ot the Kohana version of the file. Additional fix for #1436.
2010-10-11Add MJ12bot and Speedy Spider to the robot list.Bharat Mediratta
2010-10-11Copy system/config/user_agents.php over to gallery/config so that we can add ↵Bharat Mediratta
to the list
2010-08-31Patch for ticket #1216. Move the values that were in the sendmail config ↵Tim Almdal
file and store them as gallery module variables. Requires a version number bump to 37.
2010-08-21Set the "secure" bit on cookies if we're using HTTPS. Fixes ticket #1217.Bharat Mediratta
2010-07-13Revert "Fix for ticket #1182. Remove the trailing slash and just let it be ↵Bharat Mediratta
matched by the trailing (.*) group" This breaks adding new albums. I get the following in my error log: "2010-07-13 13:08:46 -07:00 --- error: Kohana_404_Exception [ 43 ]: The page you requested, form/add/albums/1?type=album&g-in-dialog, could not be found." This reverts commit cb4e18f9dddd82a283f0208c694a9b4eb1a2eaca.
2010-07-06Fix for ticket #1182. Remove the trailing slash and just let it be matched ↵Tim Almdal
by the trailing (.*) group
2010-07-05Revert "Make the trailing slash on the url optional. Sometimes it is not ↵Tim Almdal
there, so the regex doesn't match" This reverts commit e4d397d30118a3d673b146c44ed329efa08bbefe.
2010-07-05Make the trailing slash on the url optional. Sometimes it is not there, so ↵Tim Almdal
the regex doesn't match
2010-03-03Update the copyright to 2010. It's only 3 months into the year :-)Bharat Mediratta
2010-02-14Enable session expiration. Currently, it's set to expire sessions after 7 ↵Andy Staudacher
days of inactivity.
2010-01-31Second attempt to fix the timezone issue. If the timezone is not setBharat Mediratta
in phpinfo(), then force it to America/Los_Angeles for now.
2010-01-31Update the timezone field to match the setting inBharat Mediratta
system/config/locale.php. This fixes the "date_default_timezone_set() [function.date-default-timezone-set]: Timezone ID '' is invalid" error.
2010-01-26Add a routing that allow add and edit form requests to be routed the same ↵Tim Almdal
way as non admin forms. i.e. a uri of /form/add/admin/<controller>/parms gets routed as admin/<controller/form_add/<parms>
2009-12-21Updates for the latest version of Kohana 2.4:Bharat Mediratta
1) Controller::$input is gone -- use Input::instance() now 2) Handle new 'database.<default>.connection.params' parameter 3) Handle new 'cache.<default>.prefix' parameter
2009-12-21Fix preambles, and fix the File_Structure_Test to be more lenientBharat Mediratta
because of preamble variation in K24.
2009-12-01Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_devBharat Mediratta
2009-11-30Clean up item routing a bit.Bharat Mediratta
1) The new default route is "albums", and Albums_Controller::index() does the right thing 2) Items_Controller redirects to the appropriate specific controller 3) All item controllers now have show() instead of _show(), so that the routing code in url::parse_url() can get to it. But that code is protected against receiving bogus requests.
2009-11-25Merge branch 'master' of git@github.com:gallery/gallery3 into bharat_devBharat Mediratta
2009-11-25Forgot to remove the rest references from config/route.phpTim Almdal
2009-11-24K24 has separate log sinks, this configures the file based log sinkBharat Mediratta
2009-11-04Address the inconsistency between Add Photos and Server Add so that neither ↵Tim Almdal
replace spaces in the filename Fixes ticket #853
2009-10-18Move the default identity config into the users module and change the ↵Tim Almdal
Identity constructor to look in module::get_var(gallery, identity_provider) for the current identity driver. In addition, don't just arbitrarily lock the use module. Only lock gallery and the module that is referenced by "user_driver_module" variable.
2009-10-13Change the user config setting "allow_updates" to true in the identity ↵Tim Almdal
config file and correct a missing variable in the view.
2009-10-08If the Identity backend is not writable don't display the "Forgot Your ↵Tim Almdal
Password" link
2009-10-07Forgot to save these before the last commitTim Almdal
2009-10-07Implement a user::is_writable() API method and disable the user add, updates ↵Tim Almdal
and display if the Identity driver does not support writes. This is set in the config.identity.php
2009-10-05The initial commit of refactoring the user/group adminsitration into a driver.Tim Almdal
Create an Identity library that defines the interface the Gallery3 expects Move the user and group helpers into the gallery module to provide the familiar interface into the Identity library. Create a Gallery Identity back-end that is supplied by the user module. The vision here is that all user and group code that is gallery or ui specific is contained within the core product. Anything that relates to manipulating a user or group is contained in the back end code that can be replaced.
2009-09-03Refactor interaction with the purifier module so that the API isBharat Mediratta
cleaner and we don't need to know about the module innards. Move the config file over there too.
2009-07-04Use TMPPATH in the purifier config instead of var/tmpTim Almdal
2009-07-03Fix for ticket #400: Add HTMLPurifier to gallery3 and change p::clean() to ↵Tim Almdal
call HTMLPurifier->purify()
2009-06-28Clean up code (i.e. preamble, tabs) from the caching implementation so the ↵Tim Almdal
unit tests pass
2009-06-27The rest of the caching driver implementation that i somehow forgot.Tim Almdal
2009-05-27Restructure things so that the application is now just another module.Bharat Mediratta
Kohana makes this type of transition fairly straightforward in that all controllers/helpers/etc are still located in the cascading filesystem without any extra effort, except that I've temporarily added a hack to force modules/gallery into the module path. Rename what's left of "core" to be "application" so that it conforms more closely to the Kohana standard (basically, just application/config/config.php which is the minimal thing that you need in the application directory) There's still considerable work left to be done here.