tags

Forcing tags to close in dynamic text

In many places on many of my sites, users are permitted to enter formatted text through a WYSIWYG or through plain text with tags. Naturally, such input is sanitized for security threats, but it is not stripped of tags nor is it fully entity encoded. Something like <p>hello world</p> ends up going back to the end user as <p>hello world</...

css help with background using a body tag

I need to add this background to a website and this is the criteria. I'm not sure what the right codes are, everything I try the background won't appear. Do I need to make a div or do I just put this info in the style section. Body tag The path to the background image is images/grunge2.jpg and it’s position is -40px and 0px. The font fa...

Django Template block tag

Hi How many different block tags like these exist? {% block %} In other words if I have a parent template and child templates with multiple block tags. How does Django know where to insert if not by different block tag names? Or can I customize like: {% block_mytag_1 %} Thanks L ...

Is there a plugin for listing subversion tags in Hudson?

In Hudson we have a job that deploys a specified subversion tag to a server. This tag is currently entered in a text field, but since that is just a typing mistake waiting to happen, we would like that text field to be replaced by a drop down list with the currently available tags. That is, we would like Hudson to go to <subversion repo ...

simple question on html img tag

does the filename in src attribute of an img tag has a limit in number of characters? or compatibility issue among operating system(OS) browsers... for example: <img src="../img/misc/this-is-a-very-long-image-filename-of-an-image-named-leaders-systems02.gif" alt="Leaders Systems" class="emblem" /> is there no issue on this-is-a-very-...

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 <a>some text here</a> <a>some text here</a> </b> <a>some twxt here</a> I am using HTML agility pack and the code I have so far is: static List<string> Whit...

How to Remove HTML markup except for text completely outside every tag?

Hello, I am in a situation where I am having HTML markup with some text outside of it (leading or trailing). What regex should I be using? For example: some text over here <Html> <Title>website</Title> <Body> text text text <Div>xxxxx</Div> </Body> </Html> ending text So, I should be getting "some text over here" and "ending text" onl...

Read MP3 Tag attribute in Silverlight

Hi. I know it works to read out the MP3 Tag attribute MP3V1 in silverlight. I know it works without any third party moduls. But when I use the MP3 workflow like Microsoft described I always get the count of zero attributes in my MP3 file. How to solve? Example project: Download MP3 demo file from here: http://www.file-upload.net/down...

TeamCity - SVN and Labelling

Hi I'm about to start using the labeling feature of TC (Great product :)) and have a question: I have 1 root VCS: svn:\someserver\MyRepo With label rule: trunk=>tags And in all my projects I use checkout rules to only checkout the needed projects like so: Prj1 - Conf1: +:MyPrj1/trunk => / Prj2 - Conf1: +:MyPrj2/trunk => /...

Tags in emacs with a large codebase

I was wondering how people use tags in emacs when working on a large codebase (approx. 50000 cpp|.h|.cs files). Some of my colleagues use indexing tools (names escape me) which return all the results over the codebase in seconds. I can't seem to get anywhere near that sort of performance on emacs and tags, but it's essentially the same t...

Create a javascript file to have <object> or <embed> tags in it for use in various html pages

I have more than 200 pages with the same <object> or <embed> tags for. I need to have a .js file to have this repeatative information in it. This is the tag is repeating in all 200-300 page: <OBJECT width="720" height="540"> <PARAM NAME="Src" value="../pdf/sign-va.pdf"> <embed width="720" height="540" src="../pdf/sign-va.pdf" ...

Tags hovering like Stack Overflow using jQuery

How does stackoverflow does that hovering effect on a tag of a question? How to do the same using jquery? EDIT: Not that mouseover i want the submenu showing Add Jquery to favorite tags ...

What happens in Git to a tag when you amend the commit that was tagged ?

Hi. I have commited a few source files to my git repository and tagged it as a new version of my software. But I saw a mistake I had just made and used the "amend" feature to commit the corrected files. Now, I see that the tag was not transferred to the new commit (the one made with the "amend" feature). But I can also see that the tag...

List all tags within a module in CVS in CLI

Is it possible to get a list of all generated tags for a given module in CVS? I can use cvs status -v FILE but it shows too much information that I just don't need. I can use some gui utilities that show me only the tag names (Eclipse is one of them), how do they do it? You need to do some "hacks" or are just parameters I'm unaware ...

Can tags be automatically moved after a git filter-branch and rebase?

edit The question boils down to "Can git rebase be instructed to rebase tags, too?" But an answer to the original question would also help. Asking How to prepend the past to a git repository? I followed these instructions. <edit>Then I rebased to include a file that was only in the snapshots, see here.</edit> Since history was rewritt...

Tagging individual files from multiple directories in Subversion

I have a repository composed of separate directories for different components of a system like this: System - branches - tags - trunk Component A file A file B Component B file C file D Component C file E file F Let's say I make some changes to file A and file C and file E an...

PHP - Removing <?php ?> tags from a string

What's the best way to remove these tags from a string, to prepare it for being passed to eval() ? for eg. the string can be something like this: <?php echo 'hello world'; ?> Hello Again <?php echo 'Bye'; ?> Obviously str_replace won't work because the two php tags in the middle need to be there (the the 1st and the last n...

What does the "s" attribute signify in a cell tag in XLSX

In the XML of a worksheet in an XLSX file (Excel 2007) cell tags that have a "t" attribute equal to "s" are string types. The value tag inside the c needs to be looked up and converted via the sharedStrings document. But, some cells have s="237" and no t attribute at all. The value tag has an integer like 39448 which does not relate ...

is html5 doctype necessary for functioning of video tag?

just because the video tag is used does the whole page have to be HTML5?? i did not think so...what do you think? I have understanding that video tag ( <video> ) it is not strict HTML5 (partly because strict does not yet exist) nor is HTML5 used or needed to implement the video tag- that the tag can function in HTML4 /regular old HTML...

Best way to document anonymous objects and functions with jsdoc

Edit: This is technically a 2 part question. I've chosen the best answer that covers the question in general and linked to the answer that handles the specific question. What is the best way to document anonymous objects and functions with jsdoc? /** * @class {Page} Page Class specification */ var Page = function() { /** * ...