User Paul Marshall - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T11:16:13Zhttp://stackoverflow.com/feeds/user/26257http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1003610/how-do-i-replace-a-text-box-with-a-drop-down-populate-by-web-service-in-fogbugz-u/1004542#10045420Answer by Paul Marshall for How do I replace a text box with a drop down populate by web service in fogbugz using greasemonkey script?Paul Marshall2009-06-17T00:26:25Z2009-06-17T00:39:56Z<p>An off-the-cuff answer:</p>
<p>Yes. For a first pass, you can implement it by creating the drop-down list on the side, populating it with a GM_xmlHttpRequest, and adding a "onchange" action listener to the drop-down list, which will populate the textfield with the relevant information from the drop-down. This ensures that fogbugz sees exactly what it wants, in exactly the way it wants to see it.</p>
http://stackoverflow.com/questions/684078/getting-all-nodes-between-the-current-node-and-another-without-current/687160#6871601Answer by Paul Marshall for Getting all nodes between the current node and another without current()?Paul Marshall2009-03-26T19:14:07Z2009-03-26T19:14:07Z<p>It sounds like using the DOM will be a bit easier, once you use XPath to collect things at that level. Assuming you use no framework, something along the lines of:</p>
<pre><code>var nodes = document.evaluate("//h2[a/@name='section-References' or a/@name='References']/following-sibling::*", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
var contents=[];
if (nodes.snapshotLength>0) contents.push(new Array());
var currentGroup=0;
for (var i=0;i<nodes.snapshotLength;i++) {
if (nodes.shapshotItem(i)==<your favorite way to detect the right flavor of h2 element>) {
currentGroup++;
contents.push(new Array());
continue;
}
contents[currentGroup].push(nodes.snapshotItem(i));
}
</code></pre>
<p>It's a bit verbose, but you'll end up with an array of arrays of items between interesting h2 nodes.</p>
http://stackoverflow.com/questions/121167/hidden-features-of-greasemonkey/664485#6644852Answer by Paul Marshall for Hidden features of GreasemonkeyPaul Marshall2009-03-19T23:49:02Z2009-03-19T23:49:02Z<p>GM_setValue normally only stores 32-bit integers, strings, and booleans, but you can take advantage of the uneval() method (and a later eval() on retrieval) to store any object.</p>
<pre><code>var foo={people:['Bob','George','Smith','Grognak the Destroyer'],pie:true};
GM_setValue('myVeryOwnFoo',uneval(foo));
var fooReborn=eval(GM_getValue('myVeryOwnFoo','new Object()'));
GM_log('People: '+fooReborn.people+' Pie:'+fooReborn.pie);
</code></pre>
<p>I tend to use "new Object()" as my default in this case, but you could also use "({})". Just remember that "{}" evaluates as a string, not an object. As usual, eval() with care.</p>
http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306727#306727107Answer by Paul Marshall for Must haves for developers officePaul Marshall2008-11-20T20:20:20Z2008-11-20T20:20:20Z<p>Absolute must-have: comfortable chair. I'm going to be sitting in it for unspeakable amounts of time.</p>
<p>Really important: two monitors.</p>
<p>Neat stuff: corner desk, so the stuff to the right and left of the monitors is closer.</p>
http://stackoverflow.com/questions/284906/easily-digestible-ui-tips-for-developers/284965#2849654Answer by Paul Marshall for Easily digestible UI tips for developersPaul Marshall2008-11-12T19:00:18Z2008-11-12T19:00:18Z<p>Make the default choice the one most users would be happy with.</p>
http://stackoverflow.com/questions/259656/xslt-selecting-attribute-of-ancestor-works-ancestortagname-doesn0XSLT selecting attribute of ancestor; "../.." works, "ancestor::<tagname>" doesn'tPaul Marshall2008-11-03T19:29:36Z2008-11-03T22:36:30Z
<p>I'm running through an XML document, selecting all the elements, and creating links based on the ancestor which is usually two nodes up in the tree, but occasionally 3 or 4 nodes up. For the majority of the elements, using <code><xsl:value-of select="translate(../../@name,$uc,$lc)" /></code> works just fine, but for the cases where the ancestor is 3 or so nodes up, I'd like to use <code><xsl:value-of select="translate(ancestor::package/@name,$uc,$lc)" /></code>, but this doesn't work.</p>
<p>I'm using xsltproc from Ruby to do my XSL transforms.</p>
<p>Sample tree (yes, it has XSLT in it, no, I'm not trying to process it):</p>
<pre><code><package name="blork!" xmlns="http://xml.snapin.com/XBL">
<xsl:template name="doSomething">
<tokens>
<token name="text-from-resource" export="public" />
</tokens>
</xsl:template>
</package>
</code></pre>
<p>The XSL I'm using:</p>
<pre><code><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:s4="http://xml.snapin.com/XBL">
<xsl:template match="/">
<xsl:if test="count(//s4:token) >0">
<xsl:text>Tokens!</xsl:text>
<xsl:for-each select="//s4:token">
<xsl:choose>
<xsl:when test="@export='global'" />
<xsl:otherwise>
<xsl:value-of select="translate(ancestor::s4:package/@name,$uc,$lc)" />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
</code></pre>
<p><em>Edit:</em> Ah, right, forgot the namespace on the select. The parser's finding that ancestor properly for most cases, but it still can't find it when there's an xsl: node in there, and the target file has no namespace for xsl. I'd prefer not to modify the target file, because it's production code---I'm just writing an autodoc tool.</p>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/202039#2020391Answer by Paul Marshall for What fun things do you do to release stress at the office?Paul Marshall2008-10-14T17:15:52Z2008-10-14T17:15:52Z<p>We have a scattering of things to do: there's Guitar Hero in the break room, heading out for coffee, walking around the local park, and I've started getting some of my fellow workers into card games like Munchkin and San Juan.</p>
<p>For bonus points, another guy has an arcade machine of Excitebike in his office.</p>
http://stackoverflow.com/questions/184431/converting-xml-to-plain-text-using-xslt-how-should-i-ignore-handle-whitespace6Converting XML to plain text using XSLT -- how should I ignore/handle whitespace in the XSLT?Paul Marshall2008-10-08T19:22:47Z2008-10-09T20:23:03Z
<p>I'm trying to convert an XML file into the markup used by dokuwiki, using XSLT. This actually works to some degree, but the indentation in the XSL file is getting inserted into the results. At the moment, I have two choices: abandon this XSLT thing entirely, and find another way to convert from XML to dokuwiki markup, or delete about 95% of the whitespace from the XSL file, making it nigh-unreadable and a maintenance nightmare.</p>
<p>Is there some way to keep the indentation in the XSL file without passing all that whitespace on to the final document?</p>
<p>Background: I'm migrating an autodoc tool from static HTML pages over to dokuwiki, so the API developed by the server team can be further documented by the applications team whenever the apps team runs into poorly-documented code. The logic is to have a section of each page set aside for the autodoc tool, and to allow comments anywhere outside this block. I'm using XSLT because we already have the XSL file to convert from XML to XHTML, and I'm assuming it will be faster to rewrite the XSL than to roll my own solution from scratch.</p>
<p><i>Edit: Ah, right, foolish me, I neglected the indent attribute. (Other background note: I am new to XSLT.) On the other hand, I still have to deal with newlines. Dokuwiki uses pipes to differentiate between table columns, which means that all of the data in a table line must be on one line. Is there a way to suppress newlines being outputted (just occasionally), so I can do some fairly complex logic for each table cell in a somewhat readable fasion?</i></p>
http://stackoverflow.com/questions/188162/what-is-the-most-useful-script-youve-written-for-everyday-life/188359#1883595Answer by Paul Marshall for What is the most useful script you've written for everyday life?Paul Marshall2008-10-09T17:41:06Z2008-10-09T17:41:06Z<p>A Greasemonkey script to add a "press that button a lot" control box to an online game.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61545#61545Comment by Paul Marshall on Hidden Features of JavaScript?Paul Marshall2009-06-08T20:10:17Z2009-06-08T20:10:17ZThe best use for == is when testing for undefined, because undefined == null, but undefined !== null. I've rarely seen anything where I want to differentiate between undefined and null.http://stackoverflow.com/questions/598572/launch-an-app-to-record-keep-with-greasemonkey/609348#609348Comment by Paul Marshall on launch an app to record keep with greasemonkeyPaul Marshall2009-03-24T22:57:51Z2009-03-24T22:57:51ZThe "result1" and "result2" variables, in this example, would hold the data you want. If you just want the entire site's HTML, then use document.body.innerHTML. Otherwise, filter the page accordingly. The data will be sent on every page-load, because this script executes on all sites.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/128867#128867Comment by Paul Marshall on Hidden Features of JavaScript?Paul Marshall2009-03-20T15:39:09Z2009-03-20T15:39:09ZWhat is this useful for? You get the same results from putting the alert outside the function.http://stackoverflow.com/questions/61088/hidden-features-of-javascript/61545#61545Comment by Paul Marshall on Hidden Features of JavaScript?Paul Marshall2009-03-20T15:30:26Z2009-03-20T15:30:26ZNontransitive: '' == 0, and 0 == '0', but '' != '0'. If it was transitive, '' would equal '0'.
0 == '' because type conversion is automatic, and some JS architect thought that '' should convert to 0.http://stackoverflow.com/questions/171630/greasemonkey-love-it-or-hate-itComment by Paul Marshall on Greasemonkey: love it or hate it?Paul Marshall2009-03-20T00:03:01Z2009-03-20T00:03:01ZAs a historical note, the article you link to refers to an older version of Greasemonkey that would actually insert <script> tags on the page and then execute them. There are no longer any "default" scripts with GM; if it happens, it's the user's/GM-dev's fault.http://stackoverflow.com/questions/345737/your-most-common-programming-mistakes/345751#345751Comment by Paul Marshall on Your most common programming mistakes?Paul Marshall2008-12-06T04:31:34Z2008-12-06T04:31:34ZThe other way of handling the single-line for/if/other is to require that a single-statement block always be on the same line as the for/if/other. If that ends up being hideously long for a single line, then use the curly braces.http://stackoverflow.com/questions/306708/must-haves-for-developers-office/306727#306727Comment by Paul Marshall on Must haves for developers officePaul Marshall2008-11-21T00:44:15Z2008-11-21T00:44:15ZI've done only a minimum of pair programming, for only the nastiest of bugs or brief code reviews. I don't think that designing an office specifically for PP is as important.