Questions tagged [tagging]

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is the act of adding tags (non-hierarchical keywords or terms assigned to a piece of information such as an Internet bookmark, digital image, or computer file).

Tagging is carried out to perform functions such as aiding in classification, marking ownership, noting boundaries, and indicating online identity. It may take the form of words, images, or other identifying marks.

920 questions
15
votes
2 answers

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…
user34537
14
votes
5 answers

MySQL / PHP: Find similar / related items by tag / taxonomy

I have a cities table which looks like this. |id| Name | |1 | Paris | |2 | London | |3 | New York| I have a tags table which looks like this. |id| tag | |1 | Europe | |2 | North America | |3 | River | and a…
Tom
  • 33,626
  • 31
  • 85
  • 109
14
votes
7 answers

Can you tag individual S3 objects in AWS?

It appears as though I can only use tags at the bucket level in S3. That seems to make sense in a way, because you would likely only do billing at that kind of macro level. However, I can see a few use cases for tagging so that different folks get…
user1424815
13
votes
2 answers

django-tagging or django-taggit, or something else?

Anyone have a recommendation for a tagging system in Django? django-tagging seems to be able to do everything short of cooking and vacuuming for you, but it hasn't been updated in more than a year. django-taggit looks simpler but equally as useful,…
rabbid
  • 5,465
  • 7
  • 26
  • 37
13
votes
2 answers

how can i create a tagging system using php and mysql?

wondering how i can create a tagging system in php and with a mysql database, my initial thoughts were to create a row in the table where the articles are stored, named tags, and list the tags seperated by commas, but i am not sure how i can create…
mcbeav
  • 11,893
  • 19
  • 54
  • 84
13
votes
2 answers

Sql query to find things tagged with all specified tags

Let's say I have the following tables: TAGS id: integer name: string POSTS id: integer body: text TAGGINGS id: integer tag_id: integer post_id: integer How would I go about writing a query that select all posts that are tagged with ALL of the…
tybro0103
  • 48,327
  • 33
  • 144
  • 170
13
votes
1 answer

Rails tagging and tag list

I saw alot of good tagging plugins but are these plugins really what I want? I want to: - Tag products, users and news - Search by tags - List all tags like SELECT DISTINCT tag (for a autocomplete tag list and button tags like here on…
xpepermint
  • 35,055
  • 30
  • 109
  • 163
12
votes
4 answers

How do you format keywords in Microdata for a CreativeWork?

I'm working with Microdata and I want to use Schema.org’s keywords for CreativeWork. The schema specifies that it should be text but do I put each keyword in a separate element with itemprop="keywords" or do I put them all in one keywords element?…
Last Rose Studios
  • 2,461
  • 20
  • 30
12
votes
2 answers

How to create a tagging system like on Stack Overflow or Quora

I want to create a tagging system like seen here on Stack Overflow or on Quora. It'll be its own model, and I'm planning on using this autocomplete plugin to help users find tags. I have a couple of questions: I want tags to be entirely…
Justin Meltzer
  • 13,318
  • 32
  • 117
  • 182
12
votes
1 answer

Content tagging with MongoDB

I want to implement content tagging using MongoDB. In a relational database, the best approach would be to have a many-to-many relation between the content (say, "products") and tags tables. But what is best approach with NoSQL databases? Would it…
theZiki
  • 939
  • 1
  • 8
  • 14
11
votes
1 answer

Some NLP stuff to do with grammar, tagging, stemming, and word sense disambiguation in Python

Background (TLDR; provided for the sake of completion) Seeking advice on an optimal solution to an odd requirement. I'm a (literature) student in my fourth year of college with only my own guidance in programming. I'm competent enough with Python…
floer32
  • 2,190
  • 4
  • 29
  • 50
11
votes
13 answers

CVS/SVN best practices for branching and tagging

i'm going to be responsible for deciding how tagging branching is going to happen in our CVS/SVN repo. Is there any literature that will help me understand the best way to work with CVS? either branching/tagging, etc? thanks
Joao Vilaca
  • 618
  • 1
  • 7
  • 18
11
votes
6 answers

SVN: Problems with tag creation in Eclipse with Subversive

I'm trying to create to create a tag in svn repo for my project. I use Eclipse and Subversive plugin. Every time I try tagging, I get the following error: Tag operation for some of selected resources failed. svn: Commit failed (details follow): …
Konstantin Burov
  • 68,980
  • 16
  • 115
  • 93
11
votes
1 answer

Add item to input programmatically

Selectize.js allows to transform inputs into widgets with tagging, auto-complete etc.. I'm trying to add tag into input using code. Here's what I have so far. $(function() { $("#tags").selectize({ create: true }) var…
daGrevis
  • 21,014
  • 37
  • 100
  • 139
10
votes
1 answer

How to generate pages for each tag in nanoc

I am new to nanoc and I am still finding my around it. I am able to get my site ready, it looks good and functions good, too. But I need to have a tags area. I am able to achieve that with <%= tags_for(post, params = {:base_url =>…
user1758162
  • 171
  • 8
1 2
3
61 62