You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(112) |
Nov
(44) |
Dec
(49) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(14) |
Feb
(12) |
Mar
(12) |
Apr
(12) |
May
(6) |
Jun
(11) |
Jul
(10) |
Aug
(6) |
Sep
(17) |
Oct
(3) |
Nov
(22) |
Dec
|
2008 |
Jan
(3) |
Feb
(7) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(1) |
Mar
(9) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(2) |
Dec
|
2011 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(3) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2012 |
Jan
(3) |
Feb
|
Mar
(2) |
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <zep...@us...> - 2007-03-20 23:32:26
|
Revision: 290 http://svn.sourceforge.net/pzfilereader/?rev=290&view=rev Author: zepernick Date: 2007-03-20 16:13:35 -0700 (Tue, 20 Mar 2007) Log Message: ----------- - converting xml map parser over to Reader - Removed parse(File) - Added parse(Reader) Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/xml/PZMapParser.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/xml/PZMapParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/xml/PZMapParser.java 2007-03-20 23:13:22 UTC (rev 289) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/xml/PZMapParser.java 2007-03-20 23:13:35 UTC (rev 290) @@ -35,6 +35,8 @@ import java.io.File; import java.io.IOException; import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.Reader; import java.util.ArrayList; import java.util.Iterator; import java.util.LinkedHashMap; @@ -73,35 +75,39 @@ } /** - * Reads the XMLDocument for a PZMap file. Parses the XML file, and returns - * a List of ColumnMetaData. + * Method based on InputStream. Reads the XMLDocument for a PZMap + * file from an InputStream, WebStart combatible. Parses the XML file, and + * returns a Map containing Lists of ColumnMetaData. * - * @param xmlFile - * XML file - * @return List of ColumnMetaData - * @throws Exception - * @deprecated + * @param xmlStream + * @return Map <records> with their corrisponding + * @throws IOException + * @throws JDOMException + * @deprecated please use parse(Reader) */ - public static Map parse(final File xmlFile) throws Exception { - final InputStream xmlStream = ParserUtils.createInputStream(xmlFile); - Map mdIndex = parse(xmlStream); - if (mdIndex == null) { - mdIndex = new LinkedHashMap(); + public static Map parse(final InputStream xmlStream) throws JDOMException, IOException { + InputStreamReader isr = null; + try { + isr = new InputStreamReader(xmlStream); + return parse(isr); + } finally { + if (isr != null) { + isr.close(); + } } - return mdIndex; } /** - * TODO New method based on InputStream. Reads the XMLDocument for a PZMap + * New method based on Reader. Reads the XMLDocument for a PZMap * file from an InputStream, WebStart combatible. Parses the XML file, and * returns a Map containing Lists of ColumnMetaData. * - * @param xmlStream + * @param xmlStreamReader * @return Map <records> with their corrisponding * @throws IOException * @throws JDOMException */ - public static Map parse(final InputStream xmlStream) throws JDOMException, IOException { + public static Map parse(final Reader xmlStreamReader) throws JDOMException, IOException { final SAXBuilder builder = new SAXBuilder(); builder.setValidation(true); // handle the ability to pull DTD from Jar if needed @@ -112,7 +118,7 @@ // not sure why this started to happen now. Was not making to // EntityResolver to pull // dtd out of the jar if needed - final Document document = builder.build(xmlStream, "file:///"); + final Document document = builder.build(xmlStreamReader, "file:///"); final Element root = document.getRootElement(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-03-20 23:13:21
|
Revision: 289 http://svn.sourceforge.net/pzfilereader/?rev=289&view=rev Author: zepernick Date: 2007-03-20 16:13:22 -0700 (Tue, 20 Mar 2007) Log Message: ----------- - converting xml map parser over to Reader - Removed parse(File) - Added parse(Reader) Modified Paths: -------------- trunk/src/site/changes.xml Modified: trunk/src/site/changes.xml =================================================================== --- trunk/src/site/changes.xml 2007-03-20 15:36:35 UTC (rev 288) +++ trunk/src/site/changes.xml 2007-03-20 23:13:22 UTC (rev 289) @@ -8,6 +8,8 @@ </properties> <body> <release version="3.1.0" date="in svn" description="Move to Maven and Subversion"> + <action dev="zepernick" type="change">Removed deprecated PZMapParser.parse(File). + Added PZMapParser.parse(Reader). Deprecated PZMapParser.parse(InputStream). </action> <action dev="zepernick" type="fix">Stopped column lookup from being case sensitive</action> <action dev="zepernick" type="change">Feature Request 1566626. Added setIgnoreExtraColumns() method to the PZParser. Added the ability to ignore extra columns/bytes from delimited & fixed width files. Data is truncated when it goes This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-03-20 15:36:38
|
Revision: 288 http://svn.sourceforge.net/pzfilereader/?rev=288&view=rev Author: zepernick Date: 2007-03-20 08:36:35 -0700 (Tue, 20 Mar 2007) Log Message: ----------- Stopped column lookup from being case sensitive Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java 2007-03-20 15:36:16 UTC (rev 287) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java 2007-03-20 15:36:35 UTC (rev 288) @@ -50,6 +50,7 @@ import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; +import java.util.Locale; import java.util.Map; import java.util.NoSuchElementException; import java.util.Properties; @@ -650,10 +651,11 @@ public static int getColumnIndex(final String key, final Map columnMD, final String colName) { int idx = -1; if (key != null && !key.equals(PZConstants.DETAIL_ID) && !key.equals(PZConstants.COL_IDX)) { - idx = ((XMLRecordElement) columnMD.get(key)).getColumnIndex(colName); + idx = ((XMLRecordElement) columnMD.get(key)).getColumnIndex(colName.toLowerCase( + Locale.getDefault())); } else if (key == null || key.equals(PZConstants.DETAIL_ID)) { final Map map = (Map) columnMD.get(PZConstants.COL_IDX); - final Integer i = (Integer) map.get(colName); + final Integer i = (Integer) map.get(colName.toLowerCase(Locale.getDefault())); if (i != null) { //happens when the col name does not exist in the mapping idx = i.intValue(); } @@ -765,7 +767,8 @@ int idx = 0; for (final Iterator it = columns.iterator(); it.hasNext(); idx++) { final ColumnMetaData meta = (ColumnMetaData) it.next(); - map.put(meta.getColName(), new Integer(idx)); + map.put(meta.getColName().toLowerCase( + Locale.getDefault()), new Integer(idx)); } } return map; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-03-20 15:36:21
|
Revision: 287 http://svn.sourceforge.net/pzfilereader/?rev=287&view=rev Author: zepernick Date: 2007-03-20 08:36:16 -0700 (Tue, 20 Mar 2007) Log Message: ----------- Stopped column lookup from being case sensitive Modified Paths: -------------- trunk/src/site/changes.xml Modified: trunk/src/site/changes.xml =================================================================== --- trunk/src/site/changes.xml 2007-03-10 18:14:44 UTC (rev 286) +++ trunk/src/site/changes.xml 2007-03-20 15:36:16 UTC (rev 287) @@ -8,6 +8,7 @@ </properties> <body> <release version="3.1.0" date="in svn" description="Move to Maven and Subversion"> + <action dev="zepernick" type="fix">Stopped column lookup from being case sensitive</action> <action dev="zepernick" type="change">Feature Request 1566626. Added setIgnoreExtraColumns() method to the PZParser. Added the ability to ignore extra columns/bytes from delimited & fixed width files. Data is truncated when it goes outside of the column definition.</action> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-03-10 18:14:43
|
Revision: 286 http://svn.sourceforge.net/pzfilereader/?rev=286&view=rev Author: zepernick Date: 2007-03-10 10:14:44 -0800 (Sat, 10 Mar 2007) Log Message: ----------- Feature Request 1566626. Added setIgnoreExtraColumns() method to the PZParser. Added the ability to ignore extra columns/bytes from delimited & fixed width files. Data is truncated when it goes outside of the column definition. Modified Paths: -------------- trunk/src/site/changes.xml Modified: trunk/src/site/changes.xml =================================================================== --- trunk/src/site/changes.xml 2007-03-10 18:14:27 UTC (rev 285) +++ trunk/src/site/changes.xml 2007-03-10 18:14:44 UTC (rev 286) @@ -7,7 +7,12 @@ <title>Changes</title> </properties> <body> - <release version="3.0.0" date="in svn" description="Move to Maven and Subversion"> + <release version="3.1.0" date="in svn" description="Move to Maven and Subversion"> + <action dev="zepernick" type="change">Feature Request 1566626. Added setIgnoreExtraColumns() method to the PZParser. + Added the ability to ignore extra columns/bytes from delimited & fixed width files. Data is truncated when it goes + outside of the column definition.</action> + </release> + <release version="3.0.0" date="2007-02-11" description="Move to Maven and Subversion"> <action dev="zepernick" type="change">Added new dependency, SLF4j. This is used to log parsing issues. SLF4j is a facade to the following loggers; log4j, jcl, nop, and jdk 1.4. See 3.0 User Doc for further instruction.</action> <action dev="zepernick" type="change">DataSet.getDate() will now return a null on empty Strings</action> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-03-10 18:14:26
|
Revision: 285 http://svn.sourceforge.net/pzfilereader/?rev=285&view=rev Author: zepernick Date: 2007-03-10 10:14:27 -0800 (Sat, 10 Mar 2007) Log Message: ----------- Feature Request 1566626. Added setIgnoreExtraColumns() method to the PZParser. Added the ability to ignore extra columns/bytes from delimited & fixed width files. Data is truncated when it goes outside of the column definition. Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractFixedLengthPZParser.java trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractPZParser.java trunk/PZFileReader/src/main/java/net/sf/pzfilereader/PZParser.java trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderDelimPZParser.java trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -177,24 +177,24 @@ continue; } - //TODO - //seems like we may want to try doing something like this. I have my reservations because - //it is possible that we don't get a "detail" id and this might generate NPE - //is it going to create too much overhead to do a null check here as well??? - //final int intialSize = ParserUtils.getColumnMetaData(PZConstants.DETAIL_ID, getColumnMD()).size(); // column values - final List columns = ParserUtils.splitLine(line, getDelimiter(), getQualifier(), PZConstants.SPLITLINE_SIZE_INIT); + List columns = ParserUtils.splitLine(line, getDelimiter(), getQualifier(), PZConstants.SPLITLINE_SIZE_INIT); final String mdkey = ParserUtils.getCMDKeyForDelimitedFile(getColumnMD(), columns); final List cmds = ParserUtils.getColumnMetaData(mdkey, getColumnMD()); final int columnCount = cmds.size(); - // DEBUG - - // Incorrect record length on line log the error. Line - // will not be included in the dataset + if (columns.size() > columnCount) { - // log the error - addError(ds, "TOO MANY COLUMNS WANTED: " + columnCount + " GOT: " + columns.size(), lineCount, 2); - continue; + // Incorrect record length on line log the error. Line + // will not be included in the dataset log the error + if (isIgnoreExtraColumns()) { + //user has choosen to ignore the fact that we have too many columns in the data from + //what the mapping has described. sublist the array to remove un-needed columns + columns = columns.subList(0, columnCount); + addError(ds, "TRUNCATED LINE TO CORRECT NUMBER OF COLUMNS", lineCount, 1); + } else { + addError(ds, "TOO MANY COLUMNS WANTED: " + columnCount + " GOT: " + columns.size(), lineCount, 2); + continue; + } } else if (columns.size() < columnCount) { if (isHandlingShortLines()) { // We can pad this line out Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractFixedLengthPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractFixedLengthPZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractFixedLengthPZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -129,12 +129,19 @@ final String mdkey = FixedWidthParserUtils.getCMDKey(getColumnMD(), line); final int recordLength = ((Integer) recordLengths.get(mdkey)).intValue(); - // Incorrect record length on line log the error. Line will not - // be included in the - // dataset if (line.length() > recordLength) { - addError(ds, "LINE TOO LONG. LINE IS " + line.length() + " LONG. SHOULD BE " + recordLength, lineCount, 2); - continue; + // Incorrect record length on line log the error. Line will not + // be included in the + // dataset + if (isIgnoreExtraColumns()) { + //user has choosen to ignore the fact that we have too many bytes in the fixed + //width file. Truncate the line to the correct length + line = line.substring(0, recordLength); + addError(ds, "TRUNCATED LINE TO CORRECT LENGTH", lineCount, 1); + } else { + addError(ds, "LINE TOO LONG. LINE IS " + line.length() + " LONG. SHOULD BE " + recordLength, lineCount, 2); + continue; + } } else if (line.length() < recordLength) { if (isHandlingShortLines()) { // We can pad this line out Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractPZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractPZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -38,12 +38,14 @@ import java.util.Map; /** - * @author xhensevb + * @author xhensevb * */ public abstract class AbstractPZParser implements PZParser { private boolean handlingShortLines = false; + + private boolean ignoreExtraColumns = false; private boolean initialised = false; @@ -91,6 +93,14 @@ public void setHandlingShortLines(final boolean handleShortLines) { this.handlingShortLines = handleShortLines; } + + public boolean isIgnoreExtraColumns() { + return ignoreExtraColumns; + } + + public void setIgnoreExtraColumns(boolean ignoreExtraColumns) { + this.ignoreExtraColumns = ignoreExtraColumns; + } public final DataSet parse() { if (!initialised) { Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/PZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/PZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/PZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -62,4 +62,20 @@ * producing an error */ void setHandlingShortLines(final boolean handleShortLines); + + /** + * + * @return true, detail lines with a length or column count > the mapping + * definition will be truncated and the reader will NOT register these + * lines as erros in the DataError collection. + */ + boolean isIgnoreExtraColumns(); + + /** + * + * @param ignoreExtraColumns when true, detail lines with a length or column + * count > the mapping definition will be truncated and the reader + * will NOT register these lines as erros in the DataError collection. + */ + void setIgnoreExtraColumns(final boolean ignoreExtraColumns); } Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderDelimPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderDelimPZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderDelimPZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -133,7 +133,7 @@ //is it going to create too much overhead to do a null check here as well??? //final int intialSize = ParserUtils.getColumnMetaData(PZConstants.DETAIL_ID, getColumnMD()).size(); // column values - final List columns = ParserUtils.splitLine(line, getDelimiter(), getQualifier(), PZConstants.SPLITLINE_SIZE_INIT); + List columns = ParserUtils.splitLine(line, getDelimiter(), getQualifier(), PZConstants.SPLITLINE_SIZE_INIT); final String mdkey = ParserUtils.getCMDKeyForDelimitedFile(getColumnMD(), columns); final List cmds = ParserUtils.getColumnMetaData(mdkey, getColumnMD()); final int columnCount = cmds.size(); @@ -142,9 +142,16 @@ // Incorrect record length on line log the error. Line // will not be included in the dataset if (columns.size() > columnCount) { - // log the error - addError(ds, "TOO MANY COLUMNS WANTED: " + columnCount + " GOT: " + columns.size(), getLineCount(), 2); - continue; + if (isIgnoreExtraColumns()) { + //user has choosen to ignore the fact that we have too many columns in the data from + //what the mapping has described. sublist the array to remove un-needed columns + columns = columns.subList(0, columnCount); + addError(ds, "TRUNCATED LINE TO CORRECT NUMBER OF COLUMNS", getLineCount(), 1); + } else { + //log the error + addError(ds, "TOO MANY COLUMNS WANTED: " + columnCount + " GOT: " + columns.size(), getLineCount(), 2); + continue; + } } else if (columns.size() < columnCount) { if (isHandlingShortLines()) { // We can pad this line out Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java 2007-02-18 19:47:54 UTC (rev 284) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java 2007-03-10 18:14:27 UTC (rev 285) @@ -116,12 +116,19 @@ final String mdkey = FixedWidthParserUtils.getCMDKey(getColumnMD(), line); final int recordLength = ((Integer) recordLengths.get(mdkey)).intValue(); - // Incorrect record length on line log the error. Line will not - // be included in the - // dataset if (line.length() > recordLength) { - addError(ds, "LINE TOO LONG. LINE IS " + line.length() + " LONG. SHOULD BE " + recordLength, lineCount, 2); - continue; + // Incorrect record length on line log the error. Line will not + // be included in the + // dataset + if (isIgnoreExtraColumns()) { + //user has choosen to ignore the fact that we have too many bytes in the fixed + //width file. Truncate the line to the correct length + line = line.substring(0, recordLength); + addError(ds, "TRUNCATED LINE TO CORRECT LENGTH", lineCount, 1); + } else { + addError(ds, "LINE TOO LONG. LINE IS " + line.length() + " LONG. SHOULD BE " + recordLength, lineCount, 2); + continue; + } } else if (line.length() < recordLength) { if (isHandlingShortLines()) { // We can pad this line out This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-18 19:47:55
|
Revision: 284 http://svn.sourceforge.net/pzfilereader/?rev=284&view=rev Author: zepernick Date: 2007-02-18 11:47:54 -0800 (Sun, 18 Feb 2007) Log Message: ----------- Removed Paths: ------------- pzfilereader/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-12 13:18:55
|
Revision: 283 http://svn.sourceforge.net/pzfilereader/?rev=283&view=rev Author: zepernick Date: 2007-02-12 05:18:52 -0800 (Mon, 12 Feb 2007) Log Message: ----------- Initial import. Added Paths: ----------- pzfilereader/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 22:55:30
|
Revision: 282 http://svn.sourceforge.net/pzfilereader/?rev=282&view=rev Author: benoitx Date: 2007-02-11 14:54:30 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Tagging 3.0.0 Added Paths: ----------- tags/3.0.0/PZFileReader/ tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt Removed Paths: ------------- tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt Copied: tags/3.0.0/PZFileReader (from rev 279, trunk) Deleted: tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt =================================================================== --- trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 21:25:21 UTC (rev 279) +++ tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt 2007-02-11 22:54:30 UTC (rev 282) @@ -1,52 +0,0 @@ -Paul Zepernick and ObjectLab are pleased to announce release 3.0.0 of -PZFileReader for Java 1.4+. - -Open Source flat file parser (CSV, Fixed Length, Custom) using XML -to configure formats. - -http://pzfilereader.sourceforge.net - -This is a major release with re-designed interfaces and performance gains -of, in some cases, SEVERAL order of magnitude. - -PZFileReader is released under the business friendly Apache License v2.0. - -It is available immediately for download via SourceForge or the Maven Central -Repository (both Maven 1 and Maven 2). The homepage has some very -quick examples. - -Alternatively, you can point your Maven 2 to this repository: -http://objectlabkit.sourceforge.net/m2-repo - -The library is small, lightweight and does not force you to adopt a -framework. - -The implementation is useful to any business that deal with flat files. -The library allow you to define an XML mapping (or in a database) of -the format of your file. Once this is done, the parsed data can be accessed -via a simple name lookup mechanism. - -It is our aim to publish at some point some well know file formats for -your immediate use. - -ObjectLab is not new to the open-source community having used numerous OS -projects, It has recently launched the ObjectLab Kit family, including: -- QALab (http://qalab.sourceforge.net), a tool that keeps track over-time - of the static analysis results from FindBugs, Checkstyle, PMD, Cobertura etc. -- DateCalculators (http://objectlabkit.sourceforge.net), a set of generic - lightweight and thread-safe Date calculators for Business and Finance. -- JTreeMap, (http://jtreemap.sourceforge.net), probably the only Java Open - Source implementation of treemap/heatmaps, available as a Swing or SWT - component. -- StatSVN, (http://www.statsvn.org), statistics for your Subversion repo. - -We would like to thanks our friends and colleagues for their help, -reviews and suggestions. - -Sorry for the long email... - -Feel free to pass on to people who may be interested. - -Enjoy!! - -Paul Zepernick and The ObjectLab Team (Benoit Xhenseval, Marcin Jekot) Copied: tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt (from rev 280, trunk/src/site/press/press-release-3.0.0.txt) =================================================================== --- tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt (rev 0) +++ tags/3.0.0/PZFileReader/src/site/press/press-release-3.0.0.txt 2007-02-11 22:54:30 UTC (rev 282) @@ -0,0 +1,53 @@ +Paul Zepernick and ObjectLab are pleased to announce release 3.0.0 of +PZFileReader for Java 1.4+. + +Open Source flat file parser (CSV, Fixed Length, Custom) using XML +to configure formats. + +http://pzfilereader.sourceforge.net + +This is a major release with re-designed interfaces and performance gains +of, in some cases, SEVERAL order of magnitude. Unfortunately, this release +is not backward compatible. + +PZFileReader is released under the business friendly Apache License v2.0. + +The library is small, lightweight and does not force you to adopt a +framework. + +The implementation is useful to any business that deal with flat files. +Not only it can parse very quickly some CSV or any-user defined delimiter, +this library can parse FIXED LENGTH files. + +The library allow you to define an XML mapping (or in a database) of +the format of your file. Once this is done, the parsed data can be accessed +via a simple name lookup mechanism. + +It is our aim to publish at some point some well know file formats for +your immediate use. Please contribute if you have some standard files... + +It is available for download via SourceForge or the Maven Central +Repository (both Maven 1 and Maven 2). The homepage has some very +quick examples. + +ObjectLab is not new to the open-source community having used numerous OS +projects, It has recently launched the ObjectLab Kit family, including: +- QALab (http://qalab.sourceforge.net), a tool that keeps track over-time + of the static analysis results from FindBugs, Checkstyle, PMD, Cobertura etc. +- DateCalculators (http://objectlabkit.sourceforge.net), a set of generic + lightweight and thread-safe Date calculators for Business and Finance. +- JTreeMap, (http://jtreemap.sourceforge.net), probably the only Java Open + Source implementation of treemap/heatmaps, available as a Swing or SWT + component. +- StatSVN, (http://www.statsvn.org), statistics for your Subversion repo. + +We would like to thanks our friends and colleagues for their help, +reviews and suggestions. + +Sorry for the long email... + +Feel free to pass on to people who may be interested. + +Enjoy!! + +Paul Zepernick and The ObjectLab Team (Benoit Xhenseval, Marcin Jekot) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 22:52:54
|
Revision: 281 http://svn.sourceforge.net/pzfilereader/?rev=281&view=rev Author: benoitx Date: 2007-02-11 14:52:39 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Tagging 3.0.0 Added Paths: ----------- tags/3.0.0/ Copied: tags/3.0.0 (from rev 280, trunk/PZFileReader) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 22:50:20
|
Revision: 280 http://svn.sourceforge.net/pzfilereader/?rev=280&view=rev Author: benoitx Date: 2007-02-11 14:50:19 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Last change before tagging. Modified Paths: -------------- trunk/src/site/press/press-release-3.0.0.txt Modified: trunk/src/site/press/press-release-3.0.0.txt =================================================================== --- trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 21:25:21 UTC (rev 279) +++ trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 22:50:19 UTC (rev 280) @@ -7,28 +7,29 @@ http://pzfilereader.sourceforge.net This is a major release with re-designed interfaces and performance gains -of, in some cases, SEVERAL order of magnitude. +of, in some cases, SEVERAL order of magnitude. Unfortunately, this release +is not backward compatible. PZFileReader is released under the business friendly Apache License v2.0. -It is available immediately for download via SourceForge or the Maven Central -Repository (both Maven 1 and Maven 2). The homepage has some very -quick examples. - -Alternatively, you can point your Maven 2 to this repository: -http://objectlabkit.sourceforge.net/m2-repo - The library is small, lightweight and does not force you to adopt a framework. The implementation is useful to any business that deal with flat files. +Not only it can parse very quickly some CSV or any-user defined delimiter, +this library can parse FIXED LENGTH files. + The library allow you to define an XML mapping (or in a database) of the format of your file. Once this is done, the parsed data can be accessed via a simple name lookup mechanism. It is our aim to publish at some point some well know file formats for -your immediate use. +your immediate use. Please contribute if you have some standard files... +It is available for download via SourceForge or the Maven Central +Repository (both Maven 1 and Maven 2). The homepage has some very +quick examples. + ObjectLab is not new to the open-source community having used numerous OS projects, It has recently launched the ObjectLab Kit family, including: - QALab (http://qalab.sourceforge.net), a tool that keeps track over-time This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 21:25:22
|
Revision: 279 http://svn.sourceforge.net/pzfilereader/?rev=279&view=rev Author: benoitx Date: 2007-02-11 13:25:21 -0800 (Sun, 11 Feb 2007) Log Message: ----------- added temporary repo. Modified Paths: -------------- trunk/src/site/press/press-release-3.0.0.txt Modified: trunk/src/site/press/press-release-3.0.0.txt =================================================================== --- trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 21:19:14 UTC (rev 278) +++ trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 21:25:21 UTC (rev 279) @@ -15,6 +15,9 @@ Repository (both Maven 1 and Maven 2). The homepage has some very quick examples. +Alternatively, you can point your Maven 2 to this repository: +http://objectlabkit.sourceforge.net/m2-repo + The library is small, lightweight and does not force you to adopt a framework. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 21:19:15
|
Revision: 278 http://svn.sourceforge.net/pzfilereader/?rev=278&view=rev Author: benoitx Date: 2007-02-11 13:19:14 -0800 (Sun, 11 Feb 2007) Log Message: ----------- tidy up press release and added a RSS feed for news. Modified Paths: -------------- trunk/PZFileReader/qalab.xml trunk/PZFileReaderSamples/qalab.xml trunk/src/site/index.xml trunk/src/site/press/index.xml Added Paths: ----------- trunk/src/site/news.rss trunk/src/site/press/press-release-2.3.0.txt trunk/src/site/press/press-release-3.0.0.txt Removed Paths: ------------- trunk/src/site/press/press-release-2.3.0.txt Modified: trunk/PZFileReader/qalab.xml =================================================================== --- trunk/PZFileReader/qalab.xml 2007-02-11 20:10:10 UTC (rev 277) +++ trunk/PZFileReader/qalab.xml 2007-02-11 21:19:14 UTC (rev 278) @@ -189,6 +189,16 @@ project="default" statvalue="35" type="cobertura-branch"/> <summaryresult date="2007-01-18" filecount="3" module="default" project="default" statvalue="4" type="pmd"/> + <summaryresult date="2007-02-11" filecount="42" module="default" + project="default" statvalue="9" type="checkstyle"/> + <summaryresult date="2007-02-11" filecount="5" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2007-02-11" filecount="35" module="default" + project="default" statvalue="27" type="cobertura-line"/> + <summaryresult date="2007-02-11" filecount="35" module="default" + project="default" statvalue="36" type="cobertura-branch"/> + <summaryresult date="2007-02-11" filecount="2" module="default" + project="default" statvalue="2" type="pmd"/> </summary> <file id="default-default-com_pz_reader_ordering_package.html" module="default" path="com/pz/reader/ordering/package.html" project="default"> @@ -511,6 +521,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DataSet.java" module="default" path="net/sf/pzfilereader/DataSet.java" project="default"> @@ -548,6 +559,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_LargeDataSet.java" module="default" path="net/sf/pzfilereader/LargeDataSet.java" project="default"> @@ -620,6 +633,9 @@ <result date="2007-01-18" statvalue="4" type="checkstyle"/> <result date="2007-01-18" statvalue="53" type="cobertura-line"/> <result date="2007-01-18" statvalue="64" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="4" type="checkstyle"/> + <result date="2007-02-11" statvalue="54" type="cobertura-line"/> + <result date="2007-02-11" statvalue="64" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_xml_PZMapParser.java" module="default" path="net/sf/pzfilereader/xml/PZMapParser.java" project="default"> @@ -676,6 +692,7 @@ <result date="2006-12-16" statvalue="42" type="cobertura-line"/> <result date="2006-12-16" statvalue="33" type="cobertura-branch"/> <result date="2007-01-18" statvalue="45" type="cobertura-line"/> + <result date="2007-02-11" statvalue="45" type="cobertura-line"/> </file> <file id="default-default-net_sf_pzfilereader_structure_ColumnMetaData.java" @@ -699,6 +716,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="66" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="66" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_Version.java" module="default" path="net/sf/pzfilereader/Version.java" project="default"> @@ -711,6 +730,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_xml_XMLRecordElement.java" @@ -729,6 +749,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_AbstractDelimiterPZParser.java" @@ -753,6 +774,9 @@ <result date="2007-01-18" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="56" type="cobertura-line"/> <result date="2007-01-18" statvalue="66" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="3" type="checkstyle"/> + <result date="2007-02-11" statvalue="56" type="cobertura-line"/> + <result date="2007-02-11" statvalue="66" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DelimiterPZParser.java" @@ -771,6 +795,8 @@ <result date="2006-12-16" statvalue="75" type="cobertura-branch"/> <result date="2007-01-18" statvalue="37" type="cobertura-line"/> <result date="2007-01-18" statvalue="75" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="37" type="cobertura-line"/> + <result date="2007-02-11" statvalue="75" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_FixedLengthPZParser.java" @@ -812,6 +838,7 @@ <result date="2006-12-16" statvalue="2" type="pmd"/> <result date="2007-01-18" statvalue="2" type="checkstyle"/> <result date="2007-01-18" statvalue="2" type="pmd"/> + <result date="2007-02-11" statvalue="2" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_util_FixedWidthParserUtils.java" @@ -832,6 +859,8 @@ <result date="2006-12-16" statvalue="16" type="cobertura-branch"/> <result date="2007-01-18" statvalue="30" type="cobertura-line"/> <result date="2007-01-18" statvalue="16" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="30" type="cobertura-line"/> + <result date="2007-02-11" statvalue="16" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_util_RegExParser.java" module="default" @@ -873,6 +902,8 @@ <result date="2006-12-16" statvalue="50" type="cobertura-branch"/> <result date="2007-01-18" statvalue="43" type="cobertura-line"/> <result date="2007-01-18" statvalue="50" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="43" type="cobertura-line"/> + <result date="2007-02-11" statvalue="50" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DefaultDataSet.java" module="default" path="net/sf/pzfilereader/DefaultDataSet.java" project="default"> @@ -889,6 +920,8 @@ <result date="2006-12-16" statvalue="12" type="cobertura-branch"/> <result date="2007-01-18" statvalue="22" type="cobertura-line"/> <result date="2007-01-18" statvalue="11" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="22" type="cobertura-line"/> + <result date="2007-02-11" statvalue="11" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DefaultPZParserFactory.java" @@ -904,6 +937,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="33" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="33" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_PZParser.java" module="default" path="net/sf/pzfilereader/PZParser.java" project="default"> @@ -917,6 +952,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_PZParserFactory.java" module="default" path="net/sf/pzfilereader/PZParserFactory.java" project="default"> @@ -930,6 +967,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_InitialisationException.java" @@ -940,6 +979,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_package.html" @@ -959,6 +999,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertBigDecimal.java" @@ -971,6 +1013,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_PZConvertException.java" @@ -980,6 +1024,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_brparse_package.html" module="default" path="net/sf/pzfilereader/brparse/package.html" project="default"> @@ -1007,6 +1052,7 @@ <result date="2006-12-15" statvalue="6" type="pmd"/> <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertDouble.java" @@ -1018,6 +1064,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertInteger.java" @@ -1029,6 +1077,8 @@ <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-line"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-line"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_brparse_BuffReaderPZParseFactory.java" @@ -1037,6 +1087,7 @@ <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> + <result date="2007-02-11" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_brparse_BuffReaderPZDataSet.java" @@ -1048,5 +1099,6 @@ path="net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java" project="default"> <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> </qalab> Modified: trunk/PZFileReaderSamples/qalab.xml =================================================================== --- trunk/PZFileReaderSamples/qalab.xml 2007-02-11 20:10:10 UTC (rev 277) +++ trunk/PZFileReaderSamples/qalab.xml 2007-02-11 21:19:14 UTC (rev 278) @@ -93,6 +93,14 @@ project="default" statvalue="92" type="simian"/> <summaryresult date="2007-01-18" filecount="10" module="default" project="default" statvalue="10" type="pmd"/> + <summaryresult date="2007-02-11" filecount="34" module="default" + project="default" statvalue="163" type="checkstyle"/> + <summaryresult date="2007-02-11" filecount="8" module="default" + project="default" statvalue="12" type="findbugs"/> + <summaryresult date="2007-02-11" filecount="6" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2007-02-11" filecount="10" module="default" + project="default" statvalue="10" type="pmd"/> </summary> <file id="default-default-com_pz_reader_examples_numericsanddates_package.html" @@ -305,6 +313,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_largecsvperformancetest_package.html" @@ -318,6 +327,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_multilinedelimitedrecord_package.html" @@ -331,6 +341,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_numericsanddates_package.html" @@ -344,6 +355,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimitedcolumnnamesinfile_package.html" @@ -357,6 +369,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumns_package.html" @@ -370,6 +383,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_exporttoexcel_package.html" @@ -383,6 +397,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_fixedlengthdynamiccolumns_package.html" @@ -396,6 +411,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_createsamplecsv_package.html" @@ -409,6 +425,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthdynamiccolumns_package.html" @@ -422,6 +439,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_delimiteddynamiccolumns_package.html" @@ -435,6 +453,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvperformancetest_package.html" @@ -448,6 +467,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_lowlevelparse_package.html" @@ -461,6 +481,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumnswitherrors_package.html" @@ -474,6 +495,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthheaderandtrailer_package.html" @@ -487,6 +509,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvheaderandtrailer_package.html" @@ -500,6 +523,7 @@ <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-12-16" statvalue="1" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_Examples.java" @@ -520,6 +544,8 @@ <result date="2006-12-16" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="14" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-02-11" statvalue="14" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_createsamplecsv_CSVTestFileCreator.java" @@ -549,6 +575,9 @@ <result date="2007-01-18" statvalue="7" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="7" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="findbugs"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvheaderandtrailer_CSVHeaderAndTrailer.java" @@ -562,6 +591,7 @@ <result date="2006-11-22" statvalue="17" type="checkstyle"/> <result date="2006-12-16" statvalue="17" type="checkstyle"/> <result date="2007-01-18" statvalue="17" type="checkstyle"/> + <result date="2007-02-11" statvalue="17" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvperformancetest_CSVPerformanceTest.java" @@ -587,6 +617,9 @@ <result date="2007-01-18" statvalue="17" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="17" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="findbugs"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimitedcolumnnamesinfile_DelimitedColumnNamesInFile.java" @@ -605,6 +638,7 @@ <result date="2006-12-16" statvalue="7" type="checkstyle"/> <result date="2006-12-16" statvalue="2" type="pmd"/> <result date="2007-01-18" statvalue="5" type="checkstyle"/> + <result date="2007-02-11" statvalue="5" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumns_DelimitedWithPZMap.java" @@ -622,6 +656,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="14" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="14" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumnswitherrors_DelimitedWithPZMapErrors.java" @@ -639,6 +675,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="14" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="14" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_exporttoexcel_DelimitedFileExportToExcel.java" @@ -656,6 +694,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="4" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="4" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthdynamiccolumns_FixedLengthWithPZMap.java" @@ -673,6 +713,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="4" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="4" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthheaderandtrailer_FixedLengthHeaderAndTrailer.java" @@ -690,6 +732,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="18" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="18" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_delimiteddynamiccolumns_LargeDelimitedWithPZMap.java" @@ -707,6 +751,8 @@ <result date="2006-12-16" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="4" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-02-11" statvalue="4" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_fixedlengthdynamiccolumns_LargeFixedLengthWithPZMap.java" @@ -724,6 +770,8 @@ <result date="2006-12-16" statvalue="1" type="findbugs"/> <result date="2007-01-18" statvalue="3" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-02-11" statvalue="3" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_largecsvperformancetest_CSVLarge.java" @@ -745,6 +793,8 @@ <result date="2006-12-16" statvalue="3" type="findbugs"/> <result date="2007-01-18" statvalue="9" type="checkstyle"/> <result date="2007-01-18" statvalue="3" type="findbugs"/> + <result date="2007-02-11" statvalue="9" type="checkstyle"/> + <result date="2007-02-11" statvalue="3" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_lowlevelparse_LowLevelParse.java" @@ -774,6 +824,9 @@ <result date="2007-01-18" statvalue="5" type="checkstyle"/> <result date="2007-01-18" statvalue="2" type="findbugs"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="5" type="checkstyle"/> + <result date="2007-02-11" statvalue="2" type="findbugs"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_multilinedelimitedrecord_DelimitedMultiLine.java" @@ -791,6 +844,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="5" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="5" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_numericsanddates_NumericsAndDates.java" @@ -808,6 +863,8 @@ <result date="2006-12-16" statvalue="1" type="pmd"/> <result date="2007-01-18" statvalue="7" type="checkstyle"/> <result date="2007-01-18" statvalue="1" type="pmd"/> + <result date="2007-02-11" statvalue="7" type="checkstyle"/> + <result date="2007-02-11" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_ConsoleMenu.java" @@ -821,5 +878,6 @@ <result date="2006-11-22" statvalue="2" type="findbugs"/> <result date="2006-12-16" statvalue="2" type="findbugs"/> <result date="2007-01-18" statvalue="2" type="findbugs"/> + <result date="2007-02-11" statvalue="2" type="findbugs"/> </file> </qalab> Modified: trunk/src/site/index.xml =================================================================== --- trunk/src/site/index.xml 2007-02-11 20:10:10 UTC (rev 277) +++ trunk/src/site/index.xml 2007-02-11 21:19:14 UTC (rev 278) @@ -20,6 +20,11 @@ </head> <body> <!-- The body of the document contains a number of sections --> + <section name="StatSVN News"> + <p>Get the RSS feed of the news <a href="news.rss"><img src="images/rss.png"></img></a></p> + <p>Feb 11, 2007: PZFileReader 3.0.0 is released, new interfaces (not backward compatible) but great performance improvements (order of magnitude).</p> + </section> + <section name="PZFileReader Introduction"> <p>PZFileReader came out of the frustration of having to mix file parsing logic with business logic.</p> Added: trunk/src/site/news.rss =================================================================== --- trunk/src/site/news.rss (rev 0) +++ trunk/src/site/news.rss 2007-02-11 21:19:14 UTC (rev 278) @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> + +<rss version="1.0"> + <channel> + <title>PZFileReader News</title> + <link>http://pzfilereader.sourceforge.net</link> + <description>PZFileReader News</description> + <language>en-us</language> + <copyright>Copyright 2007 PZFileReader Sourceforge Development Group & ObjectLab</copyright> + + <item> + <title>PZFileReader 3.0.0 is released.</title> + <description><![CDATA[ +<p>This is a major release with new interfaces and massive performance gains (orders of magnitude).</p> + ]]></description> + </item> + + </channel> +</rss> \ No newline at end of file Modified: trunk/src/site/press/index.xml =================================================================== --- trunk/src/site/press/index.xml 2007-02-11 20:10:10 UTC (rev 277) +++ trunk/src/site/press/index.xml 2007-02-11 21:19:14 UTC (rev 278) @@ -19,7 +19,7 @@ </head> <body> <!-- The body of the document contains a number of sections --> - <section name="Release 2.3.0. Oct 2006"> + <section name="Release 3.0.0. Feb 2007"> <p> @@ -27,7 +27,7 @@ <subsection name="On the web"> <ul> - <li><a href="press-release-2.3.0.txt">Oct 2006 'press' release</a></li> + <li><a href="press-release-3.0.0.txt">Feb 2007 'press' release</a></li> </ul> </subsection> Deleted: trunk/src/site/press/press-release-2.3.0.txt =================================================================== --- trunk/src/site/press/press-release-2.3.0.txt 2007-02-11 20:10:10 UTC (rev 277) +++ trunk/src/site/press/press-release-2.3.0.txt 2007-02-11 21:19:14 UTC (rev 278) @@ -1,46 +0,0 @@ -Paul Zepernick and ObjectLab are pleased to announce release 2.3.0 of -PZFileReader for Java 1.4+. - -Open Source flat file parser (CSV, Fixed Length, Custom) using XML -to configure formats. - -http://pzfilereader.sourceforge.net - -PZFileReader is released under the business friendly Apache License v2.0. - -It is available immediately for download via SourceForge or the Maven Central -Repository (both Maven 1 and Maven 2). The homepage has some very -quick examples. - -The library is small, lightweight and does not force you to adopt a -framework. - -The implementation is useful to any business that deal with flat files. -The library allow you to define an XML mapping (or in a database) of -the format of your file. Once this is done, the parsed data can be accessed -via a simple name lookup mechanism. - -It is our aim to publish at some point some well know file formats for -your immediate use. - -ObjectLab is not new to the open-source community having used numerous OS -projects, It has recently launched the ObjectLab Kit family, including: -- QALab (http://qalab.sourceforge.net), a tool that keeps track over-time - of the static analysis results from FindBugs, Checkstyle, PMD, Cobertura etc. -- DateCalculators (http://objectlabkit.sourceforge.net), a set of generic - lightweight and thread-safe Date calculators for Business and Finance. -- JTreeMap, (http://jtreemap.sourceforge.net), probably the only Java Open - Source implementation of treemap/heatmaps, available as a Swing or SWT - component. - -We would like to thanks our friends and colleagues at XXXX for their help, -reviews and suggestions. - -Sorry for the long email... - -Feel free to pass on to people who may be interested. - -Enjoy!! - -Paul Zepernick and The ObjectLab Team (Benoit Xhenseval, Marcin Jekot) - Added: trunk/src/site/press/press-release-2.3.0.txt =================================================================== --- trunk/src/site/press/press-release-2.3.0.txt (rev 0) +++ trunk/src/site/press/press-release-2.3.0.txt 2007-02-11 21:19:14 UTC (rev 278) @@ -0,0 +1,46 @@ +Paul Zepernick and ObjectLab are pleased to announce release 2.3.0 of +PZFileReader for Java 1.4+. + +Open Source flat file parser (CSV, Fixed Length, Custom) using XML +to configure formats. + +http://pzfilereader.sourceforge.net + +PZFileReader is released under the business friendly Apache License v2.0. + +It is available immediately for download via SourceForge or the Maven Central +Repository (both Maven 1 and Maven 2). The homepage has some very +quick examples. + +The library is small, lightweight and does not force you to adopt a +framework. + +The implementation is useful to any business that deal with flat files. +The library allow you to define an XML mapping (or in a database) of +the format of your file. Once this is done, the parsed data can be accessed +via a simple name lookup mechanism. + +It is our aim to publish at some point some well know file formats for +your immediate use. + +ObjectLab is not new to the open-source community having used numerous OS +projects, It has recently launched the ObjectLab Kit family, including: +- QALab (http://qalab.sourceforge.net), a tool that keeps track over-time + of the static analysis results from FindBugs, Checkstyle, PMD, Cobertura etc. +- DateCalculators (http://objectlabkit.sourceforge.net), a set of generic + lightweight and thread-safe Date calculators for Business and Finance. +- JTreeMap, (http://jtreemap.sourceforge.net), probably the only Java Open + Source implementation of treemap/heatmaps, available as a Swing or SWT + component. + +We would like to thanks our friends and colleagues at XXXX for their help, +reviews and suggestions. + +Sorry for the long email... + +Feel free to pass on to people who may be interested. + +Enjoy!! + +Paul Zepernick and The ObjectLab Team (Benoit Xhenseval, Marcin Jekot) + Added: trunk/src/site/press/press-release-3.0.0.txt =================================================================== --- trunk/src/site/press/press-release-3.0.0.txt (rev 0) +++ trunk/src/site/press/press-release-3.0.0.txt 2007-02-11 21:19:14 UTC (rev 278) @@ -0,0 +1,49 @@ +Paul Zepernick and ObjectLab are pleased to announce release 3.0.0 of +PZFileReader for Java 1.4+. + +Open Source flat file parser (CSV, Fixed Length, Custom) using XML +to configure formats. + +http://pzfilereader.sourceforge.net + +This is a major release with re-designed interfaces and performance gains +of, in some cases, SEVERAL order of magnitude. + +PZFileReader is released under the business friendly Apache License v2.0. + +It is available immediately for download via SourceForge or the Maven Central +Repository (both Maven 1 and Maven 2). The homepage has some very +quick examples. + +The library is small, lightweight and does not force you to adopt a +framework. + +The implementation is useful to any business that deal with flat files. +The library allow you to define an XML mapping (or in a database) of +the format of your file. Once this is done, the parsed data can be accessed +via a simple name lookup mechanism. + +It is our aim to publish at some point some well know file formats for +your immediate use. + +ObjectLab is not new to the open-source community having used numerous OS +projects, It has recently launched the ObjectLab Kit family, including: +- QALab (http://qalab.sourceforge.net), a tool that keeps track over-time + of the static analysis results from FindBugs, Checkstyle, PMD, Cobertura etc. +- DateCalculators (http://objectlabkit.sourceforge.net), a set of generic + lightweight and thread-safe Date calculators for Business and Finance. +- JTreeMap, (http://jtreemap.sourceforge.net), probably the only Java Open + Source implementation of treemap/heatmaps, available as a Swing or SWT + component. +- StatSVN, (http://www.statsvn.org), statistics for your Subversion repo. + +We would like to thanks our friends and colleagues for their help, +reviews and suggestions. + +Sorry for the long email... + +Feel free to pass on to people who may be interested. + +Enjoy!! + +Paul Zepernick and The ObjectLab Team (Benoit Xhenseval, Marcin Jekot) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-02-11 20:10:15
|
Revision: 277 http://svn.sourceforge.net/pzfilereader/?rev=277&view=rev Author: benoitx Date: 2007-02-11 12:10:10 -0800 (Sun, 11 Feb 2007) Log Message: ----------- Relocated code to https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/trunk this is due to a SF bug when tagging. Modified Paths: -------------- trunk/PZFileReader/project.xml trunk/PZFileReader/qalab.xml trunk/PZFileReaderSamples/qalab.xml trunk/common-build/project.xml trunk/statsvn.bat Modified: trunk/PZFileReader/project.xml =================================================================== --- trunk/PZFileReader/project.xml 2007-02-06 14:45:14 UTC (rev 276) +++ trunk/PZFileReader/project.xml 2007-02-11 20:10:10 UTC (rev 277) @@ -34,10 +34,10 @@ </description> <repository> <connection> - scm:svn:https://svn.sourceforge.net/svnroot/pzfilereader/trunk/PZFileReader + scm:svn:https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/trunk/PZFileReader </connection> <developerConnection> - scm:svn:https://svn.sourceforge.net/svnroot/pzfilereader/trunk/PZFileReader + scm:svn:https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/trunk/PZFileReader </developerConnection> </repository> <dependencies /> Modified: trunk/PZFileReader/qalab.xml =================================================================== --- trunk/PZFileReader/qalab.xml 2007-02-06 14:45:14 UTC (rev 276) +++ trunk/PZFileReader/qalab.xml 2007-02-11 20:10:10 UTC (rev 277) @@ -165,6 +165,30 @@ project="default" statvalue="37" type="cobertura-branch"/> <summaryresult date="2006-12-15" filecount="6" module="default" project="default" statvalue="15" type="pmd"/> + <summaryresult date="2006-12-16" filecount="42" module="default" + project="default" statvalue="12" type="checkstyle"/> + <summaryresult date="2006-12-16" filecount="1" module="default" + project="default" statvalue="1" type="findbugs"/> + <summaryresult date="2006-12-16" filecount="5" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2006-12-16" filecount="36" module="default" + project="default" statvalue="31" type="cobertura-line"/> + <summaryresult date="2006-12-16" filecount="36" module="default" + project="default" statvalue="47" type="cobertura-branch"/> + <summaryresult date="2006-12-16" filecount="3" module="default" + project="default" statvalue="4" type="pmd"/> + <summaryresult date="2007-01-18" filecount="42" module="default" + project="default" statvalue="9" type="checkstyle"/> + <summaryresult date="2007-01-18" filecount="1" module="default" + project="default" statvalue="1" type="findbugs"/> + <summaryresult date="2007-01-18" filecount="5" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2007-01-18" filecount="35" module="default" + project="default" statvalue="27" type="cobertura-line"/> + <summaryresult date="2007-01-18" filecount="35" module="default" + project="default" statvalue="35" type="cobertura-branch"/> + <summaryresult date="2007-01-18" filecount="3" module="default" + project="default" statvalue="4" type="pmd"/> </summary> <file id="default-default-com_pz_reader_ordering_package.html" module="default" path="com/pz/reader/ordering/package.html" project="default"> @@ -485,6 +509,8 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="3" type="checkstyle"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DataSet.java" module="default" path="net/sf/pzfilereader/DataSet.java" project="default"> @@ -518,6 +544,10 @@ <result date="2006-11-22" statvalue="13" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_LargeDataSet.java" module="default" path="net/sf/pzfilereader/LargeDataSet.java" project="default"> @@ -584,6 +614,12 @@ <result date="2006-12-15" statvalue="51" type="cobertura-line"/> <result date="2006-12-15" statvalue="60" type="cobertura-branch"/> <result date="2006-12-15" statvalue="2" type="pmd"/> + <result date="2006-12-16" statvalue="4" type="checkstyle"/> + <result date="2006-12-16" statvalue="60" type="cobertura-line"/> + <result date="2006-12-16" statvalue="68" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="4" type="checkstyle"/> + <result date="2007-01-18" statvalue="53" type="cobertura-line"/> + <result date="2007-01-18" statvalue="64" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_xml_PZMapParser.java" module="default" path="net/sf/pzfilereader/xml/PZMapParser.java" project="default"> @@ -607,6 +643,7 @@ <result date="2006-11-22" statvalue="1" type="pmd"/> <result date="2006-12-15" statvalue="3" type="checkstyle"/> <result date="2006-12-15" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="3" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_xml_ResolveLocalDTD.java" @@ -636,6 +673,9 @@ <result date="2006-11-22" statvalue="43" type="cobertura-line"/> <result date="2006-12-15" statvalue="1" type="findbugs"/> <result date="2006-12-15" statvalue="36" type="cobertura-line"/> + <result date="2006-12-16" statvalue="42" type="cobertura-line"/> + <result date="2006-12-16" statvalue="33" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="45" type="cobertura-line"/> </file> <file id="default-default-net_sf_pzfilereader_structure_ColumnMetaData.java" @@ -655,6 +695,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="66" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="66" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="66" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_Version.java" module="default" path="net/sf/pzfilereader/Version.java" project="default"> @@ -665,6 +709,8 @@ <result date="2006-11-02" statvalue="100" type="cobertura-branch"/> <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_xml_XMLRecordElement.java" @@ -681,6 +727,8 @@ <result date="2006-11-02" statvalue="100" type="cobertura-branch"/> <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_AbstractDelimiterPZParser.java" @@ -697,6 +745,14 @@ <result date="2006-12-15" statvalue="52" type="cobertura-line"/> <result date="2006-12-15" statvalue="60" type="cobertura-branch"/> <result date="2006-12-15" statvalue="2" type="pmd"/> + <result date="2006-12-16" statvalue="3" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="63" type="cobertura-line"/> + <result date="2006-12-16" statvalue="73" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="3" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="56" type="cobertura-line"/> + <result date="2007-01-18" statvalue="66" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DelimiterPZParser.java" @@ -711,6 +767,10 @@ <result date="2006-12-15" statvalue="1" type="checkstyle"/> <result date="2006-12-15" statvalue="37" type="cobertura-line"/> <result date="2006-12-15" statvalue="75" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="37" type="cobertura-line"/> + <result date="2006-12-16" statvalue="75" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="37" type="cobertura-line"/> + <result date="2007-01-18" statvalue="75" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_FixedLengthPZParser.java" @@ -748,6 +808,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="2" type="checkstyle"/> + <result date="2006-12-16" statvalue="2" type="pmd"/> + <result date="2007-01-18" statvalue="2" type="checkstyle"/> + <result date="2007-01-18" statvalue="2" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_util_FixedWidthParserUtils.java" @@ -764,6 +828,10 @@ <result date="2006-12-15" statvalue="1" type="findbugs"/> <result date="2006-12-15" statvalue="30" type="cobertura-line"/> <result date="2006-12-15" statvalue="16" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="24" type="cobertura-line"/> + <result date="2006-12-16" statvalue="16" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="30" type="cobertura-line"/> + <result date="2007-01-18" statvalue="16" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_util_RegExParser.java" module="default" @@ -801,6 +869,10 @@ <result date="2006-11-22" statvalue="50" type="cobertura-branch"/> <result date="2006-12-15" statvalue="43" type="cobertura-line"/> <result date="2006-12-15" statvalue="50" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="43" type="cobertura-line"/> + <result date="2006-12-16" statvalue="50" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="43" type="cobertura-line"/> + <result date="2007-01-18" statvalue="50" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DefaultDataSet.java" module="default" path="net/sf/pzfilereader/DefaultDataSet.java" project="default"> @@ -813,6 +885,10 @@ <result date="2006-12-15" statvalue="22" type="cobertura-line"/> <result date="2006-12-15" statvalue="12" type="cobertura-branch"/> <result date="2006-12-15" statvalue="2" type="pmd"/> + <result date="2006-12-16" statvalue="23" type="cobertura-line"/> + <result date="2006-12-16" statvalue="12" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="22" type="cobertura-line"/> + <result date="2007-01-18" statvalue="11" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_DefaultPZParserFactory.java" @@ -824,6 +900,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="33" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="33" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="33" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_PZParser.java" module="default" path="net/sf/pzfilereader/PZParser.java" project="default"> @@ -833,6 +913,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_PZParserFactory.java" module="default" path="net/sf/pzfilereader/PZParserFactory.java" project="default"> @@ -842,6 +926,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_InitialisationException.java" @@ -850,6 +938,8 @@ <result date="2006-11-02" statvalue="100" type="cobertura-branch"/> <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_package.html" @@ -865,6 +955,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertBigDecimal.java" @@ -873,6 +967,10 @@ <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_PZConvertException.java" @@ -880,6 +978,8 @@ path="net/sf/pzfilereader/converter/PZConvertException.java" project="default"> <result date="2006-11-22" statvalue="100" type="cobertura-branch"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_brparse_package.html" module="default" path="net/sf/pzfilereader/brparse/package.html" project="default"> @@ -905,6 +1005,8 @@ path="net/sf/pzfilereader/brparse/BuffReaderDelimPZParser.java" project="default"> <result date="2006-12-15" statvalue="3" type="checkstyle"/> <result date="2006-12-15" statvalue="6" type="pmd"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertDouble.java" @@ -912,6 +1014,10 @@ path="net/sf/pzfilereader/converter/ConvertDouble.java" project="default"> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_converter_ConvertInteger.java" @@ -919,11 +1025,28 @@ path="net/sf/pzfilereader/converter/ConvertInteger.java" project="default"> <result date="2006-12-15" statvalue="100" type="cobertura-line"/> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-line"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-line"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> <file id="default-default-net_sf_pzfilereader_brparse_BuffReaderPZParseFactory.java" module="default" path="net/sf/pzfilereader/brparse/BuffReaderPZParseFactory.java" project="default"> <result date="2006-12-15" statvalue="100" type="cobertura-branch"/> + <result date="2006-12-16" statvalue="100" type="cobertura-branch"/> + <result date="2007-01-18" statvalue="100" type="cobertura-branch"/> </file> + <file + id="default-default-net_sf_pzfilereader_brparse_BuffReaderPZDataSet.java" + module="default" + path="net/sf/pzfilereader/brparse/BuffReaderPZDataSet.java" project="default"/> + <file + id="default-default-net_sf_pzfilereader_brparse_BuffReaderFixedPZParser.java" + module="default" + path="net/sf/pzfilereader/brparse/BuffReaderFixedPZParser.java" project="default"> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> + </file> </qalab> Modified: trunk/PZFileReaderSamples/qalab.xml =================================================================== --- trunk/PZFileReaderSamples/qalab.xml 2007-02-06 14:45:14 UTC (rev 276) +++ trunk/PZFileReaderSamples/qalab.xml 2007-02-11 20:10:10 UTC (rev 277) @@ -77,6 +77,22 @@ project="default" statvalue="92" type="simian"/> <summaryresult date="2006-11-22" filecount="11" module="default" project="default" statvalue="12" type="pmd"/> + <summaryresult date="2006-12-16" filecount="34" module="default" + project="default" statvalue="165" type="checkstyle"/> + <summaryresult date="2006-12-16" filecount="8" module="default" + project="default" statvalue="12" type="findbugs"/> + <summaryresult date="2006-12-16" filecount="6" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2006-12-16" filecount="11" module="default" + project="default" statvalue="12" type="pmd"/> + <summaryresult date="2007-01-18" filecount="34" module="default" + project="default" statvalue="163" type="checkstyle"/> + <summaryresult date="2007-01-18" filecount="8" module="default" + project="default" statvalue="12" type="findbugs"/> + <summaryresult date="2007-01-18" filecount="6" module="default" + project="default" statvalue="92" type="simian"/> + <summaryresult date="2007-01-18" filecount="10" module="default" + project="default" statvalue="10" type="pmd"/> </summary> <file id="default-default-com_pz_reader_examples_numericsanddates_package.html" @@ -287,6 +303,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_largecsvperformancetest_package.html" @@ -298,6 +316,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_multilinedelimitedrecord_package.html" @@ -309,6 +329,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_numericsanddates_package.html" @@ -320,6 +342,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimitedcolumnnamesinfile_package.html" @@ -331,6 +355,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumns_package.html" @@ -342,6 +368,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_exporttoexcel_package.html" @@ -353,6 +381,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_fixedlengthdynamiccolumns_package.html" @@ -364,6 +394,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_createsamplecsv_package.html" @@ -375,6 +407,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthdynamiccolumns_package.html" @@ -386,6 +420,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_delimiteddynamiccolumns_package.html" @@ -397,6 +433,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvperformancetest_package.html" @@ -408,6 +446,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_lowlevelparse_package.html" @@ -419,6 +459,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumnswitherrors_package.html" @@ -430,6 +472,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthheaderandtrailer_package.html" @@ -441,6 +485,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvheaderandtrailer_package.html" @@ -452,6 +498,8 @@ <result date="2006-10-25" statvalue="1" type="checkstyle"/> <result date="2006-11-02" statvalue="1" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_Examples.java" @@ -468,6 +516,10 @@ <result date="2006-11-02" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="16" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="14" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="14" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_createsamplecsv_CSVTestFileCreator.java" @@ -491,6 +543,12 @@ <result date="2006-11-22" statvalue="7" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="7" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="7" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvheaderandtrailer_CSVHeaderAndTrailer.java" @@ -502,6 +560,8 @@ <result date="2006-10-25" statvalue="17" type="checkstyle"/> <result date="2006-11-02" statvalue="17" type="checkstyle"/> <result date="2006-11-22" statvalue="17" type="checkstyle"/> + <result date="2006-12-16" statvalue="17" type="checkstyle"/> + <result date="2007-01-18" statvalue="17" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_csvperformancetest_CSVPerformanceTest.java" @@ -521,6 +581,12 @@ <result date="2006-11-22" statvalue="17" type="checkstyle"/> <result date="2006-11-22" statvalue="2" type="findbugs"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="17" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="17" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimitedcolumnnamesinfile_DelimitedColumnNamesInFile.java" @@ -536,6 +602,9 @@ <result date="2006-11-22" statvalue="7" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="2" type="pmd"/> + <result date="2006-12-16" statvalue="7" type="checkstyle"/> + <result date="2006-12-16" statvalue="2" type="pmd"/> + <result date="2007-01-18" statvalue="5" type="checkstyle"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumns_DelimitedWithPZMap.java" @@ -549,6 +618,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="13" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="14" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="14" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_delimiteddynamiccolumnswitherrors_DelimitedWithPZMapErrors.java" @@ -562,6 +635,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="14" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="14" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="14" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_exporttoexcel_DelimitedFileExportToExcel.java" @@ -575,6 +652,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="4" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="4" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="4" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthdynamiccolumns_FixedLengthWithPZMap.java" @@ -588,6 +669,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="4" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="4" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="4" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_fixedlengthheaderandtrailer_FixedLengthHeaderAndTrailer.java" @@ -601,6 +686,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="18" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="18" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="18" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_delimiteddynamiccolumns_LargeDelimitedWithPZMap.java" @@ -614,6 +703,10 @@ <result date="2006-11-02" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="4" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="4" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="4" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_fixedlengthdynamiccolumns_LargeFixedLengthWithPZMap.java" @@ -627,6 +720,10 @@ <result date="2006-11-02" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="3" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="3" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="findbugs"/> + <result date="2007-01-18" statvalue="3" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_largedataset_largecsvperformancetest_CSVLarge.java" @@ -644,6 +741,10 @@ <result date="2006-11-02" statvalue="1" type="findbugs"/> <result date="2006-11-22" statvalue="9" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="findbugs"/> + <result date="2006-12-16" statvalue="9" type="checkstyle"/> + <result date="2006-12-16" statvalue="3" type="findbugs"/> + <result date="2007-01-18" statvalue="9" type="checkstyle"/> + <result date="2007-01-18" statvalue="3" type="findbugs"/> </file> <file id="default-default-net_sf_pzfilereader_examples_lowlevelparse_LowLevelParse.java" @@ -667,6 +768,12 @@ <result date="2006-11-22" statvalue="4" type="checkstyle"/> <result date="2006-11-22" statvalue="2" type="findbugs"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="5" type="checkstyle"/> + <result date="2006-12-16" statvalue="2" type="findbugs"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="5" type="checkstyle"/> + <result date="2007-01-18" statvalue="2" type="findbugs"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_multilinedelimitedrecord_DelimitedMultiLine.java" @@ -680,6 +787,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="5" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="5" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="5" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_numericsanddates_NumericsAndDates.java" @@ -693,6 +804,10 @@ <result date="2006-11-02" statvalue="1" type="pmd"/> <result date="2006-11-22" statvalue="7" type="checkstyle"/> <result date="2006-11-22" statvalue="1" type="pmd"/> + <result date="2006-12-16" statvalue="7" type="checkstyle"/> + <result date="2006-12-16" statvalue="1" type="pmd"/> + <result date="2007-01-18" statvalue="7" type="checkstyle"/> + <result date="2007-01-18" statvalue="1" type="pmd"/> </file> <file id="default-default-net_sf_pzfilereader_examples_ConsoleMenu.java" @@ -704,5 +819,7 @@ <result date="2006-10-25" statvalue="2" type="findbugs"/> <result date="2006-11-02" statvalue="2" type="findbugs"/> <result date="2006-11-22" statvalue="2" type="findbugs"/> + <result date="2006-12-16" statvalue="2" type="findbugs"/> + <result date="2007-01-18" statvalue="2" type="findbugs"/> </file> </qalab> Modified: trunk/common-build/project.xml =================================================================== --- trunk/common-build/project.xml 2007-02-06 14:45:14 UTC (rev 276) +++ trunk/common-build/project.xml 2007-02-11 20:10:10 UTC (rev 277) @@ -43,12 +43,12 @@ <siteAddress>pzfilereader.sourceforge.net</siteAddress> <siteDirectory/> <repository> - <url>http://svn.sourceforge.net/pzfilereader</url> + <url>http://pzfilereader.svn.sourceforge.net/pzfilereader</url> <connection> - scm:svn:https://svn.sourceforge.net/svnroot/pzfilereader/trunk + scm:svn:https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/trunk </connection> <developerConnection> - scm:svn:https://svn.sourceforge.net/svnroot/pzfilereader/trunk + scm:svn:https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/trunk </developerConnection> </repository> <developers> Modified: trunk/statsvn.bat =================================================================== --- trunk/statsvn.bat 2007-02-06 14:45:14 UTC (rev 276) +++ trunk/statsvn.bat 2007-02-11 20:10:10 UTC (rev 277) @@ -1,3 +1,3 @@ -svn log -v --xml https://svn.sourceforge.net/svnroot/pzfilereader/ > svn.log +rem svn log -v --xml https://pzfilereader.svn.sourceforge.net/svnroot/pzfilereader/ > svn.log rem mkdir target\docs\statsvn -java -jar c:\java\statsvn\statsvn.jar -format xdoc -verbose -tags "^release_2.2.0|^Root_v2_0_0|^Root_v1_0_5|^Root_V2_1_0|^Root_V2_2_0_0/" -output-dir src\site\statsvn -title PZFileReader -exclude "**/SampleCSV.csv|**/qalab.xml" -viewvc http://svn.sourceforge.net/viewvc/pzfilereader/trunk ./svn.log . +java -jar c:\java\statsvn\statsvn.jar -xdoc -verbose -tags "^release_2.2.0|^Root_v2_0_0|^Root_v1_0_5|^Root_V2_1_0|^Root_V2_2_0_0/" -output-dir src\site\statsvn -title PZFileReader -exclude "**/SampleCSV.csv|**/qalab.xml" -viewvc http://pzfilereader.svn.sourceforge.net/viewvc/pzfilereader/trunk ./svn.log . This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-06 14:45:50
|
Revision: 276 http://svn.sourceforge.net/pzfilereader/?rev=276&view=rev Author: zepernick Date: 2007-02-06 06:45:14 -0800 (Tue, 06 Feb 2007) Log Message: ----------- corrected issue with tab and space delimiter when there were just empty columns with no data. trim() was removing delimiters and breaking the parse Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java 2007-02-06 14:43:08 UTC (rev 275) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ParserUtils.java 2007-02-06 14:45:14 UTC (rev 276) @@ -115,8 +115,16 @@ } else if (line == null) { return list; } - - final String trimmedLine = line.trim(); + + String trimmedLine; + if (delimiter == '\t' || delimiter == ' ') { + //skip the trim for these delimiters, doing the trim will mess up the parse + //on empty records which contain just the delimiter + trimmedLine = line; + } else { + trimmedLine = line.trim(); + } + int size = trimmedLine.length(); if (size == 0) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-06 14:43:10
|
Revision: 275 http://svn.sourceforge.net/pzfilereader/?rev=275&view=rev Author: zepernick Date: 2007-02-06 06:43:08 -0800 (Tue, 06 Feb 2007) Log Message: ----------- adding more tests Modified Paths: -------------- trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java Modified: trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java =================================================================== --- trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java 2007-02-06 14:41:50 UTC (rev 274) +++ trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java 2007-02-06 14:43:08 UTC (rev 275) @@ -3,6 +3,7 @@ import java.util.List; import junit.framework.TestCase; +import net.sf.pzfilereader.util.PZConstants; import net.sf.pzfilereader.util.ParserUtils; import net.sf.pzfilereader.utilities.UnitTestUtils; @@ -140,7 +141,12 @@ check("\"one\" \"two\" three", ' ', '\"', new String[] {"one", "", "two", "", "three"}); check (" , , ", ',', '"', new String[] {"","",""}); + check (" , , ", ',', PZConstants.NO_QUALIFIER, new String[] {"","",""}); check (" \t \t ", '\t', '"', new String[] {"","",""}); + check (" \t \t ", '\t', PZConstants.NO_QUALIFIER, new String[] {"","",""}); + check (" ", ' ', '"', new String[] {"","",""}); + check (" ", ' ', PZConstants.NO_QUALIFIER, new String[] {"","",""}); + } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-06 14:42:44
|
Revision: 274 http://svn.sourceforge.net/pzfilereader/?rev=274&view=rev Author: zepernick Date: 2007-02-06 06:41:50 -0800 (Tue, 06 Feb 2007) Log Message: ----------- added constant for specifying an empty qualifier Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/PZConstants.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/PZConstants.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/PZConstants.java 2007-02-04 15:02:39 UTC (rev 273) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/PZConstants.java 2007-02-06 14:41:50 UTC (rev 274) @@ -46,6 +46,8 @@ public static final String FIXEDLENGTH_FILE = "fixed"; public static final int SPLITLINE_SIZE_INIT = 10; + + public static final char NO_QUALIFIER = '\0'; private PZConstants() { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-02-04 15:02:39
|
Revision: 273 http://svn.sourceforge.net/pzfilereader/?rev=273&view=rev Author: zepernick Date: 2007-02-04 07:02:39 -0800 (Sun, 04 Feb 2007) Log Message: ----------- added test for empty tabs which is currently failing Modified Paths: -------------- trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java Modified: trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java =================================================================== --- trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java 2007-01-23 09:38:19 UTC (rev 272) +++ trunk/PZFileReader/src/test/java/net/sf/pzfilereader/parserutils/ParserUtilsSplitLineTest.java 2007-02-04 15:02:39 UTC (rev 273) @@ -138,6 +138,9 @@ check("one two three", ' ', '\u0000', new String[] {"one", "two", "three"}); check("\"one\" \"two\" three", ' ', '\"', new String[] {"one", "two", "three"}); check("\"one\" \"two\" three", ' ', '\"', new String[] {"one", "", "two", "", "three"}); + + check (" , , ", ',', '"', new String[] {"","",""}); + check (" \t \t ", '\t', '"', new String[] {"","",""}); } /** This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-01-23 09:38:19
|
Revision: 272 http://svn.sourceforge.net/pzfilereader/?rev=272&view=rev Author: zepernick Date: 2007-01-23 01:38:19 -0800 (Tue, 23 Jan 2007) Log Message: ----------- added SLF to eclipse classpath Modified Paths: -------------- trunk/PZFileReader/.classpath Modified: trunk/PZFileReader/.classpath =================================================================== --- trunk/PZFileReader/.classpath 2007-01-23 09:24:59 UTC (rev 271) +++ trunk/PZFileReader/.classpath 2007-01-23 09:38:19 UTC (rev 272) @@ -1,12 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> - <classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"/> - <classpathentry path="src/main/java" kind="src"/> - <classpathentry path="src/test/java" output="target/test-classes" kind="src"/> - <classpathentry path="MAVEN_REPO/junit/jars/junit-3.8.2.jar" kind="var"/> - <classpathentry path="ECLIPSE_HOME/plugins/org.eclipse.hyades.test.tools.core_4.2.1.v200607310100/common.runner.jar" kind="var"/> - <classpathentry path="ECLIPSE_HOME/plugins/org.eclipse.hyades.test.tools.core_4.2.1.v200607310100/java.runner.jar" kind="var"/> - <classpathentry path="MAVEN_REPO/jdom/jars/jdom-1.0.jar" kind="var"/> - <classpathentry path="MAVEN_REPO/jexcelapi/jars/jxl-2.4.2.jar" kind="var"/> - <classpathentry path="target/classes" kind="output"/> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> + <classpathentry kind="src" path="src/main/java"/> + <classpathentry output="target/test-classes" kind="src" path="src/test/java"/> + <classpathentry kind="var" path="MAVEN_REPO/junit/jars/junit-3.8.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/jdom/jars/jdom-1.0.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/jexcelapi/jars/jxl-2.4.2.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/org.slf4j/jars/slf4j-api-1.1.0-RC1.jar"/> + <classpathentry kind="var" path="MAVEN_REPO/org.slf4j/jars/slf4j-simple-1.1.0-RC1.jar"/> + <classpathentry kind="output" path="target/classes"/> </classpath> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-01-23 09:24:59
|
Revision: 271 http://svn.sourceforge.net/pzfilereader/?rev=271&view=rev Author: zepernick Date: 2007-01-23 01:24:59 -0800 (Tue, 23 Jan 2007) Log Message: ----------- added slf jars for proper pzfilereader-examples build Modified Paths: -------------- trunk/PZFileReaderSamples/src/main/script/run-examples.bat Modified: trunk/PZFileReaderSamples/src/main/script/run-examples.bat =================================================================== --- trunk/PZFileReaderSamples/src/main/script/run-examples.bat 2007-01-23 09:12:36 UTC (rev 270) +++ trunk/PZFileReaderSamples/src/main/script/run-examples.bat 2007-01-23 09:24:59 UTC (rev 271) @@ -5,6 +5,8 @@ set CLASSPATH=%CLASSPATH%;./@JARFILEEXAMPLES@ set CLASSPATH=%CLASSPATH%;./jdom.jar set CLASSPATH=%CLASSPATH%;./jxl.jar +set CLASSPATH=%CLASSPATH%;./slf4j-api-1.1.0-RC1.jar +set CLASSPATH=%CLASSPATH%;./slf4j-simple-1.1.0-RC1.jar set CLASSPATH=%CLASSPATH%;. echo %CLASSPATH% This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-01-23 09:12:37
|
Revision: 270 http://svn.sourceforge.net/pzfilereader/?rev=270&view=rev Author: zepernick Date: 2007-01-23 01:12:36 -0800 (Tue, 23 Jan 2007) Log Message: ----------- added slf jars for proper pzfilereader-examples build Added Paths: ----------- trunk/common-build/lib/slf4j-api-1.1.0-RC1.jar trunk/common-build/lib/slf4j-simple-1.1.0-RC1.jar Added: trunk/common-build/lib/slf4j-api-1.1.0-RC1.jar =================================================================== (Binary files differ) Property changes on: trunk/common-build/lib/slf4j-api-1.1.0-RC1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Added: trunk/common-build/lib/slf4j-simple-1.1.0-RC1.jar =================================================================== (Binary files differ) Property changes on: trunk/common-build/lib/slf4j-simple-1.1.0-RC1.jar ___________________________________________________________________ Name: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-01-23 08:48:15
|
Revision: 269 http://svn.sourceforge.net/pzfilereader/?rev=269&view=rev Author: zepernick Date: 2007-01-23 00:48:15 -0800 (Tue, 23 Jan 2007) Log Message: ----------- combined if statements fix for PMD Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ExcelTransformer.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ExcelTransformer.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ExcelTransformer.java 2007-01-21 23:39:18 UTC (rev 268) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/util/ExcelTransformer.java 2007-01-23 08:48:15 UTC (rev 269) @@ -91,18 +91,13 @@ WritableCellFormat cellFormat = new WritableCellFormat(times10ptBold); int colOffset = 0; for (int i = 0; i < columnNames.length; i++) { - if (exportOnlyColumnsList != null) { - if (!exportOnlyColumnsList.contains(columnNames[i])) { - colOffset ++; - continue; - } - } else if (excludeFromExportColumnsList != null) { - if (excludeFromExportColumnsList.contains(columnNames[i])) { - colOffset ++; - continue; - } - } - + if (exportOnlyColumnsList != null && !exportOnlyColumnsList.contains(columnNames[i])) { + colOffset ++; + continue; + }else if (excludeFromExportColumnsList != null && excludeFromExportColumnsList.contains(columnNames[i])) { + colOffset ++; + continue; + } final Label xlsTextLbl = new Label(i - colOffset, 0, columnNames[i], cellFormat); wrkSheet.addCell(xlsTextLbl); } @@ -116,16 +111,12 @@ colOffset = 0; for (int i = 0; i < columnNames.length; i++) { - if (exportOnlyColumnsList != null) { - if (!exportOnlyColumnsList.contains(columnNames[i])) { - colOffset ++; - continue; - } - } else if (excludeFromExportColumnsList != null) { - if (excludeFromExportColumnsList.contains(columnNames[i])) { - colOffset ++; - continue; - } + if (exportOnlyColumnsList != null && !exportOnlyColumnsList.contains(columnNames[i])) { + colOffset ++; + continue; + } else if (excludeFromExportColumnsList != null && excludeFromExportColumnsList.contains(columnNames[i])) { + colOffset ++; + continue; } final Label xlsTextLbl = new Label(i - colOffset, row, ds.getString(columnNames[i]), cellFormat); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-01-21 23:39:18
|
Revision: 268 http://svn.sourceforge.net/pzfilereader/?rev=268&view=rev Author: benoitx Date: 2007-01-21 15:39:18 -0800 (Sun, 21 Jan 2007) Log Message: ----------- Added the new ObjectLab news list for those who may want to receive web alerts of posting about this project. Modified Paths: -------------- trunk/common-build/project.xml Modified: trunk/common-build/project.xml =================================================================== --- trunk/common-build/project.xml 2007-01-18 18:09:18 UTC (rev 267) +++ trunk/common-build/project.xml 2007-01-21 23:39:18 UTC (rev 268) @@ -127,6 +127,19 @@ http://sourceforge.net/mailarchive/forum.php?forum=pzfilereader-svn </archive> </mailingList> + <mailingList> + <name>News about ObjectLab's projects (Alerts online)</name> + <subscribe> + http://lists.sourceforge.net/lists/listinfo/objectlabkit-news + </subscribe> + <unsubscribe> + http://lists.sourceforge.net/lists/listinfo/objectlabkit-news + </unsubscribe> + <post/> + <archive> + http://sourceforge.net/mailarchive/forum.php?forum=objectlabkit-news + </archive> + </mailingList> </mailingLists> <dependencies> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <zep...@us...> - 2007-01-18 18:09:18
|
Revision: 267 http://svn.sourceforge.net/pzfilereader/?rev=267&view=rev Author: zepernick Date: 2007-01-18 10:09:18 -0800 (Thu, 18 Jan 2007) Log Message: ----------- updated 3.0 docs Modified Paths: -------------- trunk/src/site/documentation/pzfilereader-manual.doc trunk/src/site/documentation/pzfilereader-manual.pdf Modified: trunk/src/site/documentation/pzfilereader-manual.doc =================================================================== (Binary files differ) Modified: trunk/src/site/documentation/pzfilereader-manual.pdf =================================================================== --- trunk/src/site/documentation/pzfilereader-manual.pdf 2007-01-18 16:34:24 UTC (rev 266) +++ trunk/src/site/documentation/pzfilereader-manual.pdf 2007-01-18 18:09:18 UTC (rev 267) @@ -1,1695 +1,1362 @@ -%PDF-1.4 -%\xE2\xE3\xCF\xD3 -761 0 obj <</Linearized 1/L 98839/O 765/E 18715/N 18/T 83571/H [ 1831 628]>> -endobj - -xref -761 75 -0000000016 00000 n -0000002654 00000 n -0000001831 00000 n -0000002963 00000 n -0000003104 00000 n -0000003488 00000 n -0000003690 00000 n -0000003833 00000 n -0000003977 00000 n -0000004121 00000 n -0000004266 00000 n -0000004411 00000 n -0000004555 00000 n -0000004700 00000 n -0000004845 00000 n -0000004990 00000 n -0000005135 00000 n -0000005278 00000 n -0000005423 00000 n -0000005568 00000 n -0000005713 00000 n -0000005858 00000 n -0000006002 00000 n -0000006147 00000 n -0000006290 00000 n -0000006434 00000 n -0000006578 00000 n -0000006721 00000 n -0000006864 00000 n -0000007008 00000 n -0000007470 00000 n -0000007832 00000 n -0000008381 00000 n -0000008842 00000 n -0000008878 00000 n -0000009118 00000 n -0000009195 00000 n -0000009441 00000 n -0000009704 00000 n -0000010297 00000 n -0000010779 00000 n -0000011273 00000 n -0000011782 00000 n -0000012313 00000 n -0000012811 00000 n -0000013293 00000 n -0000013549 00000 n -0000013593 00000 n -0000014050 00000 n -0000014602 00000 n -0000017272 00000 n -0000017502 00000 n -0000017554 00000 n -0000017606 00000 n -0000017658 00000 n -0000017710 00000 n -0000017762 00000 n -0000017814 00000 n -0000017867 00000 n -0000017920 00000 n -0000017973 00000 n -0000018026 00000 n -0000018079 00000 n -0000018132 00000 n -0000018185 00000 n -0000018238 00000 n -0000018291 00000 n -0000018344 00000 n -0000018397 00000 n -0000018450 00000 n -0000018503 00000 n -0000018556 00000 n -0000018609 00000 n -0000018662 00000 n -0000002459 00000 n -trailer -<</Size 836/Prev 83559/XRefStm 2459/Root 762 0 R/Info 90 0 R/ID[<7990763939504b36a91718126092912b><3b5ae8d6b530524aa6e1cc876db48a48>]>> -startxref -0 -%%EOF - -763 0 obj<</Length 534/Filter/FlateDecode/C 656/L 640/O 624/S 458>>stream -x\xDAb```b`\xE0\x94g`g``Ve\xE0c@ |
From: <zep...@us...> - 2007-01-18 16:35:26
|
Revision: 266 http://svn.sourceforge.net/pzfilereader/?rev=266&view=rev Author: zepernick Date: 2007-01-18 08:34:24 -0800 (Thu, 18 Jan 2007) Log Message: ----------- correct findbug string concat, changed to StringBuffer Modified Paths: -------------- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java Modified: trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java =================================================================== --- trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java 2007-01-18 14:31:48 UTC (rev 265) +++ trunk/PZFileReader/src/main/java/net/sf/pzfilereader/AbstractDelimiterPZParser.java 2007-01-18 16:34:24 UTC (rev 266) @@ -248,7 +248,7 @@ protected String fetchNextRecord(final BufferedReader br, final char qual, final char delim) throws IOException{ String line = null; - String lineData = ""; + StringBuffer lineData = new StringBuffer(); boolean processingMultiLine = false; while ((line = br.readLine()) != null) { @@ -273,7 +273,7 @@ // check to see if we have reached the end of the linebreak in // the record - final String trimmedLineData = lineData.trim(); + final String trimmedLineData = lineData.toString().trim(); if (processingMultiLine && trimmedLineData.length() > 0) { // need to do one last check here. it is possible that the " // could be part of the data @@ -284,11 +284,11 @@ // it is safe to assume we have reached the end of the // line break processingMultiLine = false; - lineData += "\r\n" + line; + lineData.append("\r\n").append(line); } else { // check to see if this is the last line of the record // looking for a qualifier followed by a delimiter - lineData += "\r\n" + line; + lineData.append("\r\n").append(line); boolean qualiFound = false; for (int i = 0; i < chrArry.length; i++) { if (qualiFound) { @@ -323,7 +323,7 @@ } } else { // throw the line into lineData var. - lineData += line; + lineData.append(line); if (processingMultiLine) { continue; // if we are working on a multiline rec, get // the data on the next line @@ -338,6 +338,6 @@ return null; } - return lineData; + return lineData.toString(); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |