Commit bcfc3b8d authored by Grégory Mantelet's avatar Grégory Mantelet
Browse files

[ADQL,TAP] New parser for ADQL-2.1.

parent 082f04b5
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -4,11 +4,17 @@ README
Preambule
---------

This GitHub repository contains the sources of 3 libraries implementing [IVOA](http://www.ivoa.net/ "International Virtual Observatory Alliance") standards and protocols:
This GitHub repository contains the sources of the library-set named VOLLT. It
contains 3 libraries implementing [IVOA](http://www.ivoa.net/ "International Virtual Observatory Alliance")
standards and protocols:

* [ADQL](http://www.ivoa.net/documents/latest/ADQL.html "Astronomical Data Query Language")
* [UWS-1.1](http://www.ivoa.net/documents/UWS/20161024/index.html "Universal Worker Service pattern")
* [TAP](http://www.ivoa.net/documents/TAP/ "Table Access Protocol")

_**NOTE:** Support of ADQL-2.1 currently under development. For the moment, TAP
is still using ADQL-2.0 by default._

### Documentation
For a complete documentation/tutorial and a demo of the 3 libraries you should visit the following websites: [ADQLTuto](http://cdsportal.u-strasbg.fr/adqltuto), [UWSTuto](http://cdsportal.u-strasbg.fr/uwstuto) and [TAPTuto](http://cdsportal.u-strasbg.fr/taptuto).

+2 −2
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
<!DOCTYPE project>
<project name="adql" basedir="." default="buildLib">
	
	<property name="version" value="1.5-1" />
	<property name="version" value="2.0" />

	<property name="srcDir" value="src" />
	<property name="testDir" value="test" />
+86 −6435

File changed.

Preview size limit exceeded, changes collapsed.

+6600 −0

File added.

Preview size limit exceeded, changes collapsed.

+2 −2
Original line number Diff line number Diff line
/* Generated By:JavaCC: Do not edit this line. ADQLParserConstants.java */
/* Generated By:JavaCC: Do not edit this line. ADQLParser200Constants.java */
package adql.parser;


@@ -6,7 +6,7 @@ package adql.parser;
 * Token literal values and constants.
 * Generated by org.javacc.parser.OtherFilesGen#start()
 */
public interface ADQLParserConstants {
public interface ADQLParser200Constants {

  /** End of File. */
  int EOF = 0;
Loading