User Chinnery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:55:35Z http://stackoverflow.com/feeds/user/31892 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/422900/whats-a-good-way-to-view-dojos-javascript-source-files-in-eclipse-with-aptana 1 What's a good way to view dojo's javascript source files in Eclipse with Aptana? Chinnery 2009-01-08T01:30:33Z 2009-07-06T23:22:46Z <p>I have Aptana installed within Eclipse. I'm working on a project with the dojo 1.2 JavaScript library installed. </p> <p>When I open one of dojo's dijit .js files, the code is formatted in a rather difficult to read way. The Eclipse "Outline" view shows a list of functions with names like "_2" and "ew". Not very human friendly. </p> <p>I'm talking about source code that looks like this:</p> <blockquote> <p>dojo.declare("dijit.InlineEditBox",dijit._Widget,{editing:false,autoSave:true,buttonSave:"",buttonCancel:"",renderAsHtml:false,editor:"dijit.form.TextBox",editorParams:{},onChange:function(_1){ },onCancel:function(){ },width:"100%",value:"",noValueIndicator:"&nbsp;&nbsp;&nbsp;&nbsp;&#x270d;&nbsp;&nbsp;&nbsp;&nbsp;",constructor:function(){ this.editorParams={}; },postMixInProperties:function(){ this.inherited(arguments); this.displayNode=this.srcNodeRef; var _2={ondijitclick:"_onClick",onmouseover:"_onMouseOver",onmouseout:"_onMouseOut",onfocus:"_onMouseOver",onblur:"_onMouseOut"}; for(var _3 in _2){ this.connect(this.displayNode,_3,_2[_3]); } dijit.setWaiRole(this.displayNode,"button"); if(!this.displayNode.getAttribute("tabIndex")){ this.displayNode.setAttribute("tabIndex",0); } this.attr("value",this.value||this.displayNode.innerHTML); },setDisabled:function(_4){ dojo.deprecated("dijit.InlineEditBox.setDisabled() is deprecated. Use attr('disabled', bool) instead.","","2.0"); this.attr("disabled",_4);</p> </blockquote> <p>How do I get a clearer, "friendlier" view of such a .js file? </p> http://stackoverflow.com/questions/530662/in-dojo-or-javascript-how-do-i-make-my-event-handler-fire-before-other-event-hand 1 In Dojo or Javascript how do I make my event handler fire before other event handlers? Chinnery 2009-02-10T00:31:30Z 2009-02-11T08:22:50Z <p>In the Dojo Javascript library, I understand how to use dojo.connect or dojo.publish to wire up my event handler to an event. That functionality works great. </p> <p>But I want to do one additional thing. </p> <p>I want my event handler to fire first, before any other already defined event handlers. I suppose this could be called "event handler insertion" or something. </p> <p>Is there a way to do that in Dojo or a convenient and elegant way in plain Javascript? </p> http://stackoverflow.com/questions/366842/how-do-you-backup-an-apache-jackrabbit-repository-without-shutting-jackrabbit-dow 2 How do you backup an apache Jackrabbit repository without shutting Jackrabbit down? Chinnery 2008-12-14T18:54:03Z 2009-02-07T08:52:01Z <p>When running Apache Jackrabbit JCR as an embedded service in your app, is there a quick way to get a sound and consistent backup of the contents of the Jackrabbit repository without shutting Jackrabbit down? If so how?</p> http://stackoverflow.com/questions/438025/as-a-programmer-how-much-time-do-you-spend-churning 7 As a programmer, how much time do you spend churning? Chinnery 2009-01-13T05:07:18Z 2009-01-13T05:56:55Z <p>I recently went through a period of frustration, "churning" as I tried to set up my environment to work effectively on a task. By the time I broke through and started to make actual progress, I felt tired and kind of angry. (I'll admit: in this case, it took me several days of banging my head and ultimately starting from scratch to finally get around the problems.) </p> <p>This experience made me wonder: When a roadblock happens to other programmers, how long do they churn before finally becoming productive and beginning what feels like <em>actual work</em>? </p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/429668#429668 1 Answer by Chinnery for What is the best resource you know to learn Dojo? Chinnery 2009-01-09T20:46:56Z 2009-01-13T01:49:08Z <p>I have <strong>Mastering Dojo</strong> by Gill, Riecke and Russell, but I'm looking for something more information dense and less erroneous. For example, here's an error I noticed: </p> <blockquote> <p>"In good object-oriented frameworks, some built-in methods are meant for the programmer to call, and some are meant for the programmer to override. A good example of the latter is <em>compare</em> in Java. This method is defined at the root of the class tree (<em>Object</em>) and overridden in most of the built-in classes." (p. 329)</p> </blockquote> <p>I think they meant <em>equals</em>, not <em>compare</em>. See <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)" rel="nofollow">http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)</a></p> <p>Also, in the section explaining the widget lifecycle, <strong>Mastering Dojo</strong> does not mention the methods <em>destroyRecursive</em> and <em>uninitialize</em>. By contrast <strong>Dojo: The Definitive Guide</strong> does mention those methods, and explains all the lifecycle methods in more detail than <strong>Mastering Dojo</strong> does. </p> <p>Another thing I found disappointing about <strong>Mastering Dojo</strong> is that it's very "Pro-Dojo". It takes the viewpoint of a fervent Dojo advocate, rather than that of an even handed teacher. In and of itself this is not bad, but when one of the book's authors is a major Dojo code contributor, it makes me lose confidence in the book's objectivity. I mean, opening chapter one with this sentence strikes me as a bit arrogant/pretentious/biased/blind: </p> <blockquote> <p>There's a new king in town.</p> </blockquote> http://stackoverflow.com/questions/425996/why-does-ff3-say-permission-denied-to-get-property-htmldivelement-tagname 3 Why does FF3 say "Permission denied to get property HTMLDivElement.tagName" ? Chinnery 2009-01-08T21:18:03Z 2009-01-12T22:57:08Z <p>When I run this through FireFox 3: </p> <pre><code>&lt;script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dojo.js" djConfig="parseOnLoad: true"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="../resources/dojo-1.2.3-src/dojo/dijit.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; dojo.require("dojo.parser"); dojo.require("dijit.InlineEditBox"); dojo.require("dijit.form.TextBox"); function myHandler(idOfBox, value) { alert("Edited value from "+idOfBox+" is now "+value); } &lt;/script&gt; &lt;span id="editable" style="font-size:larger;" dojoType="dijit.InlineEditBox" onChange="myHandler(this.id,arguments[0])"&gt; &lt;input dojoType="dijit.form.TextBox" value="dijit.InlineEditBox"&gt; &lt;/span&gt; </code></pre> <p>and click on the inline editable text, change it, and then click outside of it, FF says this: "Permission denied to get property HTMLDivElement.tagName"</p> <p>The Firebug debugger breaks at the following line because e.relatedTarget is null: </p> <blockquote> <p>try{ e.relatedTarget.tagName; } catch(e2){ return; }</p> </blockquote> <p>What can I do to find a fix for this? </p> http://stackoverflow.com/questions/425996/why-does-ff3-say-permission-denied-to-get-property-htmldivelement-tagname/437356#437356 3 Answer by Chinnery for Why does FF3 say "Permission denied to get property HTMLDivElement.tagName" ? Chinnery 2009-01-12T22:57:08Z 2009-01-12T22:57:08Z <p>This problem <em>appears to be</em> caused by the Firebug extension to Firefox. I say that because when I disable Firebug and use the control, it works normally. </p> http://stackoverflow.com/questions/408498/eclipse-users-do-you-use-aptana-too/422881#422881 0 Answer by Chinnery for Eclipse users: Do you use Aptana too? Chinnery 2009-01-08T01:21:51Z 2009-01-08T01:21:51Z <p>i'm trying...can't seem to make javascript dojo library support work ... argh</p> http://stackoverflow.com/questions/367295/how-can-i-make-eclipse-provide-more-help-with-hivemind-configuration-files 2 How can I make Eclipse provide more help with Hivemind configuration files? Chinnery 2008-12-15T01:55:42Z 2009-01-02T20:58:18Z <p>A project I work on uses Apache Hivemind to do dependency injection for our app. We have various Hivemind configuration files that define service points, configuration points, etc. And if a developer erroneously edits one of these Hivemind config files, the error is only revealed at runtime. </p> <p>In Eclipse the hivemind config files are treated simply as xml files. We don't give Eclipse any insight about these files or the classes which we reference in the service point definitions.</p> <p>Is there a way to make Eclipse more helpful (i.e. give it more of a clue about what is correct in a Hivemind config file) so that it can reveal these errors to the programmer before runtime? </p> http://stackoverflow.com/questions/382622/is-there-a-tool-to-directly-edit-the-contents-of-a-jackrabbit-repository 1 Is there a tool to directly edit the contents of a Jackrabbit repository ? Chinnery 2008-12-20T00:03:06Z 2008-12-31T17:27:53Z <p>I have a file system based Jackrabbit repository which I would like to view and edit directly. Is there an existing tool that allows me to view/edit/delete/add nodes directly?</p> http://stackoverflow.com/questions/395401/printing-java-collections-nicely-tostring-doesnt-return-pretty-output/395407#395407 3 Answer by Chinnery for Printing Java collections nicely (toString doesn't return pretty output) Chinnery 2008-12-27T21:02:11Z 2008-12-27T21:08:07Z <p>Implement toString() on the class. </p> <p>I recommend the <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/ToStringBuilder.html" rel="nofollow">Apache Commons ToStringBuilder</a> to make this easier. With it, you just have to write this sort of method:</p> <pre><code>public String toString() { return new ToStringBuilder(this). append("name", name). append("age", age). toString(); } </code></pre> <p>In order to get this sort of output: </p> <blockquote> <p>Person@7f54[name=Stephen,age=29]</p> </blockquote> <p>There is also a <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/ReflectionToStringBuilder.html" rel="nofollow">reflective implementation</a>.</p> http://stackoverflow.com/questions/370557/what-is-the-best-way-to-save-my-pojos-into-jackrabbit-jcr 2 What is the best way to save my POJOs into Jackrabbit JCR? Chinnery 2008-12-16T06:00:09Z 2008-12-16T12:26:48Z <p>In Jackrabbit I have experienced two ways to save my POJOs into repository nodes for storage in the Jackrabbit JCR: </p> <ol> <li>writing my own layer and </li> <li>using Apache Graffito </li> </ol> <p>Writing my own code has proven time consuming and labor intensive (had to write and run a lot of ugly automated tests) though quite flexible. </p> <p>Using Graffito has been a disappointment because it seems to be a "dead" project <a href="http://incubator.apache.org/graffito/news.html" rel="nofollow">stuck in 2006</a></p> <p>What are some better alternatives?</p> http://stackoverflow.com/questions/363681/java-generating-random-number-in-a-range/363703#363703 1 Answer by Chinnery for Java: generating random number in a range Chinnery 2008-12-12T18:27:55Z 2008-12-12T18:27:55Z <p>I wonder if any of the random number generating methods provided by an Apache Commons library would fit the bill. </p> <p>For example: <a href="http://commons.apache.org/math/api-1.1/org/apache/commons/math/random/RandomData.html#nextInt(int,%20int)" rel="nofollow">nextInt</a> or <a href="http://commons.apache.org/math/api-1.1/org/apache/commons/math/random/RandomData.html#nextLong(long,%20long)" rel="nofollow">nextLong</a></p> http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat/363482#363482 0 Answer by Chinnery for How do I serve an image from the cgi directory under Tomcat? Chinnery 2008-12-12T17:19:59Z 2008-12-12T17:19:59Z <p>Resolution: I gave up on my "single server" (i.e. the existing Tomcat server) approach and installed Apache as well. Naturally, Bugzilla works much more readily under Apache. No real surprise there.</p> <p>I conclude that: </p> <ol> <li><p>Apache has no problem serving image files from under a cgi-bin dir.</p></li> <li><p>Bugzilla developers don't seem to think it's bad to put the image file dir in with the application scripts.</p></li> <li><p>Tomcat's support for cgi-bin is not as rich/extensive as Apache's. </p></li> <li><p>The answer to my original question is: it cannot be done in Tomcat 6.</p></li> </ol> http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat 1 How do I serve an image from the cgi directory under Tomcat? Chinnery 2008-12-12T02:03:11Z 2008-12-12T17:19:59Z <p>I have configured Tomcat 6 to serve Perl CGI scripts. That part is <a href="http://tomcat.apache.org/tomcat-6.0-doc/cgi-howto.html" rel="nofollow">well documented</a> and works ok for me.</p> <p>But, when a browser requests an image from this CGI dir, Tomcat's CGI servlet refuses to serve the image, displaying instead merely the url of the image. I believe this is a security feature to prevent users from seeing the contents of such files in general. </p> <p>How do I configure tomcat, the tomcat CGI servlet, and/or the tomcat default servlet, to actually serve up an image file which happens to be located in my CGI dir? Is that possible?</p> http://stackoverflow.com/questions/360282/what-are-the-best-java-code-generation-tools-or-plugins-to-use-in-eclipse 3 What are the best Java code generation tools or plugins to use in Eclipse? Chinnery 2008-12-11T17:59:25Z 2008-12-12T12:39:20Z <p>I'm aware of the built in code generation and refactoring one can do with the "Source" and "Refactor" menu items in Eclipse. </p> <p>I also use the Commonclipse plugin to easily make use of the Apache Commons classes that build hashCode, toString, equals methods.</p> <p>What other plugins or tools should I be aware of for generating Java source easily under the Eclipse IDE? </p> http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat/361860#361860 0 Answer by Chinnery for How do I serve an image from the cgi directory under Tomcat? Chinnery 2008-12-12T04:04:20Z 2008-12-12T04:04:20Z <p>Thanks for your response, Brian. </p> <p>By way of additional background to my question: I'm trying to run the CGI web application Bugzilla. It keeps its images in a folder called 'images' located in the same dir as the .cgi scripts. That arrangement works under the apache webserver, and I'd like to make it work under tomcat too. </p> <p>Or at least, I'd like to avoid hacking the .cgi scripts which belong to bugzilla web app. </p> http://stackoverflow.com/questions/360609/what-are-your-experiences-implementing-using-webdav/360641#360641 2 Answer by Chinnery for What are your experiences implementing/using WebDAV? Chinnery 2008-12-11T19:48:58Z 2008-12-11T19:48:58Z <p>If you run Apache Jackrabbit under, say, Tomcat, it can be configured to offer WebDAV and store uploaded files. Perhaps that will be a useful model, or even a good enough replacement for the planned implementation. </p> <p><a href="http://jackrabbit.apache.org/jackrabbit-webdav-library.html" rel="nofollow">Apache Jackrabbit Support for WebDAV</a></p> <p>Also, you may want to be aware of the BitKinex client (free 30 day trial), which I have found to be a useful tool for testing a WebDAV server. </p> <p><a href="http://www.bitkinex.com/" rel="nofollow">BitKinex Home Page</a></p> http://stackoverflow.com/questions/352474/what-not-to-declare-when-implementing-an-interface-with-an-abstract-class/354405#354405 1 Answer by Chinnery for What (not) to declare when implementing an interface with an abstract class? Chinnery 2008-12-09T22:04:07Z 2008-12-09T22:04:07Z <p>I agree with JeeBee: consider implementing your helper methods somewhere other than an abstract base class. </p> <p>If your helper method commonY() only exists in abstract base class B, all classes which implement Interface A will have to also extend base class B in order to take advantage of that implementation of commonY(). But, you might not always want to be forced to extend class B. </p> <p>Also, what if you want to change the implementation of commonY() in the future? You will then affect lots of implementations of interface A. But if you don't control all these implementations of interface A, you may affect their functionality (in a bad way) without intending to. </p> <p>Using an abstract base class in this situation may simply take away some flexibility without giving you anything in return. </p> http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/351441#351441 2 Answer by Chinnery for Most useful free Java libraries? Chinnery 2008-12-09T00:33:40Z 2008-12-09T00:33:40Z <p><a href="http://json-lib.sourceforge.net/" rel="nofollow">json-lib</a> provides convenient functionality for parsing JSON strings into/out of Java objects. This is quite helpful if you work on Ajax web apps.</p> http://stackoverflow.com/questions/281121/is-it-possible-to-make-eclipse-generate-hashcode-and-equals-with-hashcodebuilder/351075#351075 2 Answer by Chinnery for Is it possible to make eclipse generate hashCode and equals with HashCodeBuilder and EqualsBuilder Chinnery 2008-12-08T21:55:09Z 2008-12-08T21:55:09Z <p>I use the Eclipse plugin called "Commonclipse" </p> <p>After installation, you see a new context menu item "commonclipse" when you right click within a java source file. It can generate equals, hashcode, toString and compareTo methods based on the Apache commons libraries.</p> <p>To install it, use this from within eclipse update: <a href="http://commonclipse.sourceforge.net" rel="nofollow">http://commonclipse.sourceforge.net</a></p> http://stackoverflow.com/questions/309424/in-java-how-do-a-read-an-input-stream-in-to-a-string/350723#350723 6 Answer by Chinnery for In Java how do a read an input stream in to a string? Chinnery 2008-12-08T20:13:42Z 2008-12-08T20:13:42Z <p>How about </p> <pre><code>String myString = IOUtils.toString(myInputStream, "UTF-8"); </code></pre> <p>?</p> <p>Of course, you could choose other character encodings besides UTF-8. </p> <p>Also see: <a href="http://commons.apache.org/io/api-1.4/org/apache/commons/io/IOUtils.html#toString(java.io.InputStream,%20java.lang.String)" rel="nofollow">http://commons.apache.org/io/api-1.4/org/apache/commons/io/IOUtils.html#toString(java.io.InputStream,%20java.lang.String)</a></p> http://stackoverflow.com/questions/382622/is-there-a-tool-to-directly-edit-the-contents-of-a-jackrabbit-repository/403550#403550 Comment by Chinnery on Is there a tool to directly edit the contents of a Jackrabbit repository ? Chinnery 2009-02-10T17:48:17Z 2009-02-10T17:48:17Z Thanks, Alexander. That's really helpful! http://stackoverflow.com/questions/425996/why-does-ff3-say-permission-denied-to-get-property-htmldivelement-tagname/427179#427179 Comment by Chinnery on Why does FF3 say "Permission denied to get property HTMLDivElement.tagName" ? Chinnery 2009-01-09T19:54:07Z 2009-01-09T19:54:07Z +1 Thanks for trying that out! I'm sorry to say I have not understood what's happening there. http://stackoverflow.com/questions/425996/why-does-ff3-say-permission-denied-to-get-property-htmldivelement-tagname/426487#426487 Comment by Chinnery on Why does FF3 say "Permission denied to get property HTMLDivElement.tagName" ? Chinnery 2009-01-09T00:06:23Z 2009-01-09T00:06:23Z Thanks for your reply. I got the basis of this code from a snippet at: <a href="http://dojotoolkit.org/book/dojo-book-0-9/part-2-dijit/form-validation-specialized-input/inline-edit-box" rel="nofollow">dojotoolkit.org/book/dojo-book-0-9/&hellip;</a> FWIW, I don't believe a div element is necessary to create a dojo widget. http://stackoverflow.com/questions/140453/continuous-integration-servers/140459#140459 Comment by Chinnery on Continuous Integration Servers Chinnery 2008-12-29T20:11:24Z 2008-12-29T20:11:24Z yes, i've experienced that sort of thing with Cruise Control too. I switched to Hudson. So far so good. http://stackoverflow.com/questions/382622/is-there-a-tool-to-directly-edit-the-contents-of-a-jackrabbit-repository/382634#382634 Comment by Chinnery on Is there a tool to directly edit the contents of a Jackrabbit repository ? Chinnery 2008-12-20T00:15:01Z 2008-12-20T00:15:01Z Ah, i wish it were behind a webdav server, but in this case it's not. I'm hoping there's a direct tool to examine the contents of the repository. http://stackoverflow.com/questions/370557/what-is-the-best-way-to-save-my-pojos-into-jackrabbit-jcr/371152#371152 Comment by Chinnery on What is the best way to save my POJOs into Jackrabbit JCR? Chinnery 2008-12-16T16:18:31Z 2008-12-16T16:18:31Z Very interesting. I admit I have not really gotten away from the old &quot;OCM style&quot; of thinking. Good food for thought. http://stackoverflow.com/questions/370557/what-is-the-best-way-to-save-my-pojos-into-jackrabbit-jcr/370749#370749 Comment by Chinnery on What is the best way to save my POJOs into Jackrabbit JCR? Chinnery 2008-12-16T16:15:39Z 2008-12-16T16:15:39Z Thanks for the pointers to XStream, Betwixt and the Jackrabbit OCM. http://stackoverflow.com/questions/366842/how-do-you-backup-an-apache-jackrabbit-repository-without-shutting-jackrabbit-dow/367978#367978 Comment by Chinnery on How do you backup an apache Jackrabbit repository without shutting Jackrabbit down? Chinnery 2008-12-16T05:45:37Z 2008-12-16T05:45:37Z Ok, thank you for the answer. I'm surprised that the XML export option does not back up the earlier versions of nodes. Since we use versionable nodes, I think we'll stick with shutting down and copying files the at file system level. http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat/363482#363482 Comment by Chinnery on How do I serve an image from the cgi directory under Tomcat? Chinnery 2008-12-12T20:02:10Z 2008-12-12T20:02:10Z um ... i'm not doing that in my other work. i was just trying to get bugzilla to run under tomcat. i already explained that. http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat/361860#361860 Comment by Chinnery on How do I serve an image from the cgi directory under Tomcat? Chinnery 2008-12-12T15:44:25Z 2008-12-12T15:44:25Z yeah, i wish bugzilla was not built that way.