tags

Why is SQLAlchemy/associationproxy duplicating my tags?

I'm trying to use association proxy for tags, in a very similar scenario to the example in the docs. Here is a subset of my schema (it's a blog), using declarative: class Tag(Base): __tablename__ = 'tags' id = Column(Integer, primary_key=True) tag = Column(Unicode(255), unique=True, nullable=False) clas...

What kind of support does the iphone/ipod touch have for the canvas tag? Especially in regards to text?

I have seen this question/answer: http://stackoverflow.com/questions/719848/how-do-you-draw-text-on-a-canvas-tag-in-safari But I looking for how to do it on an iphone. Does the iphone support it already? Also, it'd be nice to see a web page that discusses what the current iphone os/browser supports regarding canvas, html 5 and othe...

What disadvantages are there to the <button> tag? (It seems there are quite a few problems with ie)

I started using a diagnostic css stylesheet, e.g. http://snipplr.com/view/6770/css-diagnostics--highlight-deprecated-html-with-css--more/ One of the suggested rules highlights input tags with the type submit, with the recommendation to use <button> as a more semantic solution. This is a new tag to me, do you guys recommend it, or are t...

Create a tag cloud of specific dimensions

Greetings, I'd like to create an HTML tag cloud inside a box whose width and height are absolutely determined. I want the text within to fit most efficiently--so if the text is simply one word, the word would be large and fill the box's full width (and as much of its height as possible). If there were four words, they would take up pro...

Rails auto_complete tag search filter

Hi all, Trying to implement the rails auto_complete plugin to help a user select tags that don't appear on the home page since there will be potentially hundreds of tags and only a small fraction can be displayed. The way my navigation works is like this: I start with a category show page that displays all articles within that category...

Using Ferret to build unique tag clouds

I've been using Ferret as my full-text search engine in a small project I'm working on. Through the documentation and a few examples online, i've been able to pull together a tag cloud generator using the full-text index to help with tag cloud generation using the IndexReader.terms method. It's worked quite well up to now, when I want ...

Django bug with a tag

My code {% if GET['search'] % } {% block count codes|length as counter %} Is the following a valid if -clause as a Django tag? {% if GET['search'] % } The following code gives me an error that block takes only one argument. What is wrong in the code? {% block count codes|length as counter %} ...

[SQL] Artist-tag database: Getting tags

I'm creating a database that's going to contain various artists which can be tagged with several tags. It's a standard many-to-may relation and my database looks like this: artist: ID name tag: ID name tagID: tagID artistID Say I've got two tagIDs, X and Y. What I want to do is to find all the tags that have an artist in...

tag partial tree vs full trunk in svn

We have a repository with the following structure: repos trunk module1 module2 ... tags branches We usually release individual modules to the customer and sometimes the whole application. Now we are going to deliver module1 and I'm trying to decide between these two options: a) tag module1 (i.e. copy trunk/module1...

Add to <body> tag of a cakePHP app

Hello, I have an app where I need to call some JS in the onLoad event of the BODY tag of two forms. However, I can't find how to modify the tag for just them. Does anyone know? Frank ...

WordPress plugin tag not parsing in <script> block

I'm using the following code in one of my WordPress plugin files: else if($filetype == 'swf'){ print <<<EOT <script type="text/javascript" language="javascript"> jQuery(document).ready(function(){ var embed = '<div>[kml_flashembed movie="$img" /]</div>'; jQuery("#header").prepend(jQuery(embed)); }); </script> <style type="text/css"> #$h...

How to change HTML tag content in Java?

How can I change HTML content of tag in Java? For example: before: <html> <head> </head> <body> <div>text<div>**text**</div>text</div> </body> </html> after: <html> <head> </head> <body> <div>text<div>**new text**</div>text</div> </body> </html> I tried JTidy, but it doesn't support ...

Ascii to Int function in Groovy

Hi, I'm trying to pass the value "1" into a Grails tag. However, it turns out to be an integer value of 49 - the ascii value for "1". How do I convert this to the proper value in Groovy? ...

svn:externals & tagging, how to combine code between teams

In our company, we are working on a product composed of different C/C++ modules. Ideally, each tier and module should be developed by separately by different teams and tested independently. Currently, we have separate each module into it's own branch:\ The modules are: \hid \branches \tags \trunk \api \branches \tags \trun...

<o:p>&nbsp;</o:p> < o : p > & nbsp ; < / o : p > display error

Hello Whenever i receive an email from MS outlook i get this tag < o : p > & nbsp ; < / o : p > (without the spaces) which display's as ? in a <>. Browser page charset encoding is UTF-8 when i change it to ISO-8859-1 the symbol disappears but my other characters goes wrong. I have to use UTF-8 How can i remove this tag sequence. PHP ...

HTML element aside from headers <h1><h2>, ect

Hi! I was browsing related issues for my question but I can't seem to find the answer for it. Anyways, I want to know if I can still use the p or div tags instead of header tags when I have already used both (p and div tags) as plain text on my site. The reason is that I only want to have one header tag h1 present in my site. I tried to ...

categories, tags or both?

When it comes to sorting contents, I always hesitate, typically I'll have categories and tags both as reasonable options, still I wonder when to use categories and when to use tags or even, when to use both? Categories looks simple and simpler to implement and tags provide much more flexibility but often appears to be too complex and aff...

Git Workflow Best practices

Hello All, Stupid question and treat me as completely a newbie to version control. I'm new to Git (I've used subversion before, but just the basics) I understand the basics of Git and its branching commands, I have an imaginary situation that need your advice. Suppose my software currently is at v1.2, stable and released. My Softw...

Search in Folksonomies. How to tackle synonymy problem?

Hi all, Can someone shed some light on how searching is done on web-sites like del.icio.us? If I enter "js"(1), "javascript"(2) or "java script"(3) as my query on delicious, I'm pointed to resources about Java Script. However, depending on the query the returned result sets are different(del.icio.us system returns different set of boo...

Turn off enclosing <p> tags in CKEditor 3.0

Is there a possibility to turn off the automatic enclosing of all written content within <p></p> in CKEditor 3.x? I tried CKEDITOR.config.enterMode = CKEDITOR.ENTER_BR; but this just changes the inline linebreaks to <br /> while leaving the enclosing paragraph. Currently writing "Test" produces this output <p> Test</p> but...