User Tomalak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:58:44Zhttp://stackoverflow.com/feeds/user/18771http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/553293/what-is-the-ldap-filter-string-length-limit-in-active-directory3What is the LDAP filter string length limit in Active Directory?Tomalak2009-02-16T13:25:07Z2009-12-10T19:09:38Z
<p>Can anyone point me to a resource that defines the maximum allowable length of the LDAP filter string in Active Directory?</p>
http://stackoverflow.com/questions/1879385/c-parse-xml-schema-simpletype-question/1879492#18794921Answer by Tomalak for C# parse XML Schema (SimpleType) questionTomalak2009-12-10T08:31:36Z2009-12-10T08:31:36Z<p>There are <a href="http://msdn.microsoft.com/en-us/library/system.xml.schema.xmlschemasimpletyperestriction.aspx" rel="nofollow"><code>XmlSchemaSimpleTypeRestriction</code></a> and <a href="http://msdn.microsoft.com/en-us/library/system.xml.schema.xmlschemaenumerationfacet.aspx" rel="nofollow"><code>XmlSchemaEnumerationFacet</code></a>. </p>
<p>The question "<a href="http://stackoverflow.com/questions/787745/extract-enumeration-values-from-xsd-schema-file-in-net">Extract enumeration values from xsd schema file in .net</a>" discusses the same problem.</p>
http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl/1877169#18771690Answer by Tomalak for Select value with Linux command xpath (from Perl)Tomalak2009-12-09T21:51:51Z2009-12-09T21:51:51Z<pre><code>/domain/devices/disk[@type='file']/source/@file[1]/text()
</code></pre>
http://stackoverflow.com/questions/1877140/call-a-stored-procedure-from-another-stored-procedure/1877163#18771634Answer by Tomalak for Call a Stored Procedure from another Stored Procedure.Tomalak2009-12-09T21:50:40Z2009-12-09T21:50:40Z<p>Try <a href="http://msdn.microsoft.com/en-us/library/ms178592.aspx" rel="nofollow"><code>RAISERROR</code></a> in SP2.</p>
http://stackoverflow.com/questions/1876982/sharepoint-xslt-dynamic-filtering/1877033#18770332Answer by Tomalak for Sharepoint XSLT Dynamic filteringTomalak2009-12-09T21:30:53Z2009-12-09T21:39:51Z<p>You can't do what you seem to be attempting here. An XPath expression is atomical, you can't save parts of it and re-use them (apart from that it is <code>contains()</code>, not <code>contain()</code>).</p>
<p>You need something like this:</p>
<pre><code><xsl:variable name="Rows" select="
/dsQueryResponse/Rows/Row[
contains(@Title, 'title1') or contains(@Title, 'title2')
]
" />
</code></pre>
<p>Your "filter" does not work because if <code>$filter</code> is a string, then it is a string, nothing else. It does not get a magical meaning just because it looks like XPath. ;-)</p>
<p>This </p>
<pre><code><xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row[string($filter)]" />
</code></pre>
<p>evaluates to a non-empty string as the predicate. And any non-empty string evaluates to true, which makes the expression return every node there is.</p>
<p>If you want a dynamic filter based on an input string, then do this:</p>
<pre><code><xsl:variable name="filter" select="'|title1|title2|title3|'" />
<xsl:variable name="Rows" select="
/dsQueryResponse/Rows/Row[
contains(
$filter,
concat('|', @Title, '|')
)
]
" />
</code></pre>
<p>The use of delimiters also prevents "title11" from showing up if you look for "title1".</p>
<p>Make sure your filter always starts and ends with a delimiter, and use a delimiter that is reasonably unlikely to ever occur as a natural part of <code>@Title</code>. (For example, you could use <code>&#13;</code>. If your title cannot be multi-line this is pretty safe.)</p>
http://stackoverflow.com/questions/1876217/regex-parsing-multiple-elements-with-the-first-one-being-optional/1876310#18763100Answer by Tomalak for Regex parsing multiple elements, with the first one being optionalTomalak2009-12-09T19:40:54Z2009-12-09T19:40:54Z<pre><code>^\s*(\[[^]]+\])?\s*(.*)
</code></pre>
<p>Don't use <code>.*</code> if you don't absolutely, positively want to match <em>everything</em>. What you are trying to match is "everything up to the closing <code>]</code>", and this should be explicit in the regex.</p>
<p>Explanation:</p>
<pre><code>^ # start-of-string
\s* # any number of leading white-space (gets ignored)
( # match group 1
\[ # literal [
[^]]+ # anything but ]
\] # literal ]
)? # end match group 1, make optional
\s* # any number of intermediary white-space (gets ignored, too)
(.*) # anything else on that line
</code></pre>
http://stackoverflow.com/questions/1869695/escaping-double-quotes-in-php/1869728#18697283Answer by Tomalak for Escaping double quotes in phpTomalak2009-12-08T20:48:17Z2009-12-08T20:48:17Z<p>To display the string "as it is" in a browser, you must pass it through <code>htmlspecialchars()</code>.</p>
<pre><code>echo htmlspecialchars($variable);
</code></pre>
<p>If you don't, the browser interprets the HTML and displays the link text, as expected.</p>
http://stackoverflow.com/questions/1868536/how-to-check-value-in-an-array-using-coldfusion/1868810#18688102Answer by Tomalak for How to check value in an Array using Coldfusion?Tomalak2009-12-08T18:10:37Z2009-12-08T18:10:37Z<pre><code><cfset abcList = "*,B,b,A,C,a">
<cfset abc=ListToArray(abcList)>
<cfif #abc[1]# eq "*">OK<cfelse>FAIL</cfif>
<cfif abc[1] eq "*">OK<cfelse>FAIL</cfif>
</code></pre>
<p>Prints "OK OK" for me. Can you re-confirm it prints something else for you?</p>
http://stackoverflow.com/questions/1865685/display-xsd-defined-default-value-of-attribute-using-xsl/1865935#18659350Answer by Tomalak for Display XSD-defined default value of attribute using XSLTomalak2009-12-08T10:00:44Z2009-12-08T10:00:44Z<p>Maybe I'm overgeneralizing, but if you want to load the default from the schema, you would need something along the lines of this:</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
exclude-result-prefixes="xs"
>
<xsl:variable name="schema" select="
document('responsecodes.xsd')
" />
<xsl:variable name="DefaultBar" select="
$schema//xs:complexType[@name='foo']/xs:attribute[@name='bar']/@default
" />
<xsl:template match="foo">
<li>
<xsl:text>BarType: '</xsl:text>
<xsl:choose>
<xsl:when test="@bar">
<xsl:value-of select="@bar" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$DefaultBar" />
</xsl:otherwise>
</xsl:choose>
<xsl:text>'</xsl:text>
</li>
</xsl:template>
</xsl:stylesheet>
</code></pre>
http://stackoverflow.com/questions/1865633/preventing-color-bleeding-with-stateimagelist-on-treeview/1865672#18656720Answer by Tomalak for Preventing color bleeding with StateImageList on TreeViewTomalak2009-12-08T09:05:03Z2009-12-08T09:05:03Z<p>Looks like the images are reduced in bit depth. </p>
<p>Is the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.imagelist.colordepth.aspx" rel="nofollow"><code>ColorDepth</code> property</a> of the ImageList set to <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.colordepth.aspx" rel="nofollow"><code>Depth24Bit</code></a> or higher? </p>
http://stackoverflow.com/questions/1861000/how-can-i-get-the-xml-nodes-from-this-xml-in-classic-asp-msxml/1861494#18614942Answer by Tomalak for How can I get the XML nodes from this XML in classic ASP (MSXML)?Tomalak2009-12-07T17:26:40Z2009-12-07T17:26:40Z<p>Your misconception is in default namespace handling. There is no such thing as a default namespace for XPath expressions here - you <em>must</em> use a prefix, even if it does not have a prefix in the XML:</p>
<pre><code>var nsDef = "";
nsDef = nsDef + "xmlns:d1p1='http://www.w3.org/2001/XMLSchema-instance' ";
nsDef = nsDef + "xmlns:api='http://api.createsend.com/api/' ";
response.setProperty("SelectionNamespaces", nsDef);
response.setProperty("SelectionLanguage", "XPath");
var nodes = response.selectNodes("//api:string");
</code></pre>
<p>If you do not use a prefix, XPath expressions are handled in the empty namespace. This is why you could not select anything with <code>"//string"</code>.</p>
http://stackoverflow.com/questions/1843693/xslt-xpath-syntax-how-to-refer-to-an-element-in-an-outer-scope/1846021#18460212Answer by Tomalak for XSLT & Xpath syntax > how to refer to an element in an 'outer' scopeTomalak2009-12-04T10:07:20Z2009-12-07T01:52:36Z<p>Since you select the <code>$currentID</code> from the context node:</p>
<pre><code><xsl:variable name="currentID" select="@id" />
</code></pre>
<p>you can use the <code>current()</code> function, which always refers to the XSLT context node:</p>
<pre><code><xsl:attribute name="class">
<xsl:if test="count($currentPage/ancestor::node[@id = current()/@id) &gt; 0]">
<xsl:text>descendant-selected </xsl:text>
</xsl:if>
</xsl:attribute>
</code></pre>
<p>This way you don't need a variable.</p>
<p>A few other notes: </p>
<ul>
<li>I recommend using <code><xsl:text></code> like shown above. This gives you more freedom to format your code and avoid overly long lines.</li>
<li>You don't need to do a <code>count() > 0</code>, simply selecting the nodes is sufficient. If none exist, the empty node-set is returned. It always evaluates to false, while non-empty node-sets always evaluate to true.</li>
</ul>
<p>If you refer to nodes by <code>@id</code> regularly in your XSL stylesheet, an <code><xsl:key></code> would become beneficial:</p>
<pre><code><xsl:key name="kNodeById" match="node" use="@id" />
<!-- ... -->
<xsl:attribute name="class">
<xsl:if test="key('kNodeById', @id)">
<xsl:text>descendant-selected </xsl:text>
</xsl:if>
</xsl:attribute>
</code></pre>
<p>The above does not need <code>current()</code> since outside of an XPath predicate, the context is unchanged. Also, I don't <code>count()</code> the nodes, since this is redundant (as explained).</p>
http://stackoverflow.com/questions/1846850/sum-contents-of-column-based-on-a-variable-with-xpath/1846982#18469820Answer by Tomalak for Sum contents of column based on a variable with XPathTomalak2009-12-04T13:35:17Z2009-12-04T13:51:43Z<p>I think you want:</p>
<pre><code><xsl:if test="substring(@Description, 1, 4) = 'SUM_'">
<xsl:text>Sum: </xsl:text>
<xsl:value-of select="
sum(/Rowsets/Rowset/Row/*[name() = current()/@SourceColumn])
"/>
</xsl:if>
</code></pre>
http://stackoverflow.com/questions/1834385/xslt-pass-value-from-one-for-each-match-to-the-next/1834650#18346501Answer by Tomalak for XSLT: pass value from one for-each match to the nextTomalak2009-12-02T17:52:29Z2009-12-03T07:47:56Z<p>Not sure if I unterstood your requirements 100%, but…</p>
<pre><code><xsl:variable name="sections" select="//section[@revision]" />
<xsl:for-each select="$sections">
<xsl:variable name="ThisPos" select="position()" />
<xsl:variable name="PrevMatchedSection" select="$sections[$ThisPos - 1]" />
<xsl:choose>
<xsl:when test="
not($PrevMatchedSection)
or
generate-id($PrevMatchedSection/ancestor::chapter[1])
!=
generate-id(ancestor::chapter[1])
">
<!-- Do one thing if this is the first section
matched in this chapter -->
</xsl:when>
<xsl:otherwise>
<!-- Do something else if this section is in the same
chapter as the last section matched -->
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</code></pre>
<p>However, I suspect this whole thing can be solved more elegantly with a <code><xsl:template></code> / <code><xsl:apply-templates></code> approach. But without seeing your input and expected output this is hard to say.</p>
http://stackoverflow.com/questions/1834231/subscript-out-range-error-vbscript-on-pageload/1834352#18343523Answer by Tomalak for "subscript out range" error (vbscript on pageload)Tomalak2009-12-02T17:06:04Z2009-12-02T17:06:04Z<p>First off: The <code>:</code> operator is nice, but you are definitively overdoing it. I recommend cleaning up your code to make it more readable. It helps in debugging too, since it breaks up the line and helps locating the errors by line.</p>
<pre><code>Do While Not rs.EOF
For i = 1 To tpp
If i = 1 Then
matriz(cont) = rs("id_material_apv_produto")
Else
matriz(cont) = matriz(cont) & "_" & rs("id_material_apv_produto")
End If
rs.MoveNext
If rs.EOF Then Exit Do
Next
cont = cont + 1
Loop
Set rs = Nothing
If CInt(pag) = 1 And UBound(matriz) >= 1 Then
id = matriz(1)
End If
</code></pre>
<p>Now for your error. It complains that at some point, <code>cont</code> refers to a position outside of <code>matriz</code>. Your array has the wrong dimensions, check how it is created.</p>
http://stackoverflow.com/questions/1819228/what-is-this-exception-cipher-buffering-error-in-jce-provider-jsafejce/1831997#18319971Answer by Tomalak for What is this exception: Cipher buffering error in JCE provider JsafeJCETomalak2009-12-02T10:25:57Z2009-12-02T10:25:57Z<p>This <a href="http://forums.adobe.com/thread/507614" rel="nofollow">forum thread on adobe.com</a> seems to offer a solution to this problem.</p>
<p>Key quote, by one user named "wizzi_vt":</p>
<blockquote>
<p><code>-Dcoldfusion.disablejsafe=true</code> in your <code>jvm.config</code> will prevent these
errors. I believe it will also remove
the Bsafe encryption methods from the
encrypt function documented as having
been added in CF8.</p>
</blockquote>
http://stackoverflow.com/questions/1827308/how-to-use-xslt-to-add-namespaces-to-xml/1827506#18275061Answer by Tomalak for How to use xslt to add namespaces to xmlTomalak2009-12-01T16:55:26Z2009-12-01T16:55:26Z<p>I think something like this could do the job:</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<!-- the identity template to copy everything as it is -->
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<!-- elements are re-created with a namespace -->
<xsl:template match="*">
<xsl:variable name="ns-uri">
<xsl:choose>
<xsl:when test="name() = 'item' and name(..) = 'order'">
<xsl:text>http://types1.company.com</xsl:text>
</xsl:when>
<xsl:when test="name() = 'customer' and name(..) = 'order'">
<xsl:text>http://types2.company.com</xsl:text>
</xsl:when>
<!-- otherwise: nothing -->
</xsl:choose>
</xsl:variable>
<!-- create the element with the correct namespace -->
<xsl:element name="{name()}" namespace="{$ns-uri}">
<xsl:apply-templates select="node() | @*" />
</xsl:element>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Output for me is:</p>
<pre><code><order>
<item name="table" xmlns="http://types1.company.com"></item>
<customer name="jim" xmlns="http://types2.company.com"></customer>
</order>
</code></pre>
<p>Which is what you have, just without the prefixes. The infoset is exactly the same.</p>
http://stackoverflow.com/questions/1820360/problem-using-ancestor-axis-in-an-xpath-predicate/1826304#18263041Answer by Tomalak for Problem using ancestor axis in an XPath predicateTomalak2009-12-01T13:49:18Z2009-12-01T15:24:21Z<p>You don't need to use <code>count()</code>, since the empty node-set evaluates to false. Simply selecting the nodes you are interested in is sufficient as a condition:</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
<!-- modified identity transform -->
<xsl:template match="node() | @*">
<xsl:copy>
<!-- check both your conditions -->
<xsl:if test="
ancestor::*[@AttributeToCheck = 'true']
and
(preceding-sibling::* | following-sibling::*)[name() = name(current())]
">
<xsl:attribute name="foo">bar</xsl:attribute>
</xsl:if>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
http://stackoverflow.com/questions/1825778/xpath-question-multiple-selects/1825815#18258154Answer by Tomalak for XPath question multiple selectsTomalak2009-12-01T12:13:58Z2009-12-01T12:13:58Z<p>Your XPath is wrong to be gin with. You probably mean:</p>
<pre><code>data.SelectNodes("//Asset[@id = '" + oldBinaryAssetId + "']");
</code></pre>
<p>To combine both variants (upper- and lower-case), you could use:</p>
<pre><code>data.SelectNodes("//*[(name() = 'Asset' or name() = 'asset') and @id = '" + oldBinaryAssetId + "']");
</code></pre>
<p>or</p>
<pre><code>data.SelectNodes("(//Asset | //asset)[@id = '" + oldBinaryAssetId + "']");
</code></pre>
<p>If you have any way to avoid the <code>//</code> operator, I recommend doing so. Your queries will be faster when you do, though this might only be noticable with large input documents.</p>
http://stackoverflow.com/questions/1825058/how-to-create-xslt-transformation-for-srcml/1825475#18254751Answer by Tomalak for How to create XSLT transformation for srcML?Tomalak2009-12-01T11:04:53Z2009-12-01T11:04:53Z<p>This is a bit tricky due to the "interspersed text" nature of your input XML. Especially comma handling is not trivial, and my proposed solution is probably wrong (even though it works for this particular input). I recommend giving the comma handling part a lot more thought since C syntax is complex and I don't know much about srcML.</p>
<p>Anyway, here is my attempt.</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:src="http://www.sdml.info/srcML/src"
xmlns="http://www.sdml.info/srcML/src"
>
<!-- the identity template copies everything as is -->
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
<!-- empty templates will remove any matching elements from the output -->
<xsl:template match="src:expr[src:name = 'Value2']" />
<xsl:template match="src:expr[last()]" />
<!-- this template handles the commata after expressions -->
<xsl:template match="text()[normalize-space() = ',']">
<!-- select the following node, but only if it is an <expr> element -->
<xsl:variable name="expr" select="following-sibling::*[1][self::src:expr]" />
<!-- apply templates to it, save the result -->
<xsl:variable name="check">
<xsl:apply-templates select="$expr" />
</xsl:variable>
<!-- if something was returned, then this comma needs to be copied -->
<xsl:if test="$check != ''">
<xsl:copy />
</xsl:if>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>My input was (I used the srcML namespace for the sake of the example):</p>
<pre><code><unit xmlns="http://www.sdml.info/srcML/src">
<typedef>typedef <type><enum>enum <name>SomeEnum</name>
<block>{
<expr><name>Value0</name> = 0</expr>,
<expr><name>Value1</name> = <name>SOMECONST</name></expr>,
<expr><name>Value2</name> = <name>SOMECONST</name> + 1</expr>,
<expr><name>ValueTop</name></expr>
}</block></enum></type> <name>TSomeEnum</name>;</typedef>
</unit
</code></pre>
<p>and the result:</p>
<pre><code><unit xmlns="http://www.sdml.info/srcML/src">
<typedef>typedef <type><enum>enum <name>SomeEnum</name>
<block>{
<expr><name>Value0</name> = 0</expr>,
<expr><name>Value1</name> = <name>SOMECONST</name></expr>
}</block></enum></type> <name>TSomeEnum</name>;</typedef>
</unit>
</code></pre>
http://stackoverflow.com/questions/1791108/xpath-expression-to-select-all-xml-child-nodes-except-a-specific-list/1791364#17913642Answer by Tomalak for XPath expression to select all XML child nodes except a specific list?Tomalak2009-11-24T16:50:11Z2009-11-24T16:55:31Z<pre><code><xsl:for-each select="//cd/*[not(self::price or self::year)]">
</code></pre>
<p>But actually this is bad and unnecessarily complicated. Better:</p>
<pre><code><xsl:template match="catalog">
<html>
<body>
<xsl:apply-templates select="cd/*" />
</body>
</html>
</xsl:template>
<!-- this is an empty template to mute any unwanted elements -->
<xsl:template match="cd/price | cd/year" />
<!-- this is to output wanted elements -->
<xsl:template match="cd/*">
<xsl:text>Current node: </xsl:text>
<xsl:value-of select="."/>
<br />
</xsl:template>
</code></pre>
<p>Avoid <code><xsl:for-each></code>. Almost all of the time it is the wrong tool and should be substituted by <code><xsl:apply-templates></code> and <code><xsl:template></code>.</p>
<p>The above works because of match expression specificity. <code>match="cd/price | cd/year"</code> is more specific than <code>match="cd/*"</code>, so it is the preferred template for <code>cd/price</code> or <code>cd/year</code> elements. Don't try to exclude nodes, let them come and handle them by discarding them.</p>
http://stackoverflow.com/questions/1772327/url-rewriter-not-grabbing-the-exact-match/1772341#17723410Answer by Tomalak for URL Rewriter not grabbing the exact matchTomalak2009-11-20T18:17:04Z2009-11-20T18:17:04Z<pre><code><rewrite url="~/(\d+)" to="~/Items/Details.aspx?ItemId=$1" />
-------------------^
</code></pre>
http://stackoverflow.com/questions/1772239/clicking-on-a-link-that-contains-a-certain-string-in-vbs/1772323#17723231Answer by Tomalak for Clicking on a link that contains a certain string in VBSTomalak2009-11-20T18:12:20Z2009-11-20T18:12:20Z<p>Along the lines of</p>
<pre><code>Dim LinkHref
Dim a
LinkHref = "link"
For Each a In IE.Document.GetElementsByTagName("A")
If LCase(a.GetAttribute("href")) = LCase(LinkHref) Then
a.Click
Exit For ''# to stop after the first hit
End If
Next
</code></pre>
<p>Instead of <code>LCase(…) = LCase(…)</code> you could also use <code>StrComp(…, …, vbTextCompare)</code> (see <a href="http://msdn.microsoft.com/en-us/library/ya4w6fwy%28VS.85%29.aspx" rel="nofollow"><code>StrComp()</code> on the MSDN</a>).</p>
http://stackoverflow.com/questions/1770383/xslt-sort-and-group-by-year-date/1770970#17709700Answer by Tomalak for XSLT, sort and group by year-dateTomalak2009-11-20T14:57:15Z2009-11-20T14:57:15Z<p>For the following solution I used this XML file:</p>
<pre><code><root>
<news>
<data alias="date">2008-10-20</data>
</news>
<news>
<data alias="date">2009-11-25</data>
</news>
<news>
<data alias="date">2009-11-20</data>
</news>
<news>
<data alias="date">2009-03-20</data>
</news>
<news>
<data alias="date">2008-01-20</data>
</news>
</root>
</code></pre>
<p>and this XSLT 1.0 transformation:</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:cfg="http://tempuri.org/config"
exclude-result-prefixes="cfg"
>
<xsl:output method="xml" encoding="utf-8" />
<!-- index news by their "yyyy" value (first 4 chars) -->
<xsl:key
name="kNewsByY"
match="news"
use="substring(data[@alias='date'], 1, 4)"
/>
<!-- index news by their "yyyy-mm" value (first 7 chars) -->
<xsl:key
name="kNewsByYM"
match="news"
use="substring(data[@alias='date'], 1, 7)"
/>
<!-- translation table (month number to name) -->
<config xmlns="http://tempuri.org/config">
<months>
<month id="01" name="Jan" />
<month id="02" name="Feb" />
<month id="03" name="Mar" />
<month id="04" name="Apr" />
<month id="05" name="May" />
<month id="06" name="Jun" />
<month id="07" name="Jul" />
<month id="08" name="Aug" />
<month id="09" name="Sep" />
<month id="10" name="Oct" />
<month id="11" name="Nov" />
<month id="12" name="Dec" />
</months>
</config>
<xsl:template match="root">
<xsl:copy>
<!-- group news by "yyyy" -->
<xsl:apply-templates mode="year" select="
news[
generate-id()
=
generate-id(key('kNewsByY', substring(data[@alias='date'], 1, 4))[1])
]
">
<xsl:sort select="data[@alias='date']" order="descending" />
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<!-- year groups will be enclosed in a <year> element -->
<xsl:template match="news" mode="year">
<xsl:variable name="y" select="substring(data[@alias='date'], 1, 4)" />
<year num="{$y}">
<!-- group this year's news by "yyyy-mm" -->
<xsl:apply-templates mode="month" select="
key('kNewsByY', $y)[
generate-id()
=
generate-id(key('kNewsByYM', substring(data[@alias='date'], 1, 7))[1])
]
">
<xsl:sort select="data[@alias='date']" order="descending" />
</xsl:apply-templates>
</year>
</xsl:template>
<!-- month groups will be enclosed in a <month> element -->
<xsl:template match="news" mode="month">
<xsl:variable name="ym" select="substring(data[@alias='date'], 1, 7)" />
<xsl:variable name="m" select="substring-after($ym, '-')" />
<!-- select the label of the current month from the config -->
<xsl:variable name="label" select="document('')/*/cfg:config/cfg:months/cfg:month[@id = $m]/@name" />
<month num="{$m}" label="{$label}">
<!-- process news of the current "yyyy-mm" group -->
<xsl:apply-templates select="key('kNewsByYM', $ym)">
<xsl:sort select="data[@alias='date']" order="descending" />
</xsl:apply-templates>
</month>
</xsl:template>
<!-- for the sake of this example, news elements will just be copied -->
<xsl:template match="news">
<xsl:copy-of select="." />
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>When the transformation is applied, the following output is produced:</p>
<pre><code><root>
<year num="2009">
<month num="11" label="Nov">
<news>
<data alias="date">2009-11-25</data>
</news>
<news>
<data alias="date">2009-11-20</data>
</news>
</month>
<month num="03" label="Mar">
<news>
<data alias="date">2009-03-20</data>
</news>
</month>
</year>
<year num="2008">
<month num="10" label="Oct">
<news>
<data alias="date">2008-10-20</data>
</news>
</month>
<month num="01" label="Jan">
<news>
<data alias="date">2008-01-20</data>
</news>
</month>
</year>
</root>
</code></pre>
<p>It has the right structure already, you can adapt actual appearance to your own needs.</p>
<p>The solution is a two-phase Muenchian grouping approach. In the first phase, news items are grouped by year, in the second phase by year-month.</p>
<p>Please refer to my explanation of <code><xsl:key></code> and <code>key()</code> <a href="http://stackoverflow.com/questions/948218/xslt-3-level-grouping-on-attributes/955527#955527">over here</a>. You don't <em>need</em> to read the other question, though it is a similar problem. Just read the lower part of my answer.</p>
http://stackoverflow.com/questions/1764478/regex-to-match-ampentity-or-amp0-9-and-capture-amp/1764551#17645513Answer by Tomalak for Regex To Match &entity; or &#0-9; And Capture &Tomalak2009-11-19T16:21:20Z2009-11-19T17:29:53Z<p>look for (this copes with named, decimal and hexadecimal entities):</p>
<pre><code>&amp;([A-Za-z]+|#x[\dA-Fa-f]+|#\d+);
</code></pre>
<p>replace with </p>
<pre><code>&$1;
</code></pre>
<p>Be warned: This has a real probability to go wrong. I recommend using a HTML parser to decode the text. You can decode it twice, if it was double encoded. HTML and regex don't play well together even on the small scale.</p>
<p>Since you are in JavaScript, I expect you are in a browser. If you are, you have a nice DOM parser at your hands. Create a new element, assign the string to its inner HTML property and read out the text value. Done.</p>
http://stackoverflow.com/questions/1764374/convert-number-to-varchar-in-sql-with-formatting/1764406#17644066Answer by Tomalak for Convert number to varchar in SQL with formattingTomalak2009-11-19T16:04:43Z2009-11-19T16:04:43Z<pre><code>RIGHT('00' + CONVERT(VARCHAR, MyNumber), 2)
</code></pre>
<p>Be warned that this will cripple numbers > 99. You might want to factor in that possibility.</p>
http://stackoverflow.com/questions/1761062/why-does-this-xslt-code-add-a-new-line/1762606#17626065Answer by Tomalak for Why does this XSLT code add a new line?Tomalak2009-11-19T11:16:10Z2009-11-19T16:00:55Z<p>In one of the comments (to a now-deleted answer) you said your input looks like this:</p>
<pre><code><image>
someimage.jpg</image>
</code></pre>
<p>This is where your newline comes from - it is part of the node value and is therefore retained by the XSL processor (it is not "added", as you suspected).</p>
<p>To remove the space, you must modify the node value before you output it, best suited in this case is the <code>normalize-space()</code> function, since URLs do not contain spaces, generally.</p>
<pre><code><td>
<img src="{normalize-space(image)}"/>
</td>
</code></pre>
<p>If you have any chance, this should be fixed in the process that generates the input XML, since the XML itself is already wrong. If the newline is not part of the data, it should not be there in the first place.</p>
<p>Contrary to what many others here proposed, your XSLT code layout has no influence on the output. All whitespace is stripped from the XSL stylesheet before processing begins, so this:</p>
<pre><code><td>
<xsl:element name="img">
<xsl:attribute name="src">
<xsl:value-of select="image" />
</xsl:attribute>
</xsl:element>
</td>
</code></pre>
<p>though unnecessarily verbose, is equivalent to this:</p>
<pre><code><td>
<xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="image" /></xsl:attribute>
</xsl:element>
</td>
</code></pre>
<p>is equivalent to this, as far as output whitespace is concerned:</p>
<pre><code><td><img src="{image}"/></td>
</code></pre>
<p>However, if stray text nodes are in your XSL code, all whitespace around them is retained. This means you should not do this:</p>
<pre><code><td>
Stray Text
</td>
</code></pre>
<p>Since this would generate a <code>"\n Stray Text\n "</code> text node in the output. Better is:</p>
<pre><code><td>
<xsl:text>Contained Text</xsl:text>
</td>
</code></pre>
<p>In regard to: "But why does <code><xsl:strip-space></code> not work?" I recommend reading <a href="http://stackoverflow.com/questions/1134318/xslt-xslstrip-space-does-not-work/1134415#1134415">Pavel Minaev's answer to exactly this question</a>.</p>
http://stackoverflow.com/questions/1758566/iterative-regex-matching/1758587#17585871Answer by Tomalak for Iterative regex matchingTomalak2009-11-18T19:50:13Z2009-11-18T19:50:13Z<p>You could do it only by making every part of the regex optional, and repeating yourself:</p>
<pre><code>^([EW]|[EW]\d{1,3}|[EW]\d{1,3}\.|[EW]\d{1,3}\.\d)$
</code></pre>
<p>This might work for simple expressions, but for complex ones this is hardly feasible.</p>
http://stackoverflow.com/questions/1756652/how-to-display-xsd-validated-xml-using-xslt/1756941#17569412Answer by Tomalak for How to display XSD validated XML using XSLTTomalak2009-11-18T15:49:03Z2009-11-18T15:49:03Z<p>Simple problem: Your XML elements are in a namespace your XSLT knows nothing about.</p>
<pre><code><root xmlns="http://foo.bar/responsecode.xsd">
<responses>
<!-- ... -->
</responses>
</root>
</code></pre>
<p>puts your <code><root></code> and all descendant elements into the <code>"http://foo.bar/responsecode.xsd"</code> namespace.</p>
<p>Change your XSL like this:</p>
<pre><code><xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:foo="http://foo.bar/responsecode.xsd"
exclude-result-prefixes="foo"
>
<xsl:template match="/">
<html>
<body>
<h2>Responses</h2>
<xsl:for-each select="foo:root/foo:responses/foo:response">
<!-- ... -->
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Note how the namespace is declared and given a prefix. Later, all nodes in that namespace are referred to using that prefix. <code>exclude-result-prefixes</code> is used to make sure the namespace does not appear in the output unnecessarily.</p>
http://stackoverflow.com/questions/1755990/how-to-reverse-date-format-in-xslt/1756113#17561131Answer by Tomalak for How to reverse date format in XSLT ?Tomalak2009-11-18T13:49:32Z2009-11-18T13:49:32Z<p>Assuming</p>
<pre><code><xml>
<date>2009-11-18</date>
</xml>
</code></pre>
<p>This XSLT 1.0 solution would do it:</p>
<pre><code><xsl:template match="date">
<xsl:copy>
<xsl:value-of select="
concat(
substring(., 9, 2),
'-',
substring(., 6, 2),
'-',
substring(., 1, 4)
)
" />
</xsl:copy>
</xsl:template>
</code></pre>
<p>If your date can be </p>
<pre><code><xml>
<date>2009-11-1</date>
</xml>
</code></pre>
<p>you would have to use the slightly more complicated</p>
<pre><code><xsl:template match="date">
<xsl:copy>
<xsl:value-of select="
concat(
substring-after(substring-after(., '-'), '-'),
'-',
substring-before(substring-after(., '-'), '-'),
'-',
substring-before(., '-')
)
" />
</xsl:copy>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/1879385/c-parse-xml-schema-simpletype-question/1879410#1879410Comment by Tomalak on C# parse XML Schema (SimpleType) questionTomalak2009-12-10T08:23:39Z2009-12-10T08:23:39ZPlease edit your question directly if you want to make additions like this one. The space below your question is reserved for posts that are actual answers. This site does not work like a forum, please edit your Question and delete this post. ;) http://stackoverflow.com/questions/1873449/how-to-transform-xml-and-keep-newlinesComment by Tomalak on How to transform xml and keep newlines?Tomalak2009-12-10T07:59:52Z2009-12-10T07:59:52Z@kaze: I guess you have some reading to do on HTML in general and CSS in particular. This question actually has nothing to do with XML or XSLT. You just happen to use them for creating sub-optimal HTML, they don't cause your problem.http://stackoverflow.com/questions/1877108/select-value-with-linux-command-xpath-from-perl/1877169#1877169Comment by Tomalak on Select value with Linux command xpath (from Perl)Tomalak2009-12-09T23:42:55Z2009-12-09T23:42:55ZHm, obviously naked text nodes cannot be processed/displayed. It was just a guess on my part, admittedly.http://stackoverflow.com/questions/1876982/sharepoint-xslt-dynamic-filtering/1877033#1877033Comment by Tomalak on Sharepoint XSLT Dynamic filteringTomalak2009-12-09T23:41:02Z2009-12-09T23:41:02ZYou realize that <code>&#13;</code> is ASCII CR? Just sayin'. ;) I don't really see how that would crash the whole thing. I usually edit my XSLT files in a normal text editor, I have no experience with SP Designer. The delimited string approach is the simplest way to create a truly dynamic filter. It is more or less what you intend, only in an XSLT/XPath compliant way.http://stackoverflow.com/questions/1877140/call-a-stored-procedure-from-another-stored-procedure/1877163#1877163Comment by Tomalak on Call a Stored Procedure from another Stored Procedure.Tomalak2009-12-09T22:03:37Z2009-12-09T22:03:37ZRaising an error within SP2 should cause SP1 to rollback its transaction as well. Do you do a manual roll-back or an automatic one?http://stackoverflow.com/questions/1877140/call-a-stored-procedure-from-another-stored-procedure/1877182#1877182Comment by Tomalak on Call a Stored Procedure from another Stored Procedure.Tomalak2009-12-09T21:56:15Z2009-12-09T21:56:15ZThou shalt not link to this site from here. ;-)http://stackoverflow.com/questions/1871249/resolving-variables-inside-a-coldfusion-string/1871306#1871306Comment by Tomalak on Resolving variables inside a Coldfusion stringTomalak2009-12-09T19:22:25Z2009-12-09T19:22:25Z@Henry: +1, that's also what I would do. Unwritten SO rule, proven again: Telling the concept is not very fruitful, telling the concept and adding a code sample = up-votes. ;)http://stackoverflow.com/questions/1876133/how-can-i-get-an-everharvest-updateComment by Tomalak on How can I get an Everharvest Update?Tomalak2009-12-09T19:14:25Z2009-12-09T19:14:25ZWTF is Everharvest?http://stackoverflow.com/questions/1870423/parsing-bbcode-with-xslt-2-0/1870612#1870612Comment by Tomalak on Parsing BBCode with xslt 2.0Tomalak2009-12-09T18:40:55Z2009-12-09T18:40:55ZSure, but as soon as it gets to attributes (BBCode can have them, AFAIK) or other things that break nesting for a regex, it will fail just as badly as it will fail for XML/HTML/etc. Admittedly: As long as it does not get any more complex than the OP shows in his example (no attributes, no nested comments or HTML), and all BBcode tags are <i>guaranteed</i> to be nested correctly, a regex based approach can work. But it will still be the weak point of the whole construct.http://stackoverflow.com/questions/1873037/capitalize-element-name-in-xsl/1873091#1873091Comment by Tomalak on Capitalize Element Name in XSLTomalak2009-12-09T18:00:33Z2009-12-09T18:00:33Z<code>upper-case()</code> is not available before XSLT 2.0.http://stackoverflow.com/questions/1870423/parsing-bbcode-with-xslt-2-0/1870612#1870612Comment by Tomalak on Parsing BBCode with xslt 2.0Tomalak2009-12-09T10:07:14Z2009-12-09T10:07:14ZI thought it was commonly agreed here not to recommend regular expressions to parse structured languages. ;)http://stackoverflow.com/questions/1869804/php-contact-form-editingComment by Tomalak on PHP Contact form editingTomalak2009-12-08T21:06:17Z2009-12-08T21:06:17ZMaybe it was not the best of all ideas to post your live email address here. But then again, Googles spam filter does a good job.http://stackoverflow.com/questions/1869695/escaping-double-quotes-in-php/1869724#1869724Comment by Tomalak on Escaping double quotes in phpTomalak2009-12-08T20:49:32Z2009-12-08T20:49:32ZIf the string was started with single quotes, double quotes do not need escaping. And vice versa.http://stackoverflow.com/questions/1868536/how-to-check-value-in-an-array-using-coldfusion/1868996#1868996Comment by Tomalak on How to check value in an Array using Coldfusion?Tomalak2009-12-08T19:01:34Z2009-12-08T19:01:34ZThis is why you always should post code that <i>actually fails</i>, instead of code you've just made up that you <i>think</i> resembles your problem.http://stackoverflow.com/questions/1868536/how-to-check-value-in-an-array-using-coldfusion/1868754#1868754Comment by Tomalak on How to check value in an Array using Coldfusion?Tomalak2009-12-08T18:12:07Z2009-12-08T18:12:07ZYour assumption <code><cfif * eq '*'></code> is wrong. Nothing of that sort happens in CF.