Commit graph

1349 commits

Author SHA1 Message Date
John Wiegley
e4c7df4002 Don't perform rounding tests in Python. 2009-01-31 01:22:51 -04:00
John Wiegley
b42ef31d93 Make amounts output fullstrings in the commodity unit tests. 2009-01-31 01:22:23 -04:00
John Wiegley
02ac444374 Don't parse reserved word (such as "and" or "true") as commodity names. 2009-01-31 01:22:04 -04:00
John Wiegley
6423e44c11 Pre-commands (like "parse") now correctly recognized. 2009-01-31 01:21:46 -04:00
John Wiegley
6983e6a38a Fixed error context output. 2009-01-31 01:21:30 -04:00
John Wiegley
c5795c66c9 "div", or "//", is now the operator of division. 2009-01-31 01:21:14 -04:00
John Wiegley
75f1cd727c Corrected Python reference to the AmountParse enum. 2009-01-31 01:20:34 -04:00
Matt Palmer
701e45c172 Update the link to the mailing list in the README 2009-01-31 01:08:29 -04:00
John Wiegley
e0dd2cd0a4 Changed to using rational numbers instead of integer approximations.
As a result, dependency on the gdtoa was dropped, and dependency on mpfr was
added.
2009-01-30 19:30:16 -04:00
John Wiegley
6213dc5af8 Whitespace fix. 2009-01-30 19:28:53 -04:00
John Wiegley
676e7bcf4f Added debug code under the category "entry.extend". 2009-01-30 19:28:07 -04:00
John Wiegley
040255a52b There is no need to round a balance before calling is_zero(). 2009-01-30 19:27:55 -04:00
John Wiegley
3dbdeb2917 Don't allow the "keep precision" flag to propagate into the balance amount. 2009-01-30 19:27:42 -04:00
John Wiegley
165300ea84 Updated the MacPorts Portfile for 3.0. 2009-01-30 19:27:19 -04:00
John Wiegley
38fa1e17d7 Added a dependency on mpfr. 2009-01-30 16:20:41 -04:00
John Wiegley
f1257cbc3e Removed all dependency on gdtoa. 2009-01-30 16:19:31 -04:00
John Wiegley
9400435870 Updated comments and other whitespace changes. 2009-01-30 05:21:41 -04:00
John Wiegley
2c362c097e Fixed a comment. 2009-01-30 05:21:13 -04:00
John Wiegley
a54c0f5097 Use a more standard method of determining the pager's exit status. 2009-01-30 01:30:33 -04:00
John Wiegley
9495ca740b Fixed the amount_t unit test. 2009-01-30 00:43:54 -04:00
John Wiegley
4d70052d23 Added a BNF grammar file describing the Ledger data format. 2009-01-30 00:41:55 -04:00
John Wiegley
ef934efb3a Added a slew of date/time format tests (inactive, however). 2009-01-30 00:41:23 -04:00
John Wiegley
54e24a4aa2 Fixed some tracing labels. 2009-01-30 00:40:59 -04:00
John Wiegley
cdb123974c Created a new stream.h file for dealing with output streaming. 2009-01-30 00:40:46 -04:00
John Wiegley
c96635fe60 Refactored the textual parser, to allow easy extensions in Python. 2009-01-29 19:11:36 -04:00
John Wiegley
3c0e2138fc Changed the way that etags is invoked for 'make TAGS'. 2009-01-29 19:11:14 -04:00
John Wiegley
da1cd7c4bc Whitespace cleanup. 2009-01-29 18:24:10 -04:00
John Wiegley
05c77351e4 Stopped using the generic "unsigned int" in favor of more specific types. 2009-01-29 18:23:57 -04:00
John Wiegley
119b5dc197 Refactored the timelog code into its own file. 2009-01-29 18:22:28 -04:00
John Wiegley
9aaab88c61 Update Doxygen documentation. Still much more work to be done. 2009-01-29 02:24:42 -04:00
John Wiegley
8b75b5cbfb Revised the way that parsing flags get passed around. 2009-01-29 02:24:25 -04:00
John Wiegley
5b388af626 Fixed the way that the Doxygen documentation is built. 2009-01-29 02:21:49 -04:00
John Wiegley
094c64b67c amount_t and commodity_t objects can now stream themselves to XML. 2009-01-28 20:49:44 -04:00
John Wiegley
e851c02d27 Unit test for Python are now auto-generated from the C++ tests. 2009-01-28 20:49:26 -04:00
John Wiegley
3020f0f851 Removed temporary file. 2009-01-28 18:00:31 -04:00
John Wiegley
1aa1ff1977 Fully exported the value_t type to Python.
Now this code works from a value expression:

  def myvalue(incoming):
      import ledger
      x = ledger.Value("100.23")
      print x.type()
      return incoming + x
2009-01-28 17:17:44 -04:00
John Wiegley
b205090bb7 Changed around the ==, < and > operators in value.h to be correct. 2009-01-28 17:17:06 -04:00
John Wiegley
23117a58f2 Expose the commodity type to python as "Commodity". 2009-01-28 17:16:47 -04:00
John Wiegley
08c7a530f8 Extended the amount_t Python mapping to handle the 3rd case of value(). 2009-01-28 17:16:37 -04:00
John Wiegley
024e10cbfa Updated ledger.vim to the latest version. 2009-01-28 17:16:20 -04:00
John Wiegley
e08959aab6 Increased Boost dependency version number to 1_37. 2009-01-28 17:16:08 -04:00
John Wiegley
35b2586bc3 Removed Boost submodule. 2009-01-28 03:40:07 -04:00
John Wiegley
71e7157a65 Added is_nonzero and a stream-based read() method to value_t. 2009-01-26 20:50:54 -04:00
John Wiegley
2170703310 Fixed TAGS target to work when building in a separate output dir. 2009-01-26 20:50:17 -04:00
John Wiegley
7d597da99b Updated gdtoa submodule. 2009-01-26 17:19:08 -04:00
John Wiegley
2541c4cd26 Handle the VERSION more gracefully, and uninstall the Python Egg file. 2009-01-26 17:16:59 -04:00
John Wiegley
082614a086 Pass $(srcdir) down to python/setup.py, so it can find pyledger.cc. 2009-01-26 14:13:10 -04:00
John Wiegley
e72de399c7 Fixed the way that python/setup.py was being invoked. 2009-01-26 13:52:40 -04:00
John Wiegley
1c21a0c6c9 Removed references to non-existent unit test files. 2009-01-26 13:33:10 -04:00
John Wiegley
60838879ce Fixed the rsync command in release-distcheck, in case building in a separate
directory from the sources.
2009-01-26 13:32:56 -04:00