Return-Path: Mailing-List: contact alexandria-dev-help@java.apache.org; run by ezmlm Delivered-To: mailing list alexandria-dev@java.apache.org Received: (qmail 5922 invoked from network); 8 Jan 2001 12:51:21 -0000 Received: from demon-gw.synamic.co.uk (HELO speedy.synamic.co.uk) (194.70.193.66) by h31.sny.collab.net with SMTP; 8 Jan 2001 12:51:21 -0000 Received: by speedy.synamic.co.uk with Internet Mail Service (5.5.2650.21) id ; Mon, 8 Jan 2001 12:46:25 -0000 Message-ID: From: Jeff Martin To: "'alexandria-dev@java.apache.org'" Subject: RE: [PATCH] W3C Candidate Recommendation 24 October 2000 Date: Mon, 8 Jan 2001 12:45:55 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N Oops, my dialup connection coughed whilst I was commiting the path, obviously missed this bit of it. I'll try and get it fixed sometime today. -----Original Message----- From: Sam Ruby [mailto:rubys@us.ibm.com] Sent: 08 January 2001 12:48 To: alexandria-dev@java.apache.org Subject: RE: [PATCH] W3C Candidate Recommendation 24 October 2000 Jeff Martin wrote: > > Sorted Sorted? It looks like my patch was incompletely applied, resulting in a build failure. Take a look at the following: http://oss.software.ibm.com/developerworks/opensource/jakarta/proto/alexandr ia.html Here's the relevant portion of the patch which is still outstanding: --- src/java/org/apache/alexandria/AggregateTests.java 2000/10/20 15:25:55 1.1 +++ src/java/org/apache/alexandria/AggregateTests.java 2001/01/07 01:07:54 @@ -98,10 +98,10 @@ time = suite.getTime().substring(0,suite.getTime().length()-4); run=suite.getTestcaseCount(); try{ - errors=Integer.parseInt(suite.getErrors()); + errors=suite.getErrors(); }catch(Exception e){} try{ - failures=Integer.parseInt(suite.getFailures()); + failures=suite.getFailures(); }catch(Exception e){} tests.addTestsuite(suite); } Further background: there were a number of places where the code generated by the schema differed from what was produced previously. The rule I tried to apply was to make the change which was less disruptive to the code. In these two cases only, I saw an opportunity to simplify the code to match the new schema produced. - Sam Ruby --------------------------------------------------------------------- To unsubscribe, e-mail: alexandria-dev-unsubscribe@java.apache.org For additional commands, e-mail: alexandria-dev-help@java.apache.org