[mapserver-commits] r13128 - trunk/mapserver/tinyows
svn at osgeo.org
svn at osgeo.org
Wed Feb 8 20:43:57 EST 2012
Author: colivier
Date: 2012-02-08 17:43:57 -0800 (Wed, 08 Feb 2012)
New Revision: 13128
Removed:
trunk/mapserver/tinyows/LICENSE
trunk/mapserver/tinyows/Makefile.in
trunk/mapserver/tinyows/README
trunk/mapserver/tinyows/VERSION
trunk/mapserver/tinyows/config.xml
trunk/mapserver/tinyows/configure.in
trunk/mapserver/tinyows/doc/
trunk/mapserver/tinyows/schema/
trunk/mapserver/tinyows/src/
trunk/mapserver/tinyows/test/
Log:
svn2svn script fails, so remove all history
Deleted: trunk/mapserver/tinyows/LICENSE
===================================================================
--- trunk/mapserver/tinyows/LICENSE 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/LICENSE 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1,19 +0,0 @@
-Copyright (c) <2007> <Barbara Philippot - Olivier Courtin>
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-IN THE SOFTWARE.
\ No newline at end of file
Deleted: trunk/mapserver/tinyows/Makefile.in
===================================================================
--- trunk/mapserver/tinyows/Makefile.in 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/Makefile.in 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1,62 +0,0 @@
-# compiler flags
-CC=@CC@
-CFLAGS=@CFLAGS@ -ansi -pedantic -Wall
-PGFLAGS=-lpq -I`pg_config --includedir` -L`pg_config --libdir`
-XMLFLAGS=-lxml2 `xml2-config --cflags`
-
-# install path
-PREFIX=@prefix@
-
-SRC = $(wildcard src/*/*.c)
-
-all:
- $(CC) $(CFLAGS) $(PGFLAGS) $(XMLFLAGS) $(SRC) -o tinyows
-
-svn-clean: clean doc-clean
- @find . -name '*~' -exec rm {} \;
- @rm -f configure
-
-clean:
- @rm -f tinyows ERROR Makefile src/ows_define.h
-
-
-install:
- mkdir -p $(PREFIX)/tinyows
- cp tinyows $(PREFIX)/tinyows/
- cp -rf schema $(PREFIX)/tinyows/
- cp -i config.xml $(PREFIX)/tinyows/
-
-
-doc-clean:
- @rm -rf doc/doxygen
-
-doxygen: doc-clean
- @(which doxygen 2> /dev/null > /dev/null \
- && mkdir -p doc/doxygen \
- && doxygen doc/Doxyfile \
- ) || echo "doxygen seems not installed"
-
-valgrind:
- @(which valgrind 2> /dev/null > /dev/null \
- && rm -f ERROR \
- && test/wfs_get_feature 1 \
- && test/wfs_get_capabilities 1 \
- && test/wfs_describe 1 \
- && test/wms_get_capabilities 1 \
- && test/wms_get_map 1 \
- && test/wfs_transaction 1 \
- && test/wfs_lock_feature 1 \
- && test/wfs_get_feature_with_lock 1 \
- ) || echo "valgrind seems not installed"
-
-
-indent:
- @(which indent 2> /dev/null > /dev/null \
- && indent -nbad -bap -bbo -nbc -bli0 -c33 -cd33 -ncdb -nce -nlp -ci3 -cli0 -cp33 -cs -d0 -di1 -nfc1 -nfca -hnl -ts4 -i4 -ip0 -npcs -nprs -npsl -saf -sai -saw -nsc -nsob -nss -nbfda -nbfde -npsl -l75 $(SRC) \
- && find . -name '*~' -exec rm {} \; \
- ) || echo "indent seems not installed"
-
-splint:
- @(which splint 2> /dev/null > /dev/null \
- && splint -mustfreeonly -kepttrans -nullderef -compdestroy -mustfreefresh -temptrans -usereleased -compdef -observertrans -statictrans -booltype bool $(PGFLAGS) $(XMLFLAGS) $(SRC) \
- ) || echo "splint seems not installed"
Deleted: trunk/mapserver/tinyows/README
===================================================================
--- trunk/mapserver/tinyows/README 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/README 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1,26 +0,0 @@
-TinyOWS is a simple WFS-T server based on PostGIS spatial database.
-
-TinyOWS was writed with following things in mind:
-
-- KISS approach !
-
-- OGC standart as compliant as possible, aim to support:
- - WFS (1.0 and 1.1)
- - FE (1.0 and 1.1)
-
-- Performance is matter, maps are cools as they're quick to display !
-
-- Clean code source
-
-
-
-Quality code policy
-All code must check following rules :
-- gcc -ansi -pedantic -Wall compile without any warning (make)
-- Unit test with Valgrind error and leak free (make valgrind)
-- Doxygen comments (make doxygen)
-- Extensive assert use
-
-Code dynamically linked with following other librairies
-- postgresql 8.x
-- libxml2.x
Deleted: trunk/mapserver/tinyows/VERSION
===================================================================
--- trunk/mapserver/tinyows/VERSION 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/VERSION 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1 +0,0 @@
-0.6.0
Deleted: trunk/mapserver/tinyows/config.xml
===================================================================
--- trunk/mapserver/tinyows/config.xml 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/config.xml 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1,80 +0,0 @@
-<!-- TinyOWS WFS OGC TEST configuration -->
-<tinyows>
-
-<!-- metadata about the organization operating the server -->
-
- <metadata
- name="TinyOWS"
- title="TinyOWS Service"
- keywords="tinyows,ows,wfs,ogc"
- online_resource="http://www.tinyows.org/"
- fees="free"
- access_constraint="nope" >
- <abstract>
- Here a text abstract related to the service...
- </abstract>
- <contact
- name="Camptocamp"
- site="http://www.camptocamp.com/"
- individual_name="Barbara Philippot"
- position="Developper"
- phone="+33 (0)4.79.44.44.94"
- address="Savoie Technolac, BP 352"
- postcode="73370"
- city="Le Bourget du Lac"
- country="France"
- email="barbara.philippot at camptocamp.com" />
- </metadata>
-
-<!-- limits of the service -->
- <limits
- layers="12"
- features="1000"
- width="800"
- height="600"
- />
-
-<!-- information about database connection -->
- <pg
- host="127.0.0.1"
- user="postgres"
- password="postgres"
- dbname="tinyows_test"
- port="5432" />
-
-<!-- layers' definition -->
- <layer name="root" title="root" srid="4326"
- queryable="1" retrievable ="1" writable ="1">
-
- <layer name="OGCfeatures" title="OGCfeatures" prefix="cdf"
- server="http://www.opengis.net/cite/data" srid="32615">
- <layer name="Nulls" title="Nulls" />
- <layer name="Seven" title="Seven" />
- <layer name="Fifteen" title="Fifteen" />
- <layer name="Other" title="Other" />
- <layer name="Inserts" title="Inserts" />
- <layer name="Updates" title="Updates" />
- <layer name="Deletes" title="Deletes" />
- <layer name="Locks" title="Locks" />
- </layer>
-
- <layer name="OGCgeometries" title="OGCgeometries" prefix="cgf"
- server="http://www.opengis.net/cite/geometry" srid="32615" >
- <layer name="Points" title="Points" />
- <layer name="Lines" title="Lines" />
- <layer name="Polygons" title="Polygons" />
- <layer name="MPoints" title="MPoints" />
- <layer name="MLines" title="MLines" />
- <layer name="MPolygons" title="MPolygons" />
- </layer>
-
- <layer name="SimpleFeatures" title="features110" prefix="sf"
- server="http://cite.opengeospatial.org/gmlsf" >
- <layer name="AggregateGeoFeature" title="AggregateGeoFeature" />
- <layer name="EntitéGénérique" title="EntitéGénérique" />
- <layer name="PrimitiveGeoFeature" title="PrimitiveGeoFeature" />
- </layer>
-
- </layer>
-
-</tinyows>
Deleted: trunk/mapserver/tinyows/configure.in
===================================================================
--- trunk/mapserver/tinyows/configure.in 2012-02-09 01:36:33 UTC (rev 13127)
+++ trunk/mapserver/tinyows/configure.in 2012-02-09 01:43:57 UTC (rev 13128)
@@ -1,18 +0,0 @@
-AC_INIT()
-
-AC_CHECK_PROG(HAVE_LIBXML, xml2-config, yes, no)
-if test [ $HAVE_LIBXML = no ]; then
- AC_MSG_ERROR(libxml2 must be installed)
-fi
-
-AC_CHECK_PROG(HAVE_PGSQL, pg_config, yes, no)
-if test [ $HAVE_PGSQL = no ]; then
- AC_MSG_ERROR(postgresql must be installed)
-fi
-
-AC_CHECK_FUNCS()
-
-AC_OUTPUT(Makefile src/ows_define.h)
-
-rm -rf autom4te.cache
-rm -f config.log config.status
More information about the mapserver-commits
mailing list