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
0
votes
1 answer

How to use Django-tagging on Openshift

I have added the tagging in my app: from setuptools import setup setup( name='YourAppName', version='1.0', description='OpenShift App', author='Your Name', author_email='example@example.com', …
0
votes
1 answer

PHP - folksonomy tag checking regex

I'm trying to create a regex for checking values of submitted tags for a free form folksonomy system. Here is what I have now. if (!preg_match('/([^-\\a-zA-Z0-9._@\'])+/',$proposedtag)) { //true, good return true; } else { //false, bad…
jjclarkson
  • 5,890
  • 6
  • 40
  • 62
0
votes
2 answers

Jquery and formating a textarea for tagging?

I am looking for a way to use a textarea and get the values separated by commas, and place them into the array. Really I am looking for how to auto format the textarea so when the user types something in it either forces or something a comma break.…
matthewb
  • 3,462
  • 8
  • 37
  • 53
0
votes
2 answers

How to create user freindly routes for tagging

I have a model Image: class Image < ActiveRecord::Base attr_accessible :description, :name, :size, :image, :tag_ids has_many :taggings, :dependent => :destroy has_many :tags, :through => :taggings end Then I have my Tag model: class Tag <…
user929062
  • 807
  • 4
  • 12
  • 33
0
votes
1 answer

Image tagging with Rails 3.2

I have an image model and want to assign differnt, pre-choosen tags to the images. I don't want to use a plugin. This is my image model class Image < ActiveRecord::Base attr_accessible :date, :description, :name, :size, :image, :tag end Ideally I…
user929062
  • 807
  • 4
  • 12
  • 33
0
votes
1 answer

jenkins groovy script check if build is tagged

In groovy how to check if a particular build is tagged? I'm using this information to mark the build "Keep forever". I'm using this script to get builds of a particular job: item=hudson.model.Hudson.instance.getItem("Build") //build =…
Arjun Ramesh
  • 189
  • 1
  • 12
0
votes
1 answer

Facebook Mention Tagging not working

Mention Tagging: http://developers.facebook.com/docs/opengraph/mention_tagging/ Here is my code: NSURL *requestUrl = [NSURL URLWithString:[NSString…
Patrick
  • 262
  • 3
  • 12
0
votes
0 answers

Initiate photo tagging via URL

Is it possible to redirect the user to a photo URL on Facebook and automatically enable tagging? My application uploads the photo on the user's albums and then redirects him to the photo on Facebook. Is it possible to enable tagging mode…
kyriakos
  • 1,835
  • 2
  • 10
  • 10
0
votes
3 answers

Can't tag photo with Facebook API

I try to use the tagging function in the Facebook API, but it does not work. This is the permission code: $facebook->getLoginUrl( array( 'canvas' => 1, 'fbconnect' => 0, 'req_perms' => 'user_photos, friends_photos,…
0
votes
2 answers

Auto-generate Tags with ElasticSearch (or Thinking Sphinx / pg-search )

I've thought about this a bit (and looked at every "auto-generate tags for content" type post on StackOverflow). I have an Article (body:string) with multiple Tags (joined through Taggings). Right now in the app, in order to suggest tags for the…
Doug
  • 293
  • 1
  • 2
  • 10
0
votes
1 answer

PDF Tags don't show up in tags panel or reading order

I am tagging a small PDF (4pg), and midway through the second page the tags stopped appearing in the tags and the reading order panel after I chose the tag I wanted via TouchUp Reading Order. If I open the content panel, correct containers are…
Ryan B
  • 3,364
  • 21
  • 35
0
votes
1 answer

Text tagging/analysis tool for Mac

I'm a doctoral student doing research in the humanities. As part of my research I have gathered together a lot of interview text. To analyse this data I want to be able to easily tag sections of text with keywords (the tags need to be able to…
0
votes
1 answer

find_by_tag rendering in partial only

I've implemented a tagging system into my app so that posts can have different tags applied to them. I am rendering the posts with a certain tag like this <% my_posts = post.find_by_tag("sports") %> <%= my_posts.each do |post| %> <%=…
0
votes
1 answer

mssing posts on pages timesline

I wanna get all input from my pages timeline. so I read graph.facebook.com/pageid/feed with the page token. but some posts are missing - even when I try using FQL e.g. these are a user posts to his own wall and marked my page in his status or…
Marcus E
  • 3
  • 3
0
votes
1 answer

Committing to Master Branch from Tag

I have checked out a tag from my master branch. I made some changes and am wondering if there is a way to commit/merge those changes with the branch? Otherwise I see my only option as pulling the latest and then redoing the changes there. Any…
taraloca
  • 9,077
  • 9
  • 44
  • 77