Skip to content

Tags: dartl/jquery-csv

Tags

0.8.2

Toggle 0.8.2's commit message
Remove the version field from jquery.csv.js

It's perpetually out of date and can't be updated programmatically.

0.8.1

Toggle 0.8.1's commit message
0.8.1 Updated the version and devDependencies for a new release

0.7.1

Toggle 0.7.1's commit message
node package descriptor (package.json)

Some issues:
1. Version set to 0.7.1 (instead of original 0.71) to conform npm
   conventions.
2. Source repo url set to original project (located on google-code), but
   that repo actually doesn't contain these changes (and maybe won't
   ever contain).

0.70

Toggle 0.70's commit message
Updated the version number and source docstring

jquery.csv.js

0.64

Toggle 0.64's commit message
Updated the version number in the source

0.63

Toggle 0.63's commit message
Documentation update

jquery.csv
* version number updated to 0.63
* acknowledgement added for the new FSM line splitter
* added a note about the experimental line splitter
* cleaned up comments for clarity
* removed unused code
* added exceptions for unimplemented code
* updated method documentation to reflect the recent API changes

0.62

Toggle 0.62's commit message
Release 0.62

0.61

Toggle 0.61's commit message
0.61 bugfix release

* jquery.csv.js
- added the 'escaper' parameter to all functions
 - allows the use of of a custom escape character
- updated documentation to include the 'escaper parameter.
- fixed Issue 1
 - added regex special char escaping
- fixed Issue 4
 - made the default escaper char to a double-quote (")
 - added ability to set a custom escape char
- cleaned excess whitespace

* test/test.html
- removed unnecessary output logging
- added tests for 'escaping'
 - added a new dataset
 - added a new test
- added tests for 'newlines'
 - added a new dataset
 - added a new test (disabled)
- reorganized all existing tests for a cleaner browser output
- cleaned excess whitespace

* test/README
- added directions on how to use the test runner

0.52

Toggle 0.52's commit message
0.52 revision release

jquery.csv.js
- added $.csvDefaults object
- added $.array2CSVEntry()
- added $.array2CSV()
- added $.csv2Dictionary()
- added $.dictionary2CSV()

* $.csvEntry2Array()
- updated/corrected documentation
- fixed the final regex to handle dynamic separators
- renamed the storage array to 'output' for consistency
- fixed a bug with the custom parameter fetching
- replaced hard-coded default values to use project defaults

* $.array2CSVEntry()
- added documentation
- added paramters
- added a basic non-working implementation

* $.csv2Array()
- updated/corrected documentation
- fixed a bug with the custom parameter fetching
- replaced hard-coded default values to use project defaults
- corrected a bug with custom delimiter/separator passing

* $.array2CSV()
- added documentation
- added parameters
- added a 'not-implemented' alert

* $.csv2Dictionary()
- added documentation
- added the missing parameters
- added a complete working implementation

* $.dictionary2CSV()
- added documentation
- added a 'not-implemented' alert

0.6

Toggle 0.6's commit message
0.6 testing release

- added qunit.css
- added qunit.js
- added test.html

* test.html
- added coreDataSetUp()
 - initializes all of the data used in the tests
- added the 'csvEntry2Array() parsing' test
 - added an assertion for parsing using the default parameters
- added the 'csv2Array() parsing' test
 - added an assertion for parsing using the default parameters
- added the 'csv2Dictionary() parsing' test
 - added an assertion for parsing using the default parameters
- added the 'array2CSVEntry() parsing' test
 - not implemented yet
- added the 'array2CSV() parsing' test
 - not implemented yet
- added the 'dictionary2CSV parsing' test
 - not implemented yet