Christopher Eykamp
57e833d71f
Move comment to shorten line
2013-01-02 12:26:51 +01:00
Christopher Eykamp
0a639404c4
Convert APIProperty to Property
2013-01-02 12:26:13 +01:00
Christopher Eykamp
b076dd8041
Remove comment block referring to constructor -- not needed for abstract class
2013-01-02 12:14:19 +01:00
Christopher Eykamp
e40034521b
Comments
2013-01-02 12:12:04 +01:00
Christopher Eykamp
543a5f6881
Remove line break
2013-01-02 12:10:54 +01:00
Christopher Eykamp
49ff1b44ea
Whitespace
2012-12-27 15:43:33 +01:00
Christopher Eykamp
0e9691c628
Remove unused readers
2012-12-27 14:40:28 +01:00
Christopher Eykamp
be7c55f432
Added full suite of wcs 1.1.0 tests, all are passing
2012-12-27 14:28:46 +01:00
Christopher Eykamp
a8f1c76811
Whitespace
2012-12-27 13:48:38 +01:00
Christopher Eykamp
5a19c74604
Whitespace
2012-12-27 13:47:37 +01:00
Christopher Eykamp
809ecb1155
Remove uneeded readers from WCS 1.0.0
2012-12-27 13:47:16 +01:00
Christopher Eykamp
b6c2c26580
WCS parsing working properly, but needs more tests; moved errorProperty down to parser, where it arguably belongs, and where it has to live to work with WCS. Also removed null error property on versionedOGC.
2012-12-27 13:29:02 +01:00
Christopher Eykamp
8ff05cdeac
WCS 1.1.0 parsing correctlyy; error property still not correctly set so parsing reports errors.
2012-12-24 18:19:42 +01:00
Christopher Eykamp
d0986de775
WCS 1.0.0 parsing now passing all tests
2012-12-21 18:51:39 +01:00
Christopher Eykamp
5c07ae47bb
WCS testing more-or-less working, many tests failing, as expected
2012-12-21 13:15:01 +01:00
Christopher Eykamp
2a21d61400
Change errorProperty to fix bug; now passes all tests
2012-12-19 11:19:56 +01:00
Just van den Broecke
1225c817b4
Fix typo causing empty Polygon geometry
...
See OpenLayers issue 789, var 'points' needs to be passed, not 'components' at line 649.
2012-12-08 14:44:45 +01:00
ahocevar
470cce73ab
Merge pull request #775 from ahocevar/wmts-resolutions
...
Fix regression introduced by #732 . r=@sbrunner
2012-11-28 05:50:22 -08:00
ahocevar
1cc07232a7
Fixing regression introduced by #732
...
Now that serverResolutions are set for all layers, we need to generate
resolutions also for non-baselayers.
2012-11-28 07:12:29 -06:00
Bart van den Eijnden
195352c403
make sure we can have multiple feature ids in InsertResults
2012-11-21 13:08:37 +01:00
Bart van den Eijnden
ec294af55a
Merge pull request #762 from bartvde/schema
...
parse annotation from WFS DescribeFeatureType schemas (r=@ahocevar)
2012-11-20 08:07:29 -08:00
ahocevar
c48458faa5
Merge pull request #760 from ahocevar/wmscaps-scalehint
...
Correct handling of 0 and Infinity ScaleHint. r=@marcjansen
2012-11-20 08:01:48 -08:00
ahocevar
5273d63f3a
Documenting ScaleHint parsing, as suggested by @marcjansen
2012-11-20 17:01:08 +01:00
Bart van den Eijnden
52d69ecfda
documentation is also an array, and lang is optional thanks @ahocevar for the catch
2012-11-20 16:48:50 +01:00
Bart van den Eijnden
cbd9a90477
appinfo can be specified multiple times, so use an array instead thanks @ahocevar
2012-11-20 16:42:06 +01:00
Bart van den Eijnden
f410cd7e41
remove JSON parsing from format, applications should handle this, as suggested by @ahocevar
2012-11-20 16:36:12 +01:00
Bart van den Eijnden
14f009e2f7
parse annotation from WFS DescribeFeatureType schemas
2012-11-20 15:48:48 +01:00
Marc Jansen
13584d7319
Reuse variable, thanks @bartvde.
2012-11-20 13:39:27 +01:00
Marc Jansen
798d2b2cb7
Fix exporting empty vector layers to OWSContext.
...
When a vector layer is exported to an OWSContext document, we throw an
exception when the layer contains no features, and the geometries are to be
exported inside of an InlineGeometry-element.
This commit fixes this behaviour by exporting sth. like this in such cases:
<Layer name="vector" hidden="0">i
<ows:Title xmlns:ows="http://www.opengis.net/ows "/>
<InlineGeometry/>
</Layer>
2012-11-20 10:38:25 +01:00
ahocevar
cbc4f4e422
Correct handling of 0 and Infinity ScaleHint
...
minScale and maxScale values of 0 and Infinity do not make sense in
OpenLayers, but they are used in WMS GetCapabilities 1.1.1 to indicate
that there is no minScale or maxScale restriction. Assuming that the
capability values for minScale and maxScale are passed as config options
to a WMS layer, it is better to not set minScale and maxScale when 0 or
Infinity are found in the ScaleHint.
2012-11-16 17:31:45 +01:00
ahocevar
a2fe036e2c
Filter.v1 methods need to be available when using Filter writers
...
Format classes that define member methods need to be mixed into other
format classes that use their writers. In this case, methods from
Filter.v1 were missing so a test for Format.WPSExecute failed.
2012-11-07 18:14:56 +01:00
Bart van den Eijnden
b45f903198
Merge pull request #744 from bartvde/cqlnull
...
add support for OpenLayers.Filter.Comparison.IS_NULL in CQL format (thanks @elemoine for the review)
2012-11-05 06:42:38 -08:00
Bart van den Eijnden
41ac2dea08
add support for OpenLayers.Filter.Comparison.IS_NULL in OpenLayers.Format.CQL
2012-11-05 13:21:51 +01:00
tschaub
47ef7e87f7
Handle whitespace and escaped quotes in CQL values
...
See #743 .
2012-11-02 11:44:41 -06:00
Tim Schaub
8d0da09454
Merge pull request #733 from tschaub/filter-tweaks
...
Allow writer functions to use document fragments when they need to append more than a single child to the parent.
2012-10-26 09:45:53 -07:00
Tim Schaub
8d8a9f3105
Merge pull request #729 from tschaub/date
...
WFS date filter literal not sent as ISO format
2012-10-26 09:01:54 -07:00
tschaub
4cf7f99de0
Work with formats that copy filter writers
2012-10-25 12:31:20 -06:00
tschaub
9e21911ca3
Unnecessary call to appendChild
...
The writeNode function already calls appendChild on the parent.
2012-10-25 12:11:25 -06:00
tschaub
e6399a265d
Use document fragments to write multiple nodes
...
For writer functions that need to generate multiple nodes, the
createDocumentFragment method can be used.
2012-10-25 11:56:48 -06:00
tschaub
993add338d
Allow user to customize literal encoding
...
As suggested by @mpriour, it would be nice if the user could determine how
date values are encoded in literal elements. Extending this beyond date
values, we can provide an `encodeLiteral` method that can be overridden to
provide application specific behavior.
2012-10-25 10:52:54 -06:00
ahocevar
7f2ce74dd7
Merge pull request #732 from ahocevar/wmts-serverresolutions
...
WMTS layers created from capabilities have no serverResolutions. r=@sbrunner
2012-10-25 08:06:05 -07:00
ahocevar
ca532c5db6
WMTS layers created from capabilities have no serverResolutions
...
By adding serverResolutions to the WMTS configuration, it is possible to
use WMTS layers as overlays, even if the map or the base layer is
configured with different resolutions than the WMTS.
2012-10-25 14:40:26 +02:00
Tim Schaub
ed66271be3
Use ISO 8601 formatting for dates in filters
2012-10-24 11:16:29 -06:00
tschaub
596ac680da
Use correct track attribute
...
Previously, the last track attribute name would be used as the
feature attribute name. For tracks with multiple attributes, this
doesn't work.
2012-10-23 14:15:22 -06:00
Matt Walker
d5013d6df5
Added support for PropertyIsNull filter.
...
Added a simple comparison and read/write for PropertyIsNull
encoded as XML including tests for each.
2012-10-12 22:40:56 +01:00
Bart van den Eijnden
ec8fa47a39
remove duplicate line in comment
2012-10-08 16:34:12 +02:00
Bart van den Eijnden
fd6e7ebe03
allow versioned profiled parsers to fallback to the non-profiled parser, this will help deal with situations in which a WMSC parser is created, the server is requested for WMS 1.1.1, but returns 1.1.0
2012-10-08 16:28:19 +02:00
ahocevar
47379ff7a2
Do not provide an 1.1 parser
2012-10-02 16:28:59 +02:00
ahocevar
3d1b0f0bd9
Less intrusive version fallback
2012-10-02 16:07:35 +02:00
ahocevar
e326a9ea2f
Adding TODO, as suggested by @bartvde
2012-10-02 14:40:37 +02:00