From: <be...@us...> - 2006-10-18 08:44:35
|
Revision: 94 http://svn.sourceforge.net/pzfilereader/?rev=94&view=rev Author: benoitx Date: 2006-10-18 01:44:30 -0700 (Wed, 18 Oct 2006) Log Message: ----------- Fix the links to Word and PDF doco. Modified Paths: -------------- trunk/src/site/documentation/index.xml trunk/src/site/index.xml Modified: trunk/src/site/documentation/index.xml =================================================================== --- trunk/src/site/documentation/index.xml 2006-10-18 00:39:34 UTC (rev 93) +++ trunk/src/site/documentation/index.xml 2006-10-18 08:44:30 UTC (rev 94) @@ -19,6 +19,10 @@ </head> <body> <!-- The body of the document contains a number of sections --> + <section name="Documentation"> + <p>A manual is available as <a href="pzfilereader-manual.doc">Word</a> document or a <a href="pzfilereader-manual.pdf">PDF</a>.</p> + </section> + <section name="XML Examples"> <subsection name="Delimited.pzmap.xml"> Modified: trunk/src/site/index.xml =================================================================== --- trunk/src/site/index.xml 2006-10-18 00:39:34 UTC (rev 93) +++ trunk/src/site/index.xml 2006-10-18 08:44:30 UTC (rev 94) @@ -31,6 +31,8 @@ <p>We also provide <strong>delimited file parsing</strong>; works with any delimiter / qualifier, multiline records, delimiter or qualifier allowed in column value.</p> + <p>A manual is available as <a href="documentation/pzfilereader-manual.doc">Word</a> document or a <a href="documentation/pzfilereader-manual.pdf">PDF</a>.</p> + <p>PZFileReader is part of the ObjectLab Kit family.<a href="http://digg.com/submit?phase=2&url=objectlabkit.sourceforge.net&title=Paul%20Zepernick%20and%20ObjectLab%20have%20released%20version%202%2E3%2E0%20of%20PZFileReader%2E&bodytext=PZFileReader%20on%20SourceForge%3A%20a%20Java%20(1%2E4%2B)%20flat%20file%20parser%20that%20handles%20CSV,%20fixed%20length%20and%20custom%20delimiters%2E%20The%20formats%20are%20configured%20in%20XML%20or%20in%20DB%2E%20Once%20parsed%20the%20data%20is%20easily%20accessible%20record%20by%20record%20and%20via%20a%20column%20name,%20regardless%20of%20order%2E%20%20It%20is%20fast%20and%20released%20under%20Apache%20license%202%2E0%2E&topic=programming"> <img src="http://digg.com/img/badges/91x17-digg-button.png" width="91" height="17" alt="Digg!" style="vertical-align:middle" /></a></p> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2006-10-31 11:44:46
|
Revision: 153 http://svn.sourceforge.net/pzfilereader/?rev=153&view=rev Author: benoitx Date: 2006-10-31 03:44:42 -0800 (Tue, 31 Oct 2006) Log Message: ----------- Added a few examples for the website. Modified Paths: -------------- trunk/src/site/navigation.xml Added Paths: ----------- trunk/src/site/parsing.xml Modified: trunk/src/site/navigation.xml =================================================================== --- trunk/src/site/navigation.xml 2006-10-31 11:24:43 UTC (rev 152) +++ trunk/src/site/navigation.xml 2006-10-31 11:44:42 UTC (rev 153) @@ -13,6 +13,8 @@ href="multiproject/pzfilereader/index.html" /> <item name="Documentation" href="documentation/index.html" /> + <item name="Examples" + href="parsing.html" /> <item name="History" href="history.html" /> <item name="Features" Added: trunk/src/site/parsing.xml =================================================================== --- trunk/src/site/parsing.xml (rev 0) +++ trunk/src/site/parsing.xml 2006-10-31 11:44:42 UTC (rev 153) @@ -0,0 +1,114 @@ +<document> + <properties> + <title>Parsing Examples</title> + </properties> + <head> + <meta name="description" + content="PZFileReader offers configurable flat file CSV and fixed length parser, released under the business-friendly Apache 2.0 license." + /> + + <meta name="keywords" content="CSV, Fixed length file parser" /> + <meta name="Subject" content="Date Calculators" /> + <meta name="Copyright" content="ObjectLab Financial Ltd" /> + <meta name="Language" content="English" /> + <meta name="Designer" content="ObjectLab Financial Ltd" /> + <meta name="Distribution" content="Global" /> + <meta name="robots" content="ALL"/> + <meta name="Revisit-After" content="20 Days" /> + </head> + <body> + <!-- The body of the document contains a number of sections --> + <section name="Parsing Examples"> + + <p>We thought that a few explicit examples would be good...The idea is to make our parsing extremely robust and flexible.</p> + + <subsection name="Delimiter Parsing"> + <p>Our library is very flexible and lets you define both the delimiter character and the qualifier. The qualifier is character that <strong>may</strong> + surround your element. Typically this would be a " in Excel, but Excel may <strong>not</strong> surround every element with it. Here are some examples:</p> + + <table> + <tr><th>Delimiter</th><th>Qualifier</th><th>Input</th><th>Output</th></tr> + <tr> + <td>,</td> + <td>"</td> + <td>a,b,c</td> + <td>3 elements: "a" "b" "c"</td> + </tr> + <tr> + <td>,</td> + <td>"</td> + <td>"a,b,c"</td> + <td>1 element: "a,b,c"</td> + </tr> + <tr> + <td>,</td> + <td>"</td> + <td>"a,b","c"</td> + <td>2 elements: "a,b" "c"</td> + </tr> + <tr> + <td>,</td> + <td>"</td> + <td> a,b,c</td> + <td>3 elements: "a" "b" "c"</td> + </tr> + <tr> + <td>,</td> + <td>"</td> + <td>a",b,c"</td> + <td>1 element: a",b,c"</td> + </tr> + <tr> + <td>,</td> + <td>"</td> + <td>"test1",test2,"0.00","another, element here",lastone</td> + <td>5 elements: "test1" "test2" "0.00" "another, element here" "lastone"</td> + </tr> + + <tr> + <td>,</td> + <td>'</td> + <td>a,b,c</td> + <td>3 elements: "a" "b" "c"</td> + </tr> + <tr> + <td>,</td> + <td>'</td> + <td>"a,b,c"</td> + <td>3 elements: ""a" "b" "c""</td> + </tr> + <tr> + <td>,</td> + <td>'</td> + <td>"a,b","c"</td> + <td>2 elements: ""a,b"" ""c""</td> + </tr> + <tr> + <td>,</td> + <td>'</td> + <td> a,b,c</td> + <td>3 elements: "a" "b" "c"</td> + </tr> + <tr> + <td>,</td> + <td>'</td> + <td>a",b,c"</td> + <td>3 elements: "a"" "b" "c""</td> + </tr> + <tr> + <td>,</td> + <td>'</td> + <td>"test1",test2,"0.00","another, element here",lastone</td> + <td>6 elements: ""test1"" "test2" ""0.00"" ""another" "element here\"" "lastone"</td> + </tr> + </table> + + </subsection> + + <subsection name="Fixed Width Parsing"> + </subsection> + + </section> + + </body> +</document> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2006-11-22 12:50:47
|
Revision: 180 http://svn.sourceforge.net/pzfilereader/?rev=180&view=rev Author: benoitx Date: 2006-11-22 04:50:47 -0800 (Wed, 22 Nov 2006) Log Message: ----------- Add link for StatSvn (yep, we've been busy modifying it...) Modified Paths: -------------- trunk/src/site/navigation.xml Added Paths: ----------- trunk/src/site/statsvn/ Modified: trunk/src/site/navigation.xml =================================================================== --- trunk/src/site/navigation.xml 2006-11-22 12:34:29 UTC (rev 179) +++ trunk/src/site/navigation.xml 2006-11-22 12:50:47 UTC (rev 180) @@ -9,20 +9,15 @@ </links> <menu name="PZFileReader"> - <item name="Main library" - href="multiproject/pzfilereader/index.html" /> - <item name="Documentation" - href="documentation/index.html" /> - <item name="Examples" - href="parsing.html" /> - <item name="History" - href="history.html" /> - <item name="Features" - href="features.html" /> - <item name="Examples" - href="multiproject/pzfilereader-examples/index.html" /> + <item name="Main library" href="multiproject/pzfilereader/index.html" /> + <item name="Documentation" href="documentation/index.html" /> + <item name="Examples" href="parsing.html" /> + <item name="History" href="history.html" /> + <item name="Features" href="features.html" /> + <item name="Examples" href="multiproject/pzfilereader-examples/index.html" /> <item name="JavaDoc" class="newWindow" target="_new" href="apidocs/index.html" /> <item name="In the press" href="press/index.html" /> + <item name="StatSvn" href="statsvn/index.html" /> <item name="Sitemap" href="sitemap.html" /> </menu> <sitemap/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <be...@us...> - 2007-05-01 09:13:20
|
Revision: 309 http://svn.sourceforge.net/pzfilereader/?rev=309&view=rev Author: benoitx Date: 2007-05-01 02:13:20 -0700 (Tue, 01 May 2007) Log Message: ----------- typos. Modified Paths: -------------- trunk/src/site/index.xml trunk/src/site/navigation.xml Modified: trunk/src/site/index.xml =================================================================== --- trunk/src/site/index.xml 2007-04-21 22:34:04 UTC (rev 308) +++ trunk/src/site/index.xml 2007-05-01 09:13:20 UTC (rev 309) @@ -20,8 +20,9 @@ </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> + <section name="News"> + <p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p><p style="margin-top:5px; padding-top:0; font-size:x-small; text-align:center"><a href="http://www.feedburner.com/fb/a/headlineanimator/install?id=829470&w=1" onclick="window.open(this.href, 'haHowto', 'width=520,height=600,toolbar=no,address=no,resizable=yes,scrollbars'); return false" target="_blank">Grab this Headline Animator</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> Modified: trunk/src/site/navigation.xml =================================================================== --- trunk/src/site/navigation.xml 2007-04-21 22:34:04 UTC (rev 308) +++ trunk/src/site/navigation.xml 2007-05-01 09:13:20 UTC (rev 309) @@ -31,12 +31,13 @@ </menu> <footer> <div style="vertical-align:middle"> - <a href="http://sourceforge.net"> + <p style="margin-top:10px; margin-bottom:0; padding-bottom:0; text-align:center; line-height:0"><a href="http://sourceforge.net"> <img src="http://sourceforge.net/sflogo.php?group_id=97367&type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /> </a> -<a href="http://digg.com/submit?phase=2&url=pzfilereader.sourceforge.net&title=Paul%20Zepernick%20and%20ObjectLab%20have%20released%20version%202%2E3%2E0%20of%20PZFileReader%2E&bodytext=PZFileReader%20on%20SourceForge%3A%20a%20Java%20(1%2E4%2B)%20flat%20file%20parser%20that%20handles%20CSV,%20fixed%20length%20and%20custom%20delimiters%2E%20The%20formats%20are%20configured%20in%20XML%20or%20in%20DB%2E%20Once%20parsed%20the%20data%20is%20easily%20accessible%20record%20by%20record%20and%20via%20a%20column%20name,%20regardless%20of%20order%2E%20%20It%20is%20fast%20and%20released%20under%20Apache%20license%202%2E0%2E&topic=programming"> - <img src="http://digg.com/img/badges/91x17-digg-button.png" width="91" height="17" alt="Digg!" style="vertical-align:middle" /></a> - </div> + <a href="http://digg.com/submit?phase=2&url=pzfilereader.sourceforge.net&title=Paul%20Zepernick%20and%20ObjectLab%20have%20released%20version%202%2E3%2E0%20of%20PZFileReader%2E&bodytext=PZFileReader%20on%20SourceForge%3A%20a%20Java%20(1%2E4%2B)%20flat%20file%20parser%20that%20handles%20CSV,%20fixed%20length%20and%20custom%20delimiters%2E%20The%20formats%20are%20configured%20in%20XML%20or%20in%20DB%2E%20Once%20parsed%20the%20data%20is%20easily%20accessible%20record%20by%20record%20and%20via%20a%20column%20name,%20regardless%20of%20order%2E%20%20It%20is%20fast%20and%20released%20under%20Apache%20license%202%2E0%2E&topic=programming"> + <img src="http://digg.com/img/badges/91x17-digg-button.png" width="91" height="17" alt="Digg!" style="vertical-align:middle" /></a> + <a href="http://feeds.feedburner.com/~r/ObjectlabOpenSourceNews/~6/1"><img src="http://feeds.feedburner.com/ObjectlabOpenSourceNews.1.gif" alt="ObjectLab Open Source News" style="border:0"/></a></p><p style="margin-top:5px; padding-top:0; font-size:x-small; text-align:center"></p> + </div> <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"> </script> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |