From 9d00f4de941650eef1a91f4a80159de99bee8c3d Mon Sep 17 00:00:00 2001 From: Google Code Exporter Date: Fri, 8 May 2015 20:11:02 -0400 Subject: [PATCH] Migrating wiki contents from Google Code --- ProjectHome.md | 10 ++++++++++ ReleaseNotes.md | 25 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 ProjectHome.md create mode 100644 ReleaseNotes.md diff --git a/ProjectHome.md b/ProjectHome.md new file mode 100644 index 0000000..bdc3990 --- /dev/null +++ b/ProjectHome.md @@ -0,0 +1,10 @@ +This library makes it easy to implement a Visualization data source so that you can easily chart or visualize your data from any of your data stores. +The library implements the [Google Visualization API wire protocol](http://code.google.com/apis/visualization/documentation/dev/implementing_data_source.html) and [query language](http://code.google.com/apis/visualization/documentation/querylanguage.html). You therefore need write only the code required to make your data available to the library in the form of a data table. This task is made easier by the provision of abstract classes and helper functions. + +For developer documentation see the [Data Source Library Developer's Guide](http://code.google.com/apis/visualization/documentation/dev/dsl_about.html). + +For information on dependencies and set-up see [Installing the Data Source Java Library](http://code.google.com/apis/visualization/documentation/dev/dsl_install.html) + +To get, or browse, the source code click the Source tab. + +## [Download the latest stable release version 1.1.1](http://google-visualization-java.googlecode.com/files/visualization-datasource-1.1.1.zip) ## diff --git a/ReleaseNotes.md b/ReleaseNotes.md new file mode 100644 index 0000000..237ac4e --- /dev/null +++ b/ReleaseNotes.md @@ -0,0 +1,25 @@ +# Version 1.1.1 # + * Move from google-collect-1.0 to guava-[r07](https://code.google.com/p/google-visualization-java/source/detail?r=07). + * Changed Json output to be valid Json format: Added quotation marks around all keys and string values. Date values are formated as"Date(2011,1,1)". Note: for jsonp dates remain as they were before and the Date object is returned in the json string, e.g., new Date(2011,1,1). + * Added setCell method to DataTable class. + * Added support for SKIPPING clause in the query language. + * Added support for MODULO operator in the query language. + * Fixed bug: Response content type for JSON/P is not valid. + * Fixed bug: java.util.TreeMap initialization in QueryEngine causes compilation error. + * Fixed bug: Where clause with column names that contain spaces does not work for SQL datasources ([Issue 16](https://code.google.com/p/google-visualization-java/issues/detail?id=16)). + * Fixed bug: SQL data source dates are shifted ([Issue 11](https://code.google.com/p/google-visualization-java/issues/detail?id=11)). + * Changed initialization of Timestamp in SQLDataSourceHelperTest. + * Add a message to the IllegalArgumentException thrown when a DateValue/DateTimeValue/TimeOfDayValue is created with a GregorianCalendar that is not GMT. + * Externalized error messages. + * Removed unnecessary servlet from web.xml. + + +# Version 1.0.2 # + * Added maven build (pom.xml). + * Starting with this version this library is available in a maven web repository. + * Added tests. + * Added support for LIKE operator in the query language. + * Fixed bug: Export to HTML double escapes   ([Issue 2](https://code.google.com/p/google-visualization-java/issues/detail?id=2)). + * Fixed bug: Format and label clauses do not work for queries that contain scalar functions ([Issue 3](https://code.google.com/p/google-visualization-java/issues/detail?id=3)). + * Fixed bug: "is null" in the where clause of a query does not work for SQL datasources ([Issue 4](https://code.google.com/p/google-visualization-java/issues/detail?id=4)). + * Fixed bug: CSV output does not escape non text values with commas ([Issue 5](https://code.google.com/p/google-visualization-java/issues/detail?id=5)). \ No newline at end of file