tagging

How to add a user to django-tagging

I'm looking for a way to add "user = models.ForeignKey(User, editable=False)" to django-tagging model with templatetags support but my django knowledge is too low to understand the code of django-tagging. ...

Any distributed cache systems that allows for tagging content?

I'd like to know if there is any distributed cache systems like memcached, velocity or sharedcache that allows me to tag content with more than just it's name, or that can relate items to eachother, so if i invalidate the cache for one item it also invalidates the related items too. eg. if i have two pages that reference the same data a...

An easy way to support tags in a jekyll blog

I am using the standard jekyll installation to maintain a blog, everything is going fine. Except I would really to tag my posts. I can tag a post by using the YAML front matter, but how do I generate pages for each tag that can will list all posts for a tag? ...

Recommendations for a simple search engine for bag of words?

Any recommendations for small, lightweight, bag of words search engine? I have a set of 'documents' that are each basically a small bag of arbitrary words. Given a new document, I need to get a list of 'similar' documents along with some weight for how similar they might be. Documents are likely to be small.. a couple paragraphs at mos...

tag searching with many to many fields in php

i'm trying to do a search engine for a briefing system. I'm using a many to many relationship style setup with 3 databases representing the relationships. comms_briefings is where the data is stored for the briefings search_tags is where the tags are stored briefings_tags is where the relationship is formed i have this code already w...

Custom Django admin URL + changelist view for custom list filter by Tags

In django admin I wanted to set up a custom filter by tags (tags are introduced with django-tagging) I've made the ModelAdmin for this and it used to work fine, by appending custom urlconf and modifying the changelist view. It should work with URLs like: http://127.0.0.1:8000/admin/reviews/review/only-tagged-vista/ But now I get 'inval...

How to implement tagging system similar to SO in php/mysql?

Hi everyone, I'm coding a website in PHP/MySQL and I'd like to implement a similar to stackoverflow tagging engine. I have 3 relevant tables in DB: 1. Items 2. Tags 3. ItemTagMap (maps tags to items, n:n mapping) Now, on search page I'd like to show distinct list of all tags for entire search result (not just the current page), so that...

Implementing a 'tag panel' control in Delphi?

Hi, Please have a look at this screenshot I think these are the main features of such a 'tag panel': 1) Each tag on the panel is a standalone control and can be clicked 2) Auto line wrapping when there is not enough space to show the next tag in the current line. 3) Rounded corner rectangle border for each tag is a nice-to-have fe...

How do I control what images Facebook attaches to the feed story when my website is shared?

When I add a Facebook link to my website, it picks up randomly large images from the site, and not quite attached to the story. How can I control what images are picked up by Facebook? ...

How does AraMorph 1.2.1 work?

I have downloaded AraMorph 1.2.1 Perl version from SourceForge, but I do not know how to use it. Could someone explain to me how can I get it to work? ...

Django tagging migration to GAE

I have a Django app that use a django-tagging. I need to port this application to GAE. So, the main problem is to migrate tagging part. It has a complicated model, that should be rewritten to work with Google store. I think tagging is very popular django app and someone has the same problem before. Has someone a rewritten model? ...

Tagging with Zend Framework

I'm trying to create the same solutions as below, but using a simple MySQL query (instead of the static version used below where the words/tags are implemented in the code). The name of the MySQL table is "tags" and it has 2 columns "id" & "tag". Unfortunately I'm a beginner and I wasn't able to solve this. Can someone help me? /* Zend...

How to setup organization specific data elements about shared items?

First post, please be kind. NOTE: I have reviewed entry #20856 (how to implement tagging) but feel this is different due to the fact that the tags method I'm considering is organization specific in my app. I’m hoping someone can confirm the direction I’m going or point out some other options. (background) We are building a web applica...

rails tagging (tags with special characters)

Hello, I have recently started using RoR acts-as-taggable-on plugin/gem which doesnt seem to support special characters. If I want to use tags within other language other than english (that uses non-standard letters), the plugin wont work as expected (bad urls and characters in tag name). Is there any way to set it so that each tag wi...

Django CharField To String

Hello All, Hopefully a really simple one, possible even stupid! I'm building a tagging system in Django and would like to allow spaces and other characters in the tag name for display but filter them out and use lower case when matching names etc. To that end I have added a field to my Tag model as so: class Tag(models.Model): n...

How to implement tag system

Hi, i was wondering what the best way is to implement a tag system, like the one used in SO. I was thinking of this but i can't come up with a good scalable solution. The things i was thinking was is the basic 3 table solution. Having the tags table, the 'articles' tables, and a tag_to_articles table. Is this still the best solution to...

Tagging Records in a Continuous Form

In a continuous subform, I display records based on a DISTINCT query. Because it's distinct, each row does not include a record ID. Does anyone know of a way to add a checkbox (or similar), so that a user can select any of the records, which will then be used to create new records via code? I prefer to use a subform to a list, as it fe...

Grails: Many-to-Many without hasMany/belongsTo - instead using native 3NF - Searching full text

I am implementing a many-to-many mapping in grails using 3NF, Not using the hasMany or belongsTo property. Taken from this article it shows and explains quite a lot about its advantages. Article: http://burtbeckwith.com/blog/?p=169 Presentation notes: http://burtbeckwith.com/blog/files/169/gorm%20grails%20meetup%20presentation.pdf I'...

Boolean expressions for a tagging system in SQL

Having this SQL tables for a tagging system: CREATE TABLE tags ( id SERIAL PRIMARY KEY, name VARCHAR(100) ); CREATE INDEX tags_name_idx ON tags(name); CREATE TABLE tagged_items ( tag_id INT, item_id INT ); CREATE INDEX tagged_items_tag_id_idx ON tagged_items(tag_id); CREATE INDEX tagged_items_item_id_idx ON tagged_items...

Git: Remove local tags that are no longer on the remote repository

We use tags in git as part of our deployment process. From time to time, we want to clean up these tags by removing them from our remote repository. This is pretty straightforward. One user deletes the local tag and the remote tag in one set of commands. We have a little shell script that combines both steps. The 2nd (3rd, 4th,...) ...