December 2006 Commit Log

Number of Commits:
46
Number of Active Developers:
2
Paul Zepernick 2006-12-31 20:09

attempt to auto close file handles on GC if the close() was not called.

25 lines of code changed in:

Paul Zepernick 2006-12-25 15:51

fixed imports

0 lines of code changed in:

Paul Zepernick 2006-12-25 15:50

updated examples for 3.0

45 lines of code changed in:

Paul Zepernick 2006-12-24 19:07

added SLF4J logging

14 lines of code changed in:

Paul Zepernick 2006-12-24 18:53

added SLF4J logging...



Benoit,



I will follow up with an email with some of the details of the logger.

It is pretty simplistic.



Paul

44 lines of code changed in:

Paul Zepernick 2006-12-21 21:58

added setValue method back into the DataSet.

This was present in previous versions. It can be used to change

the value of a column after the file read. It is useful to loop through the

file and change values prior to business logic, or to change the values before they

go out to Excel.

26 lines of code changed in:

Paul Zepernick 2006-12-16 22:26

added exceptions for unsupported methods

60 lines of code changed in:

Benoit Xhenseval 2006-12-16 22:05

Should the br and recordLengths be initialised to something else?

2 lines of code changed in:

Paul Zepernick 2006-12-16 22:04

changed exceptions being thrown on unsupported methods

3 lines of code changed in:

Benoit Xhenseval 2006-12-16 22:04

quick checkstyle.

2 lines of code changed in:

Benoit Xhenseval 2006-12-16 22:01

checkstyle

6 lines of code changed in:

Benoit Xhenseval 2006-12-16 22:00

quick checkstyle...

0 lines of code changed in:

Benoit Xhenseval 2006-12-16 20:44

removed the linkcheck report as it is unbearingly big...

1 lines of code changed in:

Paul Zepernick 2006-12-16 20:08

added code to show errors in the file

9 lines of code changed in:

  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples/delimiteddynamiccolumns: DelimitedWithPZMap.java (+9 -1)
Paul Zepernick 2006-12-16 20:07

simian fixes

61 lines of code changed in:

Benoit Xhenseval 2006-12-16 19:07

typos

5 lines of code changed in:

Paul Zepernick 2006-12-16 19:04

2 lines of code changed in:

Paul Zepernick 2006-12-16 18:57

pbd fixes

3 lines of code changed in:

Paul Zepernick 2006-12-16 18:51

findbug fixes

190 lines of code changed in:

Paul Zepernick 2006-12-16 17:53

fixed constructors for pzmaps

2 lines of code changed in:

Paul Zepernick 2006-12-16 17:27

checkstyle fixes

2 lines of code changed in:

Paul Zepernick 2006-12-16 17:23

fixed bug r variable was not getting set

2 lines of code changed in:

Paul Zepernick 2006-12-16 16:29

removed 1.5 only StringBuilder

1 lines of code changed in:

  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples: Examples.java (+1 -1)
Paul Zepernick 2006-12-16 16:15

cleaned up most of the checkstyle errors.

There are still a couple out there that I am not sure how to

deal with exactly

63 lines of code changed in:

Paul Zepernick 2006-12-16 15:48

2 lines of code changed in:

Paul Zepernick 2006-12-16 15:41

checkstyle fixes

22 lines of code changed in:

Paul Zepernick 2006-12-16 15:10

102 lines of code changed in:

Benoit Xhenseval 2006-12-16 12:46

Use the same CSS as the rest of Objectlab family (statSVN behaving strangely with the other one)

440 lines of code changed in:

Paul Zepernick 2006-12-16 00:15

changed over to new bufferedreader parser

21 lines of code changed in:

Paul Zepernick 2006-12-16 00:11

added a bufferedreader parser for fixed width files.



renamed the DataSet class and used it for both parsers

195 lines of code changed in:

Paul Zepernick 2006-12-16 00:10

82 lines of code changed in:

Paul Zepernick 2006-12-16 00:09

added a bufferedreader parser for fixed width files.



renamed the DataSet class and used it for both parsers

0 lines of code changed in:

Paul Zepernick 2006-12-15 15:43

fixed compilation errors from removal of LargeDataSet

50 lines of code changed in:

  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples: Examples.java (+4 -20)
  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples/largedataset/delimiteddynamiccolumns: LargeDelimitedWithPZMap.java (+33 -24)
  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples/largedataset/fixedlengthdynamiccolumns: LargeFixedLengthWithPZMap.java (+3 -3)
  • PZFileReaderSamples/src/main/java/net/sf/pzfilereader/examples/largedataset/largecsvperformancetest: CSVLarge.java (+10 -7)
Paul Zepernick 2006-12-15 15:12

added the ability to include / exclude columns from the Excel export

79 lines of code changed in:

Paul Zepernick 2006-12-15 15:11

logged change

1 lines of code changed in:

Benoit Xhenseval 2006-12-15 14:44

Added as an example of how to use StatSVN.

3 lines of code changed in:

Benoit Xhenseval 2006-12-15 14:40

Added a couple of links.

3 lines of code changed in:

Paul Zepernick 2006-12-15 14:23

removed reference to getRows()

5 lines of code changed in:

Paul Zepernick 2006-12-15 14:17

added a protected method to clear the rows out of the DataSet



Changed the BuffredReader parser to call clear rows instead of using the getRows

which was removed.

8 lines of code changed in:

Paul Zepernick 2006-12-15 14:16

removed the getRows() so the user cannot manipulate the internal structure of the DataSet

0 lines of code changed in:

  • PZFileReader/src/main/java/net/sf/pzfilereader: DataSet.java (-1)
Paul Zepernick 2006-12-15 03:07

first attempt at reading files with BufferedReader left open

while the file is being looped through.



This is incomplete Benoit, but maybe you can take a peak and

see what you think about the direction this is heading.

280 lines of code changed in:

Paul Zepernick 2006-12-15 02:59

added some protected methods for more control by extending

classes.

20 lines of code changed in:

Paul Zepernick 2006-12-15 02:59

added a method to fetch the next record from a given BufferedReader.



Utilized this in the new BufferedReader parsers, and coule be usefull for

future parser implementations.

126 lines of code changed in:

Paul Zepernick 2006-12-15 01:26

added to parse() javadoc comment

2 lines of code changed in:

  • PZFileReader/src/main/java/net/sf/pzfilereader: PZParser.java (+2 -1)
Paul Zepernick 2006-12-15 01:23

cleaned up exception handling. Got rid of throws Exception

5 lines of code changed in:

  • PZFileReader/src/main/java/net/sf/pzfilereader/util: ParserUtils.java (+5 -3)
Benoit Xhenseval 2006-12-12 13:55

Add the template so issues="XXXX" can be used for the SF issues/requests in changes.xml

1 lines of code changed in:

November 2006 »

Generated by StatSVN 0.3.2-SNAPSHOT