tags

iphone - Get dynamically created UITextField by tag

I add a UITextField to a table cell dynamically in my app. I'd like to implement a "backgroundClick" method to dismiss the keyboard if the user presses outside the textfield (and outside the keyboard) but I'm unsure how to get a handle on the active keyboard in the backgroundClick method as the dynamic UITextField does not have a defined...

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...

save image to tiff format

hi all, i am using this code to save file in tiff format Image img = Image.FromFile(Page.MapPath(urlPath) + FileName + "_.TIF"); MemoryStream imageStream = new MemoryStream(); //img.Save(imageStream, ImageFormat.Bmp); img.Save(imageStream, ImageFormat.Tiff); byte[] contentB...

Tag messages on github.

In download section on github, you can download all version of the project associated with tags. But for some reason the tag descriptions are taken from the last commit. This happens even if one uses heavy tagging: git tag -a -m "tag commit message" Can I somehow force github to use my tag messages? ...

PHP RegExp for nested Div tags

I need a regexp I can use with PHP's preg_match_all() to match out content inside div-tags. The divs look like this: <div id="t1">Content</div> I've come up with this regexp so far which matches out all divs with id="t[number]" /<div id="t(\\d)">(.*?)<\\/div>/ The problem is when the content consists of more divs, nested divs like ...

Filter by keyword jquery

Hello, I have been looking around on ways I can implement an input box on my webpage that will filter by keywords, much like the one buysellads.com uses here where you type in a keyword related to the site and it automatically filters the list. For example if you type 'photoshop' it will grab all site containg a tag with photoshop. I ...

Grails: How to combine findAllBy and findAllByTag

Hi, as I am new to Grails and dynamic languages, I do have some 'hopefully simple' question. I installed the taggable plugin which works fine. There is an array coming in with tags. I collect for every tag the set of data with findAllByTag. After that I randomise it and pick one entry. Works great. Now I decided not to take all objects...

How to get the diff between a tag and its base in Git?

I need to generate a patch of commit with respect to its base. A tag has been marked on that commit. So like on 939023 I do a commit and now it becomes 213232, I will tag 213232 with a label. Now given the label, I need to find out the diff between the 213232 and 939023. I mean I need a way to generate a diff of any commit whose label i...

Is it something bad to use <BR />?

Hi, Is it something bad to use <BR/> tags? Why I ask this is, in our development team it was one of the first advices to me not use <BR/> but to use styles. But why? Are there some negative outcomes to use <BR/> tags? Thanks. ...

linq query for tag system - search for multiple tags

Hi I have two tables, Tags(tagid, postid, tagname) and posts(postid, name, ...) now i want to make a query that returns me all posts that have a generic amount of tags. like: i want all posts that have the tag asp.net AND jquery as i said, the amount of tags to look for is generic how can i do something like that? thx update 17.11.20...

Tagging Posts via Wordpress XMLRPC

Hey there, i am trying to publish a new post to a wordpress blog over the XMLRPC API. This works out fine so far, but now i want to add tags to the post. Either at creation time or afterwards. But i can't find any solutions in the supported APIs. Any clue on how i can tag new posts via XMLRPC requests? ...

how to design a tag system for a localized website?

Let say i have a basic tagging system (for a craiglists "clone") such as: Tag (id, tagname) ad(id, title, body) adTag(tag_id, article_id) This will fit for a non-localized website but what will be the correct aproach for a website that is used by people speaking diferent languages? Users probably will post ads in diferent languages ...

alternative to Tag in asp.net

What is the alternative to winforms-style control.Tag in asp.net? For example: ListItem li = ListBox1.SelectedItem; Product prod = (Product) li.Tag; How can I rewrite this in asp.net? ...

Unknown language identification

Hi all! I'm currently working with a dead network application that received packets for a chat. I checked that it received text like this one: hi there! {c:0000FF}foo{/c} sentence I have checked but have not found the language that uses that color syntax. It is some famous language or it's surely a self made script/library? Origina...

Splitting a string in C#

I was wondering if somebody could help me use string split to get all occurrences of text in between <p> </p> tags in an HTML document? ...

Anyone familiar with <center>?

I see this in a website for the first time of life. Is it supported by all browsers? ...

Span inside a or a inside span or doens't matter ?

I want to nest span and a tags. Should I Put <span> inside <a> Put <a> inside <span> It doesn't matter ? ...

Embed font into PDf file by using iText

Hi, I defined a tag map, and got a xml data file. I want to convert the xml data file to PDF by using iText. The question is how to embed fonts (e.g. polish font, chinese font) into target PDF when converting xml to PDF? Thanks. ...

Automatically pick tags from context using Python

How can I pick tags from an article or a user's post using Python? Is the following method ok? Build a list of word frequency from the text and sort them. Remove some common words and pick the top 10 words remained in the list as the tags. If the above method is ok, what library can detect if which words are common, like "the, if, y...

Displaying list of categories and tags in Wordpress

I'd like to display a list of categories and tags, that are picked manually. So I'd pre-define what categories and tags are to be shown. So there'd two blocks in the sidebar: Major Categories - category 1 - category 2 - category 3 ... upto 7 and Tags: Quick Links - tag 1 - tag 2 - tag 3 ... upto 20 ...