User Nicholas Trandem - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:25:49Z http://stackoverflow.com/feeds/user/765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/94556/maven2-multiproject-cobertura-reporting-problems-during-mvn-site-build 1 Maven2 Multiproject Cobertura Reporting Problems During mvn site Build Nicholas Trandem 2008-09-18T17:13:55Z 2009-11-23T14:46:57Z <p>We've got a multiproject we're trying to run Cobertura test coverage reports on as part of our mvn site build. I can get Cobertura to run on the child projects, but it erroneously reports 0% coverage, even though the reports still highlight the lines of code that were hit by the unit tests. We're using mvn 2.0.8. I've tried running "mvn clean site", "mvn clean site:stage" and "mvn clean package site". I know the tests are running, they show up in the surefire reports (both the txt/xml and site reports). Am I missing something in the configuration? Does Cobertura not work right with multiprojects?</p> <p>This is in the parent .pom:</p> <pre><code>&lt;build&gt; &lt;pluginManagement&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;cobertura-maven-plugin&lt;/artifactId&gt; &lt;inherited&gt;true&lt;/inherited&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;clean&lt;/id&gt; &lt;goals&gt; &lt;goal&gt;clean&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/pluginManagement&gt; &lt;/build&gt; &lt;reporting&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;cobertura-maven-plugin&lt;/artifactId&gt; &lt;inherited&gt;true&lt;/inherited&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/reporting&gt; </code></pre> <p>I've tried running it with and without the following in the child .poms:</p> <pre><code> &lt;reporting&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.codehaus.mojo&lt;/groupId&gt; &lt;artifactId&gt;cobertura-maven-plugin&lt;/artifactId&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/reporting&gt; </code></pre> <p>I get this in the output of the build:</p> <pre><code>... [INFO] [cobertura:instrument] [INFO] Cobertura 1.9 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file Instrumenting 3 files to C:\workspaces\sandbox\ProbuildCommonJsf\target\generated-classes\cobertura Cobertura: Saved information on 3 classes. Instrument time: 186ms [INFO] Instrumentation was successful. ... [INFO] Generating "Cobertura Test Coverage" report. [INFO] Cobertura 1.9 - GNU GPL License (NO WARRANTY) - See COPYRIGHT file Cobertura: Loaded information on 3 classes. Report time: 481ms [INFO] Cobertura Report generation was successful. </code></pre> <p>And the report looks like this: <img src="http://trandem.com/images/cobertura.png" alt="cobertura report" /></p> http://stackoverflow.com/questions/1500766/how-can-i-categorize-the-content-types-on-the-drupal-create-content-page-node 0 How can I categorize the content types on the Drupal "Create content" page (/node/add) Nicholas Trandem 2009-09-30T21:30:36Z 2009-10-01T08:56:16Z <p>How can I categorize/organize the content types on my "Create content" page? I'm running Drupal 6.x with CCK. I have a lot of custom content types, and my "Create content" page has become a bit unwieldy, as it lists them all alphabetically. I'd like to organize them by category, so users would see something like:</p> <pre><code>Create Content Reports Report Type A Report Type B Events Event Type A Event Type B </code></pre> <p>I don't want to mess with Core, but anything else (custom module, theming, existing module functionality) is fair game. I'm hoping I'm missing something easy, because this seems like an obvious requirement, but all I could find on the Drupal site were these unanswered questions:</p> <ul> <li><a href="http://drupal.org/node/186620" rel="nofollow">Organize Create Content Page (node/add)</a></li> <li><a href="http://drupal.org/node/290050" rel="nofollow">Core: Split create content page into categories?</a></li> </ul> http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation 15 A comprehensive regex for phone number validation Nicholas Trandem 2008-09-23T20:13:42Z 2009-08-07T17:24:27Z <p>I'm trying to put together a comprehensive regex to validate phone numbers. Ideally it would handle international formats, but it must handle US formats, including the following:</p> <ul> <li>1-234-567-8901</li> <li>1-234-567-8901 x1234</li> <li>1-234-567-8901 ext1234</li> <li>1 (234) 567-8901</li> <li>1.234.567.8901</li> <li>1/234/567/8901</li> <li>12345678901</li> </ul> <p>I'll answer with my current attempt, but I'm hoping somebody has something better and/or more elegant.</p> http://stackoverflow.com/questions/1004140/is-it-possible-to-override-facelets-development-for-different-environments 1 Is it possible to override facelets.development for different environments? Nicholas Trandem 2009-06-16T21:50:23Z 2009-06-17T09:34:11Z <p>We'd like to set facelets.development to false to suppress stack traces in non-development environments, but we'd like to have it set to true in dev for debugging.</p> <p>Our deployment process dictates one CI build that is migrated through the environments up to production, so we can't use an approach that requires rebuilding the app / rewriting web.xml for each environment. We'd like to change the value from the application, based on a properties file setting. Is this possible? How can the application access facelets.development?</p> http://stackoverflow.com/questions/953572/how-can-i-get-httpservletrequest-when-in-an-httpsessionlistener 1 How can I get HttpServletRequest when in an HttpSessionListener? Nicholas Trandem 2009-06-04T23:10:47Z 2009-06-05T10:49:37Z <p>How can I access request headers from a SessionListener?</p> <p>I need to set a timeout on the current session when it is created. The timeout needs to vary based on a header in the HttpServletRequest. I already have a SessionListener (implements HttpSessionListener) that logs the creation and destruction of new sessions, and it seems to be the most logical place to set the timeout. </p> <p>I've tried the following, but it always sets ctx to null.</p> <pre><code>FacesContext ctx = FacesContext.getCurrentInstance(); </code></pre> http://stackoverflow.com/questions/184289/how-can-jsessionid-be-suppressed-on-oc4j 0 How can jsessionID be suppressed on OC4J? Nicholas Trandem 2008-10-08T18:52:53Z 2009-04-12T00:03:30Z <p>I'm deploying a JSF (myfaces, restfaces, and richfaces) app to OC4J. I don't want the jsessionid to appear in the status bar or the URL address. I have managed to suppress it in almost all cases. The one case that I still have problems with is when the site is first visited with a "clean" browser (with no cache, history, etc.). In this case, jsessionid appears on every link until any link is clicked on, then it disappears, and will not come back (even in subsequent sessions) until the browser's cache is cleared again.</p> <p>It seems others have run into this problem, but I didn't find any resolutions or work arounds:</p> <ul> <li><a href="http://forums.sun.com/thread.jspa?messageID=10125580&amp;tstart=0" rel="nofollow">Java Servlet - how to remove jsessionid from embedded URLs</a></li> <li><a href="http://forums.oracle.com/forums/message.jspa?messageID=2632969" rel="nofollow">Thread: How to hide JSESSIONID in first-page Url? </a></li> </ul> http://stackoverflow.com/questions/16140/whats-the-best-way-to-get-started-with-osgi 12 What's the best way to get started with OSGI? Nicholas Trandem 2008-08-19T13:20:49Z 2009-03-28T12:39:35Z <p>What makes a module/service/bit of application functionality a particularly good candidate for an OSGi module? </p> <p>I'm interested in using <a href="http://en.wikipedia.org/wiki/OSGi" rel="nofollow">OSGi</a> in my applications. We're a Java shop and we use Spring pretty extensively, so I'm leaning toward using <a href="http://www.springframework.org/osgi" rel="nofollow">Spring Dynamic Modules for OSGi(tm) Service Platforms</a>. I'm looking for a good way to incorporate a little bit of OSGi into an application as a trial. Has anyone here used this or a similar OSGi technology? Are there any pitfalls? </p> <p>@Nicolas - Thanks, I've seen that one. It's a good tutorial, but I'm looking more for ideas on how to do my first "real" OSGi bundle, as opposed to a Hello World example.</p> <p>@david - Thanks for the link! Ideally, with a greenfield app, I'd design the whole thing to be dynamic. What I'm looking for right now, though, is to introduce it in a small piece of an existing application. Assuming I can pick any piece of the app, what are some factors to consider that would make that piece better or worse as an OSGi guinea pig?</p> http://stackoverflow.com/questions/334816/how-can-i-set-up-an-ldap-connection-pool-in-a-jee-container 0 How can I set up an LDAP connection pool in a JEE Container? Nicholas Trandem 2008-12-02T17:44:15Z 2009-01-15T16:09:40Z <p>I need to put an LDAP contextSource into my JEE container's JNDI tree so it can be used by applications inside the container.</p> <p>I'm using Spring-LDAP to perform queries against ORACLE OVD. For development, I simply set up the contextSource in the Spring xml configuration file. For production, however, I need to be able to use a JNDI lookup to grab the connection/context from the container (as suggested here: <a href="http://forum.springframework.org/showthread.php?t=35122&amp;highlight=jndi" rel="nofollow">http://forum.springframework.org/showthread.php?t=35122&amp;highlight=jndi</a>). I'm not allowed to have access to the URL/username/pwd for the production OVD instance, so that seems to rule out putting it in a jndi.properties file.</p> <p>Ideally, I'd like to have a pool of connections (just like JDBC), as my application may have many LDAP queries executing at the same time. Grabbing the object from a JNDI lookup and injecting it into my SimpleLdapTemplate seems pretty straightforward, but I'm at a loss as to how to get the connection/context/pool into the JNDI tree. Would I need to construct it and package it into a RAR? If so, what are some options for letting the operations team specify the URL/username/pwd in a way that they are not accessible to the developers?</p> <p>The specific container I'm using is OAS/OC4J, though I welcome strategies that have worked on other containers as well.</p> http://stackoverflow.com/questions/175293/unified-navigation-system-for-jsf-menus-breadcrumbs-sitemap 1 Unified Navigation System for JSF (menus, breadcrumbs, sitemap) Nicholas Trandem 2008-10-06T17:26:32Z 2008-10-06T17:26:32Z <p>We're using MyFaces, Richfaces &amp; Restfaces to build a website on top of Oracle Stellant CMS. We're not using Site Studio. Are there any widgets/combination of widgets out there that could provide a unified navigation system? The site structure needs to be read from a DB table and CMS metadata fields, and we need a top tab menu, an expandable sidebar menu, breadcrumbs, and a sitemap (bonus points if it uses the sitemaps.org standard). We're currently using a combination of autonomous hand-rolled and off-the shelf widgets that aren't interoperating very well - the different navigation features aren't staying in sync as the site is navigated.</p> http://stackoverflow.com/questions/140476/what-do-your-code-reviews-involve-and-what-patterns-are-successful/140561#140561 1 Answer by Nicholas Trandem for What do your code reviews involve and what patterns are successful? Nicholas Trandem 2008-09-26T16:31:20Z 2008-09-26T16:31:20Z <p>Using the <a href="http://code.google.com/p/jupiter-eclipse-plugin/" rel="nofollow">Eclipse Jupiter plugin</a> and following the process that it automates has worked very well for us. It's not too invasive or bureaucratic, but it still really helps for finding bugs and design problems.</p> http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation/123565#123565 0 Answer by Nicholas Trandem for A comprehensive regex for phone number validation Nicholas Trandem 2008-09-23T20:14:20Z 2008-09-23T20:14:20Z <p>Here's my best try so far. It handles the formats above but I'm sure I'm missing some other possible formats.</p> <pre><code>^\d?(?:(?:[\+]?(?:[\d]{1,3}(?:[ ]+|[\-.])))?[(]?(?:[\d]{3})[\-/)]?(?:[ ]+)?)?(?:[a-zA-Z2-9][a-zA-Z0-9 \-.]{6,})(?:(?:[ ]+|[xX]|(i:ext[\.]?)){1,2}(?:[\d]{1,5}))?$ </code></pre> http://stackoverflow.com/questions/94542/can-i-compose-a-spring-configuration-file-from-smaller-ones/94588#94588 7 Answer by Nicholas Trandem for Can I compose a Spring Configuration File from smaller ones? Nicholas Trandem 2008-09-18T17:18:16Z 2008-09-18T17:18:16Z <p>From the <a href="http://static.springframework.org/spring/docs/2.5.5/reference/beans.html#beans-definition" rel="nofollow">Spring Docs (v 2.5.5 Section 3.2.2.1.)</a>:</p> <blockquote> <p>It can often be useful to split up container definitions into multiple XML files. One way to then load an application context which is configured from all these XML fragments is to use the application context constructor which takes multiple Resource locations. With a bean factory, a bean definition reader can be used multiple times to read definitions from each file in turn.</p> <p>Generally, the Spring team prefers the above approach, since it keeps container configuration files unaware of the fact that they are being combined with others. An alternate approach is to use one or more occurrences of the element to load bean definitions from another file (or files). Let's look at a sample:</p> <p></p> <pre><code>&lt;import resource="services.xml"/&gt; &lt;import resource="resources/messageSource.xml"/&gt; &lt;import resource="/resources/themeSource.xml"/&gt; &lt;bean id="bean1" class="..."/&gt; &lt;bean id="bean2" class="..."/&gt; </code></pre> <p></p> <p>In this example, external bean definitions are being loaded from 3 files, services.xml, messageSource.xml, and themeSource.xml. All location paths are considered relative to the definition file doing the importing, so services.xml in this case must be in the same directory or classpath location as the file doing the importing, while messageSource.xml and themeSource.xml must be in a resources location below the location of the importing file. As you can see, a leading slash is actually ignored, but given that these are considered relative paths, it is probably better form not to use the slash at all. The contents of the files being imported must be valid XML bean definition files according to the Spring Schema or DTD, including the top level element.</p> </blockquote> http://stackoverflow.com/questions/16611/validation-patterns-for-custom-xml-documents/16714#16714 3 Answer by Nicholas Trandem for Validation Patterns for Custom XML Documents Nicholas Trandem 2008-08-19T18:43:18Z 2008-08-19T18:43:18Z <p>Whether you choose XSD and/or Schematron depends on what you are trying to validate. XSD is probably the most common validation strategy, but there are limits on what it can validate. If all you want to do is ensure that the right type of data is in each field, XSD should work for you. If you need to assert, for example, that the value of the &lt;small> element is less than the value of the &lt;big> element, or even more complex business rules involving multiple fields, you probably want Schematron or a hybrid approach.</p> http://stackoverflow.com/questions/16413/parse-usable-street-address-city-state-zip-from-a-string/16561#16561 4 Answer by Nicholas Trandem for Parse usable Street Address, City, State, Zip from a string Nicholas Trandem 2008-08-19T17:08:25Z 2008-08-19T17:08:25Z <p>I've been working in the address processing domain for about 5 years now, and there really is no silver bullet. The correct solution is going to depend on the value of the data. If it's not very valuable, throw it through a parser as the other answers suggest. If it's even somewhat valuable you'll definitely need to have a human evaluate/correct all the results of the parser. If you're looking for a fully automated, repeatable solution, you probably want to talk to a address correction vendor like Group1 or Trillium.</p> http://stackoverflow.com/questions/10925/input-validation-what-are-some-top-issues-to-look-out-for-and-lessons-you-have/11100#11100 0 Answer by Nicholas Trandem for Input Validation - What are some top issues to look out for, and lessons you have learned? Nicholas Trandem 2008-08-14T14:24:19Z 2008-08-14T14:24:19Z <p>I agree with what has been said about maintaining strict standards on input data, but I'd like to add that in the case of user input, strict validation must go hand-in-hand with appropriate and <strong>specific</strong> feedback to the user. For instance, if you decide that the only email addresses your system will accept as valid are \w+@\w+.\w{3}, then you need to make that clear to your users, both before they enter data (as a tool tip or text next to the field) and after they enter invalid data (e.g.: "abc+def@gmail.com" does not appear to be a valid email address. A valid address is of the form...).</p> <p>I purposefully chose email addresses for the above example to point out another hazard of strict validation: only accepting a subset of truly valid data. Always keep that in mind when developing a validation strategy, and consider adding mechanisms for users to challenge the validity ruling. Such mechanisms should be low-friction - if a user has to pick up the phone and call somebody to report it, most won't bother - and your organization should have a method for getting the reports into the hands of the developers so they can refine their validations.</p> http://stackoverflow.com/questions/8968/what-oss-project-should-i-look-at-if-i-need-to-do-spring-friendly-workflow/9698#9698 0 Answer by Nicholas Trandem for What OSS project should I look at if I need to do Spring friendly WorkFlow? Nicholas Trandem 2008-08-13T12:15:19Z 2008-08-13T12:15:19Z <p>We're looking at Drools/Guvnor, possibly integrated with jBPM (as in this <a href="http://www.firstpartners.net/blog/technology/java/2008/06/05/jboss-business-rules-and-jbpm-workflow-presentation-dublin/" rel="nofollow">presentation</a>), to add a workflow engine to our Spring/JEE app, but we're still in the very early phases of trying it out.</p> http://stackoverflow.com/questions/8569/whats-your-best-practice-for-the-first-java-ee-spring-project/8967#8967 1 Answer by Nicholas Trandem for What's your "best practice" for the first Java EE Spring project? Nicholas Trandem 2008-08-12T15:28:59Z 2008-08-12T15:28:59Z <p>If you're just looking to dabble in it a bit and see if you like it, I recommend starting with the DAO layer, using Spring's JDBC and/or Hibernate support. This will expose you to a lot of the core concepts, but do so in a way that is easy to isolate from the rest of your app. This is the route I followed, and it was good warm-up before getting into building a full application with Spring.</p> http://stackoverflow.com/questions/2913/how-to-test-web-code/7780#7780 1 Answer by Nicholas Trandem for How to Test Web Code? Nicholas Trandem 2008-08-11T13:30:32Z 2008-08-11T13:30:32Z <p>Here's my strategy (I use JUnit, but I'm sure there's a way to do the equivalent in PHP):</p> <p>I have a method that runs before all of the Unit Tests for a specific DAO class. It puts the dev database into a known state (adds all test data, etc.). As I run tests, I keep track of any data added to the known state. This data is cleaned up at the end of each test. After all the tests for the class have run, another method removes all the test data in the dev database, leaving it in the state it was in before the tests were run. It's a bit of work to do all this, but I usually write the methods in a DBTestCommon class where all of my DAO test classes can get to them.</p> http://stackoverflow.com/questions/3553/one-piece-of-advice/7769#7769 11 Answer by Nicholas Trandem for One piece of advice Nicholas Trandem 2008-08-11T13:20:12Z 2008-08-11T13:20:12Z <p>Keep learning! Strive to learn at least one new language, technique, methodology, or concept every year.</p> http://stackoverflow.com/questions/7702/technical-presentations-can-the-slides-work-without-bulleted-lists/7746#7746 0 Answer by Nicholas Trandem for Technical Presentations - Can the slides work without bulleted lists? Nicholas Trandem 2008-08-11T12:58:49Z 2008-08-11T12:58:49Z <p>I've given many presentations: to peers, to business users, to management, and the ones that have been best received are the ones where the slides have little to no text. The key is finding (or making) simple, memorable visualizations to express the idea you are trying to get across. Keep the bulleted lists in your notes, to remind you to hit all the relevant talking points. I've also found that using animation (sparingly) to emphasize data flow and/or state change can really aid the audience's understanding.</p> http://stackoverflow.com/questions/5119/what-are-the-best-rss-feeds-for-programmers-developers/6379#6379 3 Answer by Nicholas Trandem for What are the best RSS feeds for programmers/developers? Nicholas Trandem 2008-08-08T20:58:42Z 2008-08-08T20:58:42Z <p>To the excellent feeds above I would also add:</p> <ol> <li><a href="http://brucefwebster.com/feed/" rel="nofollow">Bruce F. Webster</a> - More process/methodology oriented but very good.</li> <li><a href="http://syndication.thedailywtf.com/TheDailyWtf" rel="nofollow">TheDailyWTF</a> - What not to do.</li> <li><a href="http://www.jroller.com/scolebourne/feed/entries/rss?cat=%2FJava" rel="nofollow">Stephen Colebourne's Weblog</a> - Especially good for Java 7 / closures.</li> <li><a href="http:///stuffthathappens.com/blog/feed/atom/" rel="nofollow">It's Just a Bunch of Stuff that Happens</a> - Hilarious.</li> </ol> http://stackoverflow.com/questions/6126/how-do-you-handle-huge-if-conditions/6148#6148 0 Answer by Nicholas Trandem for How do you handle huge if-conditions? Nicholas Trandem 2008-08-08T16:59:56Z 2008-08-08T16:59:56Z <p>I like to break them down by level, so I'd format you example like this:</p> <pre><code>if (var1 = true<br> &amp;&amp; var2 = true<br> &amp;&amp; var2 = true<br> &amp;&amp; var3 = true<br> &amp;&amp; var4 = true<br> &amp;&amp; var5 = true<br> &amp;&amp; var6 = true){<br></code></pre> <p>It's handy when you have more nesting, like this (obviously the real conditions would be more interesting than "= true" for everything):</p> <pre><code>if ((var1 = true &amp;&amp; var2 = true)<br> &amp;&amp; ((var2 = true &amp;&amp; var3 = true)<br> &amp;&amp; (var4 = true &amp;&amp; var5 = true))<br> &amp;&amp; (var6 = true)){<br></code></pre> http://stackoverflow.com/questions/3553/one-piece-of-advice/7769#7769 Comment by Nicholas Trandem on One piece of advice Nicholas Trandem 2009-02-13T23:12:27Z 2009-02-13T23:12:27Z If you can, more power to you! http://stackoverflow.com/questions/123559/a-comprehensive-regex-for-phone-number-validation/123681#123681 Comment by Nicholas Trandem on A comprehensive regex for phone number validation Nicholas Trandem 2008-09-23T20:46:47Z 2008-09-23T20:46:47Z Nice! I guess I was trying to design Complicator's Gloves (<a href="http://thedailywtf.com/Articles/The_Complicator_0x27_s_Gloves.aspx" rel="nofollow">thedailywtf.com/Articles/&hellip;</a>). This is much more elegant.