A tag is a marker that represents a specific description in a markup language that is enclosed in angle brackets.

learn more… | top users | synonyms (1)

127
votes
5answers
14k views

How do you recommend implementing tags or tagging

I've heard of a few ways to implement tagging; using a mapping table between TagID and ItemID (makes sense to me, but does it scale?), adding a fixed number of possible TagID columns to ItemID (seems ...
44
votes
7answers
58k views

How to enable PHP short tags?

I have a web application on a Linux server which starts with <? I needed to copy this application to a windows environment and everything is working fine except that an SQL statement is being ...
557
votes
14answers
157k views

What do “branch”, “tag” and “trunk” mean in Subversion repositories?

I've seen these words a lot around Subversion (and I guess general repository) discussions. I have been using SVN for my projects the last few years, but I've never grasped the complete concept of ...
74
votes
5answers
9k views

ASP.NET “special” tags

What is the official name for the "special" ASP.NET tags like this: <%# %> <%= %> <%@ %> <%$ %> I can't seem to figure out the conceptual or well known name for these, so ...
95
votes
7answers
27k views

Are self-closing tags valid in HTML5?

The W3C validator doesn't like self-closing tags (those that end with "\>"). Are they still valid in HTML5? Some examples would be: <br \> <img src="" \> <input type="text" ...
103
votes
10answers
29k views

jQuery autocomplete tagging plug-in like StackOverflow's input tags? [closed]

What solutions accomplish the same auto-completion that SO uses for entering tags? There are plugins that can handle one word but I haven't seen any that handle multiple words. Also, should I link ...
63
votes
4answers
15k views

JSP tricks to make templating easier?

At work I've been tasked with turning a bunch of HTML files into a simple JSP project. It's really all static, no serverside logic to program. I should mention I'm completely new to Java. JSP files ...
33
votes
10answers
14k views

Why is the <center> tag deprecated in HTML?

I am just curious as to why the <center> tag in HTML was deprecated. The <center> was a simple way of quickly center-aligning blocks of text and images by encapsulating the container in a ...
74
votes
12answers
17k views

Database Design for Tagging

How would you design a database to support the following tagging features: items can have a large number of tags searches for all items that are tagged with a given set of tags must be quick (the ...
53
votes
5answers
4k views

Opening/closing tags & performance?

This may be a silly question, but as someone relatively new to PHP, I'm wondering if there are any performance-related issues to frequently opening and closing PHP tags in HTML template code, and if ...
32
votes
6answers
9k views

Is it necessary to write HEAD, BODY and HTML tags?

Is it necessary to write <html>, <head> and <body> tags? For example, I can make such a page: <!DOCTYPE html> <meta http-equiv="Content-type" content="text/html; ...
14
votes
5answers
8k views

Strip all HTML tags except links

I am trying to write a regular expression to strip all HTML with the exception of links (the <a href and </a> tags respectively. It does not have to be 100% secure (I am not worried about ...
11
votes
9answers
6k views

jQuery: using .text() to retrieve only text not nested in child tags

If I have html like this: <li id="listItem"> This is some text <span id="firstSpan">First span text</span> <span id="secondSpan">Second span text</span> ...
11
votes
2answers
6k views

HTML Agility Pack strip tags NOT IN whitelist

I'm trying to create a function which removes html tags and attributes which are not in a white list. I have the following HTML: <b>first text </b> <b>second text here ...
5
votes
2answers
2k views

Full text search in HTML ignoring tags / &

I've recently seen a lot of libraries for searching and highlighting terms within an HTML page. However, every library I saw has the same problem, they can't find text partly encased in an html tag ...
3
votes
5answers
2k views

Storing arbitrary info in HTML tags for JavaScript?

A very general question. I am dynamically generating a form that is split into multiple levels of tabs using HTML / JavaScript. I want to highlight some of the fields (those that have a value ...
2
votes
3answers
4k views

Strip all HTML tags, except allowed

I've seen a lot of expressions to remove a specific tag (or many specified tags), and one to remove all but one specific tag, but I haven't found a way to remove all except many excluded (i.e. all ...
313
votes
8answers
162k views

How to use git to download a particular tag?

I'm trying to figure out how do download a particular tag of a git repository - it's one version behind the current version. I saw there was a tag for the previous version on the git web page, with ...
34
votes
7answers
12k views

What is the most efficient way to store tags in a database?

I am implementing a tagging system on my website similar to one stackoverflow uses, my question is - what is the most effective way to store tags so that they may be searched and filtered? My idea is ...
22
votes
8answers
31k views

SVN pre-commit hook for avoiding changes to tags subdirectories

Is there anybody who has clear instructions on how to add a pre-commit hook that avoids changes to tags subdirectories? I already searched the internet quite a bit. I found this link: ...
48
votes
5answers
27k views

How do I enable TODO/FIXME/XXX task tags in Eclipse?

In all my years of using Eclipse, I never knew until now that TODO / FIXME / XXX comment tags are supposed to appear in the task list. Apparently this is something that is disabled by default because ...
39
votes
12answers
10k views

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 ...
9
votes
4answers
9k views

jquery html() strips out script tags

I need to replace the content of a div in my page with the html resultant from an ajax call. The problem is that the html have some necessary scripts in it and it seems that jquery html() function ...
0
votes
1answer
130 views

Mysql - Help me alter this search query to get desired results

Following is a dump of the tables and data needed to answer understand the system:- The system consists of tutors and classes. The data in the table All_Tag_Relations stores tag relations for each ...
12
votes
4answers
43k views

using href links inside <option> tag

I have the following html code: <select name="forma"> <option value="Home">Home</option> <option value="Contact">Contact</option> <option ...
28
votes
14answers
5k views

Will the <b> and <i> tags ever become deprecated?

(This is more of a curiousity question than any pending disaster :D ) So the <b> and <i> tags have been around since near the beginning of the web (I assume). But now we have CSS and many ...
10
votes
2answers
5k views

Strip HTML tags and its contents

I'm using DOM to parse string. I need function that strips span tags and its contents. For example, if I have: This is some text that contains photo. <span class='title'> ...
11
votes
6answers
1k views

php echo vs open&close tag

Just to clarify: The issues "echo vs print" and "double quotes vs single quotes" are perfectly understood, this is about another thing: Are there any reasons why one would prefer: echo ...
2
votes
4answers
1k views

How do you retrieve the tags of a file in a list with Python (Windows Vista)?

I want to make something of a tag cloud for various folders I have, but unfortunately, I can't seem to find a way to access the tags of a file in Windows Vista. I tried looking at the win32 module, ...
22
votes
4answers
4k views

tag generation from a text content

I am curious if there is an algorithm/method exists to generate keywords/tags from a given text, by using some weight calculations, occurrence ratio or other tools. Additionally, I will be grateful ...
13
votes
5answers
4k views

How to design a database schema to support tagging with categories?

I am trying to so something like Database Design for Tagging, except each of my tags are grouped into categories. For example, let's say I have a database about vehicles. Let's say we actually don't ...
32
votes
5answers
75k views

JSP <c:out> tag

Writing a JSP page, what exactly does the <c:out> do? I've noticed that the following both has the same result: <p>The person's name is <c:out value="${person.name}" /></p> ...
25
votes
2answers
6k views

What tag schema(s) are the most efficient/effective?

http://www.pui.ch/phred/archives/2005/04/tags-database-schemas.html Stackoverflow's tag handling is among the best that I've seen so far. Does anyone know if it is a schema pattern I could get some ...
20
votes
8answers
10k views

How does the location of a script tag in a page affect a JavaScript function that is defined in it?

I read that you should define your JavaScript functions in the <head> tag, but how does the location of the <script> (whether in the <head>, <body>, or any other tag) affect a ...
21
votes
2answers
14k views

PHP: How to handle <![CDATA[ with SimpleXMLElement?

I noticed that when using SimpleXMLElement on a document that contains those CDATA tags, the content is always NULL. How do I fix this? Also, sorry for spamming about XML here. I have been trying to ...
22
votes
3answers
27k views

Unable to see a list of Git tags

I run git tag v1.0.0 -m 'finally a stable release' I want to see a list of my Git tags. How can you see a list of Git tags?
11
votes
3answers
3k views

Self-closing tags (void elements) in HTML5

Step 6 of 8.1.2.1 Start tags of the HTML5 spec says that void elements may have a single / character. I think this is so it's easier to migrate sites that are XHTML over to HTML5. What's the best ...
13
votes
5answers
6k views

It is bad to put <span /> tags inside <option /> tags, only for string manipulation not styling?

I would like to make groups of the text content of an <option /> tag. Say I have the following: <option>8:00 (1 hour)</option>, the time pattern 8:00 can be modified, then the text ...
7
votes
2answers
3k views

Jquery html() and self closing tags

While creating self contained elements with Jquery html() the following issue happens: $('#someId').html('<li><input type="checkbox" /></li>') will create <li><input ...
3
votes
1answer
871 views

how to see docs for jsf/facelets elements in eclipse

I am using helios 3.6.2. I have an .xhtml opened with Web Page Editor <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
1
vote
5answers
5k views

jquery load() strips script tags - workaround?

Does anyone know of a work around for jquery .load() stripping out the script tags loaded from external content? There's a lot of documentation of the fact that this happens but after something like ...
0
votes
1answer
476 views

PHP: How do I remove nested tags, and relocate them in an un-nested way?

I need to remove all occurrences of a bb style tag from a string. The tags can be nested, and this is where I am failing. I also need to relocate each tag and contents to the end of the string, and ...
-2
votes
1answer
46 views

styling images with css not working [closed]

the following style is added to this table and it doesn't seem to be applying. Can you please tell me whats wrong. style = '<style type="text/css">'; style += '#w_wid ...
124
votes
10answers
132k views

What is trunk, branch and tag in Subversion? [duplicate]

Possible Duplicate: What do “branch”, “tag” and “trunk” really mean? What is a trunk, branch and tag in Subversion and what are the best practices to use ...
17
votes
3answers
2k views

Tag hierarchies and handling of

This is a real issue that applies on tagging items in general (and yes, this applies to StackOverflow too, and no, it is not a question about StackOverflow). The whole tagging issue helps cluster ...
12
votes
13answers
2k views

why <br /> and not <br/>?

This is one of those things that you read once, say "aha!" and then forget. Exactly my case. Why is the line-break tag in xhtml preferentially written with a space <br /> and not in the also ok ...
8
votes
1answer
1k views

How can I generate a tag cloud in Java, with OpenCloud?

I was looking for a library to create tag clouds in a Java application, and I found OpenCloud. I don't want to have to use a web server, which OpenCloud will require to get the output in, won't it? ...
8
votes
3answers
3k views

Adding tags to posts in Ruby on Rails

I am creating a blog in Rails using the Scaffold feature. I would like to add a 'tags' field to each post like on StackOverflow and Wordpress. I can do this with a string type ( scaffold post ...
7
votes
2answers
2k views

How can I add an anchor tag to my URL?

MVC 3.net I want to add an anchor to the end a url. I tried to include an anchor query string but the hash '#' changes to %23 or something like that in the url. Is there a way of working around ...
5
votes
1answer
5k views

BeautifulSoup getting href

I am new to BeautifulSoup and find that I am missing something basic about navigating. I have the following soup: <a href="some_url">next</a> <span class="class">...</span> ...

1 2 3 4 5 8