FreeBSD Bugzilla – Attachment 115986 Details for
Bug 157878
[patch] graphics/geoserver update to 2.1.0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 65.54 KB, created by
littlesavage
on 2011-06-14 17:20:05 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
littlesavage
Created:
2011-06-14 17:20:05 UTC
Size:
65.54 KB
patch
obsolete
>diff -ruN graphics/geoserver_orig/Makefile graphics/geoserver/Makefile >--- graphics/geoserver_orig/Makefile 2011-06-10 22:58:24.755915300 +0400 >+++ graphics/geoserver/Makefile 2011-06-11 01:29:54.000000000 +0400 >@@ -6,7 +6,7 @@ > # > > PORTNAME= geoserver >-PORTVERSION= 2.0.2 >+PORTVERSION= 2.1.0 > CATEGORIES= graphics geography java > MASTER_SITES= SF/${PORTNAME}/GeoServer/${PORTVERSION} > DISTNAME= ${PORTNAME}-${PORTVERSION}-bin >@@ -14,6 +14,9 @@ > MAINTAINER= avl@FreeBSD.org > COMMENT= An Open Source GIS Server > >+LICENSE= GPLv2 >+LICENSE_FILE= ${WRKSRC}/GPL.txt >+ > USE_JAVA= yes > USE_ZIP= yes > JAVA_VERSION= 1.5+ >@@ -24,13 +27,11 @@ > GEODIRS= data_dir etc lib logs resources webapps > > USE_RC_SUBR= ${PORTNAME} >-PLIST_SUB= G="${GEOSERVERDIR:S,^${PREFIX}/,,}" GTVER=2.6.4 MVER=${PORTVERSION} >+PLIST_SUB= G="${GEOSERVERDIR:S,^${PREFIX}/,,}" GTVER=2.7.1 MVER=${PORTVERSION} > SUB_LIST= GEOSERVERDIR="${GEOSERVERDIR}" JAVA="${JAVA}" > SUB_FILES= pkg-message > > post-patch: >- @${RM} ${WRKSRC}/data_dir/logs/geoserver.log >- @${RM} ${WRKSRC}/data_dir/gwc/meta_jdbc_h2/* > @${REINPLACE_CMD} -e 's|$$GEOSERVER_HOME|${GEOSERVERDIR}|g' \ > -e 's|%%JAVA%%|${JAVA}|g' \ > ${WRKSRC}/bin/startup.sh ${WRKSRC}/bin/shutdown.sh >@@ -38,7 +39,7 @@ > do-install: > @${MKDIR} ${GEOSERVERDIR}/bin > ${INSTALL_SCRIPT} ${WRKSRC}/bin/*.sh ${GEOSERVERDIR}/bin >-.for f in GPL.txt LICENSE.txt README.txt RUNNING.txt start.jar >+.for f in LICENSE.txt README.txt RUNNING.txt VERSION.txt start.jar > ${INSTALL_DATA} ${WRKSRC}/${f} ${GEOSERVERDIR} > .endfor > .for dir in ${GEODIRS} >@@ -46,7 +47,7 @@ > | while read a; do \ > ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.sample; \ > if [ ! -e "${GEOSERVERDIR}/$$a" ]; then \ >- ${CP} ${WRKSRC}/$$a.sample ${WRKSRC}/$$a; \ >+ ${CP} -pf ${WRKSRC}/$$a.sample ${WRKSRC}/$$a; \ > fi; \ > done > @cd ${WRKSRC} && \ >diff -ruN graphics/geoserver_orig/distinfo graphics/geoserver/distinfo >--- graphics/geoserver_orig/distinfo 2011-06-10 22:58:24.777914492 +0400 >+++ graphics/geoserver/distinfo 2011-06-10 23:02:30.000000000 +0400 >@@ -1,3 +1,2 @@ >-MD5 (geoserver-2.0.2-bin.zip) = 5fa425fa912577cd1cff0b0b7b7d5b98 >-SHA256 (geoserver-2.0.2-bin.zip) = 923cf630989b2bd50b7c53bf67d6cc3f91b1b1a2f8474cdf50dc82a4f62748fc >-SIZE (geoserver-2.0.2-bin.zip) = 54208196 >+SHA256 (geoserver-2.1.0-bin.zip) = 2e5be901aee41f7749acb1e932885f0cfbdca0c8f3d31b29af1e18a8918a5d41 >+SIZE (geoserver-2.1.0-bin.zip) = 58142393 >diff -ruN graphics/geoserver_orig/files/geoserver.in graphics/geoserver/files/geoserver.in >--- graphics/geoserver_orig/files/geoserver.in 2011-06-10 22:58:24.742912093 +0400 >+++ graphics/geoserver/files/geoserver.in 2011-06-11 01:42:06.000000000 +0400 >@@ -24,12 +24,15 @@ > : ${geoserver_user="root"} > : ${geoserver_chdir="%%GEOSERVERDIR%%"} > >+pidfile=${geoserver_pidfile:-"/var/run/geoserver.pid"} >+ > java_args="-DGEOSERVER_DATA_DIR=%%GEOSERVERDIR%%/data_dir -Djava.awt.headless=true \ > -DSTOP.PORT=8079 -DSTOP.KEY=geoserver -jar start.jar" > log_args=">> ${geoserver_stdout_log} 2>> ${geoserver_stderr_log}" > >-command="%%JAVA%%" >-command_args="${java_args} ${geoserver_flags} ${log_args} &" >+command="/usr/sbin/daemon" >+command_args="-p ${pidfile} %%JAVA%% ${java_args} ${geoserver_flags} ${log_args}" >+procname="%%JAVA%%" > > start_precmd=logs_touch > >diff -ruN graphics/geoserver_orig/pkg-plist graphics/geoserver/pkg-plist >--- graphics/geoserver_orig/pkg-plist 2011-06-10 22:58:24.777914492 +0400 >+++ graphics/geoserver/pkg-plist 2011-06-11 01:26:10.000000000 +0400 >@@ -2,6 +2,7 @@ > @unexec if cmp -s %D/%%G%%/data_dir/coverages/img_sample/info.xml %D/%%G%%/data_dir/coverages/img_sample/info.xml.sample; then rm -f %D/%%G%%/data_dir/coverages/img_sample/info.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/coverages/mosaic_sample/info.xml %D/%%G%%/data_dir/coverages/mosaic_sample/info.xml.sample; then rm -f %D/%%G%%/data_dir/coverages/mosaic_sample/info.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/coverages/mosaic_sample/mosaic.properties %D/%%G%%/data_dir/coverages/mosaic_sample/mosaic.properties.sample; then rm -f %D/%%G%%/data_dir/coverages/mosaic_sample/mosaic.properties; fi >+@unexec if cmp -s %D/%%G%%/data_dir/coverages/sfdem_sfdem/info.xml %D/%%G%%/data_dir/coverages/sfdem_sfdem/info.xml.sample; then rm -f %D/%%G%%/data_dir/coverages/sfdem_sfdem/info.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/demo/WCS_describeCoverage.xml %D/%%G%%/data_dir/demo/WCS_describeCoverage.xml.sample; then rm -f %D/%%G%%/data_dir/demo/WCS_describeCoverage.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/demo/WCS_getCapabilities.xml %D/%%G%%/data_dir/demo/WCS_getCapabilities.xml.sample; then rm -f %D/%%G%%/data_dir/demo/WCS_getCapabilities.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/demo/WCS_getCoverage.xml %D/%%G%%/data_dir/demo/WCS_getCoverage.xml.sample; then rm -f %D/%%G%%/data_dir/demo/WCS_getCoverage.xml; fi >@@ -85,15 +86,12 @@ > @unexec if cmp -s %D/%%G%%/data_dir/plugIns/Uniquity.xml %D/%%G%%/data_dir/plugIns/Uniquity.xml.sample; then rm -f %D/%%G%%/data_dir/plugIns/Uniquity.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/plugIns/WithinIntegrity.xml %D/%%G%%/data_dir/plugIns/WithinIntegrity.xml.sample; then rm -f %D/%%G%%/data_dir/plugIns/WithinIntegrity.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/security/layers.properties %D/%%G%%/data_dir/security/layers.properties.sample; then rm -f %D/%%G%%/data_dir/security/layers.properties; fi >-@unexec if cmp -s %D/%%G%%/data_dir/security/rest.properties %D/%%G%%/data_dir/security/rest.properties.sample; then rm -f %D/%%G%%/data_dir/security/rest.properties; fi > @unexec if cmp -s %D/%%G%%/data_dir/security/service.properties %D/%%G%%/data_dir/security/service.properties.sample; then rm -f %D/%%G%%/data_dir/security/service.properties; fi > @unexec if cmp -s %D/%%G%%/data_dir/security/users.properties %D/%%G%%/data_dir/security/users.properties.sample; then rm -f %D/%%G%%/data_dir/security/users.properties; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/burg.xml %D/%%G%%/data_dir/styles/burg.xml.sample; then rm -f %D/%%G%%/data_dir/styles/burg.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/capitals.xml %D/%%G%%/data_dir/styles/capitals.xml.sample; then rm -f %D/%%G%%/data_dir/styles/capitals.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/cite_lakes.xml %D/%%G%%/data_dir/styles/cite_lakes.xml.sample; then rm -f %D/%%G%%/data_dir/styles/cite_lakes.xml; fi >-@unexec if cmp -s %D/%%G%%/data_dir/styles/concat.xml %D/%%G%%/data_dir/styles/concat.xml.sample; then rm -f %D/%%G%%/data_dir/styles/concat.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/dem.xml %D/%%G%%/data_dir/styles/dem.xml.sample; then rm -f %D/%%G%%/data_dir/styles/dem.xml; fi >-@unexec if cmp -s %D/%%G%%/data_dir/styles/flags.xml %D/%%G%%/data_dir/styles/flags.xml.sample; then rm -f %D/%%G%%/data_dir/styles/flags.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/giant_polygon.xml %D/%%G%%/data_dir/styles/giant_polygon.xml.sample; then rm -f %D/%%G%%/data_dir/styles/giant_polygon.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/grass.xml %D/%%G%%/data_dir/styles/grass.xml.sample; then rm -f %D/%%G%%/data_dir/styles/grass.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/styles/green.xml %D/%%G%%/data_dir/styles/green.xml.sample; then rm -f %D/%%G%%/data_dir/styles/green.xml; fi >@@ -116,7 +114,6 @@ > @unexec if cmp -s %D/%%G%%/data_dir/wcs.xml %D/%%G%%/data_dir/wcs.xml.sample; then rm -f %D/%%G%%/data_dir/wcs.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/wfs.xml %D/%%G%%/data_dir/wfs.xml.sample; then rm -f %D/%%G%%/data_dir/wfs.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/wms.xml %D/%%G%%/data_dir/wms.xml.sample; then rm -f %D/%%G%%/data_dir/wms.xml; fi >-@unexec if cmp -s %D/%%G%%/data_dir/workspaces/default.xml %D/%%G%%/data_dir/workspaces/default.xml.sample; then rm -f %D/%%G%%/data_dir/workspaces/default.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/workspaces/cite/namespace.xml %D/%%G%%/data_dir/workspaces/cite/namespace.xml.sample; then rm -f %D/%%G%%/data_dir/workspaces/cite/namespace.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/workspaces/cite/workspace.xml %D/%%G%%/data_dir/workspaces/cite/workspace.xml.sample; then rm -f %D/%%G%%/data_dir/workspaces/cite/workspace.xml; fi > @unexec if cmp -s %D/%%G%%/data_dir/workspaces/it.geosolutions/namespace.xml %D/%%G%%/data_dir/workspaces/it.geosolutions/namespace.xml.sample; then rm -f %D/%%G%%/data_dir/workspaces/it.geosolutions/namespace.xml; fi >@@ -192,21 +189,21 @@ > @unexec if cmp -s %D/%%G%%/webapps/geoserver/WEB-INF/dispatcher-servlet.xml %D/%%G%%/webapps/geoserver/WEB-INF/dispatcher-servlet.xml.sample; then rm -f %D/%%G%%/webapps/geoserver/WEB-INF/dispatcher-servlet.xml; fi > @unexec if cmp -s %D/%%G%%/webapps/geoserver/WEB-INF/web.xml %D/%%G%%/webapps/geoserver/WEB-INF/web.xml.sample; then rm -f %D/%%G%%/webapps/geoserver/WEB-INF/web.xml; fi > @unexec if cmp -s %D/%%G%%/webapps/geoserver/schemas/wcs/1.1.1/interpolationMethods.xml %D/%%G%%/webapps/geoserver/schemas/wcs/1.1.1/interpolationMethods.xml.sample; then rm -f %D/%%G%%/webapps/geoserver/schemas/wcs/1.1.1/interpolationMethods.xml; fi >-%%G%%/GPL.txt > %%G%%/LICENSE.txt > %%G%%/README.txt >+%%G%%/VERSION.txt > %%G%%/RUNNING.txt > %%G%%/bin/shutdown.sh > %%G%%/bin/startup.sh > %%G%%/data_dir/coverages/arc_sample/info.xml.sample >-@exec [ -f %B/info.xml ] || cp %B/%f %B/info.xml >+@exec [ -f %B/info.xml ] || cp -p %B/%f %B/info.xml > %%G%%/data_dir/coverages/arc_sample/precip30min.asc > %%G%%/data_dir/coverages/arc_sample/precip30min.prj > %%G%%/data_dir/coverages/img_sample/Pk50095.prj > %%G%%/data_dir/coverages/img_sample/Pk50095.tfw > %%G%%/data_dir/coverages/img_sample/Pk50095.tif > %%G%%/data_dir/coverages/img_sample/info.xml.sample >-@exec [ -f %B/info.xml ] || cp %B/%f %B/info.xml >+@exec [ -f %B/info.xml ] || cp -p %B/%f %B/info.xml > %%G%%/data_dir/coverages/img_sample/usa.meta > %%G%%/data_dir/coverages/img_sample/usa.png > %%G%%/data_dir/coverages/img_sample/usa.prj >@@ -286,140 +283,126 @@ > %%G%%/data_dir/coverages/mosaic_sample/global_mosaic_9.png > %%G%%/data_dir/coverages/mosaic_sample/global_mosaic_9.prj > %%G%%/data_dir/coverages/mosaic_sample/info.xml.sample >-@exec [ -f %B/info.xml ] || cp %B/%f %B/info.xml >+@exec [ -f %B/info.xml ] || cp -p %B/%f %B/info.xml > %%G%%/data_dir/coverages/mosaic_sample/mosaic.dbf > %%G%%/data_dir/coverages/mosaic_sample/mosaic.fix > %%G%%/data_dir/coverages/mosaic_sample/mosaic.prj > %%G%%/data_dir/coverages/mosaic_sample/mosaic.properties.sample >-@exec [ -f %B/mosaic.properties ] || cp %B/%f %B/mosaic.properties >+@exec [ -f %B/mosaic.properties ] || cp -p %B/%f %B/mosaic.properties > %%G%%/data_dir/coverages/mosaic_sample/mosaic.qix > %%G%%/data_dir/coverages/mosaic_sample/mosaic.shp > %%G%%/data_dir/coverages/mosaic_sample/mosaic.shx >+%%G%%/data_dir/coverages/sfdem_sfdem/info.xml.sample >+@exec [ -f %B/info.xml ] || cp -p %B/%f %B/info.xml > %%G%%/data_dir/data/nyc/giant_polygon.dbf >-%%G%%/data_dir/data/nyc/giant_polygon.fix > %%G%%/data_dir/data/nyc/giant_polygon.prj > %%G%%/data_dir/data/nyc/giant_polygon.qix > %%G%%/data_dir/data/nyc/giant_polygon.shp > %%G%%/data_dir/data/nyc/giant_polygon.shx > %%G%%/data_dir/data/nyc/poi.dbf >-%%G%%/data_dir/data/nyc/poi.fix > %%G%%/data_dir/data/nyc/poi.prj > %%G%%/data_dir/data/nyc/poi.qix > %%G%%/data_dir/data/nyc/poi.shp > %%G%%/data_dir/data/nyc/poi.shx > %%G%%/data_dir/data/nyc/poly_landmarks.dbf >-%%G%%/data_dir/data/nyc/poly_landmarks.fix > %%G%%/data_dir/data/nyc/poly_landmarks.prj > %%G%%/data_dir/data/nyc/poly_landmarks.qix > %%G%%/data_dir/data/nyc/poly_landmarks.shp > %%G%%/data_dir/data/nyc/poly_landmarks.shx > %%G%%/data_dir/data/nyc/tiger_roads.dbf >-%%G%%/data_dir/data/nyc/tiger_roads.fix > %%G%%/data_dir/data/nyc/tiger_roads.prj > %%G%%/data_dir/data/nyc/tiger_roads.qix > %%G%%/data_dir/data/nyc/tiger_roads.shp > %%G%%/data_dir/data/nyc/tiger_roads.shx > %%G%%/data_dir/data/sf/archsites.dbf >-%%G%%/data_dir/data/sf/archsites.fix > %%G%%/data_dir/data/sf/archsites.prj > %%G%%/data_dir/data/sf/archsites.shp > %%G%%/data_dir/data/sf/archsites.shx > %%G%%/data_dir/data/sf/bugsites.dbf >-%%G%%/data_dir/data/sf/bugsites.fix > %%G%%/data_dir/data/sf/bugsites.prj > %%G%%/data_dir/data/sf/bugsites.shp > %%G%%/data_dir/data/sf/bugsites.shx > %%G%%/data_dir/data/sf/restricted.dbf >-%%G%%/data_dir/data/sf/restricted.fix > %%G%%/data_dir/data/sf/restricted.prj > %%G%%/data_dir/data/sf/restricted.shp > %%G%%/data_dir/data/sf/restricted.shx > %%G%%/data_dir/data/sf/roads.dbf >-%%G%%/data_dir/data/sf/roads.fix > %%G%%/data_dir/data/sf/roads.prj > %%G%%/data_dir/data/sf/roads.shp > %%G%%/data_dir/data/sf/roads.shx > %%G%%/data_dir/data/sf/sfdem.tif > %%G%%/data_dir/data/sf/streams.dbf >-%%G%%/data_dir/data/sf/streams.fix > %%G%%/data_dir/data/sf/streams.prj > %%G%%/data_dir/data/sf/streams.shp > %%G%%/data_dir/data/sf/streams.shx > %%G%%/data_dir/data/shapefiles/states.dbf >-%%G%%/data_dir/data/shapefiles/states.fix > %%G%%/data_dir/data/shapefiles/states.prj >-%%G%%/data_dir/data/shapefiles/states.qix > %%G%%/data_dir/data/shapefiles/states.shp > %%G%%/data_dir/data/shapefiles/states.shx > %%G%%/data_dir/data/taz_shapes/tasmania_cities.dbf >-%%G%%/data_dir/data/taz_shapes/tasmania_cities.fix > %%G%%/data_dir/data/taz_shapes/tasmania_cities.prj > %%G%%/data_dir/data/taz_shapes/tasmania_cities.shp > %%G%%/data_dir/data/taz_shapes/tasmania_cities.shx > %%G%%/data_dir/data/taz_shapes/tasmania_roads.dbf >-%%G%%/data_dir/data/taz_shapes/tasmania_roads.fix > %%G%%/data_dir/data/taz_shapes/tasmania_roads.prj >-%%G%%/data_dir/data/taz_shapes/tasmania_roads.qix > %%G%%/data_dir/data/taz_shapes/tasmania_roads.shp > %%G%%/data_dir/data/taz_shapes/tasmania_roads.shx > %%G%%/data_dir/data/taz_shapes/tasmania_state_boundaries.dbf >-%%G%%/data_dir/data/taz_shapes/tasmania_state_boundaries.fix > %%G%%/data_dir/data/taz_shapes/tasmania_state_boundaries.prj > %%G%%/data_dir/data/taz_shapes/tasmania_state_boundaries.shp > %%G%%/data_dir/data/taz_shapes/tasmania_state_boundaries.shx > %%G%%/data_dir/data/taz_shapes/tasmania_water_bodies.dbf >-%%G%%/data_dir/data/taz_shapes/tasmania_water_bodies.fix > %%G%%/data_dir/data/taz_shapes/tasmania_water_bodies.prj > %%G%%/data_dir/data/taz_shapes/tasmania_water_bodies.shp > %%G%%/data_dir/data/taz_shapes/tasmania_water_bodies.shx > %%G%%/data_dir/demo/WCS_describeCoverage.xml.sample >-@exec [ -f %B/WCS_describeCoverage.xml ] || cp %B/%f %B/WCS_describeCoverage.xml >+@exec [ -f %B/WCS_describeCoverage.xml ] || cp -p %B/%f %B/WCS_describeCoverage.xml > %%G%%/data_dir/demo/WCS_getCapabilities.xml.sample >-@exec [ -f %B/WCS_getCapabilities.xml ] || cp %B/%f %B/WCS_getCapabilities.xml >+@exec [ -f %B/WCS_getCapabilities.xml ] || cp -p %B/%f %B/WCS_getCapabilities.xml > %%G%%/data_dir/demo/WCS_getCoverage.xml.sample >-@exec [ -f %B/WCS_getCoverage.xml ] || cp %B/%f %B/WCS_getCoverage.xml >+@exec [ -f %B/WCS_getCoverage.xml ] || cp -p %B/%f %B/WCS_getCoverage.xml > %%G%%/data_dir/demo/WFS_describeFeatureType-1.0.xml.sample >-@exec [ -f %B/WFS_describeFeatureType-1.0.xml ] || cp %B/%f %B/WFS_describeFeatureType-1.0.xml >+@exec [ -f %B/WFS_describeFeatureType-1.0.xml ] || cp -p %B/%f %B/WFS_describeFeatureType-1.0.xml > %%G%%/data_dir/demo/WFS_describeFeatureType-1.1.xml.sample >-@exec [ -f %B/WFS_describeFeatureType-1.1.xml ] || cp %B/%f %B/WFS_describeFeatureType-1.1.xml >+@exec [ -f %B/WFS_describeFeatureType-1.1.xml ] || cp -p %B/%f %B/WFS_describeFeatureType-1.1.xml > %%G%%/data_dir/demo/WFS_getCapabilities-1.0.xml.sample >-@exec [ -f %B/WFS_getCapabilities-1.0.xml ] || cp %B/%f %B/WFS_getCapabilities-1.0.xml >+@exec [ -f %B/WFS_getCapabilities-1.0.xml ] || cp -p %B/%f %B/WFS_getCapabilities-1.0.xml > %%G%%/data_dir/demo/WFS_getCapabilities-1.1.xml.sample >-@exec [ -f %B/WFS_getCapabilities-1.1.xml ] || cp %B/%f %B/WFS_getCapabilities-1.1.xml >+@exec [ -f %B/WFS_getCapabilities-1.1.xml ] || cp -p %B/%f %B/WFS_getCapabilities-1.1.xml > %%G%%/data_dir/demo/WFS_getFeature-1.0.xml.sample >-@exec [ -f %B/WFS_getFeature-1.0.xml ] || cp %B/%f %B/WFS_getFeature-1.0.xml >+@exec [ -f %B/WFS_getFeature-1.0.xml ] || cp -p %B/%f %B/WFS_getFeature-1.0.xml > %%G%%/data_dir/demo/WFS_getFeature-1.1.xml.sample >-@exec [ -f %B/WFS_getFeature-1.1.xml ] || cp %B/%f %B/WFS_getFeature-1.1.xml >+@exec [ -f %B/WFS_getFeature-1.1.xml ] || cp -p %B/%f %B/WFS_getFeature-1.1.xml > %%G%%/data_dir/demo/WFS_getFeatureBBOX-1.0.xml.sample >-@exec [ -f %B/WFS_getFeatureBBOX-1.0.xml ] || cp %B/%f %B/WFS_getFeatureBBOX-1.0.xml >+@exec [ -f %B/WFS_getFeatureBBOX-1.0.xml ] || cp -p %B/%f %B/WFS_getFeatureBBOX-1.0.xml > %%G%%/data_dir/demo/WFS_getFeatureBBOX-1.1.xml.sample >-@exec [ -f %B/WFS_getFeatureBBOX-1.1.xml ] || cp %B/%f %B/WFS_getFeatureBBOX-1.1.xml >+@exec [ -f %B/WFS_getFeatureBBOX-1.1.xml ] || cp -p %B/%f %B/WFS_getFeatureBBOX-1.1.xml > %%G%%/data_dir/demo/WFS_getFeatureBBOX.url > %%G%%/data_dir/demo/WFS_getFeatureBetween-1.0.xml.sample >-@exec [ -f %B/WFS_getFeatureBetween-1.0.xml ] || cp %B/%f %B/WFS_getFeatureBetween-1.0.xml >+@exec [ -f %B/WFS_getFeatureBetween-1.0.xml ] || cp -p %B/%f %B/WFS_getFeatureBetween-1.0.xml > %%G%%/data_dir/demo/WFS_getFeatureBetween-1.1.xml.sample >-@exec [ -f %B/WFS_getFeatureBetween-1.1.xml ] || cp %B/%f %B/WFS_getFeatureBetween-1.1.xml >+@exec [ -f %B/WFS_getFeatureBetween-1.1.xml ] || cp -p %B/%f %B/WFS_getFeatureBetween-1.1.xml > %%G%%/data_dir/demo/WFS_getFeatureBetween.url > %%G%%/data_dir/demo/WFS_getFeatureBetweenCQL.url > %%G%%/data_dir/demo/WFS_getFeatureFid.url > %%G%%/data_dir/demo/WFS_getFeatureFidFilter.url > %%G%%/data_dir/demo/WFS_getFeatureIntersects-1.0.xml.sample >-@exec [ -f %B/WFS_getFeatureIntersects-1.0.xml ] || cp %B/%f %B/WFS_getFeatureIntersects-1.0.xml >+@exec [ -f %B/WFS_getFeatureIntersects-1.0.xml ] || cp -p %B/%f %B/WFS_getFeatureIntersects-1.0.xml > %%G%%/data_dir/demo/WFS_getFeatureIntersects-1.1.xml.sample >-@exec [ -f %B/WFS_getFeatureIntersects-1.1.xml ] || cp %B/%f %B/WFS_getFeatureIntersects-1.1.xml >+@exec [ -f %B/WFS_getFeatureIntersects-1.1.xml ] || cp -p %B/%f %B/WFS_getFeatureIntersects-1.1.xml > %%G%%/data_dir/demo/WFS_getFeatureIntersects.url > %%G%%/data_dir/demo/WFS_getFeatureMultiFilter.url > %%G%%/data_dir/demo/WFS_mathGetFeature.url > %%G%%/data_dir/demo/WFS_mathGetFeature.xml.sample >-@exec [ -f %B/WFS_mathGetFeature.xml ] || cp %B/%f %B/WFS_mathGetFeature.xml >+@exec [ -f %B/WFS_mathGetFeature.xml ] || cp -p %B/%f %B/WFS_mathGetFeature.xml > %%G%%/data_dir/demo/WFS_transactionDelete.xml.sample >-@exec [ -f %B/WFS_transactionDelete.xml ] || cp %B/%f %B/WFS_transactionDelete.xml >+@exec [ -f %B/WFS_transactionDelete.xml ] || cp -p %B/%f %B/WFS_transactionDelete.xml > %%G%%/data_dir/demo/WFS_transactionInsert.xml.sample >-@exec [ -f %B/WFS_transactionInsert.xml ] || cp %B/%f %B/WFS_transactionInsert.xml >+@exec [ -f %B/WFS_transactionInsert.xml ] || cp -p %B/%f %B/WFS_transactionInsert.xml > %%G%%/data_dir/demo/WFS_transactionUpdate.xml.sample >-@exec [ -f %B/WFS_transactionUpdate.xml ] || cp %B/%f %B/WFS_transactionUpdate.xml >+@exec [ -f %B/WFS_transactionUpdate.xml ] || cp -p %B/%f %B/WFS_transactionUpdate.xml > %%G%%/data_dir/demo/WFS_transactionUpdateGeom.xml.sample >-@exec [ -f %B/WFS_transactionUpdateGeom.xml ] || cp %B/%f %B/WFS_transactionUpdateGeom.xml >+@exec [ -f %B/WFS_transactionUpdateGeom.xml ] || cp -p %B/%f %B/WFS_transactionUpdateGeom.xml > %%G%%/data_dir/demo/WMS_GetLegendGraphic-SLD.url > %%G%%/data_dir/demo/WMS_GetLegendGraphic-SLD_BODY.url > %%G%%/data_dir/demo/WMS_GetLegendGraphic.url >@@ -429,356 +412,339 @@ > %%G%%/data_dir/demo/WMS_getMap.url > %%G%%/data_dir/demo/WMS_getMap_OpenLayers.url > %%G%%/data_dir/demo/WMS_getMap_SLD_BODY_LiteralMode.url >+%%G%%/data_dir/demo/WMS_getMap_SLD_BODY_LiteralMode-1.3.url > %%G%%/data_dir/demo/WMS_getMap_SVG.url > %%G%%/data_dir/demo/WMS_getMap_SVG_Style.url > %%G%%/data_dir/demo/WMS_getMap_fid.url > %%G%%/data_dir/demo/WMS_getMap_fidfilter.url > %%G%%/data_dir/demo/WMS_getMap_inlineFeature.url > %%G%%/data_dir/demo/WMS_getMap_inlineFeatureSmile.xml.sample >-@exec [ -f %B/WMS_getMap_inlineFeatureSmile.xml ] || cp %B/%f %B/WMS_getMap_inlineFeatureSmile.xml >+@exec [ -f %B/WMS_getMap_inlineFeatureSmile.xml ] || cp -p %B/%f %B/WMS_getMap_inlineFeatureSmile.xml > %%G%%/data_dir/demo/WMS_getMap_multilayer.url > %%G%%/data_dir/demo/WMS_getMap_multilayer_cql.url > %%G%%/data_dir/demo/WMS_getMap_multilayer_filter.url > %%G%%/data_dir/global.xml.sample >-@exec [ -f %B/global.xml ] || cp %B/%f %B/global.xml >+@exec [ -f %B/global.xml ] || cp -p %B/%f %B/global.xml > %%G%%/data_dir/layergroups/spearfish.xml.sample >-@exec [ -f %B/spearfish.xml ] || cp %B/%f %B/spearfish.xml >+@exec [ -f %B/spearfish.xml ] || cp -p %B/%f %B/spearfish.xml > %%G%%/data_dir/layergroups/tasmania.xml.sample >-@exec [ -f %B/tasmania.xml ] || cp %B/%f %B/tasmania.xml >+@exec [ -f %B/tasmania.xml ] || cp -p %B/%f %B/tasmania.xml > %%G%%/data_dir/layergroups/tiger-ny.xml.sample >-@exec [ -f %B/tiger-ny.xml ] || cp %B/%f %B/tiger-ny.xml >+@exec [ -f %B/tiger-ny.xml ] || cp -p %B/%f %B/tiger-ny.xml > %%G%%/data_dir/logging.xml.sample >-@exec [ -f %B/logging.xml ] || cp %B/%f %B/logging.xml >-%%G%%/data_dir/logs/DEFAULT_LOGGING.properties.sample >-@exec [ -f %B/DEFAULT_LOGGING.properties ] || cp %B/%f %B/DEFAULT_LOGGING.properties >-%%G%%/data_dir/logs/GEOSERVER_DEVELOPER_LOGGING.properties.sample >-@exec [ -f %B/GEOSERVER_DEVELOPER_LOGGING.properties ] || cp %B/%f %B/GEOSERVER_DEVELOPER_LOGGING.properties >-%%G%%/data_dir/logs/GEOTOOLS_DEVELOPER_LOGGING.properties.sample >-@exec [ -f %B/GEOTOOLS_DEVELOPER_LOGGING.properties ] || cp %B/%f %B/GEOTOOLS_DEVELOPER_LOGGING.properties >-%%G%%/data_dir/logs/PRODUCTION_LOGGING.properties.sample >-@exec [ -f %B/PRODUCTION_LOGGING.properties ] || cp %B/%f %B/PRODUCTION_LOGGING.properties >-%%G%%/data_dir/logs/VERBOSE_LOGGING.properties.sample >-@exec [ -f %B/VERBOSE_LOGGING.properties ] || cp %B/%f %B/VERBOSE_LOGGING.properties >+@exec [ -f %B/logging.xml ] || cp -p %B/%f %B/logging.xml > %%G%%/data_dir/palettes/dem31.pal > %%G%%/data_dir/palettes/ita31.pal > %%G%%/data_dir/palettes/ny31.pal > %%G%%/data_dir/palettes/popshade.png > %%G%%/data_dir/plugIns/AddressGap.xml.sample >-@exec [ -f %B/AddressGap.xml ] || cp %B/%f %B/AddressGap.xml >+@exec [ -f %B/AddressGap.xml ] || cp -p %B/%f %B/AddressGap.xml > %%G%%/data_dir/plugIns/AddressOverlap.xml.sample >-@exec [ -f %B/AddressOverlap.xml ] || cp %B/%f %B/AddressOverlap.xml >+@exec [ -f %B/AddressOverlap.xml ] || cp -p %B/%f %B/AddressOverlap.xml > %%G%%/data_dir/plugIns/AngleSize.xml.sample >-@exec [ -f %B/AngleSize.xml ] || cp %B/%f %B/AngleSize.xml >+@exec [ -f %B/AngleSize.xml ] || cp -p %B/%f %B/AngleSize.xml > %%G%%/data_dir/plugIns/Attribute.xml.sample >-@exec [ -f %B/Attribute.xml ] || cp %B/%f %B/Attribute.xml >+@exec [ -f %B/Attribute.xml ] || cp -p %B/%f %B/Attribute.xml > %%G%%/data_dir/plugIns/Constraint.xml.sample >-@exec [ -f %B/Constraint.xml ] || cp %B/%f %B/Constraint.xml >+@exec [ -f %B/Constraint.xml ] || cp -p %B/%f %B/Constraint.xml > %%G%%/data_dir/plugIns/ContainsIntegrity.xml.sample >-@exec [ -f %B/ContainsIntegrity.xml ] || cp %B/%f %B/ContainsIntegrity.xml >+@exec [ -f %B/ContainsIntegrity.xml ] || cp -p %B/%f %B/ContainsIntegrity.xml > %%G%%/data_dir/plugIns/CrossesIntegrity.xml.sample >-@exec [ -f %B/CrossesIntegrity.xml ] || cp %B/%f %B/CrossesIntegrity.xml >+@exec [ -f %B/CrossesIntegrity.xml ] || cp -p %B/%f %B/CrossesIntegrity.xml > %%G%%/data_dir/plugIns/DisjointIntegrity.xml.sample >-@exec [ -f %B/DisjointIntegrity.xml ] || cp %B/%f %B/DisjointIntegrity.xml >+@exec [ -f %B/DisjointIntegrity.xml ] || cp -p %B/%f %B/DisjointIntegrity.xml > %%G%%/data_dir/plugIns/Domain.xml.sample >-@exec [ -f %B/Domain.xml ] || cp %B/%f %B/Domain.xml >+@exec [ -f %B/Domain.xml ] || cp -p %B/%f %B/Domain.xml > %%G%%/data_dir/plugIns/Equality.xml.sample >-@exec [ -f %B/Equality.xml ] || cp %B/%f %B/Equality.xml >+@exec [ -f %B/Equality.xml ] || cp -p %B/%f %B/Equality.xml > %%G%%/data_dir/plugIns/GazetteerName.xml.sample >-@exec [ -f %B/GazetteerName.xml ] || cp %B/%f %B/GazetteerName.xml >+@exec [ -f %B/GazetteerName.xml ] || cp -p %B/%f %B/GazetteerName.xml > %%G%%/data_dir/plugIns/IntersectsIntegrity.xml.sample >-@exec [ -f %B/IntersectsIntegrity.xml ] || cp %B/%f %B/IntersectsIntegrity.xml >+@exec [ -f %B/IntersectsIntegrity.xml ] || cp -p %B/%f %B/IntersectsIntegrity.xml > %%G%%/data_dir/plugIns/IsValidGeometry.xml.sample >-@exec [ -f %B/IsValidGeometry.xml ] || cp %B/%f %B/IsValidGeometry.xml >+@exec [ -f %B/IsValidGeometry.xml ] || cp -p %B/%f %B/IsValidGeometry.xml > %%G%%/data_dir/plugIns/LineCoveredByFeatureLine.xml.sample >-@exec [ -f %B/LineCoveredByFeatureLine.xml ] || cp %B/%f %B/LineCoveredByFeatureLine.xml >+@exec [ -f %B/LineCoveredByFeatureLine.xml ] || cp -p %B/%f %B/LineCoveredByFeatureLine.xml > %%G%%/data_dir/plugIns/LineCoveredByPolygon.xml.sample >-@exec [ -f %B/LineCoveredByPolygon.xml ] || cp %B/%f %B/LineCoveredByPolygon.xml >+@exec [ -f %B/LineCoveredByPolygon.xml ] || cp -p %B/%f %B/LineCoveredByPolygon.xml > %%G%%/data_dir/plugIns/LineCoveredByPolygonBoundary.xml.sample >-@exec [ -f %B/LineCoveredByPolygonBoundary.xml ] || cp %B/%f %B/LineCoveredByPolygonBoundary.xml >+@exec [ -f %B/LineCoveredByPolygonBoundary.xml ] || cp -p %B/%f %B/LineCoveredByPolygonBoundary.xml > %%G%%/data_dir/plugIns/LineEndPointCoveredByLine.xml.sample >-@exec [ -f %B/LineEndPointCoveredByLine.xml ] || cp %B/%f %B/LineEndPointCoveredByLine.xml >+@exec [ -f %B/LineEndPointCoveredByLine.xml ] || cp -p %B/%f %B/LineEndPointCoveredByLine.xml > %%G%%/data_dir/plugIns/LineIntersectsLineWithNode.xml.sample >-@exec [ -f %B/LineIntersectsLineWithNode.xml ] || cp %B/%f %B/LineIntersectsLineWithNode.xml >+@exec [ -f %B/LineIntersectsLineWithNode.xml ] || cp -p %B/%f %B/LineIntersectsLineWithNode.xml > %%G%%/data_dir/plugIns/LineMustBeASinglePart.xml.sample >-@exec [ -f %B/LineMustBeASinglePart.xml ] || cp %B/%f %B/LineMustBeASinglePart.xml >+@exec [ -f %B/LineMustBeASinglePart.xml ] || cp -p %B/%f %B/LineMustBeASinglePart.xml > %%G%%/data_dir/plugIns/LineNoDangles.xml.sample >-@exec [ -f %B/LineNoDangles.xml ] || cp %B/%f %B/LineNoDangles.xml >+@exec [ -f %B/LineNoDangles.xml ] || cp -p %B/%f %B/LineNoDangles.xml > %%G%%/data_dir/plugIns/LineNoPseudoNode.xml.sample >-@exec [ -f %B/LineNoPseudoNode.xml ] || cp %B/%f %B/LineNoPseudoNode.xml >+@exec [ -f %B/LineNoPseudoNode.xml ] || cp -p %B/%f %B/LineNoPseudoNode.xml > %%G%%/data_dir/plugIns/LineNoSelfIntersect.xml.sample >-@exec [ -f %B/LineNoSelfIntersect.xml ] || cp %B/%f %B/LineNoSelfIntersect.xml >+@exec [ -f %B/LineNoSelfIntersect.xml ] || cp -p %B/%f %B/LineNoSelfIntersect.xml > %%G%%/data_dir/plugIns/LineNoSelfOverlapping.xml.sample >-@exec [ -f %B/LineNoSelfOverlapping.xml ] || cp %B/%f %B/LineNoSelfOverlapping.xml >+@exec [ -f %B/LineNoSelfOverlapping.xml ] || cp -p %B/%f %B/LineNoSelfOverlapping.xml > %%G%%/data_dir/plugIns/LineNotTouchingPolygonInterior.xml.sample >-@exec [ -f %B/LineNotTouchingPolygonInterior.xml ] || cp %B/%f %B/LineNotTouchingPolygonInterior.xml >+@exec [ -f %B/LineNotTouchingPolygonInterior.xml ] || cp -p %B/%f %B/LineNotTouchingPolygonInterior.xml > %%G%%/data_dir/plugIns/LinesNotIntersect.xml.sample >-@exec [ -f %B/LinesNotIntersect.xml ] || cp %B/%f %B/LinesNotIntersect.xml >+@exec [ -f %B/LinesNotIntersect.xml ] || cp -p %B/%f %B/LinesNotIntersect.xml > %%G%%/data_dir/plugIns/LinesNotOverlap.xml.sample >-@exec [ -f %B/LinesNotOverlap.xml ] || cp %B/%f %B/LinesNotOverlap.xml >+@exec [ -f %B/LinesNotOverlap.xml ] || cp -p %B/%f %B/LinesNotOverlap.xml > %%G%%/data_dir/plugIns/NameExists.xml.sample >-@exec [ -f %B/NameExists.xml ] || cp %B/%f %B/NameExists.xml >+@exec [ -f %B/NameExists.xml ] || cp -p %B/%f %B/NameExists.xml > %%G%%/data_dir/plugIns/NameInList.xml.sample >-@exec [ -f %B/NameInList.xml ] || cp %B/%f %B/NameInList.xml >+@exec [ -f %B/NameInList.xml ] || cp -p %B/%f %B/NameInList.xml > %%G%%/data_dir/plugIns/NullZero.xml.sample >-@exec [ -f %B/NullZero.xml ] || cp %B/%f %B/NullZero.xml >+@exec [ -f %B/NullZero.xml ] || cp -p %B/%f %B/NullZero.xml > %%G%%/data_dir/plugIns/OverlapsIntegrity.xml.sample >-@exec [ -f %B/OverlapsIntegrity.xml ] || cp %B/%f %B/OverlapsIntegrity.xml >+@exec [ -f %B/OverlapsIntegrity.xml ] || cp -p %B/%f %B/OverlapsIntegrity.xml > %%G%%/data_dir/plugIns/PointCoveredByEndPointOfLine.xml.sample >-@exec [ -f %B/PointCoveredByEndPointOfLine.xml ] || cp %B/%f %B/PointCoveredByEndPointOfLine.xml >+@exec [ -f %B/PointCoveredByEndPointOfLine.xml ] || cp -p %B/%f %B/PointCoveredByEndPointOfLine.xml > %%G%%/data_dir/plugIns/PointCoveredByLine.xml.sample >-@exec [ -f %B/PointCoveredByLine.xml ] || cp %B/%f %B/PointCoveredByLine.xml >+@exec [ -f %B/PointCoveredByLine.xml ] || cp -p %B/%f %B/PointCoveredByLine.xml > %%G%%/data_dir/plugIns/PointCoveredByPolygon.xml.sample >-@exec [ -f %B/PointCoveredByPolygon.xml ] || cp %B/%f %B/PointCoveredByPolygon.xml >+@exec [ -f %B/PointCoveredByPolygon.xml ] || cp -p %B/%f %B/PointCoveredByPolygon.xml > %%G%%/data_dir/plugIns/PointCoveredByPolygonBoundary.xml.sample >-@exec [ -f %B/PointCoveredByPolygonBoundary.xml ] || cp %B/%f %B/PointCoveredByPolygonBoundary.xml >+@exec [ -f %B/PointCoveredByPolygonBoundary.xml ] || cp -p %B/%f %B/PointCoveredByPolygonBoundary.xml > %%G%%/data_dir/plugIns/PointInsidePolygon.xml.sample >-@exec [ -f %B/PointInsidePolygon.xml ] || cp %B/%f %B/PointInsidePolygon.xml >+@exec [ -f %B/PointInsidePolygon.xml ] || cp -p %B/%f %B/PointInsidePolygon.xml > %%G%%/data_dir/plugIns/PolygonBoundaryCoveredByPolygon.xml.sample >-@exec [ -f %B/PolygonBoundaryCoveredByPolygon.xml ] || cp %B/%f %B/PolygonBoundaryCoveredByPolygon.xml >+@exec [ -f %B/PolygonBoundaryCoveredByPolygon.xml ] || cp -p %B/%f %B/PolygonBoundaryCoveredByPolygon.xml > %%G%%/data_dir/plugIns/PolygonCoveredByFeaturePolygon.xml.sample >-@exec [ -f %B/PolygonCoveredByFeaturePolygon.xml ] || cp %B/%f %B/PolygonCoveredByFeaturePolygon.xml >+@exec [ -f %B/PolygonCoveredByFeaturePolygon.xml ] || cp -p %B/%f %B/PolygonCoveredByFeaturePolygon.xml > %%G%%/data_dir/plugIns/PolygonCoveredByPolygon.xml.sample >-@exec [ -f %B/PolygonCoveredByPolygon.xml ] || cp %B/%f %B/PolygonCoveredByPolygon.xml >+@exec [ -f %B/PolygonCoveredByPolygon.xml ] || cp -p %B/%f %B/PolygonCoveredByPolygon.xml > %%G%%/data_dir/plugIns/PolygonNoGaps.xml.sample >-@exec [ -f %B/PolygonNoGaps.xml ] || cp %B/%f %B/PolygonNoGaps.xml >+@exec [ -f %B/PolygonNoGaps.xml ] || cp -p %B/%f %B/PolygonNoGaps.xml > %%G%%/data_dir/plugIns/PolygonNotCoveredByPolygon.xml.sample >-@exec [ -f %B/PolygonNotCoveredByPolygon.xml ] || cp %B/%f %B/PolygonNotCoveredByPolygon.xml >+@exec [ -f %B/PolygonNotCoveredByPolygon.xml ] || cp -p %B/%f %B/PolygonNotCoveredByPolygon.xml > %%G%%/data_dir/plugIns/PolygonNotOverlappingLine.xml.sample >-@exec [ -f %B/PolygonNotOverlappingLine.xml ] || cp %B/%f %B/PolygonNotOverlappingLine.xml >+@exec [ -f %B/PolygonNotOverlappingLine.xml ] || cp -p %B/%f %B/PolygonNotOverlappingLine.xml > %%G%%/data_dir/plugIns/PolygonNotOverlappingPolygon.xml.sample >-@exec [ -f %B/PolygonNotOverlappingPolygon.xml ] || cp %B/%f %B/PolygonNotOverlappingPolygon.xml >+@exec [ -f %B/PolygonNotOverlappingPolygon.xml ] || cp -p %B/%f %B/PolygonNotOverlappingPolygon.xml > %%G%%/data_dir/plugIns/Range.xml.sample >-@exec [ -f %B/Range.xml ] || cp %B/%f %B/Range.xml >+@exec [ -f %B/Range.xml ] || cp -p %B/%f %B/Range.xml > %%G%%/data_dir/plugIns/RelateIntegrity.xml.sample >-@exec [ -f %B/RelateIntegrity.xml ] || cp %B/%f %B/RelateIntegrity.xml >+@exec [ -f %B/RelateIntegrity.xml ] || cp -p %B/%f %B/RelateIntegrity.xml > %%G%%/data_dir/plugIns/SQL.xml.sample >-@exec [ -f %B/SQL.xml ] || cp %B/%f %B/SQL.xml >+@exec [ -f %B/SQL.xml ] || cp -p %B/%f %B/SQL.xml > %%G%%/data_dir/plugIns/SingleValue.xml.sample >-@exec [ -f %B/SingleValue.xml ] || cp %B/%f %B/SingleValue.xml >+@exec [ -f %B/SingleValue.xml ] || cp -p %B/%f %B/SingleValue.xml > %%G%%/data_dir/plugIns/StarNode.xml.sample >-@exec [ -f %B/StarNode.xml ] || cp %B/%f %B/StarNode.xml >+@exec [ -f %B/StarNode.xml ] || cp -p %B/%f %B/StarNode.xml > %%G%%/data_dir/plugIns/TouchesIntegrity.xml.sample >-@exec [ -f %B/TouchesIntegrity.xml ] || cp %B/%f %B/TouchesIntegrity.xml >+@exec [ -f %B/TouchesIntegrity.xml ] || cp -p %B/%f %B/TouchesIntegrity.xml > %%G%%/data_dir/plugIns/UniqueFID.xml.sample >-@exec [ -f %B/UniqueFID.xml ] || cp %B/%f %B/UniqueFID.xml >+@exec [ -f %B/UniqueFID.xml ] || cp -p %B/%f %B/UniqueFID.xml > %%G%%/data_dir/plugIns/Uniquity.xml.sample >-@exec [ -f %B/Uniquity.xml ] || cp %B/%f %B/Uniquity.xml >+@exec [ -f %B/Uniquity.xml ] || cp -p %B/%f %B/Uniquity.xml > %%G%%/data_dir/plugIns/WithinIntegrity.xml.sample >-@exec [ -f %B/WithinIntegrity.xml ] || cp %B/%f %B/WithinIntegrity.xml >+@exec [ -f %B/WithinIntegrity.xml ] || cp -p %B/%f %B/WithinIntegrity.xml > %%G%%/data_dir/security/layers.properties.sample >-@exec [ -f %B/layers.properties ] || cp %B/%f %B/layers.properties >-%%G%%/data_dir/security/rest.properties.sample >-@exec [ -f %B/rest.properties ] || cp %B/%f %B/rest.properties >+@exec [ -f %B/layers.properties ] || cp -p %B/%f %B/layers.properties > %%G%%/data_dir/security/service.properties.sample >-@exec [ -f %B/service.properties ] || cp %B/%f %B/service.properties >+@exec [ -f %B/service.properties ] || cp -p %B/%f %B/service.properties > %%G%%/data_dir/security/users.properties.sample >-@exec [ -f %B/users.properties ] || cp %B/%f %B/users.properties >+@exec [ -f %B/users.properties ] || cp -p %B/%f %B/users.properties > %%G%%/data_dir/styles/Lakes.sld > %%G%%/data_dir/styles/NamedPlaces.sld > %%G%%/data_dir/styles/burg.sld > %%G%%/data_dir/styles/burg.xml.sample >-@exec [ -f %B/burg.xml ] || cp %B/%f %B/burg.xml >+@exec [ -f %B/burg.xml ] || cp -p %B/%f %B/burg.xml > %%G%%/data_dir/styles/burg02.svg > %%G%%/data_dir/styles/capitals.sld > %%G%%/data_dir/styles/capitals.xml.sample >-@exec [ -f %B/capitals.xml ] || cp %B/%f %B/capitals.xml >+@exec [ -f %B/capitals.xml ] || cp -p %B/%f %B/capitals.xml > %%G%%/data_dir/styles/cite_lakes.xml.sample >-@exec [ -f %B/cite_lakes.xml ] || cp %B/%f %B/cite_lakes.xml >-%%G%%/data_dir/styles/concat.xml.sample >-@exec [ -f %B/concat.xml ] || cp %B/%f %B/concat.xml >+@exec [ -f %B/cite_lakes.xml ] || cp -p %B/%f %B/cite_lakes.xml > %%G%%/data_dir/styles/default_line.sld > %%G%%/data_dir/styles/default_line2.sld > %%G%%/data_dir/styles/default_point.sld > %%G%%/data_dir/styles/default_polygon.sld > %%G%%/data_dir/styles/dem.sld > %%G%%/data_dir/styles/dem.xml.sample >-@exec [ -f %B/dem.xml ] || cp %B/%f %B/dem.xml >-%%G%%/data_dir/styles/flags.xml.sample >-@exec [ -f %B/flags.xml ] || cp %B/%f %B/flags.xml >+@exec [ -f %B/dem.xml ] || cp -p %B/%f %B/dem.xml > %%G%%/data_dir/styles/giant_polygon.sld > %%G%%/data_dir/styles/giant_polygon.xml.sample >-@exec [ -f %B/giant_polygon.xml ] || cp %B/%f %B/giant_polygon.xml >+@exec [ -f %B/giant_polygon.xml ] || cp -p %B/%f %B/giant_polygon.xml > %%G%%/data_dir/styles/grass.xml.sample >-@exec [ -f %B/grass.xml ] || cp %B/%f %B/grass.xml >+@exec [ -f %B/grass.xml ] || cp -p %B/%f %B/grass.xml > %%G%%/data_dir/styles/grass_fill.png > %%G%%/data_dir/styles/grass_poly.sld > %%G%%/data_dir/styles/green.sld > %%G%%/data_dir/styles/green.xml.sample >-@exec [ -f %B/green.xml ] || cp %B/%f %B/green.xml >+@exec [ -f %B/green.xml ] || cp -p %B/%f %B/green.xml > %%G%%/data_dir/styles/line.xml.sample >-@exec [ -f %B/line.xml ] || cp %B/%f %B/line.xml >+@exec [ -f %B/line.xml ] || cp -p %B/%f %B/line.xml > %%G%%/data_dir/styles/poi.sld > %%G%%/data_dir/styles/poi.xml.sample >-@exec [ -f %B/poi.xml ] || cp %B/%f %B/poi.xml >+@exec [ -f %B/poi.xml ] || cp -p %B/%f %B/poi.xml > %%G%%/data_dir/styles/point.xml.sample >-@exec [ -f %B/point.xml ] || cp %B/%f %B/point.xml >+@exec [ -f %B/point.xml ] || cp -p %B/%f %B/point.xml > %%G%%/data_dir/styles/poly_landmarks.sld > %%G%%/data_dir/styles/poly_landmarks.xml.sample >-@exec [ -f %B/poly_landmarks.xml ] || cp %B/%f %B/poly_landmarks.xml >+@exec [ -f %B/poly_landmarks.xml ] || cp -p %B/%f %B/poly_landmarks.xml > %%G%%/data_dir/styles/polygon.xml.sample >-@exec [ -f %B/polygon.xml ] || cp %B/%f %B/polygon.xml >+@exec [ -f %B/polygon.xml ] || cp -p %B/%f %B/polygon.xml > %%G%%/data_dir/styles/pophatch.sld > %%G%%/data_dir/styles/pophatch.xml.sample >-@exec [ -f %B/pophatch.xml ] || cp %B/%f %B/pophatch.xml >+@exec [ -f %B/pophatch.xml ] || cp -p %B/%f %B/pophatch.xml > %%G%%/data_dir/styles/popshade.sld > %%G%%/data_dir/styles/population.xml.sample >-@exec [ -f %B/population.xml ] || cp %B/%f %B/population.xml >+@exec [ -f %B/population.xml ] || cp -p %B/%f %B/population.xml > %%G%%/data_dir/styles/rain.sld > %%G%%/data_dir/styles/rain.xml.sample >-@exec [ -f %B/rain.xml ] || cp %B/%f %B/rain.xml >+@exec [ -f %B/rain.xml ] || cp -p %B/%f %B/rain.xml > %%G%%/data_dir/styles/raster.sld > %%G%%/data_dir/styles/raster.xml.sample >-@exec [ -f %B/raster.xml ] || cp %B/%f %B/raster.xml >+@exec [ -f %B/raster.xml ] || cp -p %B/%f %B/raster.xml > %%G%%/data_dir/styles/restricted.sld > %%G%%/data_dir/styles/restricted.xml.sample >-@exec [ -f %B/restricted.xml ] || cp %B/%f %B/restricted.xml >+@exec [ -f %B/restricted.xml ] || cp -p %B/%f %B/restricted.xml > %%G%%/data_dir/styles/simpleRoads.sld > %%G%%/data_dir/styles/simple_roads.xml.sample >-@exec [ -f %B/simple_roads.xml ] || cp %B/%f %B/simple_roads.xml >+@exec [ -f %B/simple_roads.xml ] || cp -p %B/%f %B/simple_roads.xml > %%G%%/data_dir/styles/simple_streams.sld > %%G%%/data_dir/styles/simple_streams.xml.sample >-@exec [ -f %B/simple_streams.xml ] || cp %B/%f %B/simple_streams.xml >+@exec [ -f %B/simple_streams.xml ] || cp -p %B/%f %B/simple_streams.xml > %%G%%/data_dir/styles/tiger_roads.sld > %%G%%/data_dir/styles/tiger_roads.xml.sample >-@exec [ -f %B/tiger_roads.xml ] || cp %B/%f %B/tiger_roads.xml >+@exec [ -f %B/tiger_roads.xml ] || cp -p %B/%f %B/tiger_roads.xml > %%G%%/data_dir/user_projections/epsg.properties.sample >-@exec [ -f %B/epsg.properties ] || cp %B/%f %B/epsg.properties >+@exec [ -f %B/epsg.properties ] || cp -p %B/%f %B/epsg.properties > %%G%%/data_dir/validation/FeatureCheck.xml.sample >-@exec [ -f %B/FeatureCheck.xml ] || cp %B/%f %B/FeatureCheck.xml >+@exec [ -f %B/FeatureCheck.xml ] || cp -p %B/%f %B/FeatureCheck.xml > %%G%%/data_dir/validation/IntegrityCheck.xml.sample >-@exec [ -f %B/IntegrityCheck.xml ] || cp %B/%f %B/IntegrityCheck.xml >+@exec [ -f %B/IntegrityCheck.xml ] || cp -p %B/%f %B/IntegrityCheck.xml > %%G%%/data_dir/wcs.xml.sample >-@exec [ -f %B/wcs.xml ] || cp %B/%f %B/wcs.xml >+@exec [ -f %B/wcs.xml ] || cp -p %B/%f %B/wcs.xml > %%G%%/data_dir/wfs.xml.sample >-@exec [ -f %B/wfs.xml ] || cp %B/%f %B/wfs.xml >+@exec [ -f %B/wfs.xml ] || cp -p %B/%f %B/wfs.xml > %%G%%/data_dir/wms.xml.sample >-@exec [ -f %B/wms.xml ] || cp %B/%f %B/wms.xml >-%%G%%/data_dir/workspaces/default.xml.sample >-@exec [ -f %B/default.xml ] || cp %B/%f %B/default.xml >+@exec [ -f %B/wms.xml ] || cp -p %B/%f %B/wms.xml > %%G%%/data_dir/workspaces/cite/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/cite/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/it.geosolutions/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/it.geosolutions/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/nurc/arcGridSample/Arc_Sample/coverage.xml.sample >-@exec [ -f %B/coverage.xml ] || cp %B/%f %B/coverage.xml >+@exec [ -f %B/coverage.xml ] || cp -p %B/%f %B/coverage.xml > %%G%%/data_dir/workspaces/nurc/arcGridSample/Arc_Sample/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/nurc/arcGridSample/coveragestore.xml.sample >-@exec [ -f %B/coveragestore.xml ] || cp %B/%f %B/coveragestore.xml >+@exec [ -f %B/coveragestore.xml ] || cp -p %B/%f %B/coveragestore.xml > %%G%%/data_dir/workspaces/nurc/img_sample2/Pk50095/coverage.xml.sample >-@exec [ -f %B/coverage.xml ] || cp %B/%f %B/coverage.xml >+@exec [ -f %B/coverage.xml ] || cp -p %B/%f %B/coverage.xml > %%G%%/data_dir/workspaces/nurc/img_sample2/Pk50095/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/nurc/img_sample2/coveragestore.xml.sample >-@exec [ -f %B/coveragestore.xml ] || cp %B/%f %B/coveragestore.xml >+@exec [ -f %B/coveragestore.xml ] || cp -p %B/%f %B/coveragestore.xml > %%G%%/data_dir/workspaces/nurc/mosaic/coveragestore.xml.sample >-@exec [ -f %B/coveragestore.xml ] || cp %B/%f %B/coveragestore.xml >+@exec [ -f %B/coveragestore.xml ] || cp -p %B/%f %B/coveragestore.xml > %%G%%/data_dir/workspaces/nurc/mosaic/mosaic/coverage.xml.sample >-@exec [ -f %B/coverage.xml ] || cp %B/%f %B/coverage.xml >+@exec [ -f %B/coverage.xml ] || cp -p %B/%f %B/coverage.xml > %%G%%/data_dir/workspaces/nurc/mosaic/mosaic/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/nurc/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/nurc/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/nurc/worldImageSample/Img_Sample/coverage.xml.sample >-@exec [ -f %B/coverage.xml ] || cp %B/%f %B/coverage.xml >+@exec [ -f %B/coverage.xml ] || cp -p %B/%f %B/coverage.xml > %%G%%/data_dir/workspaces/nurc/worldImageSample/Img_Sample/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/nurc/worldImageSample/coveragestore.xml.sample >-@exec [ -f %B/coveragestore.xml ] || cp %B/%f %B/coveragestore.xml >+@exec [ -f %B/coveragestore.xml ] || cp -p %B/%f %B/coveragestore.xml > %%G%%/data_dir/workspaces/sde/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/sde/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/sf/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/sf/sf/archsites/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/sf/sf/archsites/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/sf/bugsites/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/sf/sf/bugsites/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/sf/datastore.xml.sample >-@exec [ -f %B/datastore.xml ] || cp %B/%f %B/datastore.xml >+@exec [ -f %B/datastore.xml ] || cp -p %B/%f %B/datastore.xml > %%G%%/data_dir/workspaces/sf/sf/restricted/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/sf/sf/restricted/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/sf/roads/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/sf/sf/roads/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/sf/streams/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/sf/sf/streams/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/sfdem/coveragestore.xml.sample >-@exec [ -f %B/coveragestore.xml ] || cp %B/%f %B/coveragestore.xml >+@exec [ -f %B/coveragestore.xml ] || cp -p %B/%f %B/coveragestore.xml > %%G%%/data_dir/workspaces/sf/sfdem/sfdem/coverage.xml.sample >-@exec [ -f %B/coverage.xml ] || cp %B/%f %B/coverage.xml >+@exec [ -f %B/coverage.xml ] || cp -p %B/%f %B/coverage.xml > %%G%%/data_dir/workspaces/sf/sfdem/sfdem/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/sf/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/tiger/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/tiger/nyc/datastore.xml.sample >-@exec [ -f %B/datastore.xml ] || cp %B/%f %B/datastore.xml >+@exec [ -f %B/datastore.xml ] || cp -p %B/%f %B/datastore.xml > %%G%%/data_dir/workspaces/tiger/nyc/giant_polygon/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/tiger/nyc/giant_polygon/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/tiger/nyc/poi/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/tiger/nyc/poi/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/tiger/nyc/poly_landmarks/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/tiger/nyc/poly_landmarks/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/tiger/nyc/tiger_roads/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/tiger/nyc/tiger_roads/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/tiger/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/workspaces/topp/namespace.xml.sample >-@exec [ -f %B/namespace.xml ] || cp %B/%f %B/namespace.xml >+@exec [ -f %B/namespace.xml ] || cp -p %B/%f %B/namespace.xml > %%G%%/data_dir/workspaces/topp/states_shapefile/datastore.xml.sample >-@exec [ -f %B/datastore.xml ] || cp %B/%f %B/datastore.xml >+@exec [ -f %B/datastore.xml ] || cp -p %B/%f %B/datastore.xml > %%G%%/data_dir/workspaces/topp/states_shapefile/states/description.ftl > %%G%%/data_dir/workspaces/topp/states_shapefile/states/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/topp/states_shapefile/states/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/topp/states_shapefile/states/title.ftl > %%G%%/data_dir/workspaces/topp/taz_shapes/datastore.xml.sample >-@exec [ -f %B/datastore.xml ] || cp %B/%f %B/datastore.xml >+@exec [ -f %B/datastore.xml ] || cp -p %B/%f %B/datastore.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_cities/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_cities/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_roads/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_roads/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_state_boundaries/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_state_boundaries/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_water_bodies/featuretype.xml.sample >-@exec [ -f %B/featuretype.xml ] || cp %B/%f %B/featuretype.xml >+@exec [ -f %B/featuretype.xml ] || cp -p %B/%f %B/featuretype.xml > %%G%%/data_dir/workspaces/topp/taz_shapes/tasmania_water_bodies/layer.xml.sample >-@exec [ -f %B/layer.xml ] || cp %B/%f %B/layer.xml >+@exec [ -f %B/layer.xml ] || cp -p %B/%f %B/layer.xml > %%G%%/data_dir/workspaces/topp/workspace.xml.sample >-@exec [ -f %B/workspace.xml ] || cp %B/%f %B/workspace.xml >+@exec [ -f %B/workspace.xml ] || cp -p %B/%f %B/workspace.xml > %%G%%/data_dir/www/ol-demo.html > %%G%%/data_dir/www/openlayers/OpenLayers.js > %%G%%/data_dir/www/openlayers/img/blank.gif >@@ -840,25 +806,25 @@ > %%G%%/data_dir/www/styles/remoteTasmania.sld > %%G%%/data_dir/www/wfs-t.html > %%G%%/etc/jdbcRealm.properties.sample >-@exec [ -f %B/jdbcRealm.properties ] || cp %B/%f %B/jdbcRealm.properties >+@exec [ -f %B/jdbcRealm.properties ] || cp -p %B/%f %B/jdbcRealm.properties > %%G%%/etc/jetty-jmx-platform.xml.sample >-@exec [ -f %B/jetty-jmx-platform.xml ] || cp %B/%f %B/jetty-jmx-platform.xml >+@exec [ -f %B/jetty-jmx-platform.xml ] || cp -p %B/%f %B/jetty-jmx-platform.xml > %%G%%/etc/jetty-jmx.xml.sample >-@exec [ -f %B/jetty-jmx.xml ] || cp %B/%f %B/jetty-jmx.xml >+@exec [ -f %B/jetty-jmx.xml ] || cp -p %B/%f %B/jetty-jmx.xml > %%G%%/etc/jetty-plus.xml.sample >-@exec [ -f %B/jetty-plus.xml ] || cp %B/%f %B/jetty-plus.xml >+@exec [ -f %B/jetty-plus.xml ] || cp -p %B/%f %B/jetty-plus.xml > %%G%%/etc/jetty-ssl.xml.sample >-@exec [ -f %B/jetty-ssl.xml ] || cp %B/%f %B/jetty-ssl.xml >+@exec [ -f %B/jetty-ssl.xml ] || cp -p %B/%f %B/jetty-ssl.xml > %%G%%/etc/jetty.xml.sample >-@exec [ -f %B/jetty.xml ] || cp %B/%f %B/jetty.xml >+@exec [ -f %B/jetty.xml ] || cp -p %B/%f %B/jetty.xml > %%G%%/etc/keystore.sample >-@exec [ -f %B/keystore ] || cp %B/%f %B/keystore >+@exec [ -f %B/keystore ] || cp -p %B/%f %B/keystore > %%G%%/etc/realm.properties.sample >-@exec [ -f %B/realm.properties ] || cp %B/%f %B/realm.properties >+@exec [ -f %B/realm.properties ] || cp -p %B/%f %B/realm.properties > %%G%%/etc/stresstest.xml.sample >-@exec [ -f %B/stresstest.xml ] || cp %B/%f %B/stresstest.xml >+@exec [ -f %B/stresstest.xml ] || cp -p %B/%f %B/stresstest.xml > %%G%%/etc/webdefault.xml.sample >-@exec [ -f %B/webdefault.xml ] || cp %B/%f %B/webdefault.xml >+@exec [ -f %B/webdefault.xml ] || cp -p %B/%f %B/webdefault.xml > %%G%%/lib/ant-1.6.4.jar > %%G%%/lib/ant-optional-1.5.1.jar > %%G%%/lib/commons-el-1.0.jar >@@ -876,7 +842,7 @@ > %%G%%/lib/xmlParserAPIs-2.6.2.jar > %%G%%/logs/keepme.txt > %%G%%/resources/log4j.properties.sample >-@exec [ -f %B/log4j.properties ] || cp %B/%f %B/log4j.properties >+@exec [ -f %B/log4j.properties ] || cp -p %B/%f %B/log4j.properties > %%G%%/start.jar > %%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/GeoserverInitStartupListener.class > %%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/AlternativesResponseStream.class >@@ -891,12 +857,15 @@ > %%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/ReverseProxyFilter$CacheingResponseWrapper$DeferredCacheingOutputStream.class > %%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/ReverseProxyFilter$CacheingResponseWrapper.class > %%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/ReverseProxyFilter.class >+%%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/SessionDebugFilter$SessionDebugWrapper.class >+%%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/SessionDebugFilter.class >+%%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/SpringDelegatingFilter$Chain.class >+%%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/SpringDelegatingFilter.class >+%%G%%/webapps/geoserver/WEB-INF/classes/org/geoserver/filters/ThreadLocalsCleanupFilter.class > %%G%%/webapps/geoserver/WEB-INF/dispatcher-servlet.xml.sample >-@exec [ -f %B/dispatcher-servlet.xml ] || cp %B/%f %B/dispatcher-servlet.xml >-%%G%%/webapps/geoserver/WEB-INF/lib/acegi-security-1.0.7.jar >+@exec [ -f %B/dispatcher-servlet.xml ] || cp -p %B/%f %B/dispatcher-servlet.xml > %%G%%/webapps/geoserver/WEB-INF/lib/activation-1.1.jar > %%G%%/webapps/geoserver/WEB-INF/lib/ant-optional-1.5.1.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/antlr-2.7.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/aopalliance-1.0.jar > %%G%%/webapps/geoserver/WEB-INF/lib/avalon-framework-api-4.3.1.jar > %%G%%/webapps/geoserver/WEB-INF/lib/avalon-framework-impl-4.3.1.jar >@@ -924,7 +893,7 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/commons-beanutils-1.7.0.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-codec-1.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-collections-3.1.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/commons-dbcp-1.2.2.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/commons-dbcp-1.3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-digester-1.7.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-fileupload-1.2.1.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-httpclient-3.1.jar >@@ -935,18 +904,15 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/commons-pool-1.5.3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/commons-validator-1.1.4.jar > %%G%%/webapps/geoserver/WEB-INF/lib/ecore-2.2.2.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/ehcache-1.6.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/ezmorph-1.0.6.jar > %%G%%/webapps/geoserver/WEB-INF/lib/fop-0.94.jar > %%G%%/webapps/geoserver/WEB-INF/lib/freemarker-2.3.13.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/geoapi-2.3-M1.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/geoapi-pending-2.3-M1.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/geowebcache-1.2.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-api-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-arcgrid-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-coverage-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-cql-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-data-%%GTVER%%.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/gt-directory-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-epsg-hsql-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-geotiff-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-graph-%%GTVER%%.jar >@@ -958,55 +924,73 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/gt-jdbc-postgis-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-main-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-metadata-%%GTVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gt-opengis-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-property-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-referencing-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-render-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-renderer-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-svg-%%GTVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gt-temporal-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-validation-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-wfs-%%GTVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gt-wms-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xml-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-core-%%GTVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-fes-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-filter-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml2-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml3-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-ows-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-sld-%%GTVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-wcs-%%GTVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-wfs-%%GTVER%%.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/gwc-2.0.2.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/h2-1.1.104.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-2.1.0.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-core-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-diskquota-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-georss-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-gmaps-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-kml-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-rest-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-tms-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-ve-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-wms-1.2.6.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/gwc-wmts-1.2.6.jar > %%G%%/webapps/geoserver/WEB-INF/lib/h2-1.1.119.jar > %%G%%/webapps/geoserver/WEB-INF/lib/hsqldb-1.8.0.7.jar > %%G%%/webapps/geoserver/WEB-INF/lib/htmlvalidator-1.2.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-arcgrid-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-customstreams-1.0.5.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-arcgrid-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-customstreams-1.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdal-bindings-1.4.5b.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalarcbinarygrid-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdaldted-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecw-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecwjp2-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalehdr-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalenvihdr-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalerdasimg-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalframework-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalkakadujp2-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsid-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsidjp2-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalnitf-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-geocore-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-imagereadmt-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-tiff-1.0.5.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-utilities-1.0.5.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalarcbinarygrid-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdaldted-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecw-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecwjp2-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalehdr-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalenvihdr-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalerdasimg-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalframework-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalkakadujp2-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsid-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsidjp2-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalnitf-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-geocore-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-imagereadmt-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-tiff-1.0.8.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-utilities-1.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/itext-2.1.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jai_codec-1.1.3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jai_core-1.1.3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jai_imageio-1.1.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jdom-1.0.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/je-4.1.7.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jettison-1.0.1.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/json-lib-2.1-jdk13.jar > %%G%%/webapps/geoserver/WEB-INF/lib/json-lib-2.2.3-jdk15.jar > %%G%%/webapps/geoserver/WEB-INF/lib/jsr-275-1.0-beta-2.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/jts-1.10.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/jt-utils-1.1.1.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/jt-vectorbinarize-1.1.1.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/jts-1.11.jar > %%G%%/webapps/geoserver/WEB-INF/lib/log4j-1.2.14.jar > %%G%%/webapps/geoserver/WEB-INF/lib/mail-1.4.jar > %%G%%/webapps/geoserver/WEB-INF/lib/main-%%MVER%%.jar >@@ -1016,7 +1000,7 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/org.json-2.0.jar > %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet-1.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.freemarker-1.0.8.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.json-1.0.1.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.json-1.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.spring-1.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/org.simpleframework-3.1.3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/org.w3.xlink-%%GTVER%%.jar >@@ -1027,8 +1011,9 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/platform-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/postgresql-8.4-701.jdbc3.jar > %%G%%/webapps/geoserver/WEB-INF/lib/rest-%%MVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/restconfig-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/servlet-api-2.4.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/slf4j-api-1.4.2.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/slf4j-api-1.5.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/slf4j-log4j12-1.4.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-aop-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-beans-2.5.5.jar >@@ -1036,14 +1021,17 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/spring-context-support-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-core-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-jdbc-2.5.5.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/spring-security-core-2.0.6.RELEASE.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/spring-security-core-tiger-2.0.6.RELEASE.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/spring-support-2.0.8.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-tx-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-web-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/spring-webmvc-2.5.5.jar > %%G%%/webapps/geoserver/WEB-INF/lib/stax-1.2.0.jar > %%G%%/webapps/geoserver/WEB-INF/lib/stax-api-1.0.1.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/struts-1.2.9.jar > %%G%%/webapps/geoserver/WEB-INF/lib/vecmath-1.3.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/wcs-%%MVER%%.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/wcs1_0-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/wcs1_1-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/web-core-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/web-demo-%%MVER%%.jar >@@ -1053,10 +1041,10 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/web-wfs-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/web-wms-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/wfs-%%MVER%%.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/wicket-1.3.7.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/wicket-extensions-1.3.7.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/wicket-ioc-1.3.7.jar >-%%G%%/webapps/geoserver/WEB-INF/lib/wicket-spring-1.3.7.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/wicket-1.4.12.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/wicket-extensions-1.4.12.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/wicket-ioc-1.4.12.jar >+%%G%%/webapps/geoserver/WEB-INF/lib/wicket-spring-1.4.12.jar > %%G%%/webapps/geoserver/WEB-INF/lib/wms-%%MVER%%.jar > %%G%%/webapps/geoserver/WEB-INF/lib/xalan-2.7.0.jar > %%G%%/webapps/geoserver/WEB-INF/lib/xercesImpl-2.6.2.jar >@@ -1069,8 +1057,9 @@ > %%G%%/webapps/geoserver/WEB-INF/lib/xsd-2.2.2.jar > %%G%%/webapps/geoserver/WEB-INF/lib/xstream-1.3.1.jar > %%G%%/webapps/geoserver/WEB-INF/web.xml.sample >-@exec [ -f %B/web.xml ] || cp %B/%f %B/web.xml >+@exec [ -f %B/web.xml ] || cp -p %B/%f %B/web.xml > %%G%%/webapps/geoserver/j_acegi_security_check >+%%G%%/webapps/geoserver/j_spring_security_check > %%G%%/webapps/geoserver/index.html > %%G%%/webapps/geoserver/openlayers/OpenLayers.js > %%G%%/webapps/geoserver/openlayers/img/blank.gif >@@ -1208,7 +1197,7 @@ > %%G%%/webapps/geoserver/schemas/wcs/1.0.0/wcsCapabilities.xsd > %%G%%/webapps/geoserver/schemas/wcs/1.1.1/gml4wcs.xsd > %%G%%/webapps/geoserver/schemas/wcs/1.1.1/interpolationMethods.xml.sample >-@exec [ -f %B/interpolationMethods.xml ] || cp %B/%f %B/interpolationMethods.xml >+@exec [ -f %B/interpolationMethods.xml ] || cp -p %B/%f %B/interpolationMethods.xml > %%G%%/webapps/geoserver/schemas/wcs/1.1.1/wcsAll.xsd > %%G%%/webapps/geoserver/schemas/wcs/1.1.1/wcsCommon.xsd > %%G%%/webapps/geoserver/schemas/wcs/1.1.1/wcsContents.xsd >@@ -1229,11 +1218,14 @@ > %%G%%/webapps/geoserver/schemas/wms/1.1.1/WMS_DescribeLayerResponse.dtd > %%G%%/webapps/geoserver/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd > %%G%%/webapps/geoserver/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd >+%%G%%/webapps/geoserver/schemas/wms/1.3.0/capabilities_1_3_0.xsd >+%%G%%/webapps/geoserver/schemas/wms/1.3.0/exceptions_1_3_0.xsd > %%G%%/webapps/geoserver/schemas/xlink/1.0.0/xlinks.xsd > @dirrmtry %%G%%/bin > @dirrmtry %%G%%/data_dir/coverages/arc_sample > @dirrmtry %%G%%/data_dir/coverages/img_sample > @dirrmtry %%G%%/data_dir/coverages/mosaic_sample >+@dirrmtry %%G%%/data_dir/coverages/sfdem_sfdem > @dirrmtry %%G%%/data_dir/coverages > @dirrmtry %%G%%/data_dir/data/nyc > @dirrmtry %%G%%/data_dir/data/sf >@@ -1241,8 +1233,6 @@ > @dirrmtry %%G%%/data_dir/data/taz_shapes > @dirrmtry %%G%%/data_dir/data > @dirrmtry %%G%%/data_dir/demo >-@dirrmtry %%G%%/data_dir/gwc/meta_jdbc_h2 >-@dirrmtry %%G%%/data_dir/gwc > @dirrmtry %%G%%/data_dir/layergroups > @dirrmtry %%G%%/data_dir/logs > @dirrmtry %%G%%/data_dir/palettes >@@ -1332,6 +1322,7 @@ > @dirrmtry %%G%%/webapps/geoserver/schemas/wfs/1.1.0 > @dirrmtry %%G%%/webapps/geoserver/schemas/wfs > @dirrmtry %%G%%/webapps/geoserver/schemas/wms/1.1.1 >+@dirrmtry %%G%%/webapps/geoserver/schemas/wms/1.3.0 > @dirrmtry %%G%%/webapps/geoserver/schemas/wms > @dirrmtry %%G%%/webapps/geoserver/schemas/xlink/1.0.0 > @dirrmtry %%G%%/webapps/geoserver/schemas/xlink
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 157878
: 115986