-
A typo in the code has broken the row button labels functionality. It really needs to check CLIP_ROW_LABELS rather than CLIP_COLUMN_LABELS because it's looking at row data.
2009-05-20 00:14:15 UTC in Xbae Widget Set
-
That will work unless you have a test with a name that has %20 in it, then you'll incorrectly turn that into a space. That's significantly less likely than a test with a space, so it looks like a net improvement, but not a complete solution.
2008-01-08 20:42:28 UTC in soapUI
-
When installing soapui-2.0-bin.zip, the shell scripts contained in soapui-2.0/bin are not marked executable. This makes it slightly more difficult to startup (you must say "sh soupui.sh" and breaks other things. For example when trying to start the testrunner you get:
directory: /home/jurka/xxx/installers/soapui-2.0/bin/.
command: sh -c ./testrunner.sh -sTestSuiteEvent -cTestCaseEvent...
2007-12-17 18:08:19 UTC in soapUI
-
Testing soupui 2.0 shows this output:
command: sh -c ./testrunner.sh -sTestSuiteEvent -cTestCase%20Event /home/jurka/xxxWebService/xxx-soapui-project.xml
10:56:49,964 INFO [SoapUITestCaseRunner] Running soapUI tests in project [xxx]
10:56:49,970 INFO [SoapUITestCaseRunner] Running soapUI suite [TestSuiteEvent], runType = SEQUENTIAL
10:56:49,971 INFO [SoapUITestCaseRunner] Skipping...
2007-12-17 18:00:23 UTC in soapUI
-
I have no reason to believe that using %20 would work unless you hacked up the argument parsing to recognize it as well. %20 is a URI escape and has nothing to do whatsoever with shell scripts. Testing on the command line with soupui 1.7.6 shows that this does not work.
It's difficult for me to suggest an exact fix because you need replicate the exact calling environment that the command is...
2007-12-17 17:04:18 UTC in soapUI
-
soupui fails to launch the testrunner for tests or suites that have spaces in their names.
Running soapUI TestRunner for [XXX]
directory: /home/jurka/xxx/soapui-1.7.6/bin/.
command: sh -c ./testrunner.sh \'-sTestSuite Event\' \'-cTestCase Event\' /home/jurka/xxx/yyyWebService/yyy-soapui-project.xml
Then it gives the testrunner help and says:
Missing soapUI project file.
On...
2007-12-10 04:36:05 UTC in soapUI
-
The version you've posted looks good. I've reported one last CPD (bug #1738453) and then it'll work completely for me out of the box.
2007-06-16 18:56:17 UTC in PMD
-
CPD writes informational messges to System.out as well as the output file. When using the XMLRenderer this produces an invalid XML file because the XML is preceded by the plain text messages.
See CPPTokenizer.java lines 32 and 35:
System.out.println("Added " + sourceCode.getFileName());
System.out.println("Skipping " + sourceCode.getFileName() + " due to parse error");
and CPD.java...
2007-06-16 18:53:59 UTC in PMD
-
It would be helpful to indicate that junit 4 is required in the error message. For people who just see that they have a version of junit.jar available they may think it's some kind of classpath problem instead of realizing that they need a newer version. Perhaps even an explicit check for junit3 would be warranted to provide the best information.
2007-02-22 16:58:03 UTC in PMD
-
Here's a patch that implements option #3 using the same report output encoding as the input encoding. It also adds an encoding attribute to CPDTask. If no encoding is specified it defaults to file.encoding.
http://www.ejurka.com/pmd/encoding.patch.
2007-02-12 05:48:37 UTC in PMD