User Doug D - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:46:03Zhttp://stackoverflow.com/feeds/user/113701http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#16931216Answer by Doug D for XSL variable number of child nodes...Doug D2009-11-07T14:05:21Z2009-11-19T05:59:18Z<pre><code><xsl:template match="Images/*[starts-with(name(),'Image']">
<img src="{.}" />
</xsl:template>
</code></pre>
<p>BTW, perhaps you can't change the XML tag names, but it would better to name the inner tags as Image rather than ImageX, which is probably unneccesary.</p>
http://stackoverflow.com/questions/1723649/jquery-checkbox-issue-do-not-check-if-its-disabled/1723711#17237110Answer by Doug D for jquery checkbox issue - do not check if it's disabledDoug D2009-11-12T16:55:39Z2009-11-12T16:55:39Z<p>Use jQuery's ":disabled" filter instead of accessing the 'disabled' attribute.</p>
http://stackoverflow.com/questions/1723053/creating-xsd-schema-for-messages-validation-problem/1723135#17231350Answer by Doug D for Creating XSD schema for messages validation ProblemDoug D2009-11-12T15:38:43Z2009-11-12T15:38:43Z<p>It could be the XML Schema targetNamespace (ref <a href="http://dev.ektron.com/kb%5Farticle.aspx?id=426" rel="nofollow">http://dev.ektron.com/kb%5Farticle.aspx?id=426</a>). If the targetNamespace is given, then you need the prefix. When defining a schema, references to defined types, elements and attributes within the schema need a prefix. Of course, references to Schema types need xs: or xsd: prefix, depending on which prefix you are using. I've seen both in common practice.</p>
http://stackoverflow.com/questions/1320419/loadcontrol-vs-construct-asp-net-control/1400190#14001902Answer by Doug D for LoadControl vs Construct ASP.Net ControlDoug D2009-09-09T14:47:29Z2009-09-09T14:47:29Z<p>Apparently, using LoadControl with typeof (or GetType) has the same problem as using 'new' where the child controls are not initialized. Using LoadControl with a string to the ASCX file works.</p>
<p>Does not initialize child controls.</p>
<pre><code>LoadControl(typeof(MyReport), null);
</code></pre>
<p>Works!</p>
<pre><code>LoadControl("Report.ascx");
</code></pre>
http://stackoverflow.com/questions/1045460/how-to-use-html-anchors-as-a-table-of-contents-in-email/1045485#10454852Answer by Doug D for How to use HTML anchors as a table of contents in email?Doug D2009-06-25T18:27:40Z2009-06-25T18:27:40Z<p>Try adding the 'name' attribute to the anchor as well as the 'id'.</p>
<pre><code><a id="FUNDING" name="FUNDING">
</code></pre>
http://stackoverflow.com/questions/1038101/how-to-inline-css-and-javascript-through-xsl/1040238#10402381Answer by Doug D for How to inline CSS and javascript through XSLDoug D2009-06-24T18:54:41Z2009-06-25T14:36:41Z<p>XSLT 2.0 provides the unparsed-text() function to read documents via URL that are not XML.</p>
<p>In XSLT 1.0, if you don't need to be too script about the CSS, you can use the following to make the CSS file XML-compatible. And, fortunately, the browsers tolerate the HTML comments.</p>
<p>CSS</p>
<pre><code><!--/*--><root><![CDATA[<!--*/-->
body
{
margin: 0;
}
div > p
{
background-color: yellow;
}
<!--/*-->]]></root><!--*/-->
</code></pre>
<p>XSLT</p>
<pre><code><style type="text/css">
<xsl:value-of select="document('test.css')" disable-output-escaping="yes" />
</style>
</code></pre>
http://stackoverflow.com/questions/1040880/possible-to-do-xsl-transform-on-dynamically-generated-xml/1040958#10409583Answer by Doug D for Possible to do xsl transform on dynamically generated xml?Doug D2009-06-24T20:58:35Z2009-06-25T12:08:40Z<p>There are three essential elements to running a multi-pass transform.</p>
<ul>
<li><code><xsl:import></code></li>
<li><code><xsl:apply-imports></code></li>
<li><code>node-set()</code> extension function</li>
</ul>
<p>The example passes an XML document through two transforms serially. That is, it passes the content through a transform that removes namespace nodes and then takes the output from the first transform and passes it through a second transform that changes the title of the document. In this case the document is an XHTML document. The second transform is written such that it cannot accept an XHTML document with a namespace defined.</p>
<p>Original XHTML document</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>This is the old title</title>
</head>
<body>
<p>This is some text.</p>
</body>
</html>
</code></pre>
<p>After pass 1 (remove namespace nodes)</p>
<pre><code><html>
<head>
<title>This is the old title</title>
</head>
<body>
<p>This is some text.</p>
</body>
</html>
</code></pre>
<p>Result (after pass 2)</p>
<p>Note that the title text has changed.</p>
<pre><code><html>
<head>
<title>This is the new title</title>
</head>
<body>
<p>This is some text.</p>
</body>
</html>
</code></pre>
<p>XSLT for pass 1</p>
<p>This transform applies templates in this file to the content to remove namespace nodes, but copies the rest of the content. Then, during pass 2, applies the templates that are defined in the imported XSLT by using the <code><xsl:apply-imports></code> tag. The templates for pass 2 are imported using the <code><xsl:import></code> tag.</p>
<p>The results of the first pass are stored in a variable named "<code>treefrag</code>". The tree fragment is converted to a node-set using the extension function "<code>node-set()</code>". In this example, the Microsoft XML parser 4.0 is used, so the <code>urn:schemas-microsoft-com:xslt</code> namespace is declared.</p>
<pre><code><xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:msxsl="urn:schemas-microsoft-com:xslt"
>
<xsl:import href="pass2.xslt" />
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" />
<xsl:template match="/">
<xsl:param name="pass">1</xsl:param>
<xsl:choose>
<xsl:when test="$pass=1">
<xsl:variable name="treefrag">
<xsl:apply-templates>
<xsl:with-param name="pass" select="$pass" />
</xsl:apply-templates>
</xsl:variable>
<xsl:variable name="doc" select="
msxsl:node-set($treefrag)
" />
<xsl:apply-templates select="$doc">
<xsl:with-param name="pass">2</xsl:with-param>
</xsl:apply-templates>
</xsl:when>
<xsl:when test="$pass=2">
<xsl:apply-imports />
</xsl:when>
</xsl:choose>
</xsl:template>
<!-- identity template without namespace nodes -->
<xsl:template match="*">
<xsl:param name="pass">2</xsl:param>
<xsl:choose>
<xsl:when test="$pass=1">
<xsl:element name="{name()}">
<xsl:apply-templates select="@*|node()">
<xsl:with-param name="pass" select="$pass" />
</xsl:apply-templates>
</xsl:element>
</xsl:when>
<xsl:when test="$pass=2">
<xsl:apply-imports />
</xsl:when>
</xsl:choose>
</xsl:template>
<xsl:template match="@*|text()|comment()|processing-instruction()">
<xsl:param name="pass">2</xsl:param>
<xsl:choose>
<xsl:when test="$pass=1">
<xsl:copy>
<xsl:apply-templates select="@*|node()">
<xsl:with-param name="pass" select="$pass" />
</xsl:apply-templates>
</xsl:copy>
</xsl:when>
<xsl:when test="$pass=2">
<xsl:apply-imports />
</xsl:when>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>XSLT for pass 2</p>
<p>This transform simply changes the contents of the TITLE tag can copies all the rest of the content.</p>
<pre><code><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="title">
<title>This is the new title</title>
</xsl:template>
<!-- identity template -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>Source article: <a href="http://dev.ektron.com/kb%5Farticle.aspx?id=494" rel="nofollow">"XSLT: Multi-pass transforms"</a></p>
http://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041298#10412981Answer by Doug D for jQuery string manipulation, regex noob.Doug D2009-06-24T22:16:54Z2009-06-24T22:16:54Z<pre><code>.replace(/\[([^\]]*)\]/g, link + "$1</a>")
</code></pre>
<p>which means, find text between [ and ] and replace it with the value of link, the text itself and ''. This ensures matching square brackets. The 'g' means 'do it multiple times (globally)'.</p>
http://stackoverflow.com/questions/935757/how-to-emit-bare-xml-for-a-webget-method-in-wcf1How to emit bare XML for a [WebGet] method in WCF? Doug D2009-06-01T17:06:32Z2009-06-08T16:52:49Z
<p>How can I define a [OperationContract] [WebGet] method to return XML that is stored in a string, without HTML encoding the string? </p>
<p>The application is using WCF service to return XML/XHTML content which has been stored as a string. The XML does not correspond to any specific class via [DataContract]. It is meant to be consumed by an XSLT.</p>
<pre><code>[OperationContract]
[WebGet]
public XmlContent GetContent()
{
return new XmlContent("<p>given content</p>");
}
</code></pre>
<p>I have this class:</p>
<pre><code>[XmlRoot]
public class XmlContent : IXmlSerializable
{
public XmlContent(string content)
{
this.Content = content;
}
public string Content { get; set; }
#region IXmlSerializable Members
public System.Xml.Schema.XmlSchema GetSchema()
{
return null;
}
public void ReadXml(XmlReader reader)
{
throw new NotImplementedException();
}
public void WriteXml(XmlWriter writer)
{
writer.WriteRaw(this.Content);
}
#endregion
}
</code></pre>
<p>But when serialized, there is a root tag the wraps the given content.</p>
<pre><code><XmlContent>
<p>given content</p>
</XmlContent>
</code></pre>
<p>I know how to change the name of the root tag ([XmlRoot(ElementName = "div")]), but I need to omit the root tag, if at all possible.</p>
<p>I have also tried [DataContract] instead of IXmlSerializable, but it seems less flexible.</p>
http://stackoverflow.com/questions/933664/net-xml-serialization-without-xml-root-node/955612#9556120Answer by Doug D for .NET XML Serialization without <?xml> root nodeDoug D2009-06-05T12:33:50Z2009-06-05T12:33:50Z<p>Derive your own XmlTextWriter to omit the XML declaration. </p>
<pre><code>Private Class MyXmlTextWriter
Inherits XmlTextWriter
Sub New(ByVal sb As StringBuilder)
MyBase.New(New StringWriter(sb))
End Sub
Sub New(ByVal w As TextWriter)
MyBase.New(w)
End Sub
Public Overrides Sub WriteStartDocument()
' Don't emit XML declaration
End Sub
Public Overrides Sub WriteStartDocument(ByVal standalone As Boolean)
' Don't emit XML declaration
End Sub
End Class
</code></pre>
<p>Call Serialize with an instance of the derived MyXmlTextWriter.</p>
<pre><code>Dim tw As New MyXmlTextWriter(sb)
Dim objXmlSerializer As New XmlSerializer(type)
objXmlSerializer.Serialize(tw, obj)
</code></pre>
http://stackoverflow.com/questions/921276/cs2000-compiler-initialization-failed-unexpectedly/940313#9403130Answer by Doug D for CS2000: Compiler initialization failed unexpectedlyDoug D2009-06-02T15:48:28Z2009-06-02T15:48:28Z<p>Tip: We had a similar problem with msxsl:script tags in XSLT using .NET compiled transform. Note that the error you reported occurs in the compile method of the serializer.</p>
<p>You have checked disk space and permissions, but perhaps the process user is not admin, example, asp.net process.</p>
<p>WARNING: The Microsoft .NET XslCompiledTransform class causes several problems when msxsl:script is used. The XslCompiledTransform creates a DLL in the temporary folder and locks it in memory. </p>
<ol>
<li>The ASP.NET process may not have access to the temporary folder and the XSLT will fail. </li>
<li>The temporary DLL is not temporary and remains in the folder: one DLL for every transform that uses msxsl:script. Eventually the server's hard drive is filled to capacity. </li>
<li>The DLL is locked in memory, causing a severe memory leak. </li>
</ol>
<p>DO NOT USE msxsl:script WITH Microsoft .NET XslCompiledTransform class. Instead, use an extension object to call C# or VB.NET methods outside the XSLT. See Microsoft's documentation on <a href="http://msdn.microsoft.com/en-us/library/tf741884.aspx" rel="nofollow">XSLT Extension Objects</a> . </p>
<p>(<a href="http://dev.ektron.com/kb%5Farticle.aspx?id=482" rel="nofollow">http://dev.ektron.com/kb_article.aspx?id=482</a>)</p>
http://stackoverflow.com/questions/935530/how-to-sort-in-memory-xml-with-microsoft-xmldom/935628#9356281Answer by Doug D for How to Sort In-Memory XML with Microsoft XMLDOM?Doug D2009-06-01T16:37:37Z2009-06-01T16:37:37Z<p>I'm not familiar with any method other than using XSLT to sort XML.</p>
<p>Why is XSLT not an option? It's simple and should not a performance buster. You can cache the FreeThreadedDOMDocument object once it has loaded the XSLT document to avoid parsing and compiling the XSLT document each time.</p>
http://stackoverflow.com/questions/935080/serializing-generic-xml-data-across-wcf-web-service-requests/935171#9351710Answer by Doug D for serializing generic XML data across WCF web service requestsDoug D2009-06-01T14:54:03Z2009-06-01T14:54:03Z<p>The class returned by the method needs to implement IXmlSerializable.</p>
<pre><code>public XmlContent XmlContent()
{
return new XmlContent();
}
[XmlRoot(ElementName = "div")]
public class XmlContent : IXmlSerializable
{
#region IXmlSerializable Members
public System.Xml.Schema.XmlSchema GetSchema()
{
return null;
}
public void ReadXml(XmlReader reader)
{
throw new NotImplementedException();
}
public void WriteXml(XmlWriter writer)
{
writer.WriteRaw("<p>some text</p>");
}
#endregion
}
</code></pre>
<p>I still haven't found how to avoid serializing the root element (e.g., "div").</p>
<p>I tried sending XML as a string too, but it is not output as expected, that is, the "string" is HTML encoded and wrapped in tags. This make parsing very difficult.</p>
http://stackoverflow.com/questions/934859/consume-wcf-with-javascript-but-keep-it-generic-enough-for-all-clients/935119#9351191Answer by Doug D for Consume WCF with JavaScript but keep it generic enough for all clients?Doug D2009-06-01T14:41:23Z2009-06-01T14:41:23Z<p>First, since you don't want to depend on Microsoft Ajax ScriptManager, don't use <enableWebScript /> in the endpointBehaviors/behavior. It is Microsoft-specific JSON.</p>
<p>Fortunately, however, WCF makes it very easy to allow your client to decide whether they want XML or generic JSON. </p>
<ol>
<li><p>Use the <strong><webHttp /></strong> behavior.<br /></p>
<p><endpointBehaviors><br />
<behavior name="My.WcfServices.webHttpBehavior"><br />
<strong><webHttp /></strong><br />
</behavior><br />
</endpointBehaviors><br /></p></li>
<li><p>Create a custom WebServiceHost and custom property attribute as described in
<a href="http://damianblog.com/2008/10/31/wcf-rest-dynamic-response/" rel="nofollow" title="WCF REST Services">Damian Mehers' blog, WCF REST Services</a>. In Mehers' code, the type is determined by the request content type. You may want to extend it to examine the URL, for example, .xml or .json or ?format=xml|json.</p></li>
<li><p>In the <strong>SerializeReply</strong> method, examine the URL.</p>
<p>Message request = OperationContext.Current.RequestContext.RequestMessage;<br />
Uri url = request.Properties["OriginalHttpRequestUri"] as Uri;<br />
// Examine ?format query string<br />
System.Collections.Specialized.NameValueCollection colQuery = System.Web.HttpUtility.ParseQueryString(url.Query);<br />
string strResponseFormat = colQuery["format"];<br />
// or examine extension <br />
string strResponseFormat = url.LocalPath.Contains(".json") ? "json" : "xml";<br /></p></li>
<li><p>Define your method(s)</p>
<p>[OperationContract]<br />
[WebGet(UriTemplate="Hello.{responseFormat}")] // or "Hello?format={responseFormat}"<br />
[DynamicResponseType]<br />
public string Hello(string responseFormat)<br />
{<br />
return "Hello World";<br />
}<br /></p></li>
</ol>
<p>Example URLs:<br />
<a href="http://localhost/myrest.svc/Hello.xml" rel="nofollow">http://localhost/myrest.svc/Hello.xml</a><br />
<a href="http://localhost/myrest.svc/Hello.json" rel="nofollow">http://localhost/myrest.svc/Hello.json</a><br />
or<br />
<a href="http://localhost/myrest.svc/Hello?format=xml" rel="nofollow">http://localhost/myrest.svc/Hello?format=xml</a><br />
<a href="http://localhost/myrest.svc/Hello?format=json" rel="nofollow">http://localhost/myrest.svc/Hello?format=json</a><br /></p>
<ol>
<li>Both JSON and XML are easy to consume across browsers. Libraries, such as jQuery for JSON and Sarissa for XML make it even easier.</li>
</ol>
<p>NOTE: If you see error "Could not find a base address that matches scheme http for the endpoint with binding WebHttpBinding.", add the <strong>baseAddressPrefixFilters</strong> element and add localhost (or whatever your domain) to IIS Host Header Names.</p>
<pre><code><system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true">
<baseAddressPrefixFilters>
<add prefix="http://localhost"/>
</baseAddressPrefixFilters>
</serviceHostingEnvironment>
</code></pre>
http://stackoverflow.com/questions/207477/restful-url-design-for-search/926706#9267065Answer by Doug D for RESTful URL design for searchDoug D2009-05-29T15:48:13Z2009-05-29T15:48:13Z<p>Although have the parameters in the path has some advantages, there are, IMO, some outweighing factors.</p>
<ul>
<li><p>Not all characters needed for a search query are permitted in a URL. Most punctuation and Unicode characters would need to be URL encoded as a query string parameter. I'm wrestling with the same problem. I would like to use XPath in the URL, but not all XPath syntax is compatible with a URI path. So for simple paths, /cars/doors/driver/lock/combination would be appropriate to locate the 'combination' element in the driver's door XML document. But /car/doors[id='driver' and lock/combination='1234'] is not so friendly.</p></li>
<li><p>I think there is a difference between filtering a resource based on one of its attributes and specifying a resource. </p>
<p>For example, since</p>
<p>/cars/colors returns a list of all colors for all cars (the resource returned is a collection of color objects)</p>
<p>/cars/colors/red,blue,green would return a list of color objects that are red, blue or green, not a collection of cars.</p>
<p>To return cars, the path would be</p>
<p>/cars?color=red,blue,green or /cars/search?color=red,blue,green</p></li>
<li><p>It is more difficult to read because name/value pairs are not isolated from the rest of the path, which is not name/value pairs. </p></li>
</ul>
<p>One last comment. I prefer '/garages/yyy/cars' (always plural) to '/garage/yyy/cars' (perhaps it was a typo in the original answer) because it avoid changing the path between singular and plural. For words with an added 's', it's not so bad, but changing /person/yyy/friends to /people/yyy seems cumbersome.</p>
http://stackoverflow.com/questions/1707790/direct-actions-on-html-and-text-in-jqueryComment by Doug D on Direct actions on html() and text() in jQueryDoug D2009-11-10T13:15:46Z2009-11-10T13:15:46ZJust a word of caution, in case you have not thought of it already. The search and replace on the HTML has two complications. 1. The replace will apply to HTML tag names and attributes, which may or may not be intended. 2. Some "words" may not be replaced as intended because they are split by tags, for example, [span class="firstChar"]D[/span]irect actions. The replace of "Direct" won't find it because of the injects closing SPAN tag. http://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#1693121Comment by Doug D on XSL variable number of child nodes...Doug D2009-11-10T13:03:07Z2009-11-10T13:03:07ZBTW, it's also a (legal) shortcut in SGML, which is the father of XML. Sometimes I wish XML had adopted the notation. :-)http://stackoverflow.com/questions/1693092/xsl-variable-number-of-child-nodes/1693121#1693121Comment by Doug D on XSL variable number of child nodes...Doug D2009-11-10T13:01:34Z2009-11-10T13:01:34ZIt's just a quick (illegal) way to type a closing tag. The xsl:template tag would need to be properly closed.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/118150#118150Comment by Doug D on Hidden Features of JavaScript?Doug D2009-06-25T14:31:04Z2009-06-25T14:31:04ZWhen doing code reviews, always look for this one. Leaving off the ", 10" is a common mistake that goes unnoticed in most testing.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61125#61125Comment by Doug D on Hidden Features of JavaScript?Doug D2009-06-25T14:27:16Z2009-06-25T14:27:16Zeval is evil, though rarely necessaryhttp://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041295#1041295Comment by Doug D on jQuery string manipulation, regex noob.Doug D2009-06-24T22:22:49Z2009-06-24T22:22:49ZThis approach does not ensure matching square brackets. I recommend my solution below.http://stackoverflow.com/questions/1041276/jquery-string-manipulation-regex-noob/1041298#1041298Comment by Doug D on jQuery string manipulation, regex noob.Doug D2009-06-24T22:22:12Z2009-06-24T22:22:12ZThis site provides a place to test regular expressions in either JavaScript or .NET. It also contains many samples, but they are not always correct.
<a href="http://www.regexlib.com/RETester.aspx" rel="nofollow">regexlib.com/RETester.aspx</a>http://stackoverflow.com/questions/244953/serialize-a-nullable-int/610630#610630Comment by Doug D on Serialize a nullable intDoug D2009-06-05T11:56:01Z2009-06-05T11:56:01ZSince SomeValue may be null...
public double XmlSomeValue { get { return SomeValue.HasValue? SomeValue.Value : 0; } set { SomeValue = value; } }
http://stackoverflow.com/questions/828004/cms-wysiwyg-for-dummiesComment by Doug D on CMS -WYSIWYG for dummiesDoug D2009-06-03T18:24:10Z2009-06-03T18:24:10ZClarification: Ektron offers several licensing models, some of which are for unlimited users. Additionally, membership users (authenticated visitors to your site) are different than cms users (typically employees of your company). Membership users are always unlimited.http://stackoverflow.com/questions/458868/experiences-with-ektron/467474#467474Comment by Doug D on Experiences with Ektron?Doug D2009-06-03T18:20:28Z2009-06-03T18:20:28ZClarification: Ektron provides licenses per domain as well as server licenses, so it doesn't need to be tied to the CPU.http://stackoverflow.com/questions/935757/how-to-emit-bare-xml-for-a-webget-method-in-wcf/936013#936013Comment by Doug D on How to emit bare XML for a [WebGet] method in WCF? Doug D2009-06-01T20:47:12Z2009-06-01T20:47:12ZThanks! That works, but does have the downside of deserializing the XML and then re-serializing it. Not as efficient as I would like, but at least it eliminates the root tag. Thanks for the alternative.