| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2010-12-28 | Added changes to installer and upgrader scripts to support INSERT ON ↵ | Joe7 | |
| DUPLICATE KEY UPDATE SYNTAX in cache lib | |||
| 2010-12-28 | Use db::expr instead of "new Database_Expression". Resolves #1560. | Bharat Mediratta | |
| 2010-12-24 | Added Croatian as hr_HR. Fixes #1514. | Bharat Mediratta | |
| 2010-12-23 | Create a way for controllers to exempty themselves from maintenance | Bharat Mediratta | |
| mode and private gallery mode by setting the following constants in the controller to true. ALLOW_MAINTENANCE_MODE ALLOW_PRIVATE_GALLERY Fixes #1411 and the subsequent refactoring fixes #1551 as well. | |||
| 2010-12-23 | Fix PHPDoc for composite(). | Bharat Mediratta | |
| 2010-12-21 | Change MY_url::parse_url to use item::find_by_relative_url. | Bharat Mediratta | |
| 2010-12-21 | Implement item::find_by_relative_url with tests. | Bharat Mediratta | |
| 2010-12-21 | Change item::find_by_path() to check the relative_path_cache first, | Bharat Mediratta | |
| and only fall back the name/level comparison if there's no cached entry. Update tests accordingly. | |||
| 2010-12-21 | Return an empty Item_Model when item::find_by_path fails | Bharat Mediratta | |
| 2010-12-21 | Tighten up item::find_by_path slightly. Augment the tests to cover | Bharat Mediratta | |
| special characters in the file name ("+" is an edge case differentiator between rawurlencode and urlencode). | |||
| 2010-12-22 | Minor changes to satisfy the G3 code standards. | Kriss Andsten | |
| 2010-12-22 | Packaging + tests of Bharat's find_by_path routine. | Kriss Andsten | |
| 2010-12-18 | Warn admins after login if their PHP install has the | Bharat Mediratta | |
| session.use_trans_sid feature enabled, since this will cause random logouts. Partial fix for #1316. | |||
| 2010-12-17 | Sort the Admin > Settings menu instead of relying on module activation order. | Bharat Mediratta | |
| Requires making Menu::get() return a reference. Fixes #1545. | |||
| 2010-12-17 | Include the root in the tree output. | Bharat Mediratta | |
| 2010-12-16 | Follow on to 16555935ee45a09b8d5b5b351222631ba2ce2132 to clean up the | Bharat Mediratta | |
| style a bit. Tracked in #1539. | |||
| 2010-12-17 | Fetch permissions for non-albumbs by parent rather than by item, allowing ↵ | Kriss Andsten | |
| the result to be cached. | |||
| 2010-12-16 | Create a "tree" rest resource that can return the entire album tree in | Bharat Mediratta | |
| a single fast request, among other operations. Fixes #1538. | |||
| 2010-12-16 | Create url::merge_querystring() which merges a query string into an | Bharat Mediratta | |
| existing url. Fixes #1537. | |||
| 2010-12-15 | Consolidate all the random code into a random helper that offers: | Bharat Mediratta | |
| random::hash() random::string() random::percent() random::int() So that we don't have lots of different ways to get random values all over the code. Follow-on to #1527. | |||
| 2010-12-15 | Use mt_rand() instead of rand() since it provides better portability. | Bharat Mediratta | |
| Fixes #1527. | |||
| 2010-12-15 | Follow on to d2be26e407aeb620082bcad2d5a45272868b38a1 to convert tabs to spaces. | Bharat Mediratta | |
| 2010-11-28 | Delete the temporary "user" value from the session when upconverting | Bharat Mediratta | |
| the admin account post-install. Fixes #1511. | |||
| 2010-11-28 | Replace self::func() with <helper_name>::func() for all public APIs | Bharat Mediratta | |
| and constants to make overloading easier. Fixes #1510. | |||
| 2010-11-27 | Clean up phpDoc on get() a little more | Bharat Mediratta | |
| 2010-11-27 | Tighten up the phpDoc for get(). | Bharat Mediratta | |
| 2010-11-28 | Slightly more invasive version, but cleaner on the eyes. | Kriss Andsten | |
| 2010-11-28 | Patch from ticket 1503, making rest/items behaviour consisten with rest/item ↵ | Kriss Andsten | |
| behaviour. | |||
| 2010-11-21 | Shuffle up the way we figure out which image to rebuild next so that | Bharat Mediratta | |
| multiple concurrent tasks actually work in parallel and don't stomp on each other. Fixes #1498. | |||
| 2010-11-20 | Move the sys_getloadavg() call into the template since that's what we're ↵ | Bharat Mediratta | |
| doing for other similar calls | |||
| 2010-11-18 | Add Bengali (bn_BD). | Bharat Mediratta | |
| 2010-11-18 | Use sys_getloadavg() instead of reading /proc/loadavg. Fixes #1491. | Bharat Mediratta | |
| 2010-11-09 | Return the admin check as part of the block structure as opposed to printing | Tim Almdal | |
| it directly to the output. I had problems with the admin check messing up the AJAX calls on the module update page. And it went away after this fix. | |||
| 2010-11-08 | Updated item::random_query() PHPdoc to include example usage | Bharat Mediratta | |
| 2010-11-08 | Implement module::clear_all_vars($module_name) | Bharat Mediratta | |
| Also switch from using ORM to Database_Builder for the SQL because it's cleaner, and clean up the test. Fixes #1479. | |||
| 2010-11-07 | Add Malay as 'Bahasa Melayu' | Bharat Mediratta | |
| 2010-10-24 | Allow access to the rest module when the gallery is wholly private. Fixes ↵ | Bharat Mediratta | |
| ticket #1452. | |||
| 2010-10-09 | Identify robots and don't let them save sessions. | Bharat Mediratta | |
| 2010-10-07 | Change version to "3.0+ (git)". | Bharat Mediratta | |
| 2010-10-04 | Set the version to 3.0 final (woot!). | Bharat Mediratta | |
| 2010-10-02 | Detect the case where there are no more broken images and skip to the end. ↵ | Bharat Mediratta | |
| Fixes #1414. | |||
| 2010-10-02 | Proxy the BasicAuth authentication header in htaccess_works() so that | Bharat Mediratta | |
| if the entire Gallery is behind BasicAuth we share the same credentials as the browser. Fixes #1413. | |||
| 2010-10-02 | Set the User-Agent field to "Gallery3" by default. Fixes #1408. | Bharat Mediratta | |
| 2010-10-01 | Fix a bug in the way we set the mime type for protected image renders. | Bharat Mediratta | |
| Also whitelist the digibug controller so that it's accessible when the gallery is private, and don't expire old proxies right away since Digibug may request the full size multiple times for different preview operations. Fixes ticket #1410. | |||
| 2010-09-29 | Stop caching all module variables in the vars table using the | Bharat Mediratta | |
| name=_cache row. If that overflows, it will cause us to be unable to load variables, and we can't recover from that. Instead, use the Cache table. Bump the gallery module to v40. Fixes ticket #1405. | |||
| 2010-09-25 | Base64 encode the data result if the encoding param is set to "base64". | Bharat Mediratta | |
| Fixes #1400. | |||
| 2010-09-22 | Prioritize using the value in graphics_toolkit_path over the standard | Bharat Mediratta | |
| path so that if you change that value in Admin > Settings > Advanced we prefer it over other paths (which may be restricted by open_basedir). Fixes #1395. | |||
| 2010-09-16 | Add a module variable containing extra paths to search for binaries. | Bharat Mediratta | |
| Fixes ticket #1384. | |||
| 2010-09-16 | Restrict viewing user profile pages to registered users only, but | Bharat Mediratta | |
| provide a "show_user_profiles_to" setting to allow admins to open it up to everybody (choices there are "registered_users", "admin_users" or "everybody"). Fixes ticket #1378. | |||
| 2010-09-14 | Add ability to sort albums by name. Fixes ticket #1377. | Bharat Mediratta | |
