Skip to content

Commit 558a2ac

Browse files
authored
Merge pull request #96 from jmckenna/1.2.0-release
update for 1.2.0 release
2 parents 2d33916 + b04ae50 commit 558a2ac

File tree

6 files changed

+42
-13
lines changed

6 files changed

+42
-13
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) <2007-2012> <Barbara Philippot - Olivier Courtin>
1+
Copyright (c) <2007-2021> <Barbara Philippot - Olivier Courtin>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

NEWS

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
1.1.0
1+
1.2.0 (2021-06-11) *in memory of Olivier Courtin*
2+
- Fix custom types conversion (Vincent Mora)
3+
- Add support for geometry-less tables (Even Rouault)
4+
- Do not list non-existing tables (Even Rouault)
5+
- ows_layer_storage_fill(): fix crash when several bad configured layers are found (Even Rouault)
6+
- Fix crash when invalid 'pkey' is specified in configuration file (Even Rouault)
7+
- Implement matchCase for PropertyIsLike filter (Louis Jencka)
8+
- Fix axis order issue on GetFeature 1.1 (Even Rouault)
9+
- Avoid repeated prefix of the typename (Even Rouault)
10+
- fe_distance_functions(): fix crashes / incorrect behaviour (Even Rouault)
11+
- Fix unable to use separator chars as underscore in typename (Olivier Courtin)
12+
13+
1.1.1 (2015-06-29)
14+
- security release (Olivier Courtin)
15+
16+
1.1.0 (2012-11-13)
217
- Add include_items and exclude_items config handling. To choose exactly which columns to retrieve (Serge Dikiy)
318
- XSD max length and enumeration constraint handling (Serge Dikiy & Alan Boudreault)
419
- First real support of typename namespace provided in request (Olivier Courtin)
@@ -9,7 +24,7 @@
924
- Extent layer's properties allowed to inherit (Olivier Courtin)
1025
- Several bugfixes as usual (special thanks to Andreas Peri, Serge Dikiy and Jukka Rahkonen for detailled reports)
1126

12-
1.0.0 (08/02/2012)
27+
1.0.0 (2012-02-08)
1328
- Configuration change with broken backward compatibility:
1429
* default config file is now /etc/tinyows.xml
1530
* default schema dir is now $PREFIX/share/tinyows/schema
@@ -33,14 +48,13 @@
3348
- Lot of debug stuff (a special thanks to Boris Leukert, Jukka Rahkonen and Even Rouault for detailled reports)
3449
- Security fixes (SQL Injection vulnerability - Reported by Even Rouault)
3550

36-
37-
0.9.0 (19/06/2010)
51+
0.9.0 (2010-06-19)
3852
- Fast-CGI support
3953
- Error log handle
4054
- Improve --check behaviour
4155
- And a still a lot of debug stuff
4256

43-
0.8.0 (01/05/2010)
57+
0.8.0 (2010-05-01)
4458
- PostgreSQL schema support
4559
- Command line --check option, to check configure stuff
4660
- JSON output format for GetFeature (use OUTPUTFORMAT=application/json)

README renamed to README.md

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,36 @@
1+
# TinyOWS
2+
13
TinyOWS is a simple WFS-T server based on PostGIS spatial database.
24

5+
## Documentation Home
6+
7+
https://mapserver.org/tinyows/
8+
9+
## Approach
10+
311
TinyOWS was written with the following things in mind:
412
- KISS approach !
513
- As OGC standard compliant as possible, aiming to support:
614
- WFS (1.0 and 1.1)
715
- FE (1.0 and 1.1)
8-
- Performance is a matter, maps are cool as they're quick to display
16+
- Performance is important, maps are cool when they're quick to display
917
- Clean source code
1018

19+
## Code quality policy
1120

12-
Code quality policy:
1321
All code must meet the following rules :
1422
- gcc -c99 -pedantic -Wall compile without any warning (make)
1523
- Unit test with Valgrind error and leak free (make valgrind)
16-
- Pass trought OGC CITE WFS-T tests (1.0.0 and 1.1.0 SF-0)
24+
- Pass throught OGC CITE WFS-T tests (1.0.0 and 1.1.0 SF-0)
1725

1826
Code dynamically linked with the following other librairies:
19-
- PostgreSQL 8.x and 9.x
27+
- PostgreSQL
2028
- libxml 2.9.x
2129
- flex
30+
31+
## Credits
32+
33+
In memory of Olivier Courtin, the original developer of TinyOWS and
34+
visionary.
35+
36+

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
1.2.0

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ PROJECT_NAME = tinyows
2323
# This could be handy for archiving the generated documentation or
2424
# if some version control system is used.
2525

26-
PROJECT_NUMBER = 1.1.0
26+
PROJECT_NUMBER = 1.2.0
2727

2828
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
2929
# base path where the generated documentation will be put.

src/ows_define.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#define OWS_DEBUG
2929
#endif
3030

31-
#define TINYOWS_VERSION "1.1.0"
31+
#define TINYOWS_VERSION "1.2.0"
3232
#define TINYOWS_FCGI @USE_FCGI@
3333

3434
#define OWS_CONFIG_FILE_PATH "/etc/tinyows.xml"

0 commit comments

Comments
 (0)