summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2011-03-15Fix a bug where the placeholder %hide-url didn't match the variable in the ↵Bharat Mediratta
assoc. array. Follow on for #1624
2011-03-05PATH_INFO mangles apostrophe (and other symbols, I'm sure) into aBharat Mediratta
question mark, so any tags containing an apostrophe won't display their contents. Take the simple fix here and change the tag urls to also contain the tag id, which avoids having to add a slug for the tag and all kinds of validation code. Fixes #1636.
2011-03-05Add missing phpDoc for the extra Item_Model argument to graphics callsBharat Mediratta
and make the param optional. #1646.
2011-03-05Merge branch 'master' of git://github.com/colings/gallery3Bharat Mediratta
2011-03-02Translate user Web Site label. Link web site on user profile page.Chad Kieffer
2011-02-23Added extra arg to gallery_graphics calls and updated userscolings
2011-02-21Added 'item' to parameters passed to graphics rulescolings
2011-02-13Merge remote branch 'upstream/master'colings
2011-02-01fixed tag brokenmomo-i
2011-01-29AUTO_CHECK_INTERVAL --> upgrade_checker::AUTO_CHECK_INTERVALBharat Mediratta
Fixes #1624
2011-01-21Update XSS golden fileBharat Mediratta
2011-01-21Update copyright to 2011.Bharat Mediratta
2011-01-21Fix: photos get added as albums in case only some photos are selected via ↵Joe7
server ad Fixes #1619
2011-01-21Add "html_attributes" theme callback to allow modules to inject attributes intoBharat Mediratta
the <html> element, including things like namespaces. Fixes #1615.
2011-01-20Fix a bug introduced in the refactor inBharat Mediratta
65448548637f462ad17c12b149cdb2a169d07026 for #1547. By skipping the staging dirs, we wind up scanning the entire filesystem because the first model is blank so there's no leading path before the /*.
2011-01-19Fix a bug introduced in 65ff2470a505fbc18211093ac131c29b1e820c3e,Bharat Mediratta
clearly I didn't test this enough. Further fix for #1460.
2011-01-18Create a hidden anchor containing the tag cloud autocomplete url. This way ↵Bharat Mediratta
validates. Fix for #1577.
2011-01-18Revert "Temporarily removed ref tag to get the page validated. (Was also ↵Bharat Mediratta
pointing at a rather semi-finished looking page)" This was breaking the tag autocomplete code, which depends on this value. This reverts commit 5e8d92552b1384d99d5fef56333deb7eb67a8f92.
2011-01-18Get rid of the "organize needs rest" message when upgrading to theBharat Mediratta
new organize; it may be hanging around from a prior version. Reinstate the installer for this. Bump organize module to v4. Follow-on for #1584.
2011-01-17Change the [x] close box to "(remind me later)". #1605.Bharat Mediratta
2011-01-17Fix typo: upgrade_check -> upgrade_checkerBharat Mediratta
#1605.
2011-01-17Display a message in the "Check for Gallery upgrades" block whenBharat Mediratta
there's a newer version available, even if the user has dismissed the site status message. #1605.
2011-01-17Move the code that clears the upgrade_check site status message to theBharat Mediratta
upgrader so that it's cleared any time we run an upgrade. Part of
2011-01-17Rename BUILD_NUMBER to .build_number so it's not so loud.Bharat Mediratta
2011-01-17Add BUILD_NUMBER to the security check in .htaccessBharat Mediratta
Change BUILD_NUMBER to be .ini format and add a big "do not edit" comment.
2011-01-17Update version checking code to expect "branch_" as the prefix forBharat Mediratta
all branch related lines. For #1605.
2011-01-16If the logged in user is an admin and it's been more than 7 days sinceBharat Mediratta
the last check and auto upgrade checking is enabled, fire off an XHR to check for a possible upgrade. Finishes off #1605.
2011-01-16Add arguments to random::int() to match mt_rand(). Follow on to ↵Bharat Mediratta
cd48b89f3166e7fa732b5cb06d33fba018af9127 for #1527.
2011-01-16Upgrade checking code is now here, along with a bump of the GalleryBharat Mediratta
module to v46. There's a new block in the admin dashboard which controls whether automatic checking happens, and lets you check immediately. If a newer version is detected, a site status message appears for admins providing upgrade instructions. Automatic checking is not yet implemented (even though the UI claims that it exists). This is all for #1605.
2011-01-16Change the value column of the messages table from a varchar(255) to aBharat Mediratta
text. Fixes #1612.
2011-01-16Fix indentation.Bharat Mediratta
2011-01-16First step in setting up version checking.Bharat Mediratta
We now have two types of packages (release, git). Instead of using constants, we now have gallery::version_string() which returns the current version string. If you're on a release package, then the version string looks like: 3.0 (Santa Fe) If you're on a git package, then the version string looks like this: 3.0.1 (branch 3.0.x build 3) We track the build number in a new file in the gallery3 root called BUILD_NUMBER which we will update periodically with the latest build number for each branch.
2011-01-16Fixed paging for albums ordered by random.Joe7
MySql has problems when comparing float values against -seemingly same- float input, see http://dev.mysql.com/doc/refman/5.0/en/problems-with-float.html for details. Fixes #1610
2011-01-15Golden file updates for xss and controller authentication.Bharat Mediratta
2011-01-15Style fixes.Bharat Mediratta
2011-01-15Revive the code from Cache_Driver::exists and put it into a helperBharat Mediratta
function in the test so that we can keep our tests functioning. Follow on to 66fd8c7518ab71466aca72d20fb7bcd5f374af26 for #1559.
2011-01-15Follow on to 966dee8628293f78fbf9431281709ceba011d3c2 for #1586 --Bharat Mediratta
don't try to update the tag item count if we didn't change any items with this change (ie: a tag rename). In that case, we haven't loaded the related items so we don't have any idea what the count is going to be.
2011-01-15Fix all the head() and admin_head() theme callbacks to return theBharat Mediratta
results of the $theme->css() and $theme->script() calls. This handles the case where combining scripts/css returns HTML instead of putting it in the queue for combination. Fixes #1611.
2011-01-15whitespace fix.Bharat Mediratta
2011-01-15Reorganize the url() function out from in the middle of the script/css ↵Bharat Mediratta
combining functions.
2011-01-15Tweake Joe's change to admin_users to revert the code that joins against the ↵Bharat Mediratta
items table; it's not clear that this is going to be efficient for large data sets.
2011-01-15Merge branch 'Ticket#1557' of git://github.com/Joe7/gallery3Bharat Mediratta
2011-01-11Update comments to annotate what data is where during the process.Bharat Mediratta
Follow-on for #1518.
2011-01-11Merge branch 'Ticket#1518' of git://github.com/Joe7/gallery3Bharat Mediratta
2011-01-11Two improvements to Joe's fix for #1504:Bharat Mediratta
1) Trap all exceptions, eg dns or connectivity issues and report back in the form (but put the stack trace in the logs) 2) Rename "noconn" to "no_connection"
2011-01-11Merge branch 'Ticket#1504' of git://github.com/Joe7/gallery3Bharat Mediratta
2011-01-11Update some comments.Bharat Mediratta
2011-01-11Merge branch 'fix-viewable2_master' of git://github.com/BigMadWolf/gallery3Bharat Mediratta
2011-01-12Returning 2 flags from l10n_client::validate_api_key(), 1 to reflect if ↵Joe7
connection was built up properly (just a boolean, not distuingishing between reasons in case of a failure), the other to reflect API validating success status. Using this presenting a slightly more meaningfull error msg to user in case the connection would fail. Fixes Ticket #1504
2011-01-11Removed check as input value is compared against dataset of validated ↵Joe7
values, and request is only processed further in case of a match. => this is unnecessary