active questions tagged markup - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T06:33:43Z http://stackoverflow.com/feeds/tag/markup http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/121382/is-there-a-way-to-comment-out-markup-in-an-aspx-page 10 Is there a way to comment out markup in an .ASPX page? MikeJ 2008-09-23T14:34:01Z 2009-11-30T05:10:21Z <p>Is there a way to comment out markup in an .ASPX page so that it isnt delivered to the client? I have tried the standard comments but this just gets delivered as a comment and doesn't prevent the control from rendering. Any suggestions would help</p> http://stackoverflow.com/questions/1809988/jquery-change-table-like-items-order 0 jquery - change table-like items order yoda 2009-11-27T17:58:07Z 2009-11-27T18:19:07Z <p>Hi,</p> <p>I have a set of divs table-like (with rows and cols), to display a soccer table. Now, I need to be able to order that table according to the key chosen, without refreshing the page and avoiding using ajax. </p> <p>Being more specific, I need to catch the values inside each "columm" refeering to the key chosen and re-order the table.</p> <p>I use jQuery, so the work should be fairly easy, just not sure how to re-order an array with the id of the team and the columm in cause. The table values are all numeric by the way.</p> <p>Above is an example of the markup (row) :</p> <pre><code>&lt;div class="rb"&gt; &lt;div class="cname"&gt;Benfica&lt;/div&gt; &lt;div class="tdr bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdr bold" style="margin-left: 5px;"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdr bold" style="margin-left: 5px;"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdg bold" style="margin-left: 5px;"&gt;0&lt;/div&gt; &lt;div class="tdg bold"&gt;0&lt;/div&gt; &lt;div class="tdr bold"&gt;0&lt;/div&gt; &lt;/div&gt; </code></pre> <p>Any thougts?</p> <p>Thanks in advance,</p> <p>Filipe</p> http://stackoverflow.com/questions/1806776/is-the-concept-of-a-link-inseparable-from-its-html-markup 1 Is the concept of a link inseparable from its html markup? Off Rhoden 2009-11-27T04:43:02Z 2009-11-27T14:09:13Z <p>I'm looking for a strategy for managing links within articles. The body of the article is saved in a database and pulled during page assembly. What all should be saved in the database to easily define and manage links?</p> <p>Some purists believe that markup should NEVER be stored in the database. Some believe its ok in moderation. But to me, the notion of a link is almost inseparable from its html markup.</p> <p>Is there a better, more succinct way of representing a link in an article (in a database) than simply embedding "anchor text"?</p> <p>One idea I've kicked around involves embedding just enough markup to semantically describe areas of interest, and in a different table, map those notions to actual URLs. All encounters of a particular notion get wrapped with the link.</p> <pre><code>&lt;p&gt;Here is an example of a &lt;span class="external-reference semantic-web"&gt;semantic&lt;/span&gt; approach to link management.&lt;/p&gt; </code></pre> <p>A table then might associate the URL of the article and the key class of 'semantic-web' to a URL like <a href="http://en.wikipedia.org/wiki/Semantic%5FWeb" rel="nofollow">http://en.wikipedia.org/wiki/Semantic%5FWeb</a></p> <pre><code>&lt;p&gt;Here is an example of a &lt;span class="external-reference semantic-web"&gt; &lt;a href="http://en.wikipedia.org/wiki/Semantic_Web"&gt;semantic&lt;/a&gt;&lt;/span&gt; approach to link management.&lt;/p&gt; </code></pre> <p>Things I like about this approach is that all my URLs are in one location in the database. I could technically change or remove links without touching the body of the article. I have very good class names for CSS.</p> <p>I don't like having another table to maintain, and another step/phase in render time. It could slow down response time.</p> <p>Are there any other strategies out there that provide superior link management?</p> http://stackoverflow.com/questions/1785422/how-do-you-put-html-or-xml-into-a-yaml 1 How do you put html or xml into a yaml? pzol 2009-11-23T19:31:06Z 2009-11-26T12:36:07Z <p>I would like to store html snippets inside a yaml file, what is the best way to do that?</p> <p>something like:</p> <pre><code>myhtml: | &lt;div&gt; &lt;a href="#"&gt;whatever&lt;/a&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1786145/building-a-markup-parser-in-php 1 Building a markup parser in php Cyclone 2009-11-23T21:33:02Z 2009-11-23T22:03:35Z <p>I have created a very simple markup parser in php. However, it currently uses str_replace to switch between markup and html. How can I make a "code" box of sorts (will eventually use GeSHI) that has the contents untouched?</p> <p>Right now, the following markup: <code>[code][b]Some bold text[/b][/code]</code> winds up parsing as the code box with <code>&lt;b&gt;Some bold text&lt;/b&gt;</code>.</p> <p>I need some advice, which option is best?</p> <ul> <li>Have it check each word individually, and if it is not inside a [code] box it should parse</li> <li>Leave it as is, let users be unable to post markup inside of [code].</li> <li>Create another type of code box specifically for HTML markup, have [code] autorevert any &lt; or > to [ and ].</li> </ul> <p>Is there maybe even another option? This is a bit tougher than I thought it would be...</p> <p>EDIT: Is it even worth adding a code box type thing to this parser? I mean, I see how it could be useful, but it is a rather large amount of effort for a small result.</p> http://stackoverflow.com/questions/1752199/xml-milestones-or-elements-that-cross-other-elements 0 XML: Milestones or Elements that cross other elements pdavis 2009-11-17T22:08:41Z 2009-11-18T15:12:23Z <p>I'm working with <a href="http://bibletechnologies.net/" rel="nofollow">OSIS</a> (Open Scriptural Information Standard), an XML schema for describing scripture and related text. When I first looked at a sample of the XML I noticed some oddities that I have not seen in XML before. Mainly tags being closed followed by content that would logically belong inside the closed tag. After looking through the <a href="http://img.forministry.com/7/7B/7BB51FB8-84B3-4FF3-939ED473FA90A632/DOC/OSIS2%5F1UserManual%5F06March2006%5F-%5Fwith%5FO%27Donnell%5Fedits.PDF" rel="nofollow">documentation</a>, I found that they call this type of markup "Milestones." </p> <p>In this instance it is being used because a quote can begin in one verse and span several verses before being closed. It seems like a hack and I am going to have to do some coding to parse and search through, and display sections of the XML for the web. While I understand that this is technically valid XML, it can't be verified [easily] against the schema for correctness and standard XML parsing APIs will not be able to grab elements between milestones. I believe there are better ways that this "standard" could have been formed. What are your thoughts on this type of markup? I haven't really found any other references to this practice, where else is it used. Is it valid?</p> <p>From the documentation...</p> <blockquote> <p>In XML the normal form of an element is a start tag and an end tag: &lt;q&gt;...&lt;/q&gt;. For handling markup that crosses boundaries, however, a special form must be used. It consists of two totally empty instances of the same element type: one to mark the starting point, and one to mark the ending point. The two empty elements identify themselves as to which is the start and which is the end, and co-identify themselves by an <strong>sID</strong> attribute (the start of the traditional element) and an <strong>eID</strong> attribute (the end of the traditional element), the values of which must match.</p> <p>Empty elements are indicated in XML by a tag with "/" preceding the final ">": thus &lt;q/&gt; rather than &lt;q&gt; or &lt;/q&gt;. Elements used in this way are commonly called ‘<strong>milestones</strong>,’ and those particular elements in OSIS that permit this alternate encoding are thus called ‘<strong>milestoneable</strong>.’</p> </blockquote> <p>Here is a short example...</p> <pre><code>&lt;verse osisID="Acts.7.2" sID="a72"/&gt;To this he replied: &lt;speech who=”Stephan”&gt;Brothers and fathers, listen to me! The God of glory appeared to our father Abraham while he was still in Mesopotamia, before he lived in Haran &lt;verse eID=”a72”/&gt; ... &lt;verse osisID="Acts.7.6" sID="a76"/&gt;God spoke to him in this way: &lt;q type=”embedded” marker=”'”&gt;Your descendants will be strangers in a country not their own, and they will be enslaved and mistreated four hundred years. &lt;verse eID="a76"/&gt; &lt;verse osisID="Acts.7.7" sID="a77"/&gt;But I will punish the nation they serve as slaves,&lt;/q&gt; God said, &lt;q type=”embedded” marker=”'”&gt;and afterward they will come out of that country and worship me in this place.&lt;/q&gt;&lt;verse eID="a77"/&gt; ... &lt;verse osisID="Acts.7.53" sID="a79"/&gt;you who have received the law that was put into effect through angels but have not obeyed it. &lt;verse eID="a79"/&gt; &lt;/speech&gt; </code></pre> http://stackoverflow.com/questions/428364/pure-javascript-yaml-library-that-supports-both-dump-and-load 4 Pure Javascript YAML library that supports both dump and load? dreftymac 2009-01-09T14:57:54Z 2009-11-16T22:54:59Z <p>Does such a thing exist for <a href="http://en.wikipedia.org/wiki/Yaml" rel="nofollow">YAML</a> (aka <a href="http://yaml.org" rel="nofollow">YAML</a>)?</p> <p>If this existed at one time, it must have been obliterated because the latest search turned up nada. It looks like there are plenty of implementations that <strong>dump</strong> from Javascript to YAML output only, but having trouble finding an implementation that supports both dump and load.</p> <p>Is anyone working on such a thing ... or is the demand simply far too low for this.</p> http://stackoverflow.com/questions/1733039/android-web-what-is-the-equivalent-style-for-the-web 0 Android & Web: What is the equivalent style for the web? Legend 2009-11-14T02:37:32Z 2009-11-14T03:55:06Z <p>I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for the web? I mean, with a predefined list of widgets that can be defined using a markup language and then control them using code? </p> <p>I have come across Google's Web Toolkit that does something like this but I'd like to hear what other's think as well.</p> http://stackoverflow.com/questions/1426074/theming-drupal-panels 1 Theming Drupal Panels stef 2009-09-15T09:14:29Z 2009-11-13T11:49:08Z <p>I created a homepage layout using Panels 3, mostly of blocks created by Views. </p> <p>Now I'd like to apply the visual look and feel as it was designed &amp; sliced. Panels adds an serious amount of divs to its markup. I dont necessarily need to remove this but I do need to add certain classes, id's and change some of the tags used in its markup.</p> <p>What is the best way to go about this?</p> http://stackoverflow.com/questions/1193500/php-truncate-html-ignoring-tags 3 PHP: Truncate HTML, ignoring tags Sam 2009-07-28T11:30:28Z 2009-11-13T07:19:30Z <p>I want to truncate some text (loaded from a database or text file), but it contains HTML so as a result the tags are included and less text will be returned. This can then result in tags not being closed, or being partially closed (so Tidy may not work properly and there is still less content). How can I truncate based on the text (and probably stopping when you get to a table as that could cause more complex issues).</p> <pre><code>substr("Hello, my &lt;strong&gt;name&lt;/strong&gt; is &lt;em&gt;Sam&lt;/em&gt;. I&amp;acute;m a web developer.",0,26)."..." </code></pre> <p>Would result in:</p> <pre><code>Hello, my &lt;strong&gt;name&lt;/st... </code></pre> <p>What I would want is:</p> <pre><code>Hello, my &lt;strong&gt;name&lt;/strong&gt; is &lt;em&gt;Sam&lt;/em&gt;. I&amp;acute;m... </code></pre> <p>How can I do this?</p> <p>While my question is for how to do it in PHP, it would be good to know how to do it in C#... either should be OK as I think I would be able to port the method over (unless it is a built in method).</p> <p>Also note that I have included an HTML entity <code>&amp;acute;</code> - which would have to be considered as a single character (rather than 7 characters as in this example).</p> <p><code>strip_tags</code> is a fallback, but I would lose formatting and links and it would still have the problem with HTML entities.</p> http://stackoverflow.com/questions/1427708/forms-does-your-css-accomodate-your-markup-or-vice-versa 5 Forms: Does your css accomodate your markup or vice versa? Mario 2009-09-15T14:56:54Z 2009-11-12T21:49:43Z <p>Regarding html forms, a very common markup pattern is:</p> <pre><code>&lt;form ...&gt; &lt;p&gt; &lt;label&gt;Name:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; &lt;p&gt; &lt;label&gt;Birthdate:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; .. &lt;input type=submit/&gt; &lt;/form&gt; </code></pre> <p>How much markup (classes, etc.) do you typically provide to allow for the most flexible visual formatting of the form? That is, how much markup do you add to help with your css selectors and do you use generic selectors?</p> <pre><code>&lt;form ...&gt; &lt;p class='name'&gt; &lt;label&gt;Name:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; &lt;p class='birthdate'&gt; &lt;label&gt;Birthdate:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; .. &lt;input type=submit/&gt; &lt;/form&gt; </code></pre> <p>vs.</p> <pre><code>&lt;form class='person' ...&gt; &lt;p class='name string'&gt; &lt;label&gt;Name:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; &lt;p class='birthdate date'&gt; &lt;label&gt;Birthdate:&lt;/label&gt; &lt;input .../&gt; &lt;/p&gt; .. &lt;input type=submit/&gt; &lt;/form&gt; </code></pre> <p>In the second case, adding generic types ("date") straight from the database can make it more easy to consistently format date fields. Wrapping a grouping ("person") to show the model from which the fields come, can help too. (Or I could have used an internal DIV.) Yet, to increase css reuse, I find myself adding extra markup. In some books I've read I hear that the less markup, the better (and that line can be very gray though it rings true to me). For example, I could very well have used the markup from one of the prior blocks and added a lot more selectors to the css.</p> <p>What are your principles for deciding just how much markup makes sense? Or how much to put on the css side?</p> <p>Also, I know that I can select against the name of the input, but since that's a nested element I lose my ability to control formatting from the outer wrapper ("p") which is usually where I want that extra control.</p> http://stackoverflow.com/questions/1719704/how-to-use-regular-expression-pattern-to-replace-markup-with-unquoted-attributes 0 How to use Regular Expression pattern to replace markup with unquoted attributes values Wololo 2009-11-12T03:29:55Z 2009-11-12T09:13:18Z <p>Consider the following markup</p> <pre><code>&lt;p align=center width='100' height=\"200\" attr=test&gt;aasasd&lt;/p&gt; </code></pre> <p>In order to make this markup valid i want to wrap quotes where they are required.</p> <p>From the above exmaple i want to apply quotes so the markup will be:</p> <pre><code>&lt;p align="center" width='100' height="200" attr="test"&gt;aasasd&lt;/p&gt; </code></pre> <p>Does anyone know any regex patterns for this purpose?</p> <p>Im using C#.</p> <p>EDIT: Looks like i might have to do this another way. Can someone provide me with a Regular Expression to match these values:</p> <pre><code>align=center attr=test </code></pre> <p>Thanks</p> http://stackoverflow.com/questions/678801/visual-studio-markup-syntax-highlighting-inside-scripttypetxt-html 1 Visual Studio - Markup syntax highlighting inside script[type:txt/html] chief7 2009-03-24T19:11:04Z 2009-11-06T18:05:44Z <p>Does anyone know how or if its possible for Visual Studio 2008 to highlight the html syntax inside a script block of type "text/html" just like any other markup on an aspx/html page. I'm using the script block to house my templates for client-side templating.</p> http://stackoverflow.com/questions/1687733/what-html-markups-to-use-for-displaying-label-value-data 3 What html markups to use for displaying label/value data ? fabien7474 2009-11-06T13:54:03Z 2009-11-06T16:33:51Z <p>I want to render a profile user container that contains a list of labels and their associated values.</p> <p>Here is an excerpt of information and layout I'd like to display:</p> <p><strong>First Name</strong>.......MyName</p> <p><strong>Age</strong>...................MyAge</p> <p><strong>email</strong>................MyEmail</p> <p>I know that there are tons of examples available but the problem is that it seems that there is no commonly accepted solution.</p> <p>So far I have seen the following usage :</p> <ol> <li>Table with markup (and &lt; tr >,&lt; td >...)</li> <li>Unordered list with &lt; ul > markup (and &lt; li >, &lt; div >...)</li> <li>Regular markups with &lt; h1 >,&lt; h2 >...&lt; p ></li> <li>Definition List with &lt; DL >, &lt; DT > and &lt; DD ></li> <li>&lt; label >...?</li> </ol> <p>What is the most semantically correct? What is the easiest to display (in a 2-columns layout)? What do you advise me to use and for what reasons?</p> <p>(html/css code snippets are more than welcomed)</p> http://stackoverflow.com/questions/518058/getting-innerhtml-from-asptable-control 0 getting innerHTML from asp:Table control BobC 2009-02-05T21:32:58Z 2009-11-05T16:00:05Z <p>I would like to capture the "innerHTML of a asp:Table control from a button click. i.e. webforms page has an asp:Table control that is dynamically populated at run time. I need a quick/dirty print button to print the contents of the table. Ideally, I'd like to just have a simple way to grab the markup of the rendered table to squirt to a new generic non-displaying form that all it does is execute a Javascript print command on whatever markup it has on its page. Any ideas? Alternatives would be welcome too. Thanks!</p> http://stackoverflow.com/questions/1641358/original-markup-ininternet-explorer-in-range-selection 0 Original Markup inInternet Explorer in Range / Selection unknown (google) 2009-10-29T02:49:14Z 2009-10-31T01:23:03Z <p>I am extracting content selected by the user via this function:</p> <pre><code> function getSelectionHTML() { var userSelection; if (window.getSelection) { // W3C Ranges userSelection = document.getElementById('axPage').contentWindow.getSelection(); // Get the range: if (userSelection.getRangeAt) var range = userSelection.getRangeAt (0); else { var range = document.createRange (); range.setStart (userSelection.anchorNode, userSelection.anchorOffset); range.setEnd (userSelection.focusNode, userSelection.focusOffset); } var clonedSelection = range.cloneContents (); var div = document.createElement ('div'); div.appendChild (clonedSelection); return div.innerHTML; } else if (document.selection) { userSelection = self.frames['axPage'].document.selection.createRange(); return userSelection.htmlText; } else { return ''; } }; </code></pre> <p>Extraction is working fine, but I do not seem to find a way to get the original markup of the selected text in Internet Explorer. Is there any way to get a DocumentFragment like in Firefox? I know about the different handling and approach of both systems, but maybe someone has found a working approach in javascript / ECMA to get rid of the nasty ...jQueryXXXXXXXXXXXXX="12" addons in HREFs and that painful uppercase tag- and attributenames.</p> <p>Again: it is essential to get the exact markup selected. </p> <p>Any help is appreciated, thank you.</p> http://stackoverflow.com/questions/1634012/how-to-parse-some-wiki-markup 0 How to Parse Some Wiki Markup Blaenk 2009-10-27T22:26:35Z 2009-10-30T02:54:17Z <p>Hey guys, given a data set in plain text such as the following:</p> <pre><code>==Events== * [[312]] &amp;ndash; [[Constantine the Great]] is said to have received his famous [[Battle of Milvian Bridge#Vision of Constantine|Vision of the Cross]]. * [[710]] &amp;ndash; [[Saracen]] invasion of [[Sardinia]]. * [[939]] &amp;ndash; [[Edmund I of England|Edmund I]] succeeds [[Athelstan of England|Athelstan]] as [[King of England]]. *[[1275]] &amp;ndash; Traditional founding of the city of [[Amsterdam]]. *[[1524]] &amp;ndash; [[Italian Wars]]: The French troops lay siege to [[Pavia]]. *[[1553]] &amp;ndash; Condemned as a [[Heresy|heretic]], [[Michael Servetus]] is [[burned at the stake]] just outside [[Geneva]]. *[[1644]] &amp;ndash; [[Second Battle of Newbury]] in the [[English Civil War]]. *[[1682]] &amp;ndash; [[Philadelphia]], [[Pennsylvania]] is founded. </code></pre> <p>I would like to end up with an <code>NSDictionary</code> or other form of collection so that I can have the year (The Number on the left) mapping to the excerpt (The text on the right). So this is what the 'template' is like:</p> <pre><code>*[[YEAR]] &amp;ndash; THE_TEXT </code></pre> <p>Though I would like the excerpt to be plain text, that is, no wiki markup so no <code>[[</code> sets. Actually, this could prove difficult with alias links such as <code>[[Edmund I of England|Edmund I]]</code>.</p> <p>I am not all that experienced with regular expressions so I have a few questions. Should I first try to 'beautify' the data? For example, removing the first line which will always be <code>==Events==</code>, and removing the <code>[[</code> and <code>]]</code> occurrences?</p> <p>Or perhaps a better solution: Should I do this in passes? So for example, the first pass I can separate each line into <code>* [[710]]</code> and <code>[[Saracen]] invasion of [[Sardinia]]</code>. and store them into different <code>NSArrays</code>.</p> <p>Then go through the first <code>NSArray</code> of years and only get the text within the <code>[[]]</code> (<em>I say text and not number because it can be <strong>530 BC</em></strong>), so <code>* [[710]]</code> becomes <code>710</code>.</p> <p>And then for the excerpt <code>NSArray</code>, go through and if an <code>[[some_article|alias]]</code> is found, make it only be <code>[[alias]]</code> somehow, and then remove all of the <code>[[</code> and <code>]]</code> sets?</p> <p>Is this possible? Should I use regular expressions? Are there any ideas you can come up with for regular expressions that might help?</p> <p>Thanks! I really appreciate it.</p> <p><strong>EDIT</strong>: Sorry for the confusion, but I only want to parse the above data. Assume that that's the only type of markup that I will encounter. I'm not necessarily looking forward to parsing wiki markup in general, unless there is already a pre-existing library which does this. Thanks again!</p> http://stackoverflow.com/questions/1229856/what-is-the-best-way-to-style-a-list-of-checkboxes 4 What is the best way to style a list of checkboxes MarcS 2009-08-04T20:49:17Z 2009-10-22T15:56:56Z <p>What I'd like to achieve is a layout like this</p> <pre> some label [ ] checkbox 1 [ ] checkbox 2 [ ] checkbox 3 [ ] checkbox 4 </pre> <p>[ ] represents a checkbox</p> <p>What markup and CSS would be best to use for this? I know this would be easy to do with a table I'm wondering if this is possible with divs</p> http://stackoverflow.com/questions/1608097/applying-a-style-to-a-control-that-plays-an-animation-based-on-a-databinding-to-t 0 Applying a Style to a control that plays an animation based on a databinding to the view model and a control specific field? firoso 2009-10-22T15:38:38Z 2009-10-22T15:38:38Z <p>So here's the situation, I have a control (code below) that plays an animation from a style datatrigger when a viewmodel property is equal to a value (Binding="{Binding OperatorState}" Value="Blah")</p> <p>Trouble is, although I can bind the BINDING I can't bind the value, as Value appears to have to be a literal. I wanted to do something like bind Value to Grid's "Tag" property, but that throws a compiler error.</p> <p>What would be the proper way to handle this scenario? a different kind of template binding? control template instead of style template? then I lose my datatriggers, what would I use instead? <strong>I'd really like a longer explanation of why my method is "wrong" (presuming i'm going about this the wrong way) and why your method is "right".</strong></p> <pre><code>&lt;Grid RenderTransformOrigin="0.5,0.5" VerticalAlignment="Center"&gt; &lt;Grid.Style&gt; &lt;Style&gt; &lt;Style.Triggers&gt; &lt;DataTrigger Binding="{Binding OperatorState}" Value="Blah"&gt; &lt;DataTrigger.EnterActions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard Duration="00:00:01.0"&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:01.0" Value="1.4" KeySpline="0,0,0,1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:01.0" Value="1.4" KeySpline="0,0,0,1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/DataTrigger.EnterActions&gt; &lt;DataTrigger.ExitActions&gt; &lt;BeginStoryboard&gt; &lt;Storyboard Duration="00:00:01.0"&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:01.0" Value="1.0" KeySpline="0,0,0,1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"&gt; &lt;SplineDoubleKeyFrame KeyTime="00:00:01.0" Value="1.0" KeySpline="0,0,0,1"/&gt; &lt;/DoubleAnimationUsingKeyFrames&gt; &lt;/Storyboard&gt; &lt;/BeginStoryboard&gt; &lt;/DataTrigger.ExitActions&gt; &lt;/DataTrigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Grid.Style&gt; &lt;bl:GlassBorder Background="#FF62A958" BorderBrush="#FF1A5F5B" BorderThickness="0,2" GlassOpacity="0.8" Content="Blah?" RenderTransformOrigin="0.5,0.5"/&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/5313/cross-platform-language-agnostic-gui-markup-language 3 Cross Platform, Language Agnostic GUI Markup Language? Cristian 2008-08-07T21:07:24Z 2009-10-22T14:39:51Z <p>I learned Swing back in the day but now I've moved to Python and want to make some apps with GUIs. I haven't had the time to learn a new GUI API so I've been using Jython, but I would prefer to use CPython. </p> <p>It would be great if I can have one simple markup that allows me to switch GUI libraries. It would be even better if I can use the same markup language across languages so I can quickly make GUIs for any language I'm using. Does anyone know of such a markup/library?</p> <p>I've seen markups like Glade and wxWidget's markup (I forget the name). They're partly what I'm looking for (making a GUI without coding it in a language) but they're intertwined with a specific library. And neither are really nice looking or friendly to human editting.</p> http://stackoverflow.com/questions/1589584/how-to-use-extensions-and-utility-methods-in-markup 0 How to use extensions and utility methods in markup? Milky Joe 2009-10-19T16:02:20Z 2009-10-19T16:11:48Z <p>Ok. This is probably a really stupid question, but I'm going to ask it anyway...</p> <p>How can I use extensions and utility methods in my ASP.Net markup? For example, (say) I have a DateTime extension method called "ToExampleString()" (contained in the DateTimeExtensions class in my Common.Extensions project) and I want to use it in my markup in the ListView's ItemTemplate:</p> <pre><code>&lt;ItemTemplate&gt; &lt;span&gt;&lt;%# ((DateTime)Eval("DateStarted")).ToExampleString() %&gt;&lt;/span&gt; &lt;/ItemTemplate&gt; </code></pre> <p>I'm getting the following error:</p> <p><em>'System.DateTime' does not contain a definition for 'ToExampleString' and no extension method 'ToExampleString' accepting a first argument of type 'System.DateTime' could be found (are you missing a using directive or an assembly reference?)</em></p> <p>The page simply can't see the extensions method.</p> <p>Similarly, how do I make my page's markup aware of a utility class:</p> <pre><code>&lt;span&gt;&lt;%# ExampleUtility.ProcessDate(Eval("DateStarted") %&gt;&lt;/span&gt; </code></pre> <p>What steps do I need to take to make this stuff work? I assume I'm overlooking something stupidly obvious?</p> <p>Thanks</p> http://stackoverflow.com/questions/410544/standard-common-mark-up-language-for-user-provided-content 0 Standard/common mark up language for user provided content? Agent_9191 2009-01-04T06:07:05Z 2009-10-15T14:51:09Z <p>I suppose this might be similar to <a href="http://stackoverflow.com/questions/342961/what-markup-language-for-richly-formated-content">this question</a>, but I'm wondering if there's a standard/popular mark up language for wiki and similar style user provided content. With the proliferation of different mark up syntaxes out there it seems like one would be a defacto one to implement. There appears to have been at least <a href="http://www.usemod.com/cgi-bin/mb.pl?WikiMarkupStandardWorkingGroup" rel="nofollow">one group</a> that wanted to create a standard (and an RFC for it), but they appear to have fizzled out around mid-2005.</p> <p>So does anybody know what the standard/most popular one is? If there isn't one, what's the easiest for users but has a good flexibility for advanced users?</p> http://stackoverflow.com/questions/1446917/why-is-there-no-standardized-wiki-markup-language 3 Why is there no standardized wiki markup language? dacracot 2009-09-18T21:30:04Z 2009-10-14T22:30:01Z <p>For as many wiki tools as I have used, each time I must learn yet another markup language. Why doesn't wiki markup get standardized like HTML, XSLT, SVG, and other web languages?</p> http://stackoverflow.com/questions/1567363/how-to-prevent-error-list-window-from-showing-up-within-visual-studio-asp-net-edi 0 How to prevent Error List Window from showing up within Visual Studio ASP.NET Editor? Sung Meister 2009-10-14T16:11:39Z 2009-10-14T16:21:36Z <p>Any errors or warnings within the markup pops up the window and it reminds me VB6 error message box, stealing the focus and concentration.</p> <p>Quite an eyesore.</p> <p><strong>Is there a way to prevent the <code>Error List</code> window from showing up while editing ASP.NET markups?</strong></p> http://stackoverflow.com/questions/1495425/regular-expression-for-conditional-substitution-of-angle-brackets 0 Regular Expression for Conditional Substitution of Angle Brackets Paul Sweatte 2009-09-29T23:17:25Z 2009-10-13T22:34:57Z <p>Is it possible to create a single regexp to replace &lt; and > with their entity equivalents?</p> <pre><code>s/&lt;|&gt;/&amp;lt;|&amp;gt;/ </code></pre> http://stackoverflow.com/questions/1341188/what-technology-problems-arise-from-creating-a-markup-language-for-email 1 What technology problems arise from creating a markup language for email? austin cheney 2009-08-27T13:42:47Z 2009-10-07T04:18:24Z <p>I am wondering what technology problems arise from associating a markup language to email? Without examining the language let us assume a hypothetical markup language exists with the following conditions:</p> <ul> <li>It meets all possible user-agent needs for properly structuring and defining content in email.</li> <li>It properly sanctions communications in a single document to allow multiple author contributions in representation of an email thread.</li> <li>It properly associates RFC 5322 similar header data to each instance of communication in the document using markup conventions.</li> <li>It solves all possible problems associated with accessibility, semantics, and other issues confined solely to the markup technology itself.</li> <li>It solves all possible security conditions with regards to application layer processing and solves absolutely no problems associated with transmission.</li> <li>The language may or may not be written in some derivative of XML and is immediately available XML derived technologies.</li> <li>The language instances require validation from the user-agent before they are allowed to be transmitted as email.</li> </ul> <p>With that being said what technology problems are associated with such a project? Will this present programming problems to user-agents? Would such a project prove incompatible to RFC 5322 form email where the content is to be only 7bit ASCII? Would such a technology prove harmful to email servers? Are there additional security problems associated with such a project? What are your other technology specific general thoughts about such a project? Please keep answers and responses as technology/programming focused as possible. I will down vote any comments related to business opinions or adoption.</p> http://stackoverflow.com/questions/1512585/trying-to-embed-a-dataitem-within-an-aspimage-controls-imageurl-property 0 Trying to embed a DataItem within an asp:Image control's ImageUrl property Vince 2009-10-03T02:03:57Z 2009-10-03T13:56:55Z <p>I have the following Image control within a repeater. I'm trying to get the username to render in between ~/profilepics/ and .jpg but I get the following rendered output</p> <p>/profilepics/%3C%25#DataBinder.Eval(Container.DataItem,%20%22usernameFrom%22)%20%25%3E.jpg</p> <p>Here is the markup</p> <pre><code>&lt;asp:Image ID="Image1" runat="server" ImageUrl='~/profilepics/&lt;%#DataBinder.Eval(Container.DataItem, "username") %&gt;.jpg' /&gt; </code></pre> <p>I have also tried the same but with double quotes and get the same result.</p> <pre><code>&lt;asp:Image ID="Image1" runat="server" ImageUrl="~/profilepics/&lt;%#DataBinder.Eval(Container.DataItem, "username") %&gt;.jpg" /&gt; </code></pre> http://stackoverflow.com/questions/1493679/suggestion-for-semantic-markup 1 Suggestion for Semantic Markup ahsteele 2009-09-29T16:41:03Z 2009-09-29T16:47:22Z <p>I am creating a web GUI for an application I am working on. This particular section will sit within a larger page that is of a good semantic makeup. However, I am unsure what the best option to markup the below screen semantically.</p> <p>My initial thought is to separate the top half from the bottom half via divs. Therefore, markup for the top is pretty easy. Leaving the bottom which is where I feel stumped. The easiest answer is a table but this content doesn't easily fit the only use tables for tabular data rule. Especially considering that headers would look conspicuous in this layout. Suggestions?</p> <p><img src="http://img183.imageshack.us/img183/2261/semanticmarkup.png" alt="Need Semantic Markup for this Image" /></p> http://stackoverflow.com/questions/1469361/add-insert-elements-into-groovy-markupbuilder-object-after-initial-creation 0 Add/insert elements into Groovy MarkupBuilder object after initial creation elevine 2009-09-24T01:14:18Z 2009-09-24T13:04:43Z <p>I understand how to create XML in Groovy using MarkupBuilder. How do you add/insert elements into a MarkupBuilder object after the initial creation? For example, start with: </p> <pre><code>def builder = new MarkupBuilder(writer) def items = builder.items{ item(name: "book") } </code></pre> <p>Which would produce:</p> <pre><code>&lt;items&gt; &lt;item name="book/&gt; &lt;/items&gt; </code></pre> <p>I am trying to create an extensible base XML message, using a core class to wrap the builder and inheritance to add specific tags. Building on the above example, here is my base class:</p> <pre><code>Class ItemBuilder{ def name; def builder = new MarkupBuilder(writer) public Object getXML(){ def items = builder.items{ item(name: this.name) } return items; } } </code></pre> <p>Here is an example extended message builder:</p> <pre><code>Class SubItemBuilder extends ItemBuilder{ def type; public Object getXML(){ def items = super.getXML(); //do something here to add a subitem child tag.... return items; } } </code></pre> <p>If I was working with JSON in JavaScript, I would do something like:</p> <pre><code>items.item.subitem = "foo" </code></pre> <p>I ultimately want SubItemBuilder.getXML to generate:</p> <pre><code>&lt;items&gt; &lt;item name="book&gt; &lt;subitem type="paperback"/&gt; &lt;/item&gt; &lt;/items&gt; </code></pre> <p>Is there any easy way to achieve this? Seems like one option is to subclass MarkupBuilder and add public methods to insert child nodes. Is there a better approach to achieve the result I'm looking for?</p> http://stackoverflow.com/questions/1164004/how-to-mark-up-phone-numbers 4 How to mark-up phone numbers? Boldewyn 2009-07-22T09:04:50Z 2009-09-23T16:45:57Z <p>Hi,</p> <p>I want to mark up a phone number as callable link in an HTML document. I have read <a href="http://microformats.org/wiki/hcard-faq#How%5Fdo%5Fyou%5Fmark%5Fup%5Fa%5Fphone%5Fextension" rel="nofollow">the microformats approach</a>, and I know, that the <code>tel:</code> scheme would be standard, but is quite literally nowhere implemented.</p> <p>Skype defines, as far as I know, <code>skype:</code> and <code>callto:</code>, the latter having gained some popularity. I assume, that other companies have either other schemes or jump on the <code>callto:</code> train.</p> <p>What would be a best practice to mark-up a phone number, so that as many people as possible with VoIP software can just click on a link to get a call?</p> <p>Bonus question: Does anyone know about complications with emergency numbers such as 911 in US or 110 in Germany?</p> <p>Cheers,</p> <p><strong>Update:</strong> Microsoft NetMeeting takes <code>callto:</code> schemes under WinXP. <a href="http://stackoverflow.com/questions/1009181/url-scheme-for-phone-call">This question</a> suggests, that Microsoft Office Communicator will handle <code>tel:</code> schemes but not <code>callto:</code> ones. Great, Redmond!</p>