tags

<?= ?> special tags in php

can anybody please explain what are these special tags in php? <?= ?> I couldn't find it on google. ...

Is there a clean way to remove a svn tag in Hudson

Recently, we tagged a build through Hudson, but shortly afterward a bug was found that necessitated a rebuild. We ended up deleting the tag in subversion, but Hudson still showed the tag on that build. I found the following in \jobs\\builds\\build.xml <hudson.scm.SubversionTagAction> <build class="build" reference="../../.."/> <ta...

Truncate a HTML formatted text with SMARTY.

Hi there! I've got a variable which is formatted with random HTML code. I call it to {$text} and i truncate it. The value is for example: <div>Lorem <i>ipsum <b>dolor <span>sit </span>amet</b>, con</i> elit.</div> If i truncate the text's first ~30 letters, I'll get this: <div>Lorem <i>ipsum <b>dolor <span>sit The problem is, I ...

JSP Type resolve issues with Java Tag Libraries

Hello everybody, I'm trying to get the Tag Libraries Tutorial http://java.sun.com/products/jsp/tutorial/TagLibraries15.html from sun working. If deploying the .war File in Tomcat 6.0.20, I'm just getting two kind of errors on each launch: org.apache.jasper.JasperException: Unable to compile class for JSP: An error occurred at line: ...

What does this random number do: /javascripts/rails.js?1271798101

I think I remember reading that that has to do with telling the browser not to cache it or something. How does this impact browser caching and application performance in production? When does that number change? <script src="/javascripts/rails.js?1271798101" type="text/javascript"></script> ...

how to display online each and every meta tags in newline ?

I want to display meta tags in newline means when i open a site and seeing the viewsource of the site the all meta tags is displayed in oneline. i want to display each and every meta tag in one newline. for ex: required output: <meta name="description" content="vvvv sdhgf dbngfsdj"> <meta name="keywords" content="dgd, sfdg, sdjgj"> ...

Can I add metadata to git commits? Or can I hide some tags in gitk

I want to associate custom metadata with a git commit. Specifically to record a review ID from a code review but it could be anything. Tags seem a natural way to do that but I expect to have a review for every commit and I don't want to clutter gitk with tons of tags. Is there some other mechanism to add custom metadata? Can I make c...

How to create html tag to access a specific control in a VB6 .ocx?

I have an Active X control that contains 2 user controls. My issue is I need to create a web reference on 2 separate pages for each user control. They are not related and I don't know how to call one user control independently from the other. Is there an attribute for the object tag to reference the user control name? ...

problem in accessing the path involving pagination using display tag

Hi All, I am using display tag for pagiantion and display of the data in table format the code is like <display:column title="Select" style="width: 90px;"> <input type="checkbox" name="optionSelected" value="<c:out value='${userList.loginName}'/>"/> </display:column> <display:column...

mysql condition to select empty fulltext cell?

i need write a select query to find the number of rows which have an empty fulltext field but for some reason both: select count(id) from table where field is null; and select count(id) from table where field = ""; don't seem to work! what else is there?! ...

Add Tags to MediaWiki and showing a tag cloud on the front page?

I want to add "tags" like in delicious to mediawiki pages and then show a tag cloud on the front page using this. How do I do this? ...

Tag Suggestion system, approaches and ideas

Hi guys! -- I am working on a (auto) tag suggestion system (NOT tag autocomplete). Lets say I want to suggest tags for a given question like here on SO (although SO's tagging system is auto-complete). My main idea is to get the intersection between the tags_set and the given question.split()_set. (In python the set_intersection is effici...

TeamCity - Build triggering on specific file, Mercurial

Hi I'm trying to get my build to trigger only when i create a Tag in Mercurial. The way im trying to do this is by creating an additional Build Config (Tag Conf) for my project where I set the VCS build trigger to: +:/.hgtags (Trigger only when tags are updated) -:. (Do not trigger on any other files) Whe...

how to get the css keys and values for any html tag

I would like to dump all css key/value pairs for an html tag. In particular, I would like to learn the css properties for <audio> tag, so I can try to customize the look. document.getElementById('myaudio').style returns a CSSStyleDeclaration object but length returns 0 and I cannot figure out to iterate over the key/value pairs. Thank ...

Validation error while putting <h> tag inside <a> tag(document type does not allow element "h2")

when using this code: <div class="menu"> <ul id="mainnav"> <li><h2><a href="dir1/" >AAAAA</a></h2> <ul> <li><a href="dir1/xxx.php"><h3>xxx</h3></a></li> <li><a href="dir1/xxx2.php"><h3>xxx2</h3></a></li> <li><a href="d...

Anchor tag problem

In My jsp page having lot many anchor tags. When I click on a anchor tag.Remaining all anchor tag getting red color itself. But it is working fine in IE 7 & 8. but fire fox alone am facing this issue. please any one can guide me.thanks in advance. ...

How can you pass URL Parameters at URL slashed address? (www.web.com/1/2 = www.web.com?x=1&y=2)

I want to be able to take a url and map it to a set of web parameters. For example: www.web.com/1/2/3 would be interpreted as www.web.com/default.asp?x=1&y=2&z=3 I know I've seen it done, I just can't find it anymore. Any ideas? ...

anchor tag issue

In My jsp page having lot many anchor tags. When I click on a anchor tag.Remaining all anchor tag getting red color itself. But it is working fine in IE 7 & 8. but fire fox alone am facing this issue. please any one can guide me.thanks in advance. ...

Searching documents by tag using the Scribd API is no longer returning expected results.

Recently I have encountered an issue with Scribd where searching via Scribd API (docs.search) for documents by tag is no longer working. This has been working (for over 6 months) to return a number of documents that I have tagged with "fdsafetyandprevention" (accessible here http://www.scribd.com/tag/fdsafetyandprevention). Just recentl...

Does maven-release-plugin push tags to remote Git repository?

When using the maven-release-plugin with Git, mvn release:prepare happily tags the release in the local repository. I'd expect mvn release:perform to push the tags to the remote repository, but this doesn't seem to happen. Am I mistaken? If not, is there an option to enable pushing release tags to the remote repository? ...