Commit graph

307 commits

Author SHA1 Message Date
moandji.ezana a5e34f464f Update version number in README 2016-01-24 22:14:16 -04:00
moandji.ezana d9b3c191fb Merge branch 'wip' of git@github.com:mwanji/toml4j.git into wip 2016-01-24 22:12:26 -04:00
moandji.ezana e024b51b0c Fix handling of tables with same name in different table array items.
Fixes https://github.com/mwanji/toml4j/issues/26
2016-01-24 22:10:35 -04:00
Moandji Ezana 2f45ce657c Merge pull request #25 from dilecti/wip
Update README for the 0.5.0 release.
2016-01-24 15:43:11 -04:00
Jonathan Wood aacd2bf319 Update README for the 0.5.0 release. 2016-01-14 08:23:11 -08:00
moandji.ezana b1436c557d Rename Toml#containsKey() to containsPrimitive 2015-12-10 12:23:08 -04:00
moandji.ezana 41b5438707 Prepare for 0.5.0 release 2015-12-10 11:50:30 -04:00
moandji.ezana 175c8d645f Add link to contribution guidelines 2015-12-10 11:47:46 -04:00
moandji.ezana 23567297fb Switch back to Java 6 2015-12-10 11:46:20 -04:00
moandji.ezana c88f283b3c Use Java 8 2015-10-28 20:44:01 -04:00
moandji.ezana 5740936619 Update docs 2015-10-28 20:42:00 -04:00
moandji.ezana 4773638a12 Read files as UTF-8. Fixes https://github.com/mwanji/toml4j/issues/22 2015-08-15 02:12:44 +02:00
moandji.ezana d60736e104 Rename parse to read and ValueConverter to ValueReader 2015-08-14 11:12:08 +02:00
moandji.ezana 039b487115 Set OutputStreamWriter to UTF-8. Document UTF-8 requirements. 2015-07-29 13:45:24 +02:00
Jonathan Wood b21391add7 Improve readability for special char code.
When populating specialCharacterEscapes, use character representations
rather than hex-formatted numbers.
2015-07-18 12:25:58 -07:00
moandji.ezana 212bd49bf6 Delete commented code 2015-07-14 22:30:44 +02:00
moandji.ezana 97e0133450 Write Unicode symbols instead of escaping them 2015-07-14 22:29:54 +02:00
moandji.ezana c90d4e1e71 TomlWriter#write() throws IllegalArgumentException when source object is
of an invalid type.
2015-07-14 01:51:09 +02:00
moandji.ezana 16915c8edb Merge branch 'writer' of git@github.com:mwanji/toml4j.git into writer
Conflicts:
	src/main/java/com/moandjiezana/toml/TomlWriter.java
	src/test/java/com/moandjiezana/toml/TomlWriterTest.java
2015-07-14 01:44:46 +02:00
moandji.ezana dbbd2f5e0e Do not write types that would not produce valid TOML 2015-07-14 01:33:11 +02:00
moandji.ezana 30d4898938 Document TomlWriter threadsafety in readme. 2015-07-13 23:46:09 +02:00
Jonathan Wood 568a77b1bf Refuse to write TOML fragments. 2015-07-04 17:50:52 -07:00
Jonathan Wood 8a8319b5f9 Write empty nested arrays properly. 2015-07-03 13:57:09 -07:00
moandji.ezana 50522d6a8c Include final fields but ignore constants 2015-07-02 08:22:31 +02:00
moandji.ezana 912ab61158 Test that keys are quoted when writing from an object and in table names 2015-07-02 07:59:30 +02:00
moandji.ezana 9358162a58 Remove ValueWriters#write(Object, WriterContext) 2015-07-02 07:41:22 +02:00
moandji.ezana 95e7f28cfa Remove warnings 2015-07-02 07:31:51 +02:00
moandji.ezana 47bd5022f1 Rename WriterIndentationPolicy to IndentationPolicy 2015-07-02 07:21:48 +02:00
moandji.ezana 7d5e429e12 Remove unused code 2015-07-01 13:01:16 +02:00
moandji.ezana fa591a0f0c Improve test coverage with test on error message for nested heterogenous
arrays
2015-07-01 12:59:12 +02:00
moandji.ezana 1244fdbfb3 Reduce visibility of public methods on WriterContext 2015-07-01 12:47:28 +02:00
moandji.ezana dbab02ce52 TomlWriter can display fractional seconds 2015-07-01 12:25:40 +02:00
moandji.ezana b59a246b86 Timezone can be set on TomlWriter.
DateConverterJdk6 class handles Java 6 date formatting limitations.
2015-07-01 11:22:29 +02:00
moandji.ezana a6e31da5ca Streamlined writing dates in UTC timezone. 2015-07-01 10:21:10 +02:00
moandji.ezana d9abbe7bc3 Updated encoding documentation 2015-07-01 09:32:16 +02:00
moandji.ezana ea36399255 Streamline WriterContext constructors. Make instance variables final
where possible.
2015-06-30 12:31:57 +02:00
moandji.ezana 6340d39ba7 Reduce visibility of TomlWriter#getIndentationPolicy() 2015-06-30 12:23:28 +02:00
moandji.ezana 5af1ca6f06 Removed unnecessary SuppressWarnings 2015-06-30 12:19:40 +02:00
moandji.ezana 56be048ab1 Created TomlWriter.Builder, so TomlWriter and IndentationPolicy can be
immutable
2015-06-30 11:37:22 +02:00
moandji.ezana 0f42d37f60 Updated changelog 2015-06-29 21:30:02 +02:00
moandji.ezana d8a02ce356 Support for special cases: char, Character, URL, URI and enums. 2015-06-29 20:52:32 +02:00
moandji.ezana 210d9dcb3c Renamed ValueWriterTest to TomlWriterTest 2015-06-29 20:11:59 +02:00
moandji.ezana d9964fd61a Added an example for each TomlWriter#write method 2015-06-29 20:10:43 +02:00
moandji.ezana 3a3915416a Added finally block to TomlWriter#write(Object, File) to close
FileWriter
2015-06-29 19:41:44 +02:00
moandji.ezana feb3aec259 TomlWriter#write methods delegate to TomlWriter#write(Object, Writer) to
take advantage of streaming when possible.
2015-06-29 18:49:34 +02:00
moandji.ezana 123aa21aed Moved BurntSushi encoder tests to own class to make it easier to see
which tests have been implemented.
2015-06-29 10:13:12 +02:00
moandji.ezana 9968add0ae Removed ValueWriter#isTable() 2015-06-29 09:57:05 +02:00
moandji.ezana 121db7ef05 Merge branch 'wip' of git://github.com/dilecti/toml4j into writer 2015-06-29 08:30:43 +02:00
Jonathan Wood a879385f4c Tweak test for openjdk-6. 2015-06-28 20:18:27 -07:00
Jonathan Wood 99c48231c2 Refuse to write heterogeneous arrays. 2015-06-28 14:35:39 -07:00