User James Sulak - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T23:57:48Zhttp://stackoverflow.com/feeds/user/207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/158930/easiest-way-to-migrate-word-2003-custom-macro-toolbars-into-word-20070Easiest way to migrate Word 2003 custom macro toolbars into Word 2007?James Sulak2008-10-01T18:08:45Z2009-11-20T00:20:30Z
<p>I have a series of macros and toolbars that I developed for Word 2003. Now that my office is upgrading to Word 2007, I need to migrate them. The macros themselves migrate with zero effort, but the toolbars are a different issue. A random subset of the toolbars show up in the "Add-Ins" ribbon tab, but I haven't found a way to control which ones. </p>
<p>Something that may be a complication is that I deploy the macros by placing a template into a user's Word STARTUP folder (C:\Documents and Settings\username\Application Data\Microsoft\Word\STARTUP). While I can add macros from normal.dot into the Quick Access Toolbar, I cannot add macros from this startup template. I'd like a better, more structured layout anyway. </p>
<p>So, what's the easiest way to replicate my custom macro toolbars in Word 2007?</p>
http://stackoverflow.com/questions/1694451/cannot-use-pinvoke-to-send-wmclose-to-a-windows-explorer-window0Cannot use pinvoke to send WM_CLOSE to a Windows Explorer windowJames Sulak2009-11-07T21:20:24Z2009-11-09T01:58:43Z
<p>I have a C# application that uses the SendMessage pinvoke method to send a "close window" message (WM_CLOSE / 16) to various windows outside the application. This works great, except when the window in question is a Windows Explorer window. I do not get an exception, but the window does not close.</p>
<p>Here's the signature:</p>
<pre><code> [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = false)]
internal static extern IntPtr SendMessage(HandleRef hWnd, uint Msg, IntPtr wParam, IntPtr lParam);
</code></pre>
<p>Is there a different message that I need to send to Windows Explorer windows? Or an alternate way to accomplish this?</p>
http://stackoverflow.com/questions/1585786/using-linq-to-filter-possible-values-of-system-windows-forms-keys0Using Linq to filter possible values of System.Windows.Forms.KeysJames Sulak2009-10-18T19:24:24Z2009-10-18T19:43:18Z
<p>I'm creating an options dialog using WPF that lists possible keys so that the user can assign the program's hotkey. I'm attempting to filter all of the possible values of the System.Windows.Forms.Keys enumeration down to just A-Z and F1-F12, and then bind that list to a ComboBox.</p>
<p>Here's my code so far:</p>
<pre><code>Regex filter = new Regex("(^[A-Z]$)|(^F[0-9]{1,2}$)");
IEnumerable<Key> keyList = from x in (IEnumerable<Key>)Enum.GetValues(typeof(Keys))
where filter.Match(x.ToString()).Success
select x;
keys.DataContext = keyList;
</code></pre>
<p>After executing this, keyList contains the letter "A" twice and is missing letters "P" through "U." I'm at a loss as to why. </p>
<p>I'm also interested in alternate approaches, if there's a better way.</p>
http://stackoverflow.com/questions/1583354/xpath-how-can-you-select-a-specific-text-node-before-and-after-a-br-tag/1583375#15833751Answer by James Sulak for xpath: how can you select a specific text node before and after a <br> tag ?James Sulak2009-10-17T22:27:21Z2009-10-17T22:27:21Z<p>Depends on the context. Ideally, to be well-formed XML, your sequence needs a root element. Let's say it's <code><bar/></code>.</p>
<p>Beer: <code> /bar/br[1]/preceding-sibling::text()[1]</code></p>
<p>Vodka: <code>/bar/br[1]/following-sibling::text()[1]</code></p>
<p>Rum: <code>/bar/br[2]/following-sibling::text()[1]</code></p>
http://stackoverflow.com/questions/1582337/xpath-select-referenced-xml-node/1582358#15823582Answer by James Sulak for xpath select referenced xml nodeJames Sulak2009-10-17T14:49:08Z2009-10-17T14:49:08Z<p>Unfortunately, what you're attempting isn't possible with pure XPath. Whenever you start a new predicate (the part surrounded by brackets), the context changes to the node that started the predicate. That means that you can't directly compare attributes from two separate elements in a single predicate without storing one in a variable.</p>
<p>What language are you using? You will have to store the value of the "name" attribute from the first node in a variable. </p>
<p>For example, in XSLT:</p>
<pre><code><xsl:variable name="name" select="/node[1]/@name" />
<xsl:value-of select="/node[@references = $name]" />
</code></pre>
<p>In XQuery</p>
<pre><code>let $name := /node[1]/@name
return /node[@references = $name]
</code></pre>
http://stackoverflow.com/questions/1579324/parsing-xml-colon-in-my-element-causes-xpath-to-miss-it/1579344#15793442Answer by James Sulak for Parsing XML: Colon in my element causes XPath to miss itJames Sulak2009-10-16T17:26:39Z2009-10-16T17:26:39Z<p>The "t:" is a namespace prefix, which is bound to the namespace 'urn:InboundShipment.' In order to properly handle it, you have to tell c# what the prefix is bound to. <a href="http://support.microsoft.com/kb/318545" rel="nofollow">This page</a> should explain how to use System.Xml.XmlNamespaceManager to handle the namespace.</p>
<p>Edit: See <a href="http://stackoverflow.com/questions/1365909/parsing-xml-document-with-xpath-c">this answer</a>, as well.</p>
http://stackoverflow.com/questions/773/how-do-i-use-pythons-itertools-groupby3How do I use Python's itertools.groupby()?James Sulak2008-08-03T18:27:09Z2009-10-15T15:41:51Z
<p>I haven't been able to find an understandable explanation of how to actually use Python's itertools.groupby() function. What I'm trying to do is this: take a list - in this case, the children of an objectified lxml element - divide it into groups based on some criteria, and then later iterate over each of these groups separately.</p>
<p>I've reviewed the documentation (<a href="http://docs.python.org/lib/itertools-functions.html" rel="nofollow">http://docs.python.org/lib/itertools-functions.html</a>), and the examples, (<a href="http://docs.python.org/lib/itertools-example.html" rel="nofollow">http://docs.python.org/lib/itertools-example.html</a>), but I've had trouble trying to apply them beyond a simple list of numbers. </p>
<p>So, how do I use of itertools.groupby()? Is there another technique I should be using? Pointers to good "prerequisite" reading would also be appreciated.</p>
http://stackoverflow.com/questions/1569523/can-an-xslt-parse-a-string-of-text/1570019#15700190Answer by James Sulak for Can an XSLT parse a string of text?James Sulak2009-10-15T02:28:50Z2009-10-15T02:28:50Z<p>This is a little beyond the scope of the question, but <a href="http://www.saxonica.com/papers/ideadb-1.1/mhk-paper.xml" rel="nofollow">Michael Kay has an excellent paper</a> on using XSLT 2 to parse pure text into XML. </p>
http://stackoverflow.com/questions/1561825/xsl-transform-select-on-prefix-namespace/1561893#15618933Answer by James Sulak for XSL Transform, select on prefix namespace ?James Sulak2009-10-13T17:55:35Z2009-10-13T18:02:20Z<p>Make sure that you've declared the namespace in the root element of the transform:</p>
<pre><code><xsl:stylesheet xmlns:gesmes="http://www.gesmes.org/xml/2002-08-01" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
</code></pre>
<p>Looking at your logic and input XML, it looks like the inner for-each will never select nodes, since the context is changed to the inner <code><cube></code> element, namespace or no. That could just be a result of shortening your XML for the question, though...</p>
http://stackoverflow.com/questions/1556523/ive-never-used-ido-mode-do-i-want-to/1556729#15567291Answer by James Sulak for I've never used ido mode. Do I want to?James Sulak2009-10-12T20:30:12Z2009-10-12T20:30:12Z<p>You do. Check out <a href="http://www.xsteve.at/prg/emacs/power-user-tips.html" rel="nofollow">this page</a>, which includes a function to use IDO completion on recently opened files. I couldn't live without it now.</p>
http://stackoverflow.com/questions/1551209/how-to-find-all-the-child-nodes-inside-the-matched-elements-including-text-nodes/1552181#15521810Answer by James Sulak for how to find all the child nodes inside the matched elements (including text nodes) ?James Sulak2009-10-12T00:15:56Z2009-10-12T00:15:56Z<p>I'm not familiar with nokogiri, but are you trying to find all the children of any element that contains a <code><br/></code>? If so, then try:</p>
<pre><code>//*[br]/node()
</code></pre>
<p>In any case, using text() will only match text nodes, and not any sibling elements, which may or may not be what you want. If you actually only want text nodes, then</p>
<pre><code>//*[br]/text()
</code></pre>
<p>should do the trick.</p>
http://stackoverflow.com/questions/1551526/is-it-possible-to-use-a-dynamic-xpath-expression-in-a-xslt-style-sheet/1551562#15515623Answer by James Sulak for Is it possible to use a Dynamic xPath expression in a xslt style sheet?James Sulak2009-10-11T19:40:11Z2009-10-11T19:47:28Z<p>Try some variation of this:</p>
<pre><code><xsl:if test="not($var_myparam = 'no'))">
</xsl:if>
</code></pre>
<p>The problem is in how XPath evaluates booleans. Any non-empty string will evaluate to true in XPath. Checkout this <a href="http://www.dpawson.co.uk/xsl/sect2/bool.html" rel="nofollow">write-up about xpath booleans</a>.</p>
<p>As for your other questions... Variables and parameters act the same as each other in XPath expressions. Both are referenced with the form $var. </p>
<p>For any XSLT attribute named "select," you don't need the brackets. The brackets are used in what are called "attribute value templates." You use them when XSLT is expecting a string, for example:</p>
<pre><code><xsl:template match="name-a">
<xsl:variable name="old-name" select="name(.)" />
<name-b old-name="{$old-name}" new-attribute="hello" />
</xsl:template>
</code></pre>
<p>The <a href="http://www.w3.org/TR/xslt#attribute-value-templates" rel="nofollow">XSLT spec talks about AVTs</a>, and so does <a href="http://www.dpawson.co.uk/xsl/sect2/N1575.html" rel="nofollow">this page</a>.</p>
http://stackoverflow.com/questions/1551164/valid-xml-valid-schema-where-have-i-gone-wrong/1551168#15511680Answer by James Sulak for Valid XML, Valid schema. Where have I gone wrong?James Sulak2009-10-11T17:01:58Z2009-10-11T17:01:58Z<p>Just a stab in the dark, but do you have the XML Schema namespace prefix declared on the root element? It's xmlns:xs="http://www.w3.org/2001/XMLSchema". If a namespace prefix is not bound to a namespace name, then the document is invalid.</p>
http://stackoverflow.com/questions/1550981/how-do-you-use-not-in-xpath/1550996#15509966Answer by James Sulak for How do you use "not" in xpathJames Sulak2009-10-11T15:45:50Z2009-10-11T15:45:50Z<p>not() is a function in xpath (as opposed to an operator), so </p>
<pre><code>//a[not(contains(@id, 'xx'))]
</code></pre>
http://stackoverflow.com/questions/1548306/is-it-correct-that-an-xslt-will-not-process-child-nodes-of-the-current-node-unles/1548332#15483321Answer by James Sulak for Is it correct that an XSLT will not process child nodes of the current node unless apply-templates is explicity called?James Sulak2009-10-10T16:05:45Z2009-10-11T15:41:49Z<p>Yes, that is correct. You do have to explicitly call apply-templates to traverse further down the tree. You can always use the more generic <code><xsl:apply-templates /></code> (without a @select) to apply templates to every child node (excepting that element's attributes, which must be explicitly selected using select="@*"). </p>
<p>However, you can also use <code><xsl:copy-of select="person" /></code>, which will make a direct copy of any selected elements and all of their children, and so on.</p>
http://stackoverflow.com/questions/1548048/xpath-in-xslt-select-elements-that-are-between-2-other-elements-part-ii/1548131#15481311Answer by James Sulak for Xpath in XSLT: select elements that are between 2 other elements, part IIJames Sulak2009-10-10T14:43:08Z2009-10-10T14:50:03Z<p>The reason that context does not increase when you call the template "item" recursively is that xs:call-template always passes the current context item as context. So as you probably saw, the transform just enters infinite recursion.</p>
<p>Assuming that you always need to produce exactly three attributes, you don't even need recursion. </p>
<p>Try this:</p>
<pre><code><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="table">
<groups>
<xsl:apply-templates select="tbody/tr[th]"/>
</groups>
</xsl:template>
<xsl:template match="tr[th]">
<xsl:variable name="id" select="generate-id(.)"/>
<group name="{string(th)}">
<xsl:apply-templates
select="following-sibling::tr[not(th)][generate-id(preceding-sibling::tr[th][1]) = $id]"/>
</group>
</xsl:template>
<xsl:template match="tr">
<item attribute1="{td[1]}" attribute2="{td[2]}" attribute3="{td[3]}" />
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p>This works by applying templates to each header row. Each of those template uses that complicated xpath to call "its" following rows, which are any following sibling rows that have that specific row as it's first preceding row with a header.</p>
<p>Of course, if the number of attributes vary, then you will need to recurse there and increase pass a parameter indicating the position. </p>
<p>There are a couple of established methods for XSLT grouping, one of which is recursive, like you were doing. Another method is called Muenchian grouping. A good write-up is <a href="http://www.jenitennison.com/xslt/grouping/index.html" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1440023/can-i-assign-a-baseuri-to-an-xdocument1Can I assign a BaseUri to an XDocument?James Sulak2009-09-17T16:48:33Z2009-09-17T17:16:57Z
<p>When I load an XML document from disk into an XDocument, that XDocument has a ready-only property BaseUri that contains the original XML document's location on disk. In other words, </p>
<pre><code>XDocument doc = XDocument.Load(@"c:\temp\doc.xml");
Console.Out.WriteLine(doc.BaseUri);
// Outputs "file:///c:/temp/doc.xml"
</code></pre>
<p>If I create a new XDocument from scratch, it has no BaseUri. For example:</p>
<pre><code>XDocument doc = new XDocument(new XElement("test"));
Console.Out.WriteLine(doc.BaseUri);
// Outputs nothing
</code></pre>
<p>Can I assign this new XDocument a BaseUri? I'd like to be able to generate new documents, assign them names, and easily pass those names along with them.</p>
http://stackoverflow.com/questions/879728/can-i-use-predefined-namespaces-when-loading-an-xdocument1Can I use predefined namespaces when loading an XDocument?James Sulak2009-05-18T20:42:50Z2009-09-16T20:25:03Z
<p>I often have to deal with XML documents that contain namespaced elements, but doesn't declare the namespace. For example:</p>
<pre><code><root>
<a:element/>
</root>
</code></pre>
<p>Because the prefix "a" is never assigned a namespace URI, the document is invalid. When I load such an XML document using the following code:</p>
<pre><code>using (StreamReader reader = new StreamReader(new FileStream(inputFileName,
FileMode.Open, FileAccess.Read, FileShare.ReadWrite))) {
doc = XDocument.Load(reader, LoadOptions.PreserveWhitespace);
}
</code></pre>
<p>it throws an exception stating (rightly) that the document contains an undeclared namespace and is not well-formed.</p>
<p>So, can I predefine default namespace prefix -> namespace URI pairs for the parser to fall back on? XMLNamespaceManager looks promising, but don't know how to apply it to this situation (or if I can).</p>
http://stackoverflow.com/questions/633362/proper-way-of-creating-a-background-hotkey-with-wpf-c-preferably-without-using/1424200#14242000Answer by James Sulak for Proper way of creating a background hotkey with WPF C#? (preferably without using legacy code)James Sulak2009-09-14T22:22:25Z2009-09-14T22:22:25Z<p>This has an excellent example (see 5.2 "Registering the System Hotkey"):</p>
<p><a href="http://blog.280z28.org/archives/2007/03/15/" rel="nofollow">http://blog.280z28.org/archives/2007/03/15/</a></p>
<p>It uses the <a href="http://mwinapi.sourceforge.net/" rel="nofollow">Managed Windows API</a>, which is a great wrapper around a lot of the legacy api calls.</p>
http://stackoverflow.com/questions/1413053/how-do-i-add-a-document-type-to-an-xdocument3How do I add a document type to an XDocument?James Sulak2009-09-11T20:19:18Z2009-09-11T20:54:40Z
<p>I have an existing XDocument object that I would like to add an XML doctype to. For example:</p>
<pre><code>XDocument doc = XDocument.Parse("<a>test</a>");
</code></pre>
<p>I can create an XDocumentType using:</p>
<pre><code>XDocumentType doctype = new XDocumentType("a", "-//TEST//", "test.dtd", "");
</code></pre>
<p>But how do I apply that to the existing XDocument?</p>
http://stackoverflow.com/questions/1212426/how-do-i-close-an-automatically-opened-window-in-emacs/1215052#12150521Answer by James Sulak for How do I close an automatically opened window in Emacs?James Sulak2009-07-31T21:50:01Z2009-07-31T21:50:01Z<p>Using <a href="http://www.emacswiki.org/emacs/WinnerMode" rel="nofollow">winner mode</a>, you can use the keybinding C-C left arrow to return to the previous window configuration. Of course, this doesn't actually kill the new buffer, but it does hide it.</p>
http://stackoverflow.com/questions/1142414/any-emacs-add-in-for-visual-studio/1168793#11687931Answer by James Sulak for Any emacs add-in for visual studio?James Sulak2009-07-22T23:14:59Z2009-07-22T23:14:59Z<p>You can try <a href="http://www.cam.hi-ho.ne.jp/oishi/indexen.html" rel="nofollow">XKeymacs</a>, which sets up emacs key bindings in any windows application. I tried and abandoned it, but your mileage may vary.</p>
http://stackoverflow.com/questions/952214/what-are-some-useful-constructs-for-using-xslt-to-produce-xslt/952272#9522722Answer by James Sulak for What are some useful constructs for using XSLT to produce XSLT?James Sulak2009-06-04T18:25:44Z2009-06-04T18:25:44Z<p>The biggest obstacle to transforming XSLT is that the output namespace prefix is the same as that of the actual XSL instructions in your transform. If you use “xsl:” both in your XSL instructions and your output, your XSLT engine will not know the difference between the XSL instructions it should execute and those it should output, so your XSLT will not parse. That is, unless you use a namespace alias:</p>
<pre><code><xsl:namespace-alias stylesheet-prefix="x" result-prefix="xsl"/>
</code></pre>
<p>This instruction, which is placed inside of <code><xsl:stylesheet /></code>, allows you to write your result markup in your transform using a substitute namespace prefix. Later, when the output document is created, the prefix that you actually want will be inserted in the alias’s place. So, for instance, here's a template that produces a template in your output document:</p>
<pre><code><xsl:template match="xsl:template[@match='title']>
<x:template match="title>
<x:apply-templates />
</x:template>
</xsl:template>
</code></pre>
<p>Here's a good article: <a href="http://www.xml.com/pub/a/2001/04/04/trxml/" rel="nofollow">http://www.xml.com/pub/a/2001/04/04/trxml/</a></p>
http://stackoverflow.com/questions/257767/can-i-split-a-mercurial-repository7Can I split a Mercurial repository?James Sulak2008-11-03T02:01:40Z2009-04-11T18:22:46Z
<p>I have a largish Mercurial repository that I've decided would be better as several smaller repositories. Is there a way that I can split the repository and have each piece retain its revision history?</p>
http://stackoverflow.com/questions/547399/tool-or-library-for-comparing-xml-files/559149#5591491Answer by James Sulak for Tool or library for comparing xml files.James Sulak2009-02-17T23:12:31Z2009-02-17T23:12:31Z<p>I might try <a href="http://www.deltaxml.com/" rel="nofollow">DeltaXML</a> + an XSLT transform to get the specific result that you want. One problem with using plain-text compare tools with XML is that the physical form of an XML document (its indenting, etc.) can change even if the content itself doesn't, which could lead to a lot of false positives. DeltaXML is a very good tool for comparing document-based XML.</p>
<p>Also, depending on the editor your users use, it may have XML differencing built-in. For example, Arbortext Editor has a good tool that shows the text (not the tags) with changes highlighted / struck-through.</p>
http://stackoverflow.com/questions/518281/can-i-change-an-xtext-object-into-a-string-with-character-references-and-entities0Can I change an XText object into a string with character references and entities resolved?James Sulak2009-02-05T22:31:48Z2009-02-08T11:10:42Z
<p>Given this XML:</p>
<pre><code><element>Circles &amp; boxes</element>
</code></pre>
<p>What I would like to do is store the string value of the element as a string, with all of the character references and entities resolved to their equivalent unicode characters. So, for this element, I would want "Circles & Boxes."</p>
<p>When I do this (text is an XText object representing the text node):</p>
<pre><code>string textvalue = text.ToString(SaveOptions.DisableFormatting);
</code></pre>
<p>I get "Circles & Boxes," which is not what I want. </p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/511942/best-xpath-2-0-expression-evaluator-eclipse/521599#5215990Answer by James Sulak for Best XPath 2.0 Expression Evaluator (Eclipse)James Sulak2009-02-06T18:38:24Z2009-02-06T18:38:24Z<p>The XML editor Oxygen can be used as an Eclipse plugin. I've only used it in stand-alone mode, but its XPath editor/evaluator is very good.</p>
http://stackoverflow.com/questions/443914/xsl-xpath-indentation/521579#5215791Answer by James Sulak for XSL/XPath IndentationJames Sulak2009-02-06T18:33:59Z2009-02-06T18:33:59Z<p>Sometimes a longer xpath can't be avoided, even if you use templates instead of for-eaches (like you should, if you can). This is especially true in XSLT/XPath 2.0:</p>
<pre><code><xsl:attribute name="tablevel"
select="if (following::*[self::topic | self::part])
then (following::*[self::topic | self::part])[1]/@tablevel
else @tablevel"/>
</code></pre>
<p>I tend not to break a "simple" path across lines, but will break the "greater" path at operators or conditionals. </p>
<p>For editing, I use Oxygen (which is cross-platform) and it handles this kind of spacing pretty well. Sometimes it doesn't predict what you want exactly, but it will maintain the space once it's there, even if you re-indent your code.</p>
http://stackoverflow.com/questions/521476/why-true-false-is-capitalized-in-python/521508#52150817Answer by James Sulak for Why True/False is capitalized in Python?James Sulak2009-02-06T18:20:10Z2009-02-06T18:20:10Z<p>Form <a href="http://www.python.org/dev/peps/pep-0285/" rel="nofollow">Pep 285</a>:</p>
<blockquote>
<p>Should the constants be called 'True'
and 'False' (similar to
None) or 'true' and 'false' (as in C++, Java and C99)?</p>
<p>=> True and False.</p>
<p>Most reviewers agree that consistency within Python is more
important than consistency with other languages.</p>
</blockquote>
<p>This, as Andrew points out, is probably because <a href="http://docs.python.org/library/constants.html" rel="nofollow">all (most)? built-in constants are capitalized</a>.</p>
http://stackoverflow.com/questions/516841/should-i-be-using-a-c-namespace-for-simple-console-apps1Should I be using a C# namespace for simple console apps?James Sulak2009-02-05T17:06:45Z2009-02-05T17:09:43Z
<p>I'm new to C#, and am curious about best practice for using namespaces.</p>
<p>I have a solution that contains a single class library project, along with several, small console app projects. All the console app projects do is parse command-line arguments and call different classes within the library project. The library project uses the standard CompanyName.Tool convention.</p>
<p>My question is, since the only purpose of a given console app is to a class in the library project, and will never itself be called from another project or class, do I need to put it inside a namespace? It seems unnecessary. </p>
http://stackoverflow.com/questions/1694451/cannot-use-pinvoke-to-send-wmclose-to-a-windows-explorer-window/1698746#1698746Comment by James Sulak on Cannot use pinvoke to send WM_CLOSE to a Windows Explorer windowJames Sulak2009-11-09T03:23:56Z2009-11-09T03:23:56ZThanks, this works perfectly. Informative link, too.http://stackoverflow.com/questions/1694451/cannot-use-pinvoke-to-send-wmclose-to-a-windows-explorer-window/1694577#1694577Comment by James Sulak on Cannot use pinvoke to send WM_CLOSE to a Windows Explorer windowJames Sulak2009-11-07T22:21:06Z2009-11-07T22:21:06ZInteresting idea, but I'd like to avoid that. The app is a task switcher that gives the user the option to close the application instead of switching to it, so I want the close operation to be safe.http://stackoverflow.com/questions/1676626/how-do-i-add-a-comment-to-an-xpath/1677268#1677268Comment by James Sulak on how do i add a comment to an xpath ?James Sulak2009-11-04T23:02:10Z2009-11-04T23:02:10ZHah, kind of clever.http://stackoverflow.com/questions/1597242/xhtml-to-xhtml-with-xslt-and-its-encodingsComment by James Sulak on XHTML to XHTML with XSLT and its encodingsJames Sulak2009-10-20T21:15:01Z2009-10-20T21:15:01ZI think you need to mark whatever you put after (2) as code using `s.http://stackoverflow.com/questions/1585786/using-linq-to-filter-possible-values-of-system-windows-forms-keys/1585799#1585799Comment by James Sulak on Using Linq to filter possible values of System.Windows.Forms.KeysJames Sulak2009-10-18T20:54:44Z2009-10-18T20:54:44ZThanks, Jon. A lot of great info here. I figured there I was probably doing something fairly boneheaded to get those weird results.http://stackoverflow.com/questions/1582337/xpath-select-referenced-xml-node/1582447#1582447Comment by James Sulak on xpath select referenced xml nodeJames Sulak2009-10-17T16:08:12Z2009-10-17T16:08:12ZTrue, I hadn't thought of that, if this is what you are going for.http://stackoverflow.com/questions/1551338/add-tar-gzip-to-windows-command-line/1551341#1551341Comment by James Sulak on add tar/gzip to windows command lineJames Sulak2009-10-12T15:17:47Z2009-10-12T15:17:47ZAnother option is GnuWin32: <a href="http://gnuwin32.sourceforge.net/" rel="nofollow">gnuwin32.sourceforge.net</a>http://stackoverflow.com/questions/1551526/is-it-possible-to-use-a-dynamic-xpath-expression-in-a-xslt-style-sheet/1551562#1551562Comment by James Sulak on Is it possible to use a Dynamic xPath expression in a xslt style sheet?James Sulak2009-10-11T22:42:01Z2009-10-11T22:42:01ZHmm, in that case you'll have to use an extension function, per the discussion in CNutt's answer. saxon:eval() is an option: <a href="http://www.saxonica.com/documentation/extensions/functions/evaluate.html" rel="nofollow">saxonica.com/documentation/extensions/…</a>http://stackoverflow.com/questions/1548306/is-it-correct-that-an-xslt-will-not-process-child-nodes-of-the-current-node-unles/1548332#1548332Comment by James Sulak on Is it correct that an XSLT will not process child nodes of the current node unless apply-templates is explicity called?James Sulak2009-10-11T15:42:15Z2009-10-11T15:42:15ZThanks, I misspoke.http://stackoverflow.com/questions/1521123/snap-open-for-emacs/1524040#1524040Comment by James Sulak on Snap Open for Emacs?James Sulak2009-10-07T20:58:08Z2009-10-07T20:58:08ZNice. Didn't know that one.http://stackoverflow.com/questions/1440023/can-i-assign-a-baseuri-to-an-xdocument/1440065#1440065Comment by James Sulak on Can I assign a BaseUri to an XDocument?James Sulak2009-09-17T20:02:08Z2009-09-17T20:02:08ZThanks, I hadn't thought of using an annotation.http://stackoverflow.com/questions/310456/c-get-list-of-open-tasks/310481#310481Comment by James Sulak on C# - Get list of open tasksJames Sulak2009-09-07T03:30:18Z2009-09-07T03:30:18Z"If (p.MainWindowHandle != 0)" errors, but "If (p.MainWindowTitle != '')" works, even if it is a bit of a hack.
http://stackoverflow.com/questions/1144424/are-there-any-emacs-key-combinations-reserved-for-custom-commands/1144498#1144498Comment by James Sulak on Are there any emacs key combinations reserved for custom commands?James Sulak2009-07-22T23:11:56Z2009-07-22T23:11:56ZIn addition, C-x C-k 0 through C-x C-k 9 and C-x C-k A through C-x C-k Z are reserved for keyboard macros, so you could use those if you wanted. (<a href="http://www.gnu.org/software/emacs/manual/html_node/emacs/Keymaps.html#Keymaps" rel="nofollow">gnu.org/software/emacs/…</a>)http://stackoverflow.com/questions/1112805/emacs-ido-style-shellComment by James Sulak on Emacs ido-style shellJames Sulak2009-07-11T03:00:37Z2009-07-11T03:00:37ZI've often wished more applications behaved like ido-mode.http://stackoverflow.com/questions/879728/can-i-use-predefined-namespaces-when-loading-an-xdocument/879983#879983Comment by James Sulak on Can I use predefined namespaces when loading an XDocument?James Sulak2009-05-18T22:33:58Z2009-05-18T22:33:58ZThanks, Marc. Works most of the way. The problem is if I reserialize the document, I end up with
<root><element xmlns="<a href="http://foo/bar"" rel="nofollow">foo/bar"</a>; /></root>
which while technically correct, doesn't preserve the namespace prefix. Can I make it preserve the prefix?