Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | CSV example |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
dd31531248ea1d7f3a895d3032a7e70f |
User & Date: | peter 2015-03-16 19:12:49.046 |
Context
2015-03-16
| ||
19:17 | Include plugins in syntax check check-in: 263c36a391 user: peter tags: trunk | |
19:12 | CSV example check-in: dd31531248 user: peter tags: trunk | |
18:50 | Added CSV plugin check-in: 63c0c207e3 user: peter tags: trunk | |
Changes
Changes to Changes.
|
Changes to examples/dir1/csv1.txt.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
|
Changes to examples/dir2/csv1.txt.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + |
|
Changes to plugins/csv.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + + + | ##Eskil Plugin : Compare comma separated value (CSV) files # Example file for a plugin. # A plugin must start exactly like this one. # The text after : is the summary you can get at the command line # This plugin compares CSV files with some preprocessing available # Example usage: # eskil -plugin csv -plugininfo "-ignore {head3 head5} -key head2" -sep , \ # examples/dir*/csv1.txt # A plugin must define this procedure to do the job. # side: left or right # chi: An input channel for reading the original file. # cho: An output channel for writing the processed file. proc PreProcess {side chi cho} { # Look for parameters in info string |
︙ |