User rjray - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:00:09Z http://stackoverflow.com/feeds/user/6421 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1383383/understanding-xml-rpc-param-possibilities-especially-recursion-of-values/1384167#1384167 1 Answer by rjray for Understanding XML-RPC param possibilities, especially recursion of values rjray 2009-09-05T20:17:47Z 2009-09-05T20:17:47Z <p>Absolutely. I maintain a Perl implementation of XML-RPC, and handling the arbitrary nesting of data (this is more a matter of <em>nesting</em> than it is <em>recursion</em>) was fairly simple.</p> <p>As you mention that you are working on an implementation of your own (though you should really look to see if your language already has an implementation-- it would be better to contribute to the ongoing development and maintenance of an established project), there is one recent issue I had with nesting and actual, real, recursion that you might want to keep in mind: Assuming your language supports references, be careful that you don't have any cyclic references in your data structures. I just released a new rev of my Perl implementation (<a href="http://search.cpan.org/dist/RPC-XML" rel="nofollow">http://search.cpan.org/dist/RPC-XML</a>) that fixes an infinite-recursion bug when an array or struct contains cyclical references.</p> http://stackoverflow.com/questions/1297793/wordpress-per-category-feeds-have-generic-titles 0 Wordpress per-category feeds have generic titles rjray 2009-08-19T04:23:54Z 2009-08-20T18:06:35Z <p>I'm actually not sure if this is a configuration issue (with the theme) or a PHP issue (in which the relevant template simply is buggy)... I have a Wordpress-powered blog in which I make extensive use of categories to group posts. However, the per-category syndication feeds produce items whose titles are just the name of the blog and the category name itself. Unfortunately, my grasp of PHP in general, and Wordpress-theme-specific PHP in particular is fairly weak at this point. Without going into the details of the theme itself, can someone point me to some general areas I can look at first, before I <em>do</em> break out the minute detail?</p> http://stackoverflow.com/questions/1077144/network-manager-keeps-creating-dhcp-connection 0 Network manager keeps creating DHCP connection [closed] rjray 2009-07-02T23:12:14Z 2009-07-03T00:40:02Z <p>I have this problem on at least two separate machines, both of which currently run Ubuntu 8.10. Both machines are desktop machines connected to a LAN by a wired connection. Both networks have static IP addresses assigned to the machines, so I have changed the "Autho eth0" profiles on each to not configure from DHCP, and have provided the IP address, gateway, etc.</p> <p>However, periodically (sometimes randomly, but mostly whenever I reboot) the network manager has spontaneously created a "new" connection setting for eth0 that boots from DHCP, and when I reboot (or when something causes networking to drop off and re-initialize) the machine ends up with a random address. I dutifully delete the extra entry, and the network manager immediately takes eth0 down and brings it back up, with the correct IP address.</p> <p>My question is: How do I get the networking manager to cut this crap out? One of the machines is at my office, and if I'm working remotely over our VPN I have no way of (easily) figuring out what the "new" IP address is.</p> http://stackoverflow.com/questions/887209/why-are-blank-lines-being-matched-in-this-regexp/887719#887719 1 Answer by rjray for Why are blank lines being matched in this regexp? rjray 2009-05-20T12:51:35Z 2009-05-20T12:51:35Z <p>Hm. According to the <a href="http://perldoc.perl.org/perlre.html" rel="nofollow">Perl regular expression documentation</a>, the <code>[:space:]</code> character class should not include newlines, as it is supposed be the equivalent of <code>\s</code> (except that it recognizes an additional character, vertical-tab, to maintain POSIX compliance).</p> <p><em>However</em>, having just tested this on 5.10.0, I can verify that it is matching newlines as well. Whether this qualifies as a bug in Perl or in the documentation, I'll leave for the Perl maintainers. But to avoid the immediate problem, use the previous answerer's solution and just use <code>\s</code> instead of the POSIX class.</p> http://stackoverflow.com/questions/783902/excluding-disabling-validation-in-eclipse 1 Excluding/Disabling Validation in Eclipse rjray 2009-04-23T23:00:01Z 2009-05-14T20:07:03Z <p>I have the (mis)fortune of having a large project source-base in which I am working primarily on PHP and JavaScript. I have to have the full project area as the project root in Eclipse, but unfortunately this includes several directories that drive the validation built into WST/DLTK/etc. nuts.</p> <p>I have tried disabling all validators in the project properties. I have gone into the validators one at a time and added rules to the "Exclude Group" set to exclude the specific folders. I have removed the folders from the PHP build path in the project properties. And yet, my Problems view/tab is still littered with thousands of red flags that stem mostly from a folder that we use to keep copies of external elements (Apache, PHP, etc.). You know, typical "have a copy of the specific versions we currently use" sort of thing.</p> <p>The signal-to-noise ratio is so bad that I'm unable to use the view at all, which is a shame. If I'm not going to have the benefits of the IDE, I might as well be using vim for this (I use it for other stuff, but for this codebase a good IDE is a better choice, providing I can get it to work). It seems to me that it would be an obvious feature to be able to right-click a folder in a project and select "Exclude from Validation", but alas there is no such feature. Is there another way to get the validators (PHP, HTML, etc.) to ignore the folders I need ignored?</p> http://stackoverflow.com/questions/547237/how-can-i-set-up-eclipse-to-edit-perl-without-the-runtime-checking/550830#550830 3 Answer by rjray for How can I set up Eclipse to edit Perl without the runtime checking? rjray 2009-02-15T12:52:29Z 2009-02-15T12:52:29Z <p>It isn't a setting, per se, in the workbench. It's a per-project setting.</p> <p>While in your Perl project, select Project->Properties. In that dialog, click on "Builders". You probably have just the one-- "Perl Auto Builder". De-select it and click "Ok".</p> <p>Unfortunately, you'll have to do this for each separate Perl project.</p> http://stackoverflow.com/questions/462038/xml-rpc-and-continuum-from-python-perl/498602#498602 0 Answer by rjray for XML-RPC and Continuum from Python / Perl rjray 2009-01-31T10:11:11Z 2009-01-31T10:11:11Z <p>What you describe is not part of the client-side library-- it's a matter of whether the server implements these methods.</p> <p>I'm the author of the <a href="http://search.cpan.org/dist/RPC-XML" rel="nofollow">RPC::XML</a> Perl module, and in the server class I provide I also provide implementation of the basic "introspection" API that has become a sort of semi-standard in the XML-RPC arena. But even then, users of the server class may choose to not have the introspection API activate.</p> <p>Of course, I can't speak to other XML-RPC implementations.</p> http://stackoverflow.com/questions/464109/how-do-i-get-the-clients-ip-address-from-within-a-perl-frontier-rpc-call/467005#467005 1 Answer by rjray for How do I get the client's IP address from within a perl Frontier-RPC call? rjray 2009-01-21T21:07:57Z 2009-01-21T21:07:57Z <p>Unfortunately, you can't do this using Frontier's server class. By the time the local procedure/method is called, you don't have any handle on the actual socket connection itself.</p> <p>As it happens, being able to access this information is a recent feature I added to the server class in my <a href="http://search.cpan.org/dist/RPC-XML/" rel="nofollow">RPC::XML</a> package. See the "<a href="http://search.cpan.org/dist/RPC-XML/lib/RPC/XML/Server.pm#How_Methods_Are_Called" rel="nofollow">How Methods Are Called</a>" section in the docs for the server class. </p> http://stackoverflow.com/questions/427679/javascript-via-greasemonkey-failing-to-set-title-attributes-on-a-tags 0 Javascript (via GreaseMonkey) failing to set "title" attributes on <a> tags rjray 2009-01-09T10:54:33Z 2009-01-09T11:26:03Z <p>I have the following (fairly) simple Javascript snippet that I have wired into GreaseMonkey. It goes through a page, looks for &lt;a&gt; tags whose href points to tinyurl.com, and adds a "title" attribute that identifies the true destination of the link. Much of the important code comes from an older (unsupported) GM script that quit working when the inner component that held the XPath implementation changed. My script:</p> <pre><code>(function() { var providers = new Array(); providers['tinyurl.com'] = function(link, fragment) { // This is mostly taken from the (broken due to XPath component // issues) tinyurl_popup_preview script. link.title = "Loading..."; GM_xmlhttpRequest({ method: 'GET', url: 'http://preview.tinyurl.com/' + fragment, onload: function(res) { var re = res.responseText.match("&lt;blockquote&gt;&lt;b&gt;(.+)&lt;/b&gt;&lt;/blockquote&gt;"); if (re) { link.title = re[1].replace(/\&lt;br \/\&gt;/g, "").replace(/&amp;amp;/g, "&amp;"); } else { link.title = "Parsing failed..."; } }, onerror: function() { link.title = "Connection failed..."; } }); }; var uriPattern = /(tinyurl\.com)\/([a-zA-Z0-9]+)/; var aTags = document.getElementsByTagName("a"); for (i = 0; i &lt; aTags.length; i++) { var data = aTags[i].href.match(uriPattern); if (data != null &amp;&amp; data.length &gt; 1 &amp;&amp; data[2] != "preview") { var source = data[1]; var fragment = data[2]; var link = aTags[i]; aTags[i].addEventListener("mouseover", function() { if (link.title == "") { (providers[source])(link, fragment); } }, false); } } })(); </code></pre> <p>(The reason the "providers" associative array is set up the way it is, is so that I can expand this to cover other URL-shortening services as well.)</p> <p>I have verified that all the various branches of code are being reached correctly, in cases where the link being examined does and does not match the pattern. What <em>isn't</em> happening, is any change to the "title" attribute of the anchor tags. I've watched this via Firebug, thrown <code>alert()</code> calls in left and right, and it just never changes. In a previous iteration all expressions of the form:</p> <pre><code>link.title = "..."; </code></pre> <p>had originally been:</p> <pre><code>link.setAttribute("title", "..."); </code></pre> <p>That didn't work, either. I'm no newbie to Javascript OR GreaseMonkey, but this one has me stumped!</p> http://stackoverflow.com/questions/356039/element-in-list-testing-in-xslt 1 Element-in-List testing in XSLT rjray 2008-12-10T13:30:17Z 2008-12-10T18:31:09Z <p>For a stylesheet I'm writing (actually for a set of them, each generating a different output format), I have the need to evaluate whether a certain value is present in a list of values. In this case, the value being tested is taken from an element's attribute. The list it is to be tested against comes from the invocation of the stylesheet, and is taken as a top-level <code>&lt;xsl:param&gt;</code> (to be provided on the command-line when I call <code>xsltproc</code> or a Saxon equivalent invocation). For example, the input value may be:</p> <pre><code>v0_01,v0_10,v0_99 </code></pre> <p>while the attribute values will each look very much like <em>one</em> such value. (Whether a comma is used to separate values, or a space, is not important-- I chose a comma for now because I plan on passing the value via command-line switch to <code>xsltproc</code>, and using a space would require quoting the argument, and I'm lazy-enough to not want to type the extra two characters.)</p> <p>What I am looking for is something akin to Perl's <code>grep</code>, wherein I can see if the value I currently have is contained in the list. It can be done with sub-string tests, but this would have to be clever so as not to get a false-positive (<code>v0_01</code> should not match a string that contains <code>v0_011</code>). It seems that the only non-scalar data-type that XSL/XSLT supports is a node-set. I suppose it's possible to convert the list into a set of text nodes, but that seems like over-kill, even compared to making a sub-string test with extra boundaries-checking to prevent false matches.</p> http://stackoverflow.com/questions/330562/using-vim-sessions-only-with-gui 1 Using vim Sessions Only With GUI? rjray 2008-12-01T11:22:06Z 2008-12-01T12:46:00Z <p>My usage-scenario may seem a bit unusual, but here it is: When using vim (it's one of about 4 different editors I use regularly), I use it in two different situations. The first is via the GUI, in which I'll have multiple buffers and have some settings different than when I use it from the command-line (by testing "<code>if has('gui_running')</code>"). The other is when I need to do something short-and-quick, from the command-line, such as make a small change to a dot-file or other type of config.</p> <p>What I would <em>like</em> to do, is have sessions enabled for the GUI, but have any command-line invocations ignore them. That is, I don't want to bring up the full existing session on a CL invocation, nor do I want it (and whatever buffer/file it involved) to alter the session that the GUI is using. As I'm fairly new to the post-vi-functionality of vim, I'm not really sure how to pull this off.</p> http://stackoverflow.com/questions/328673/how-can-i-find-the-newest-created-file-in-a-directory/328687#328687 2 Answer by rjray for How can I find the newest created file in a directory? rjray 2008-11-30T09:52:25Z 2008-11-30T09:52:25Z <p>Assuming you know the <code>$DIR</code> you want to look in:</p> <pre><code>opendir(my $DH, $DIR) or die "Error opening $DIR: $!"; my %files = map { $_ =&gt; (stat("$DIR/$_"))[9] } grep(! /^\.\.?$/, readdir($DH)); closedir($DH); my @sorted_files = sort { $files{$b} &lt;=&gt; $files{$a} } (keys %files); # $sorted_files[0] is the most-recently modified. If it isn't the actual # file-of-interest, you can iterate through @sorted_files until you find # the interesting file(s). </code></pre> <p>The <code>grep</code> that wraps the <code>readdir</code> filters out the "." and ".." special files in a UNIX(-ish) filesystem.</p> http://stackoverflow.com/questions/321272/found-unexpected-submission-inside-root-this-is-not-a-valid-child-ele/321706#321706 2 Answer by rjray for Found unexpected <Submission> inside <<<<ROOT>>>>. This is not a valid child element rjray 2008-11-26T18:36:09Z 2008-11-26T18:36:09Z <p>You have defined several types, but you have not defined any elements (except those defined as sub-components of the types you <em>have</em> defined). Not only is <code>&lt;Submission&gt;</code> not defined, neither is <code>&lt;Return&gt;</code> (which is its immediate child-element) nor any of <code>&lt;NR4&gt;</code>, <code>&lt;NR4Slip&gt;</code>, etc.</p> <p>You'll need a series of <code>&lt;xsd:element&gt;</code> blocks to map the types you've defined to actual elements/tags. (As well as declarations for <code>&lt;Return&gt;</code> and <code>&lt;NS4&gt;</code>, but since those seem to only appear within <code>&lt;Submission&gt;</code>, you may want to just declare them in-line as part of the declaration of <code>&lt;Submission&gt;</code>.)</p> <p>Here is a stab at a declaration for <code>&lt;Submission&gt;</code> that uses your existing types, but declares the other elements in-line. This is wholly un-tested, top-of-my-head, typed on public wi-fi while on vacation without my copy of ORA's "XML Schema" on hand:</p> <pre><code>&lt;xsd:element name="Submission" nillable="false"&gt; &lt;xsd:complexType&gt; &lt;xsd:sequence maxOccurs="1" minOccurs="1"&gt; &lt;xsd:element name="Return"&gt; &lt;xsd:complexType&gt; &lt;xsd:sequence maxOccurs="1" minOccurs="1"&gt; &lt;xsd:element name="NS4"&gt; &lt;xsd:complexType&gt; &lt;xsd:sequence&gt; &lt;xsd:element name="NR4Slip" type="NR4SlipType" /&gt; &lt;xsd:element name="NR4Summary" type="NR4SummaryType" /&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:element&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:element&gt; &lt;/xsd:sequence&gt; &lt;/xsd:complexType&gt; &lt;/xsd:element&gt; </code></pre> <p>This doesn't put any bounds on the number of <code>&lt;NR4Slip&gt;</code> or <code>&lt;NR4Summary&gt;</code> blocks you can have; you might want to set that with <code>minOccurs</code> and/or <code>maxOccurs</code> attributes on the inner-most <code>&lt;xsd:element&gt;</code> tags. The inline declarations also bypass actually mapping <code>NR4SlipType</code> or <code>NR4SummaryType</code> to elements.</p> http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java/316787#316787 14 Answer by rjray for Do you "final"ize local variables and method parameters in Java? rjray 2008-11-25T09:15:10Z 2008-11-25T09:15:10Z <p>You should try to do this, whenever it is appropriate. Besides serving to warn you when you "accidentally" try to modify a value, it provides information to the compiler that can lead to better optimization of the class file. This is one of the points in the book, "Hardcore Java" by Robert Simmons, Jr. In fact, the book spends all of its second chapter on the use of final to promote optimizations and prevent logic errors. Static analysis tools such as PMD and the built-in SA of Eclipse flag these sorts of cases for this reason.</p> http://stackoverflow.com/questions/305684/how-can-i-prevent-database-being-written-to-again-when-the-browser-does-a-reload/307608#307608 1 Answer by rjray for How can I prevent database being written to again when the browser does a reload/back? rjray 2008-11-21T02:05:03Z 2008-11-21T02:05:03Z <p>If you aren't already using some sort of session-management (which would let you note and track form submissions), a simple solution would be to include some sort of unique identifier in the form (as a hidden element) that is either part of the main DB transaction itself, or tracked in a separate DB table. Then, when you are submitted a form you check the unique ID to see if it has already been processed. And each time the form itself is rendered, you just have to make sure you have a unique ID.</p> http://stackoverflow.com/questions/285251/automatically-creating-a-tag-in-subversion/285627#285627 3 Answer by rjray for Automatically creating a tag in subversion rjray 2008-11-12T22:29:42Z 2008-11-12T22:29:42Z <p>You're missing a core principle of Subversion: the revision number <em>is</em> the tag. When you "tag" it with svn cp, you're just making a copy of that particular revision with a longer name. And unlike a CVS tag, you (or other developers) could continue doing ongoing development on that "tag". It isn't a static entity like a CVS tag is (well, to be fair, you can move a tag on individual CVS files which effectively "changes" it).</p> <p>Most svn users treat tags the way CVS presented them. And (under Apache, at least) you can configure the DAV server to not permit writes/check-ins under any tag directory. I haven't tried this, and it might prevent you using http URLs for creating the tags (you'd have to use file paths from a shell on the hosting machine). But for all practical purposes, your release process should be more interested in the specific revision number, than in some arbitrary text-string. The latter can be altered after the release; the former should[*] always give you access to the exact same set of files every time you check it out.</p> <p>[*] There's always a way to fiddle around with files behind the scenes, after the fact... I used to hand-edit RCS and CVS files with vi when I needed to fix a comment, etc. But without some serious svn-cleverness, a given revision number should be pretty constant.</p> http://stackoverflow.com/questions/277991/how-can-i-run-a-server-on-linux-on-port-80-as-a-normal-user/279608#279608 0 Answer by rjray for How can I run a server on Linux on port 80 as a normal user? rjray 2008-11-10T23:57:39Z 2008-11-10T23:57:39Z <p>If you are trying to do this so that a user-run command can use port 80, then your only solutions are the iptables tricks or setting the executable setuid-to-root.</p> <p>The way something like Apache does this (it binds to port 80, but is running as someone other than root) is to run as root, bind to the port, then change the ownership of the process to the non-privileged user after the port is set up. If the app you are writing can be <em>run</em> by root, you can make it change owner to the non-priv user after the ports are set up. But if this is just for an average user to run from the command line, then you'll have to use one of the other solutions.</p> http://stackoverflow.com/questions/260150/how-should-strings-of-digits-be-treated-in-xml-rpc-and-drupal/261574#261574 0 Answer by rjray for How should strings of digits be treated in XML-RPC and Drupal rjray 2008-11-04T11:28:04Z 2008-11-04T11:28:04Z <p>I don't have any experience with the XML::RPC package, but I'm the author of the <a href="http://search.cpan.org/dist/RPC-XML" rel="nofollow">RPC::XML</a> CPAN module. As with the Frontier package, I provide a way to force a value into a specific type when it would otherwise default to something else.</p> <p>If I had to guess, I would say that the package you're using simple does a regular-expression match on the data to decide how to type it. I had a similar problem with my package, and given the way Perl handles scalar values the only real way around it is to force it with explicit declaration. As a previous answerer pointed out, the value in question is actually outside the range of the &lt;i4&gt; type (which is a signed 32-bit value). So even if you had intended it to be an integer value, it would have been invalid with regards to the XML-RPC spec.</p> <p>I would recommend switching to one of the other XML-RPC packages, which have clearer ways of explicitly typing data. According to the docs for XML::RPC, it is possible to force the typing of data, but I found it to be unclear and not very well explained.</p> http://stackoverflow.com/questions/237938/how-to-convert-xsd-to-human-readable-documentation/239060#239060 1 Answer by rjray for How to convert xsd to human readable documentation? rjray 2008-10-27T04:10:14Z 2008-10-27T04:10:14Z <p>I have generated documentation in the past using a tool I found on Freshmeat.net called <a href="http://xframe.sourceforge.net/xsddoc/index.html" rel="nofollow">xsddoc</a>. Looking it up just now (to get the direct link), I see that it has been superceded by its developers with a tool called <a href="http://www.buldocs.com/xnsdoc/" rel="nofollow">xnsdoc</a>. The newer one is free for use by open-source projects, but if you are using this for a commercial product you may have to license it. If the last version released under the "xsddoc" banner suits your purposes, then you can just use that one.</p> <p>The documentation it produces has the look and feel of Javadoc, and allows for some degree of control in the stylesheet, etc.</p> http://stackoverflow.com/questions/236593/svn-update-of-multiple-files/236992#236992 1 Answer by rjray for SVN Update of multiple files rjray 2008-10-25T20:48:07Z 2008-10-25T20:48:07Z <p>Given that there are valid reasons for selectively updating from a repository when there are a lot of downstream changes available, my question would be whether you're trying to do this on a UNIX/Linux/etc. system or Windows. If Windows, I don't know how to do an equivalent of the following:</p> <pre><code>svn update `cat list_of_files` </code></pre> <p>(There are corner-cases, similar to running "find ... | xargs cmd ...", where spaces or shell-sensitive characters in the file names could cause problems. You'll have to deal with those by properly escaping such problem-characters.)</p> <p>If, for some frightening reason, your list of files is so astronomically-large that it breaks the shell command-line-length limit, you can do this instead:</p> <pre><code>cat list_of_files | xargs svn update </code></pre> <p>Two things to keep in mind while using either of these:</p> <ol> <li>All file names will have to be either absolute, or relative to the point you're running the command from.</li> <li>If one of the "files" in your list is actually a directory, <strong><em>all</em></strong> the files in that directory that have changes available will be updated.</li> </ol> http://stackoverflow.com/questions/231358/how-is-the-max-size-of-a-soap-message-determined/232448#232448 1 Answer by rjray for How is the max size of a SOAP message determined? rjray 2008-10-24T03:57:57Z 2008-10-24T03:57:57Z <p>I am only passingly-familiar with PHP, and have never used the NuSOAP package at all. However, a SOAP message's size should only be limited by the transport medium. In the case of HTTP, it should be pretty much unbounded (the limitation of 16384 bytes in form POST requests isn't due to SOAP, it's from browser limitations (which may actually not exist anymore, but I don't know for certain)).</p> <p>I would recommend finding a contact address for the authors/maintainers of NuSOAP and ask them directly. Unless there's something in the WSDL (and I don't recall anything in the WSDL spec that would limit a whole message-body-size... individual parameters (via XML Schema facets), but not the overall body), then the limitation would seem to be in the toolkit.</p> http://stackoverflow.com/questions/223657/svn-blame-in-eclipse/224221#224221 6 Answer by rjray for Svn Blame in Eclipse rjray 2008-10-22T02:03:44Z 2008-10-22T02:03:44Z <p>As was pointed out, you would currently have to first install a plug-in to enable Subversion support. I recommend Subversive, myself, and a search here on SO for the tags "eclipse" and "subversion" together will show several previous threads regarding "gotchas" to watch out for when installing the connectors (Subversive is separated into two parts-- the core support and "connectors" that provide the svn glue).</p> <p>Once you have that installed, you can configure repositories, create new projects by directly entering a new repo address and checking it out, or associate an existing project that was already attached to svn with the repo by have Subversion look it over.</p> <p>Once you've done <strong><em>that</em></strong>, this is how you access the "svn blame" command, also known as "annotate" or "praise": For a resource, right click on the resource name in the file-explorer pane to pop-up the context menu (you can also get this menu by right-clicking anywhere in the editor itself). Under the "<strong>Team</strong>" heading (which is also where you access all the svn commands, as Eclipse generalizes source control under the heading of "Team Sharing"), select "<strong>Show Annotation</strong>". On my Mac Powerbook, the keyboard shortcut for this is Ctrl-Option-A, I'm not near my Linux or WinXP platforms to see what the shortcut us on either of them (MacOS X ports tend to tweak keyboard shortcuts to adhere to the "greater good" view of what a Mac app should do).</p> <p>After a bit of time conversing with the subversion repo, the left-gutter of the editor window will show a series of colored bars. If you have line-numbers enabled for your editor, these will overlay the numbers. Otherwise, they'll just be bars. Each alternation of color represents a break where responsibility changes from one user to another. If you hover the pointer over a bar, a tooltip will appear identifying the responsible user, the revision/commit that the lines are from, date and the check-in comment. The color of the bars will vary from committer to committer, and revision to revision. They'll be varying shades of the same base color, but Eclipse will try to make them visually distinct (as much as possible). When you're hovering over a snippet, it highlights slightly, and all other bars that are tied to the same revision will also highlight.</p> <p>(Now, don't ask me how to turn it <em>off</em>. Thus far, my only solution has been to close the buffer and re-open it!)</p> http://stackoverflow.com/questions/221919/should-i-turn-on-perl-warnings-with-the-command-line-switch-or-pragma/223522#223522 5 Answer by rjray for Should I turn on Perl warnings with the command-line switch or pragma? rjray 2008-10-21T21:10:03Z 2008-10-21T21:10:03Z <p>Another distinction worth noting, is that the "use warnings" pragma also lets you select specific warnings to enable (and likewise, "no warnings" allows you to select warnings to disable).</p> http://stackoverflow.com/questions/219572/am-i-destined-to-develop-in-xml/220293#220293 3 Answer by rjray for Am I destined to develop in XML? rjray 2008-10-20T23:27:55Z 2008-10-20T23:27:55Z <p>I tend to make for a somewhat dubious champion of XML. Despite the fact that I use it daily, and that XML-based webservices have been a large part of my career (and the basis for the book I wrote), I think it is widely over-used. I tend to belong to the school-of-thought that believes you should have many tools in your toolbox, and you should use the best tool for the job. There are a lot of things for which XML is an excellent solution. But there are plenty of things for which it isn't, and some for which it's probably a terrible choice.</p> <p>Just as some people are zealous in their criticism and avoidance of XML, some people are just as zealous (or more so) in their praise and use of it. In the cases you refer to casually above, you're talking about web-based technologies for the most part. In these cases, you generally already have an XML parser and/or DOM manipulator already available to you, so there is no harm in making use of it. You haven't added to the complexity, because it was already there. Flash &amp; AIR make heavy use of XML for functionality, but they are targeted to an environment where parsing XML-ish markup (if not XML itself, then HTML or XHTML) is a core part of every application. For these technologies, introducing a different sort of data-expression language would be what adds complexity. Using XML makes perfect sense.</p> <p>Here's an example... the language in question here is Perl because that's what I use primarily, but the Perl-aspect of it is not relevant to the point: I've been working on an extension of an existing module that dumps deep data structures. Useful for tons of things-- serialization, portability across platforms, etc. Also a popular tool for debugging. My reason for wanting to extend it is that truly large and complex structures (such as those produced by ORM or MOP frameworks) can get pretty hairy. So my first thought was to just make an extension that let me convert the data to HTML in a way I could exercise some control over. Then I thought that it would be nifty if I could create diagrams showing the various elements and which is linked to which, etc. <em>Then</em> it occurred to me that if I chose a reasonable neutral format, I should be able to derive both of those fairly easily.</p> <p>That format? XML. Why would it be necessarily better than the native Perl serialization structure in this case, or better than using a different interim representation (such as YAML or JSON)? Because if I have valid, well-formed XML I can easily use XSLT to turn that into (X)HTML or SVG. I can also turn it into plain text if I want (I have XSLT stylesheets already, that choose to emit HTML fragments or cleanly-word-wrapped plain text depending on user selection).</p> <p>There are plenty of ways to solve this particular problem, but the advantage that XML gives me <em>in this case</em> makes it the preferred choice (at least, for my preferences and my needs). XSLT is a well-defined, well-documented (OK, your opinion may vary on that with regards to the W3C documentation, but there is no shortage of books on the subject) tool for transforming XML into, well, pretty much anything. For this particular problem, the expressiveness of XML combined with the fact that my ultimate target formats (XHTML and SVG) are themselves XML, made it the clear choice. On the other hand, there have been plenty of times when I've recommended (as a consultant) to a client or (as a company employee/team member) to a boss/team that XML should <strong>not</strong> be used for some task. Sometimes the reason is clear-- using XML wouldn't improve the (re-)usability of the data, they weren't using XML on the project yet and this wasn't the sort of thing you should introduce that dependency for, etc. Sometimes the reason is more subtle; if you are trying to decide how to store/retrieve your application's configuration, does it really need to be in XML? It's highly unlikely any other application will need to read/parse this, so portability/reuse of data isn't an issue. If the data is fairly flat in nature you can probably manage with a file of key/value pairs. If the data is more complicated and/or complex, you might be fine with YAML.</p> <p>In general, XML is the worst choice for data expression, except when it's the best choice. The same can be said for JSON and YAML, and the best way to get the most out of any of these approaches is to be familiar and comfortable with all of them and know which one is the best tool for the job you have in front of you.</p> http://stackoverflow.com/questions/196857/which-subversion-web-interfaces-have-a-blame-feature/196958#196958 1 Answer by rjray for Which Subversion web interfaces have a blame feature? rjray 2008-10-13T07:54:24Z 2008-10-13T07:54:24Z <p>The SVN::Web interface gives you access to the svn blame annotation(s) on files.</p> <p>When you're viewing a specific file, you should see "<strong>Blame/Annotate</strong>" as one of the links in the upper left. When you click on it, you have a much more-marked-up rendition of the file, with blocks in alternating colors. These delinate where contiguous blocks belonging to a given rev start and end. To the left are the user-names of the users whose commits were responsible for a given block, and to the left of that a linked number indicating the revision that the particular block stems from. Clicking on the link will take you to the revision-view page, that lists all the files changed in that revision, along with color-coded diffs of the files/changes themselves.</p> http://stackoverflow.com/questions/186015/whats-the-best-way-to-find-a-string-regex-match-in-files-recursively-unix/186687#186687 4 Answer by rjray for What's the best way to find a string/regex match in files recursively? (UNIX) rjray 2008-10-09T10:36:31Z 2008-10-09T10:36:31Z <p>This is one of the cases for which I've started using <strong>ack</strong> (<a href="http://petdance.com/ack/" rel="nofollow">http://petdance.com/ack/</a>) in lieu of <strong>grep</strong>. From the site, you can get instructions to install it as a Perl CPAN component, or you can get a self-contained version that can be installed without dealing with dependencies.</p> <p>Besides the fact that it defaults to recursive searching, it allows you to use Perl-strength regular expressions, use regex's to choose files to search, etc. It has an impressive list of options. I recommend visiting the site and checking it out. I've found it extremely easy to use, and there are tips for integrating it with vi(m), emacs, and even TextMate if you use that.</p> http://stackoverflow.com/questions/166220/restore-eclipse-subversion-project-connection/169098#169098 0 Answer by rjray for Restore Eclipse subversion project connection rjray 2008-10-03T22:15:11Z 2008-10-03T22:15:11Z <p>Without knowing what platform you're on, I don't know if your problem is similar to mine. However, I have recently (actually on two different platforms!) had issues where an update to Subversive (or perhaps Eclipse itself, not clear) caused the connectors to no longer load. Without the connectors, Subversive cannot connect to a project. But Eclipse isn't going to lock you out of your project over that, it'll just remove the SVN-related functionality.</p> <p>Look at the Errors view, which is a log of Eclipse's various errors (class-not-found exceptions, etc.) and see if there are any lines that related to the Subversive components. Unfortunately, I can't really recommend a solution-- on my Mac OSX platform it was enough to re-install the Subversive core elements and connectors. On my Linux machine (possibly due to an OS upgrade) I'm having to completely re-install Eclipse, as too much cruft has accumulated for me to be able to fully investigate it.</p> http://stackoverflow.com/questions/165720/how-to-debug-restful-services/166038#166038 0 Answer by rjray for How to debug RESTful services? rjray 2008-10-03T09:07:57Z 2008-10-03T09:07:57Z <p>Aside from using one of the tools in Peter Hilton's response, I would have to say that scripting the tests with LWP or some similar tool may be your only option. You <em>could</em> bypass the use of LWP by just opening a socket, sending a raw HTTP request in and examining what you get in return. But as far as I know, there are a dearth of testing tools for this sort of domain-- most look at this problem-space primarily from the lens of a web-site developer, and for them the browser is enough of a testing platform.</p> http://stackoverflow.com/questions/151034/does-the-eclipse-editor-have-an-equivalent-of-emacss-align-regex 5 Does the Eclipse editor have an equivalent of emacs's "align-regex"? rjray 2008-09-29T22:37:54Z 2008-09-29T23:14:41Z <p>I've been using Eclipse pretty regularly for several years now, but I admit to not having explored all the esoterica it has to offer, particularly in the areas of what formatting features the editors offer.</p> <p>The main thing I miss from (X)emacs is the "align-regex" command, which let me take several lines into a region and then format them so that some common pattern in all lines was aligned. The simplest example of this is a series of variable assignments:</p> <pre><code>var str = new String('aString'); var index = 0; var longCamelCaseObjectName = new LongNameObject(); </code></pre> <p>After doing align-regex on "=", that would become:</p> <pre><code>var str = new String('aString'); var index = 0; var longCamelCaseObjectName = new LongNameObject(); </code></pre> <p>Now, you may have your own thoughts on stylistic (ab)use of white space and alignment, etc., but that's just an example (I'm actually trying to align a different kind of mess entirely).</p> <p>Can anyone tell me off-hand if there's an easy key-combo-shortcut for this in Eclipse? Or even a moderately-tricky one?</p> http://stackoverflow.com/questions/139055/subversive-connectors-not-working-with-newest-ganymede-update/143379#143379 8 Answer by rjray for Subversive connectors not working with newest Ganymede update rjray 2008-09-27T10:33:50Z 2008-09-27T10:33:50Z <p>I had a similar problem right after the update. It turned out that I had been getting the connectors (the base connector and both the SVNKit and JavaHL connectors) from the Polarion site that had "ganymede" in the URL. Instead, I should have been using the general URL.</p> <p>Checking my current configuration, you should be using this update URL:</p> <pre><code>http://www.polarion.org/projects/subversive/download/eclipse/2.0/update-site/ </code></pre> <p>The one I had been using, that should be deprecated if you are using it, is:</p> <pre><code>http://www.polarion.org/projects/subversive/download/eclipse/2.0/ganymede-site/ </code></pre> <p>Note the difference. Once I changed that, I was able to download the 2.0.3 versions of the connectors, and Subversion again worked for me.</p> http://stackoverflow.com/questions/1448888/what-does-the-ref-attribute-on-an-element-in-an-xsd-do/1449417#1449417 Comment by rjray on What does the ref attribute on an element in an xsd do? rjray 2009-09-20T17:51:39Z 2009-09-20T17:51:39Z I up-voted this, as it is a good explanation. However, a ref attribute refers to an external entity by its &quot;id&quot;, not &quot;name&quot;. For your example to work, the declaration of &quot;item&quot; in the second code-block needs to be: &lt;xs:element id=&quot;item&quot; name=&quot;item&quot; type=&quot;itemType&quot; /&gt; http://stackoverflow.com/questions/1297793/wordpress-per-category-feeds-have-generic-titles Comment by rjray on Wordpress per-category feeds have generic titles rjray 2009-08-20T02:15:45Z 2009-08-20T02:15:45Z Go to <a href="http://www.dereferenced.com" rel="nofollow">dereferenced.com</a> -- look at the feed (from the location-bar icon). Then click on any of the categories for the first post... when on the category page look at the feed again and you'll see it. http://stackoverflow.com/questions/898621/how-do-i-build-perl-regular-expressions-dynamically/899051#899051 Comment by rjray on How do I build Perl regular expressions dynamically? rjray 2009-05-22T19:56:00Z 2009-05-22T19:56:00Z It isn't necessary to build the whole regex into a string before using <code>qr&#47;&#47;</code>. You can just do this: my $regex_builder = join '|', @extensions; my $regex = qr/\.($regex_builder)$/; http://stackoverflow.com/questions/887209/why-are-blank-lines-being-matched-in-this-regexp/887719#887719 Comment by rjray on Why are blank lines being matched in this regexp? rjray 2009-05-21T23:46:11Z 2009-05-21T23:46:11Z My bad-- I was conflating the fact that &quot;.&quot; in a regex only matches newlines when the /s flag is present. http://stackoverflow.com/questions/783902/excluding-disabling-validation-in-eclipse/783952#783952 Comment by rjray on Excluding/Disabling Validation in Eclipse rjray 2009-04-23T23:29:25Z 2009-04-23T23:29:25Z Unfortunately, the configuration dialog doesn't let the user filter out on the element's path. I could filter on the description or the source (validator) of the message, but what I need is to exclude by directory. http://stackoverflow.com/questions/427679/javascript-via-greasemonkey-failing-to-set-title-attributes-on-a-tags/427741#427741 Comment by rjray on Javascript (via GreaseMonkey) failing to set "title" attributes on <a> tags rjray 2009-01-09T12:17:26Z 2009-01-09T12:17:26Z Survey says success! http://stackoverflow.com/questions/427679/javascript-via-greasemonkey-failing-to-set-title-attributes-on-a-tags/427741#427741 Comment by rjray on Javascript (via GreaseMonkey) failing to set "title" attributes on <a> tags rjray 2009-01-09T12:12:29Z 2009-01-09T12:12:29Z Excellent... I'll try this. I suspect you're dead-on, as the reason for assigning source/fragment/link rather than using them directly was that they were &quot;mysteriously&quot; going out of scope. JS closures != Perl closures! http://stackoverflow.com/questions/356039/element-in-list-testing-in-xslt/356077#356077 Comment by rjray on Element-in-List testing in XSLT rjray 2008-12-10T14:20:24Z 2008-12-10T14:20:24Z Actually, for my purposes, it looks like the &quot;contains&quot; function will do (using the padding you suggest). What tripped me up, was that I was looking for this functionality within XSLT itself, when I should have been looking in XPath. http://stackoverflow.com/questions/330562/using-vim-sessions-only-with-gui/330689#330689 Comment by rjray on Using vim Sessions Only With GUI? rjray 2008-12-02T08:02:26Z 2008-12-02T08:02:26Z This does the trick, though I don't have to create a .gvimrc to use it-- it works fine within the GUI-only block of my .vimrc. http://stackoverflow.com/questions/305574/can-i-stop-settings-in-vimrc-from-being-overwritten-by-plugins/307285#307285 Comment by rjray on Can I stop settings in vimrc from being overwritten by plugins? rjray 2008-11-21T01:56:11Z 2008-11-21T01:56:11Z I don't think the plugin is altering his vimrc, I think he means that the plugin is changing the value of iskeyword, and adding back this character that he removed. When not editing PHP, iskeyword setting is fine. http://stackoverflow.com/questions/223657/svn-blame-in-eclipse/223728#223728 Comment by rjray on Svn Blame in Eclipse rjray 2008-10-22T02:08:51Z 2008-10-22T02:08:51Z Not true: Under the &quot;Team&quot; sub-menu of the right-click (context) menu of a resource, you can select &quot;Show Annotation&quot; to see this information. http://stackoverflow.com/questions/219572/am-i-destined-to-develop-in-xml/220293#220293 Comment by rjray on Am I destined to develop in XML? rjray 2008-10-21T21:14:26Z 2008-10-21T21:14:26Z No, I haven't, to be honest. I work mainly on Linux and MacOS systems, though I try to avoid platform-specific pitfalls whenever I can. http://stackoverflow.com/questions/220642/language-agnostic-properly-tabbing-code-editors-for-linux/220753#220753 Comment by rjray on Language-agnostic properly-tabbing code editors for Linux? rjray 2008-10-21T09:10:30Z 2008-10-21T09:10:30Z Another vote for jEdit. I've been using it for several years. http://stackoverflow.com/questions/165720/how-to-debug-restful-services/165900#165900 Comment by rjray on How to debug RESTful services? rjray 2008-10-03T09:04:16Z 2008-10-03T09:04:16Z Both of these look like extremely interesting tools, thanks for the pointers! http://stackoverflow.com/questions/156009/perl-grabbing-the-nth-and-mth-delimited-words-from-each-line-in-a-file/156034#156034 Comment by rjray on Perl: Grabbing the nth and mth delimited words from each line in a file rjray 2008-10-01T02:53:18Z 2008-10-01T02:53:18Z &quot;autosplit&quot; mode is also known as &quot;awk mode&quot;, and the use of @F as the name of the array is taken from awk.