summaryrefslogtreecommitdiff
path: root/modules/tag/helpers
AgeCommit message (Collapse)Author
2013-03-19Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2013-03-13#2061 - Remove Uploadify from add_photo_form/add_photo_form_completed events.shadlaws
- Added code around event calls in uploader to add Uploadify-specific JS to update the inputs. - Removed Uploadify JS from tag_event. Now it's uploader-agnostic. - Refactored tag_event autocomplete code (no functional changes).
2013-03-10#2048 - Remove unneeded jquery.autocomplete.css/js inclusions.shadlaws
- removed autocomplete.css/js calls in server_add, tag, and g2_import. - revised xss_data.txt golden file (line number changes only).
2013-02-17Fix up autocomplete for admin_server_add - found and fixed some bugsBharat Mediratta
in gallery_autocomplete when "multiple" isn't set. Fixed some harmless syntax issues that js2-mode helpfully pointed out.
2013-02-14Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2013-02-03Super first pass:Bharat Mediratta
- jQuery 1.90 - jQuery UI 1.10 - Superfish 1.5.1 (minus all plugins) - jQuery Form 3.26.0-2013.01.28 Deleted all other jQuery plugins for now. - Reworked autocomplete to use the latest jQuery code. - Deleted references to $.browser.msie, no longer supported - Basic CSS support for autocomplete - lots more work needed there
2013-01-31Drop the requirement to have the install() function set the moduleBharat Mediratta
version. It's redundant. Fixes #1985.
2013-01-21Update copyright to 2013. Fixes #1953.Bharat Mediratta
2012-10-16Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2012-10-08Fix the delete function on item_tags and tag_items collections toBharat Mediratta
remove all tags from an item, or remove all items from a tag as appropriate (ie, empty the collection). Fixes #1902.
2012-08-06Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2012-07-21Avoid chaining after .gallery_autocomplete() - there are reports thatBharat Mediratta
it doesn't work with later versions of jQuery. Fixes #1889.
2012-06-01Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2012-05-19Create an ajax response framework that inserts <meta> tags to guardBharat Mediratta
against UTF-7, and create a $.gallery_autocomplete variant of jQuery's autocomplete that expects the first line to be a <meta> tag and discards it. More complete fix for #1871.
2012-05-12Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2012-04-30Fix #1843.Bharat Mediratta
2012-03-06Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2012-02-27Update copyright to 2012. #1822Bharat Mediratta
2011-09-28Manually fixed a merge conflict after pulling.Nathan Kinkade
2011-08-11Patch for tickets #1428 and #1760Tim Almdal
Create the concept of a Photo_Display_Context. If the user is browsing a dynamic album (i.e. tags) and chooses to look at an image in that album. The display of the image happens correctly, but the 'next' and 'previous' buttons are no longer consistent. When one of these is clicked, Gallery will open the adjacent image in the actuall album, not the dynamic album.
2011-05-12Changed this back to upstream version since now there is a user setting for ↵Nathan Kinkade
tag cloud size.
2011-05-12Manually merged a conflict after pulling from upstream.Nathan Kinkade
2011-04-23Insure that the tag count to display is always greater than 0. Refixes #1649.Tim Almdal
2011-04-23Insure that the tag count to display is always greater than 1. Refixes #1649.Tim Almdal
2011-04-22Allow the administrator to set the number of tags to display in the cloud ↵Tim Almdal
via the advanced settings. Fixes ticket #1649.
2011-04-22Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2011-04-21Use Tag_Model::url() instead of hand creating tag urls, since the APIBharat Mediratta
changed and that broke. Fixe #1680.
2011-04-04Guard against registered users removing tags from items they don't own. ↵Bharat Mediratta
Fixes #1671.
2011-04-02Fix against Ticket #1666Joe7
2011-03-27Centralize our encoding code into a new helpers and useBharat Mediratta
mb_convert_encoding if possible. Build on the work in c791ae96d5bb28f39b26a0e556e10e636f97436c by momo-i. Fixes #1660.
2011-01-31Did a git pull, but had to manually merge a conflict.Nathan Kinkade
2011-01-21Update copyright to 2011.Bharat Mediratta
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-14Git pull from devel line.Nathan Kinkade
2011-01-07Move tag count management into the model. Fixes #1586.Bharat Mediratta
2011-01-07Minor style cleanupBharat Mediratta
2011-01-06Updates per Bharat's pull request review. Renamed info_block_metadata event ↵Chad Kieffer
to info_block_get_metadata.
2011-01-04Display an item's tags in the info block.Chad Kieffer
2010-12-28Use db::expr instead of "new Database_Expression". Resolves #1560.Bharat Mediratta
2010-12-06Merge branch 'master' of git://github.com/gallery/gallery3Nathan Kinkade
2010-11-14Create a task to clean up tag counts and delete tag with no associatedBharat Mediratta
items. Fixes #1488.
2010-11-14Create a new task to resync tag task counts and delete tags that haveBharat Mediratta
no associated items.
2010-11-14Fix two issues with item deletion:Bharat Mediratta
1) We're compacting tags on every deletion which is slow. Since we delete albums in batch, we should just do one tag compaction at the end. Fixes #1487. 2) Issue introduced in 3d952f41c8d90b5c217616fb060697f93fb9db07 where we trigger an item_related_update in tag::clear_all(). Since tag::clear_all() is called when we delete an item, this causes the search module to attempt to index a deleted item. Move that triggering upstream.
2010-11-08Fix a bug in the way that we add tags that causes it to be really slowBharat Mediratta
when adding a tag to lots of items. Tag_Model::save() would call item_related_update for every tag related to an item upon save which is an O(N!) operation. Fixes ticket #1412.
2010-09-17Pulled latest source from upstream.Nathan Kinkade
2010-09-04Use the title of the root album as the site title for all RSS feeds.Bharat Mediratta
Fixes ticket #1307.
2010-08-19Bump 'Popular tags' widget to show 250 tags, and rename title from 'Popular ↵Nathan Kinkade
tags' to 'Tags'
2010-07-13Check for the existence of uploadify() in the add_photos_form. The HTML ↵Bharat Mediratta
uploader won't have that field.
2010-06-27When detecting encodings, give priority to ISO-8859-1 which seems toBharat Mediratta
solve the umlaut problem in IPTC data. Fixes ticket #1144.
2010-06-27Fix the autocomplete callback in item_edit_form(). We wereBharat Mediratta
incorrectly matching the form input in the jQuery selector. Did this ever work? Fixes ticket #1168