summaryrefslogtreecommitdiff
path: root/src/csv.cc
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* Replace if/else ladder in convert with loopKai Wohlfahrt2021-01-311-21/+6
|
* Add debit field to convert commandKai Wohlfahrt2021-01-311-5/+13
| | | | | This changes the error reported when a transaction with no amount is imported.
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-1/+1
| | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/"
* rename payee_mappings to payee_alias_mappingsChristophe Rhodes2014-05-121-1/+1
| | | | (and similar renames) in preparation for payee_uuid_mappings
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Merge branch 'master' into nextJohann Klähn2013-01-181-3/+5
|\ | | | | | | | | | | Some commits were on the master branch but not yet on the next branch due to a pull request to master after those two branches diverged. This merge ensures that next ⊇ master.
| * ignore extra fields when converting csv filesJohann Klähn2012-10-131-1/+1
| | | | | | | | This fixes bug #736.
| * ignore (some) empty field when converting csvJohann Klähn2012-10-131-2/+4
| | | | | | | | This fixes bug #733 and bug #734.
* | fix account mapping in csv conversionJohann Klähn2012-10-181-1/+1
|/ | | | | | | By using payees_for_unknown_accounts instead of account_mappings in csv.cc ledger will have the same behaviour as in `ledger -f - print` in that it uses payee fields in account directives to rewrite the account.
* Improved detection of iostream's eof() conditionJohn Wiegley2012-05-141-1/+1
|
* Use unique_ptr instead of std::auto_ptrJohn Wiegley2012-03-051-2/+2
|
* Refactored the notion of "the current parsing context"John Wiegley2012-03-011-41/+40
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Renamed actual/effective dates to primary/auxiliaryJohn Wiegley2012-02-281-4/+4
|
* Added --rich-data for 'convert', and SHA1 checksum checkingJohn Wiegley2012-02-261-86/+76
|
* Make CSV importer more sensitive to errorsJohn Wiegley2012-02-261-63/+63
|
* Changed a use of int to std::vector<int>::size_typeJohn Wiegley2012-02-171-1/+1
|
* Fixes for variable shadowing (9/28)John Wiegley2012-02-171-2/+2
|
* Fixes for variable shadowing (8/28)John Wiegley2012-02-171-5/+5
|
* Fixes for variable shadowing (7/28)John Wiegley2012-02-171-13/+13
|
* Cleanup whitespaceJohn Wiegley2011-08-181-1/+1
|
* Store metadata values as value_t instead of stringJohn Wiegley2010-06-121-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-33/+33
|
* The CSV reader now auto-correlates fields by regexJohn Wiegley2010-03-081-50/+167
|
* Added some preliminary code for convert CSV to LedgerJohn Wiegley2010-03-051-0/+181
|
* More revision to the way options are handled; reworked CSV command.John Wiegley2009-02-071-135/+0
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Factored common parts of entry_t and xact_t into new item_tJohn Wiegley2008-09-191-18/+5
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+148
is in doc/, etc.