[q-lang-cvs] q-csv README, 1.2, 1.3 csv.c, 1.1.1.1, 1.2 csv.q, 1.1.1.1, 1.2
Brought to you by:
agraef
From: Albert G. <ag...@us...> - 2008-01-10 22:59:47
|
Update of /cvsroot/q-lang/q-csv In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14596 Modified Files: README csv.c csv.q Log Message: fix broken links Index: README =================================================================== RCS file: /cvsroot/q-lang/q-csv/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 10 Jan 2008 22:54:02 -0000 1.2 --- README 10 Jan 2008 22:59:35 -0000 1.3 *************** *** 5,9 **** The CSV library provides an interface to read and write comma separated value files. The reading and writing functions abide by RFC 4180 ! (http://tools.ietf.rg/html/rfc4180.txt) except for additional parameters that allow field delimiters and quote delimiters to be changed. --- 5,9 ---- The CSV library provides an interface to read and write comma separated value files. The reading and writing functions abide by RFC 4180 ! (http://www.ietf.org/rfc/rfc4180.txt) except for additional parameters that allow field delimiters and quote delimiters to be changed. Index: csv.c =================================================================== RCS file: /cvsroot/q-lang/q-csv/csv.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** csv.c 10 Jan 2008 22:41:21 -0000 1.1.1.1 --- csv.c 10 Jan 2008 22:59:35 -0000 1.2 *************** *** 1,3 **** ! /* CSV according to RFC 4180 (http://tools.ietf.rg/html/rfc4180) This is free software; you can redistribute it and/or --- 1,3 ---- ! /* CSV according to RFC 4180 (http://www.ietf.org/rfc/rfc4180.txt) This is free software; you can redistribute it and/or Index: csv.q =================================================================== RCS file: /cvsroot/q-lang/q-csv/csv.q,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** csv.q 10 Jan 2008 22:41:21 -0000 1.1.1.1 --- csv.q 10 Jan 2008 22:59:35 -0000 1.2 *************** *** 18,22 **** /* The CSV library provides an interface to read and write comma separated value files. The reading and writing functions abide by RFC 4180 ! (http://tools.ietf.rg/html/rfc4180.txt) except for additional parameters that allow field delimiters and quote delimiters to be changed. */ --- 18,22 ---- /* The CSV library provides an interface to read and write comma separated value files. The reading and writing functions abide by RFC 4180 ! (http://www.ietf.org/rfc/rfc4180.txt) except for additional parameters that allow field delimiters and quote delimiters to be changed. */ |