active questions tagged tagging - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T19:09:11Zhttp://stackoverflow.com/feeds/tag/tagginghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1898030/video-streaming0Video streamingMax2009-12-13T22:27:10Z2009-12-13T22:39:11Z
<p>Hi guys - anyone that can help would be greatly appreciated. </p>
<p>I want to setup a video streaming service from my server. I want to store videos on this. Now I was thinking of streaming the video through some form of player (e.g. JWPlayer) and (a) allowing users to step through the video frame by frame (b) tagging the video by associating text (data) with any frame (time) in the video (c) being able to jump to these tags (d) use the tags to reference the video.</p>
<p>What are the best components for achieving this with say up to 100 concurrent users?</p>
<p>Max. </p>
http://stackoverflow.com/questions/1847909/efficient-implementation-of-faceted-search-in-relational-databases2Efficient implementation of faceted search in relational databasesadam.dziendziel2009-12-04T16:01:23Z2009-12-07T15:44:23Z
<p>I am trying to implement a <a href="http://en.wikipedia.org/wiki/Faceted%5Fsearch" rel="nofollow">Faceted search</a> or tagging with multiple-tag filtering. In the faceted navigation, only not-empty categories are displayed and the number of items in the category that are also matching already applied criteria is presented in parenthesis. </p>
<p><a href="http://forge.mysql.com/wiki/TagSchema#Items%5FHaving%5FAll%5Fof%5FA%5FSet%5Fof%5FTags" rel="nofollow">I can get all items having assigned categories using INNER JOINs</a> and <a href="http://stackoverflow.com/questions/1653280/getting-count-of-related-tags">get number of items in all category using COUNT and GROUP BY</a>, however I'm not sure how it will scale to millions of objects and thousands of tags. Especially the counting. </p>
<p>I know that there are some not-relational solutions like <a href="http://lucene.apache.org/solr/" rel="nofollow">Lucene + SOLR</a>, but I've found also some closed-source RDBMS-based implementations that are said to be entreprise-strength like <a href="http://facetmap.com" rel="nofollow">FacetMap.com</a> or <a href="http://www.endeca.com/" rel="nofollow">Endeca</a> software, so there must be an efficient way to perform faceted search in relational databases.</p>
<p>Does anybody have experience in faceted search and could give some tips? </p>
<p>Cache the counts for each category set? Maybe use some smart incremental technique that will update the counters? </p>
<p>Edit:</p>
<p>An example of faceted navigation can be found here: <a href="http://orange.sims.berkeley.edu/cgi-bin/flamenco.cgi/famuseum/Flamenco" rel="nofollow">Flamenco</a>.</p>
<p>Currently I have the standard 3-table scheme (items, tags and items_tags like described here: <a href="http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html#toxi" rel="nofollow">http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html#toxi</a> ) plus a table for facets. Each tag has assigned a facet.</p>
http://stackoverflow.com/questions/1852685/how-to-get-rows-from-articles-table-10-most-popular-tags0How to get rows from articles table 10 most popular tags?tomaszs22009-12-05T16:43:25Z2009-12-05T18:26:21Z
<p>Hello,</p>
<p>I have in my database a table Articles with Article Name and Article Tags. Article tags is a string column with tags in it like this: "people, life, president". Every article is tagged in this fashion.</p>
<p>Now i would like to get 10 most popular tags for whole population of articles. How to do this?</p>
http://stackoverflow.com/questions/1566038/how-does-aramorph-1-2-1-work0How does AraMorph 1.2.1 work?Hani2009-10-14T12:51:51Z2009-12-05T02:05:12Z
<p>I have downloaded <a href="http://sourceforge.net/projects/aramorph/" rel="nofollow">AraMorph 1.2.1</a> 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?</p>
http://stackoverflow.com/questions/1844802/how-the-tags-will-be-useful-1How the tags will be useful? [closed]naras2009-12-04T04:13:39Z2009-12-05T00:45:18Z
<p>Use of tag support?Is it for searching purpose? Or anay thing else is it useful?
Please let me know</p>
http://stackoverflow.com/questions/1821564/how-do-i-combine-stackoverflows-tags0How do I combine stackoverflow's tags [closed]Jon2009-11-30T18:34:29Z2009-12-05T00:44:48Z
<p>Probably a silly question, but I cannot see it.
How do I search for stackoverflow questions that have, for example, both a "junit" and a "logging" tags set ?<br>
Combing the tags with "obvious suspects" (" ", "+", "&", "and", etc.) does not work for me.</p>
http://stackoverflow.com/questions/1841341/git-remove-local-tags-that-are-no-longer-on-the-remote-repository2Git: Remove local tags that are no longer on the remote repositorykEND2009-12-03T17:01:42Z2009-12-04T15:43:17Z
<p>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.</p>
<p>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.</p>
<p>The 2nd (3rd, 4th,...) user now has local tags that are no longer reflected on the remote. </p>
<p>I am looking for a command similar to <code>git remote prune origin</code> which cleans up locally tracking branches for which the remote branch has been deleted.</p>
<p>Alternatively, a simple command to list remote tags could be used to compare to the local tags returned via <code>git tag -l</code>.</p>
http://stackoverflow.com/questions/1847175/clearing-externals-during-a-subversion-tag-running-from-msbuild0Clearing externals during a subversion tag running from MSBuildildev2009-12-04T14:11:39Z2009-12-04T14:11:39Z
<p>Hi,</p>
<p>I'm using SvnCopy (from the MSBuild community tasks) to create a tag in Subversion. What I would like to do is for the Externals on any folders in the trunk to not be copied during the process. Is this possible?</p>
<p>TIA</p>
http://stackoverflow.com/questions/1830015/boolean-expressions-for-a-tagging-system-in-sql2Boolean expressions for a tagging system in SQLKronuz2009-12-02T00:52:37Z2009-12-02T21:46:56Z
<p>Having this SQL tables for a tagging system:</p>
<pre><code>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(item_id);
CREATE TABLE items (
id SERIAL PRIMARY KEY,
content VARCHAR(255)
);
</code></pre>
<p>The user's boolean expression query "<strong>tag1 AND tag2</strong>" in SQL is:</p>
<pre><code>SELECT items.* FROM items
INNER JOIN tagged_items AS i1 ON (items.id = i1.item_id) INNER JOIN tags AS t1 ON (i1.tag_id = t1.id)
INNER JOIN tagged_items AS i2 ON (items.id = i2.item_id) INNER JOIN tags AS t2 ON (i2.tag_id = t2.id)
WHERE t1.name = 'tag1' AND t2.name = 'tag2';
</code></pre>
<p>How do you translate other queries with boolean expressions, such as "<strong>tag1 OR tag2 AND tag3</strong>" ...or even more complex queries such as "<strong>tag1 AND (tag2 OR tag3) AND NOT tag4 OR tag5</strong>" to SQL?</p>
http://stackoverflow.com/questions/1643838/django-tagging-migration-to-gae0Django tagging migration to GAEDmitry Demidenko2009-10-29T13:44:08Z2009-12-01T19:00:04Z
<p>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?</p>
http://stackoverflow.com/questions/1811195/tagging-records-in-a-continuous-form1Tagging Records in a Continuous Formmaxhugen2009-11-28T00:56:08Z2009-12-01T01:13:20Z
<p>In a continuous subform, I display records based on a <strong>DISTINCT</strong> query. Because it's distinct, each row does <strong>not</strong> include a record ID.</p>
<p>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?</p>
<p>I prefer to use a subform to a list, as it features lots of column sorting and filtering functions.</p>
<p>MTIA</p>
http://stackoverflow.com/questions/1814013/grails-many-to-many-without-hasmany-belongsto-instead-using-native-3nf-searc1Grails: Many-to-Many without hasMany/belongsTo - instead using native 3NF - Searching full textDaxon2009-11-28T22:46:28Z2009-11-28T22:46:28Z
<p>I am implementing a many-to-many mapping in grails using 3NF,
Not using the hasMany or belongsTo property.</p>
<p>Taken from this article it shows and explains quite a lot about its advantages.</p>
<p>Article: <a href="http://burtbeckwith.com/blog/?p=169" rel="nofollow">http://burtbeckwith.com/blog/?p=169</a></p>
<p>Presentation notes: <a href="http://burtbeckwith.com/blog/files/169/gorm%20grails%20meetup%20presentation.pdf" rel="nofollow">http://burtbeckwith.com/blog/files/169/gorm%20grails%20meetup%20presentation.pdf</a></p>
<p>I'm trying to make a Tag system onto questions, kind of like this(stackoverflow :))</p>
<p>I can save the Question and the Tags, then save the association with them,
but now I want to be able to search and serve up a full Question with Tags,</p>
<p>I have 3 domain classes - Question, Tag and QuestionTag</p>
<pre><code>class Question {
String title
String content
Date createdAt
String tags
static transients = ['tags']
}
</code></pre>
<p>Tag Class</p>
<pre><code>class Tag {
String name
static constraints = {
name(blank: false, maxSize: 40)
name(unique: true)
}
}
</code></pre>
<p>QuestionTag Class</p>
<pre><code> class QuestionTag implements Serializable{
Question question
Tag tag
static mapping = {
table 'question_tags'
version false
id composite: ['question', 'tag']
}
</code></pre>
<p>These produce 3 tables, in 3 normalized form</p>
<p>Saving works, a question and number of tags.</p>
<pre><code>def question = new Question()
question.properties = params
question.save()
def tags = question.tags
tags.split(' ')?.each { tagName ->
Tag tag = Tag.findByName(tagName) ?: new Tag(name: tagName).save()
QuestionTag questionTag = new QuestionTag(question: question, tag: tag)
QuestionTag.save(flush: true)
}
</code></pre>
<p><strong>Q.1</strong> How can I load a "Question" along with its set of "Tags"? if there were 5 tags associated with the Question.</p>
<p>Now I installed the "searchable" plugin, I applied the "static searchable=true" to all three classes. but I get compile errors when I add that property to the QuestionTag class,
thinking is has to do with the lack of "hasMany", </p>
<pre><code>No converter defined for type [com.app.Question]
</code></pre>
<p><strong>Q.2</strong> If I add "hasMany" will it generate another table under-the-hood, yet I have defined my own. Or will it reference my QuestionTag table that I made?</p>
<p><strong>Q.3</strong> Using the 3NF is there anyway I can search for Tags AND Question full text, then return the Questions associated with the search keywords that match Tags or text.</p>
http://stackoverflow.com/questions/1810356/how-to-implement-tag-system3How to implement tag systemSaif Bechan2009-11-27T19:35:39Z2009-11-28T10:27:43Z
<p>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.</p>
<p>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.</p>
<p>Is this still the best solution to this problem, or are there alternatives. Using this method the table would get extremely large in time, and for searching this is not too well i assume. On the other hand it is not that important that the query executes fast.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1782622/django-charfield-to-string0Django CharField To StringDavidM2009-11-23T11:40:16Z2009-11-23T15:25:28Z
<p>Hello All,</p>
<p>Hopefully a really simple one, possible even stupid!</p>
<p>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. </p>
<p>To that end I have added a field to my Tag model as so:</p>
<pre><code>class Tag(models.Model):
name = models.CharField(max_length=200, unique=True)
matchname = re.sub("\W+" , "", name.lower())
</code></pre>
<p>However I am running into a problem, the CharField is not a string and I cannot for the life of me find out how to convert it to one!</p>
<p>Any help (plus comments on the general approach) would be much appreciated!</p>
<p>Thanks,<br>
Dave</p>
<p>Edit: Great answers one and all. Have marked Dave Webb's as it explains the main thing I was doing wrong, Doh! Although I will be using Ferran's answer as it makes sense to be able to use Djangos built in querys on the matchname, plus it means I can make both unique to ensure no repeats with different caps etc.</p>
<p>Thanks guys, if I could mark all as answers I would as they are all valid and potentially useful for others in the same situation. Up votes all round!</p>
<p>(also should I leave this here or add another post for it?)</p>
http://stackoverflow.com/questions/1780462/rails-tagging-tags-with-special-characters0rails tagging (tags with special characters)Aljaz2009-11-22T23:55:51Z2009-11-22T23:55:51Z
<p>Hello,</p>
<p>I have recently started using RoR acts-as-taggable-on plugin/gem which doesnt seem to support special characters.</p>
<p>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).</p>
<p>Is there any way to set it so that each tag will use own permalink for url listings?</p>
<p>Are there any other plugins for tagging with rails that support this?</p>
<p>Many thanks in advance!</p>
http://stackoverflow.com/questions/1712622/how-to-setup-organization-specific-data-elements-about-shared-items1How to setup organization specific data elements about shared items?Pat2009-11-11T02:25:54Z2009-11-11T17:26:04Z
<p>First post, please be kind.</p>
<p>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.</p>
<p>(background) We are building a web application that gives different organizations visibility to their inventory in different locations. The database stores users, organizations, sites, and items and there are links from sites and items to organizations that allow us to determine which items / sites to show to which users (based on their organization). </p>
<p>It is common for two (or more) organizations to want to use the portal to check on the stock status of (for example) Widget A in the Los Angeles Warehouse. That part is fine. However, the different organizations also track unique information about Widget A. For example, Org 1 wants to track the color, volume, and primary vendor for each item. Org 2 wants to track Color, Stock Type, Inventory Cycle, Buyer Code for each item. I want to avoid a situation where I have to have a table loaded with all these possible fields and then figure out which organizations use which fields.</p>
<p>I’m considering using something along the lines of tags, but adding a tag category, and having the tag category be defined at the Org level. So, the basic table structure would be something like:</p>
<p>Table: OrgTagCategory<br>
Fields: OrgId, TagCategoryId, CategoryTitle </p>
<p>Table: OrgTag<br>
Fields: OrgId, TagCategoryId, TagId, TagTitle </p>
<p>Table: OrgItemTag<br>
Fields: OrgId, ItemId, TagId</p>
<p>Then, when the user logged in the main dashboard the grid would include their appropriate item fields as columns in the grid. So, from above example, Org 1 would see Item#, Description (would be shown for all), color, volume, and primary vendor. Org 2 would be shown Item#, Description, Color, Stock Type, Inventory Cycle, Buyer Code.</p>
<p>Am I overthinking this or is there a simpler method of doing this that I’m missing? All thoughts / feedback sincerely appreciated.</p>
http://stackoverflow.com/questions/1687950/tagging-with-zend-framework0Tagging with Zend FrameworkJennifer2009-11-06T14:26:29Z2009-11-10T16:40:21Z
<p>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".</p>
<p>Unfortunately I'm a beginner and I wasn't able to solve this. Can someone help me?</p>
<pre><code>/* Zend_Tag_Item version*/
$list = new Zend_Tag_ItemList();
$list[] = new Zend_Tag_Item(array('title' => 'Code', 'weight' => 50));
$list[] = new Zend_Tag_Item(array('title' => 'Zend Framework', 'weight' => 1));
$list[] = new Zend_Tag_Item(array('title' => 'PHP', 'weight' => 5));
$list->spreadWeightValues(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10));
foreach ($list as $item) {
$this->view->tagtitle = $item->getTitle();
$this->view->tagweight = $item->getParam('weightValue');
}
/* Zend_Tag_Cloud version*/
$cloud = new Zend_Tag_Cloud(array(
'tags' => array(
array('title' => 'Code', 'weight' => 50,
'params' => array('url' => '/tag/code')),
array('title' => 'Zend Framework', 'weight' => 1,
'params' => array('url' => '/tag/zend-framework')),
array('title' => 'PHP', 'weight' => 5,
'params' => array('url' => '/tag/php')),
)
));
$formdata->pagecontent->tagging = $cloud;
</code></pre>
http://stackoverflow.com/questions/1346905/how-to-add-a-user-to-django-tagging0How to add a user to django-taggingservicesfourchette2009-08-28T13:15:06Z2009-11-08T06:00:02Z
<p>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.</p>
http://stackoverflow.com/questions/820296/auto-categorization-of-content0Auto Categorization of ContentJonathan Lyon2009-05-04T14:14:39Z2009-11-07T20:00:02Z
<p>Hi all</p>
<p>I'm developing a script that extracts the messages from the message archive of a particular meetup.com group of which I'm a member - <a href="http://www.meetup.com/opencoffee/messages/archive/" rel="nofollow">http://www.meetup.com/opencoffee/messages/archive/</a></p>
<p>The idea is to dynamically add these to a wordpress site and allow people to search messages, auto tag messages etc.</p>
<p>The issue I have is how best to auto categorize these messages. I would welcome any thoughts and ideas of how best to go about this and what would be the most efficient way of programming this.</p>
<p>Option 1</p>
<p>Find a source of tags by subject area such as finance, technology, business etc by using the delicious API and find related tags by subject:-</p>
<p><a href="http://delicious.com/tag/finance" rel="nofollow">http://delicious.com/tag/finance</a></p>
<p><a href="http://delicious.com/tag/technology" rel="nofollow">http://delicious.com/tag/technology</a></p>
<p>if a message contains these tags then the message is assigned to the respective category.</p>
<p>I believe this could work but not sure the most efficient method of scanning the message for these tags.</p>
<p>Option 2</p>
<p>Find sites that are representative of the categories I need such as ft.com, the economist for finance etc, techcrunch for technology etc and then determine what tags are being used by people to tag these sites and determine by default that those tags are how people relate to these sites and their content stack.</p>
<p>Option 3</p>
<p>Pass the message url to <a href="http://semanticproxy.com/" rel="nofollow">http://semanticproxy.com/</a> (part of Reuters Calais project) or use the Open Calais API. This I have tried but without much success as the variable depth of content is not always sufficient to return meaningful taxonomy.</p>
<p>Here is an example message that I parsed through the calais api:-</p>
<p>Original Message</p>
<p><a href="http://www.meetup.com/opencoffee/messages/6045615/" rel="nofollow">http://www.meetup.com/opencoffee/messages/6045615/</a></p>
<p>Calais Result</p>
<p><a href="http://www.mashinteractive.com/opencoffee/calais.php" rel="nofollow">http://www.mashinteractive.com/opencoffee/calais.php</a></p>
<p>SUMMARY</p>
<p>So That's about it. I would welcome any thoughts and ideas on methodology and tips on how best to approach the message scanning for options 1 and 2. </p>
<p>FYI there are approximately, 1,700 messages to date and I'm guessing I may have 10 categories with each category being defined by 20 or 30 tags.</p>
<p>If anyone would like to help develop a Wordpress plugin or class to do this I would be more than happy to have you on board. Bear in mind I'm not a programmer, I just tinker around the edges and pretend I am one.</p>
<p>Thanks in advance</p>
<p>Jonathan
CEO</p>
<p>Crowd People</p>
http://stackoverflow.com/questions/1047277/any-ideas-on-how-to-implement-flickrs-tags-clustering-system-preferrably-in-ra2Any ideas on how to implement flickr's tags clustering system? (preferrably in Rails)Baby Diego2009-06-26T04:08:50Z2009-10-30T21:57:45Z
<p>I'm mainly just looking for a discussion of approaches on how to go from decentralized, non-normalized, completely open user-submitted tags, to start making sense of all of it through combining them into those semantic groups they called "clusters".</p>
<p>Does it take actual people to figure out what people actually mean by the tags used, or can it be done simply by automatically analyzing how often the tags go together?</p>
<p>That kind of stuff. Feel free to elaborate wildly :) (Also, if this has been discussed elsewhere, I'd love to hear about it).</p>
http://stackoverflow.com/questions/513493/database-schema-for-machine-tags0Database Schema for Machine Tags?Gabriel2009-02-04T21:40:34Z2009-10-26T01:00:01Z
<p>Machine tags are more precise tags: <a href="http://www.flickr.com/groups/api/discuss/72157594497877875" rel="nofollow">http://www.flickr.com/groups/api/discuss/72157594497877875</a>. They allow a user to basically tag anything as an object in the format
object:property=value</p>
<p>Any tips on a rdbms schema that implements this? Just wondering if anyone
has already dabbled with this. I imagine the schema is quite similar to implementing
rdf triples in a rdbms</p>
http://stackoverflow.com/questions/1558802/how-do-i-control-what-images-facebook-attaches-to-the-feed-story-when-my-website1How do I control what images Facebook attaches to the feed story when my website is shared?ramdaz2009-10-13T08:02:51Z2009-10-14T03:56:50Z
<p>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?</p>
http://stackoverflow.com/questions/1552565/implementing-a-tag-panel-control-in-delphi3Implementing a 'tag panel' control in Delphi?Edwin2009-10-12T03:33:41Z2009-10-12T10:44:51Z
<p>Hi,</p>
<p>Please have a look at this screenshot</p>
<p><img src="http://www.maclife.com/files/u18/Yep3-big.jpg" alt="alt text" /></p>
<p>I think these are the main features of such a 'tag panel':</p>
<p>1) Each tag on the panel is a standalone control and can be clicked</p>
<p>2) Auto line wrapping when there is not enough space to show the next tag in the current line.</p>
<p>3) Rounded corner rectangle border for each tag is a nice-to-have feature. </p>
<p>I want to implement the similar function in Delphi, Is there an existing control to do this? If not, what's the best way to implement such a control?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1529073/how-to-implement-tagging-system-similar-to-so-in-php-mysql0How to implement tagging system similar to SO in php/mysql?Michael D.2009-10-07T01:37:05Z2009-10-07T03:34:56Z
<p>Hi everyone,</p>
<p>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)</p>
<p>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 users can "refine" their search by adding/removing tags from that tag list.</p>
<p>The question is that it's a pretty heavy query on the DB and there can be tons of search requests that result in different result sets and thus different tag sets.</p>
<p>Does anyone know how to implement this effectively?</p>
http://stackoverflow.com/questions/1524476/custom-django-admin-url-changelist-view-for-custom-list-filter-by-tags0Custom Django admin URL + changelist view for custom list filter by TagsBotondus2009-10-06T09:14:12Z2009-10-06T11:18:38Z
<p>In django admin I wanted to set up a custom filter by tags (tags are introduced with <a href="http://code.google.com/p/django-tagging/" rel="nofollow">django-tagging</a>)</p>
<p>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: <a href="http://127.0.0.1:8000/admin/reviews/review/only-tagged-vista/" rel="nofollow">http://127.0.0.1:8000/admin/reviews/review/only-tagged-vista/</a></p>
<p>But now I get 'invalid literal for int() with base 10: 'only-tagged-vista', error which means it keeps matching the review edit page instead of the custom filter page, and I cannot figure out why since it used to work and I can't find what change might have affected this.</p>
<p>Any help appreciated.</p>
<p>Relevant code:</p>
<pre><code>class ReviewAdmin(VersionAdmin):
def changelist_view(self, request, extra_context=None, **kwargs):
from django.contrib.admin.views.main import ChangeList
cl = ChangeList(request, self.model, list(self.list_display),
self.list_display_links, self.list_filter,
self.date_hierarchy, self.search_fields,
self.list_select_related,
self.list_per_page,
self.list_editable,
self)
cl.formset = None
if extra_context is None:
extra_context = {}
if kwargs.get('only_tagged'):
tag = kwargs.get('tag')
cl.result_list = cl.result_list.filter(tags__icontains=tag)
extra_context['extra_filter'] = "Only tagged %s" % tag
extra_context['cl'] = cl
return super(ReviewAdmin, self).changelist_view(request, extra_context=extra_context)
def get_urls(self):
from django.conf.urls.defaults import patterns, url
urls = super(ReviewAdmin, self).get_urls()
def wrap(view):
def wrapper(*args, **kwargs):
return self.admin_site.admin_view(view)(*args, **kwargs)
return update_wrapper(wrapper, view)
info = self.model._meta.app_label, self.model._meta.module_name
my_urls = patterns('',
# make edit work from tagged filter list view
# redirect to normal edit view
url(r'^only-tagged-\w+/(?P<id>.+)/$',
redirect_to,
{'url': "/admin/"+self.model._meta.app_label+"/"+self.model._meta.module_name+"/%(id)s"}
),
# tagged filter list view
url(r'^only-tagged-(P<tag>\w+)/$',
self.admin_site.admin_view(self.changelist_view),
{'only_tagged':True}, name="changelist_view"),
)
return my_urls + urls
</code></pre>
<p>Edit: Original issue fixed.</p>
<p>I now receive 'Cannot filter a query once a slice has been taken.' for line:</p>
<pre><code>cl.result_list = cl.result_list.filter(tags__icontains=tag)
</code></pre>
<p>I'm not sure where this result list is sliced, before tag filter is applied.</p>
<p>Edit2:
It's because of the self.list_per_page in ChangeList declaration. However didn't find a proper solution yet. Temp fix:</p>
<pre><code> if kwargs.get('only_tagged'):
list_per_page = 1000000
else:
list_per_page = self.list_per_page
cl = ChangeList(request, self.model, list(self.list_display),
self.list_display_links, self.list_filter,
self.date_hierarchy, self.search_fields,
self.list_select_related,
list_per_page,
self.list_editable,
self)
</code></pre>
http://stackoverflow.com/questions/1481240/tagging-avoiding-similar-tags0Tagging - avoiding similar tags [closed]iceangel892009-09-26T13:40:46Z2009-09-26T14:33:25Z
<p>I have noticed this even here on Stack Overflow. Where there maybe many similar tags eg. <em>php</em> vs <em>php4</em> vs <em>php5</em>, or because of spaces eg. <em>zendframework</em> vs <em>zend-framework</em>.</p>
<p>So I hope that in future when I do a tagging system, I want to avoid this. Some ideas I have are:</p>
<ul>
<li><p>Having a message telling users to use say dashes (<code>-</code>) or underscores (<code>_</code>) for spaces eg. <em>zend-framework</em> (which is better btw, I noticed <code>_</code> is usually used). But how can I validate this, I can’t I think?</p></li>
<li><p>About the similar tags ... I dunno if having a self join of the tags table (id, related[FK], tag) to show a hierarchy will be good, like <em>php4</em> & <em>php5</em> is related to <em>php</em>.</p></li>
</ul>
http://stackoverflow.com/questions/1465323/tag-searching-with-many-to-many-fields-in-php0tag searching with many to many fields in phpNeil Hickman2009-09-23T11:02:59Z2009-09-23T13:22:19Z
<p>i'm trying to do a search engine for a briefing system.</p>
<p>I'm using a many to many relationship style setup with 3 databases representing the relationships.</p>
<p>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</p>
<p>i have <a href="http://pastie.org/627245" rel="nofollow">this code</a> already which <strong>ALMOST</strong> perfect however, for some reason it returns the same row in the database multiple times if a tag appears more than once in the briefing.</p>
<p>eg if user searchs for</p>
<blockquote>
<p>$ "complx enquiries"</p>
</blockquote>
<p>the system will return any row that has the tag complx and enquiries twice as there are two matching tags. I want the results to be ordered desc with the row that gets the most results first and only to appear once.</p>
<p>any ideas? :)</p>
http://stackoverflow.com/questions/1457306/recommendations-for-a-simple-search-engine-for-bag-of-words1Recommendations for a simple search engine for bag of words?ericslaw2009-09-21T22:55:53Z2009-09-22T01:45:45Z
<p>Any recommendations for small, lightweight, bag of words search engine?</p>
<p>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 most.</p>
<ul>
<li>Stemming would be great but not highly required.</li>
<li>Word expansion with word nets not required.</li>
<li>opensource or freeware preferred, as this is a prototype, not a full-blow project.</li>
<li>unix/linux platform preferred.</li>
</ul>
<p>I'd be using it as a subcomponent and expect only to feed it documents with an ID and would later do searches for 'similar' documents to one I currently have.</p>
http://stackoverflow.com/questions/736886/attaching-a-tag0Attaching a tag Annie2009-04-10T06:36:55Z2009-09-10T19:54:49Z
<p>What is the actual procedure for attaching multiple tags to a particular content in a project development. What is this tagging all about???</p>
<p>I need to create a tag cloud for my project in .NET using c#. Help me out as a beginner for basic tagging concept.</p>
http://stackoverflow.com/questions/1327594/on-scaling-tags-in-a-tag-cloud3On scaling tags in a tag cloudjamesh2009-08-25T11:14:37Z2009-09-10T19:54:16Z
<p>I am implementing a tag cloud on a mobile device. The details of data-model etc, are not particularly important here. My question is about the scaling of tags:</p>
<p><strong>What is the 'best' expression to map tag frequency to font size?</strong></p>
<p>I have looked at <a href="http://blogs.dekoh.com/dev/2007/10/29/choosing-a-good-font-size-variation-algorithm-for-your-tag-cloud/" rel="nofollow">this post</a> discussing linear and logarithmic scaling and <a href="http://stackoverflow.com/questions/613274/fitting-tag-cloud-to-available-space/672802#672802">this answer</a> from Adrian Kuhn sketch of a polynomial approach for inspiration. However, I seem to remember a post some place on the interwebs with a lot more exploration on this issue.</p>
<p>I have also found some "<a href="http://www.joelamantia.com/tag-clouds/10-best-practices-for-displaying-tag-clouds" rel="nofollow">best practices</a>" on a blog, though am unsure of the providence of the best practices. These make no comment on frequency scaling.</p>
<p>What alternatives do I have for tag scaling, and which is the preferred/standard method? I am also considering minimum fontsizes, maximum number of tags, colors, etc.</p>
<p>Edit: As per the discussion in <a href="http://stackoverflow.com/questions/1240263/preferable-tag-cloud-visualization-formats">this question</a>, I am interested in the "standard" tagcloud, with font size variations.</p>