tagging

Tagging searching for previous tags, while allowing for new tags to be accepted

I'm looking for a jQuery plug-in that works the way tagging works on Last.fm. Tagging on Last.fm, uses an autosuggest to find previous tags and recommend them. If you select one of these tags, it updates the CSS like Facebook so it has a bubble around it with an X. Tags are seperated with a comma: , For tags entered that are new and...

Winforms control that works like ajax tag-completion

Heya, I want to create a winforms app where you can assign tags to an entity. ofc I want the customer to re-use existing tags a lot. That's why I want to show them the list of tags while they are typing (similar to intellisense in VS and the tags-dropdown even here in stackoverflow ;)) do you have any control(s) in mind that offers th...

How do i implement tag searching? with lucene?

I havent used lucene. Last time i ask (many months ago, maybe a year) people suggested lucene. If i shouldnt use lucene what should i use? As am example say there are items tagged like this apples carrots apples carrots apple banana if a user search apples i dont care if there is any preference from 1,2 and 4. However i seen many for...

Django: How to dynamically add tag field to third party apps without touching app's source code

Scenario: large project with many third party apps. Want to add tagging to those apps without having to modify the apps' source. My first thought was to first specify a list of models in settings.py (like ['appname.modelname',], and call django-tagging's register function on each of them. The register function adds a TagField and a cus...

What's the sql scheme for supporting Tags system?

Hi, i've coded a tiny forum software in php where people posts threads, and i want to support tags. How many SQL tables should i make for this ? and briefly how the tags system will work? Thanks ...

Categories and Tagging in a Web Application

I'm creating a small trivia site and would like to know if anyone has insight as to how I could categorize the trivia questions/quizzes so that it does not hinder the "typical browse around and answer questions" type of user, as opposed to one who uses the search engine to explicitly find trivia of interest. Trivia content will be creat...

Add chapters to m4a (mp4) files

I used ChapterTool from Apple, but it's broken and discontinued since 2005.. Is there any other similar command line tool, or library (I'm writing in ruby..) ? ...

Tagging in rails with is_taggable

there is an example provided on how to add tags to a model with is_taggable, and it works very nice (working in 5 minutes) Now, I also need the opposite, show all records that are tagged with a certain word. Something like: ModelWithTag.find_by_tags "foo" or find_all_tagged_with "foo" Is this possible with is_taggable ? ...

Design for tagging system in GAE-J

I need a simple tagging system in GAE-J. As I see it, the entity that is being tagged should have a collection of keys referring to the tags with which it's associated. A tag entity should simply contain the tag string itself, and a collection of keys pointing to the entities associated with the tag. When an entity's list of tags is...

Adding 'tags' to a Rails' application with 'nested model forms'

Im learning Rails and have built a'store' application from the 'Agile Development w/ Rails' book. Ive gone beyond the lesson in the book and Im trying to add 'tags' to each product in the the store. Id then like a user to be able to click on a tag (that will be in a list in the sidebar), and have the store repopulate with those tagged ...

Designing a Tag table that tells how many times it's used

Hi, all. I am trying to design a tagging system with a model like this: Tag: content = CharField creator = ForeignKey used = IntergerField It is a many-to-many relationship between tags and what's been tagged. Everytime I insert a record into the assotication table, Tag.used is incremented by one, and decremented by one in...

Association and model data saving problem

Developing with cakephp 1.3 (latest from github). There are 2 models bind with hasAndBelongsToMany: documents and tags. Document can have many tags in other words. I've add a new document submitting form there user can enter a list of tags separated with commas (new tag will be added, if not exist already). I looked at cakephp bakery 2....

Use tags or directories to distguish platform versions in SCM?

We have a series of scripts that are used when building Apache. Specifically these scripts are used to: patch the vanilla source code, patch in customer specific functionality, build and install the Apache server, build customer specific modules, and create a custom install tarball ready for eventual deployment. N.B. The deployment o...

How to design data storage for partitioned tagging system?

How to design data storage for huge tagging system (like digg or delicious)? There is already discussion about it, but it is about centralized database. Since the data is supposed to grow, we'll need to partition the data into multiple shards soon or later. So, the question turns to be: How to design data storage for partitioned tagging...

acts_as_taggable_on with finders...

I would like to use acts_as_taggable_on to do a auto suggest style tagging similar to stackoverflow below... that or facebook. But I'm unsure looking thru the rdocs what methods to use to pull all the various tags from a giving model. Article.tag_counts_on(:tags) That gives me all the tags... but i'd like to do something more advance...

Tag suggestion (not tag autocomplete)

AJAX autocomplete is fairly simple to implement. However, I wonder how to handle smart tag suggestion like this on SO. To clarify the difference between autocomplete and suggestion: autocomplete: foo [foobar, foobaz] suggestion: foo [barfoo, foobar, foobaz], or even better, with 'did you mean' feature: [barfoo, foobar, foobaz, fobar, ...

tag statistics with rails

I am using the plugin: http://github.com/karmi/is_taggable How can I perform simple statistics on my tags, e.g. what's the most used tag? which tags are not used, etc.? With SQL I would do something like: select id, count(*) from taggings group by taggable_id; But I am not seeing how to do this with the plugin. Thanks! ...

Is it possible to have an inconsistent branch/tag with SVN due to concurrent commit action?

I'm trying to understand whether subversion has its own mechanisms for regulating concurrent user activities on the trunk (IE a branch/tag action and a commit action happening at the same time) or if it's up to the users to sync between themselves before acting on the trunk. I've been trying to find documentation about this on the net ...

Control for Image tagging inside Facebook Application

Is there an FBML / XFBML tag to duplicate the image tagging functionality inside Facebook ? I am developing a Facebook App and I need the users to be able to tag their photos but inside my App. I haven´t seen a control to do this in FB Docs, neither in FBML nor in XFBML. But maybe someone here has more experience than me in this and can...

Tag Suggestion system, approaches and ideas

Hi guys! -- I am working on a (auto) tag suggestion system (NOT tag autocomplete). Lets say I want to suggest tags for a given question like here on SO (although SO's tagging system is auto-complete). My main idea is to get the intersection between the tags_set and the given question.split()_set. (In python the set_intersection is effici...