Mercurial > mxd2map
changeset 256:4dc2b9aa3c57
Added LGPL header.
author | raimund renkert <raimund.renkert@intevation.de> |
---|---|
date | Mon, 15 Aug 2011 15:03:44 +0200 |
parents | 5c80058c08f6 |
children | 1ac277053049 |
files | ChangeLog build.xml conf/log4j.properties contrib/apache/mxd-testbed.conf contrib/python/FixWorkspacePaths.py contrib/python/generateHTML.py contrib/sh/test_mxd.cgi contrib/sh/wms_mxd.cgi converter.properties.sample doku/Makefile doku/source/functionality.txt doku/source/restrictions.txt mapserver/epsg/epsg mapserver/fonts/fonts.txt mapserver/mapfile/mapfile_header.include mapserver/mapfile/mxd.map mapserver/symbols/symbols.sym properties.xml ttf-fonts/fonts.txt |
diffstat | 19 files changed, 353 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Aug 15 14:12:19 2011 +0200 +++ b/ChangeLog Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,25 @@ +2011-08-15 Raimund Renkert <raimund.renkert@intevation.de> + + * build.xml, + conf/log4j.properties, + contrib/apache/mxd-testbed.conf, + contrib/python/FixWorkspacePaths.py, + contrib/python/generateHTML.py, + contrib/sh/test_mxd.cgi, + contrib/sh/wms_mxd.cgi, + converter.properties.sample, + doku/Makefile, + doku/source/functionality.txt, + doku/source/restrictions.txt, + mapserver/epsg/epsg, + mapserver/fonts/fonts.txt, + mapserver/mapfile/mapfile_header.include, + mapserver/mapfile/mxd.map, + mapserver/symbols/symbols.sym, + properties.xml, + ttf-fonts/fonts.txt: + Added LGPL header. + 2011-08-15 Raimund Renkert <raimund.renkert@intevation.de> * src/java/de/intevation/mxd/Converter.java:
--- a/build.xml Mon Aug 15 14:12:19 2011 +0200 +++ b/build.xml Mon Aug 15 15:03:44 2011 +0200 @@ -2,6 +2,27 @@ <!DOCTYPE project[ <!ENTITY properties SYSTEM "properties.xml"> ]> +<!-- +/* + * Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> + * + * This file is part of MXD2map. + * + * This program is free software under the LGPL (>=v2.1) + * Read the file LICENCE.txt coming with the software for details + * or visit http://www.gnu.org/licenses/ if it does not exist. + * + * MXD2map has been developed on behalf of the + * Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg + * by Intevation GmbH. + * + * Authors: + * Raimund Renkert <raimund.renkert@intevation.de> + * Bjoern Schilberg <bjoern.schilberg@intevation.de> + * Stephan Holl <stephan.holl@intevation.de> +*/ +--> + <!-- :mode=ant --> <project name="MXD-Konverter" default="all" basedir=".">
--- a/conf/log4j.properties Mon Aug 15 14:12:19 2011 +0200 +++ b/conf/log4j.properties Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + #### Log just errors and warnings to a file. log4j.rootLogger=DEBUG, MXD, Console
--- a/contrib/apache/mxd-testbed.conf Mon Aug 15 14:12:19 2011 +0200 +++ b/contrib/apache/mxd-testbed.conf Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # # VirtualHost template # Note: to use the template, rename it to /etc/apache2/vhost.d/yourvhost.conf.
--- a/contrib/python/FixWorkspacePaths.py Mon Aug 15 14:12:19 2011 +0200 +++ b/contrib/python/FixWorkspacePaths.py Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + import arcpy, os inputMXD = arcpy.GetParameterAsText(0)
--- a/contrib/python/generateHTML.py Mon Aug 15 14:12:19 2011 +0200 +++ b/contrib/python/generateHTML.py Mon Aug 15 15:03:44 2011 +0200 @@ -1,7 +1,22 @@ #!/usr/bin/env python # -# (C) 2011, Intevation GmbH, Stephan Holl <stephan.holl@intevation.de> +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. # +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # # Generate a HTML-Page based on a recursive folder structure of generated # mapfiles from MXD2map
--- a/contrib/sh/test_mxd.cgi Mon Aug 15 14:12:19 2011 +0200 +++ b/contrib/sh/test_mxd.cgi Mon Aug 15 15:03:44 2011 +0200 @@ -1,4 +1,22 @@ #!/bin/sh +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # SLES compatible MS_MAPFILE=/tmp/test.map export MS_MAPFILE
--- a/contrib/sh/wms_mxd.cgi Mon Aug 15 14:12:19 2011 +0200 +++ b/contrib/sh/wms_mxd.cgi Mon Aug 15 15:03:44 2011 +0200 @@ -1,4 +1,22 @@ #!/bin/sh +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # SLES compatible MS_MAPFILE=/home/intevation/mxd-testbed/mapserver/mapfile/mxd.map export MS_MAPFILE
--- a/converter.properties.sample Mon Aug 15 14:12:19 2011 +0200 +++ b/converter.properties.sample Mon Aug 15 15:03:44 2011 +0200 @@ -1,4 +1,23 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # Java properties file for the MXD Converter Tool. + mxd = \\full\\path\\to\\mxd-file map = \\full\\path\\to\\map-file map-template = \\full\\path\\to\\mapfile-template
--- a/doku/Makefile Mon Aug 15 14:12:19 2011 +0200 +++ b/doku/Makefile Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # Makefile for Sphinx documentation #
--- a/doku/source/functionality.txt Mon Aug 15 14:12:19 2011 +0200 +++ b/doku/source/functionality.txt Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,22 @@ +.. +.. Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +.. +.. This file is part of MXD2map. +.. +.. This program is free software under the LGPL (>=v2.1) +.. Read the file LICENCE.txt coming with the software for details +.. or visit http://www.gnu.org/licenses/ if it does not exist. +.. +.. MXD2map has been developed on behalf of the +.. Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +.. by Intevation GmbH. +.. +.. Authors: +.. Raimund Renkert <raimund.renkert@intevation.de> +.. Bjoern Schilberg <bjoern.schilberg@intevation.de> +.. Stephan Holl <stephan.holl@intevation.de> + + .. index:: features, functionality, configuration, runtime-parameter, commandline -------------
--- a/doku/source/restrictions.txt Mon Aug 15 14:12:19 2011 +0200 +++ b/doku/source/restrictions.txt Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,22 @@ +.. +.. Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +.. +.. This file is part of MXD2map. +.. +.. This program is free software under the LGPL (>=v2.1) +.. Read the file LICENCE.txt coming with the software for details +.. or visit http://www.gnu.org/licenses/ if it does not exist. +.. +.. MXD2map has been developed on behalf of the +.. Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +.. by Intevation GmbH. +.. +.. Authors: +.. Raimund Renkert <raimund.renkert@intevation.de> +.. Bjoern Schilberg <bjoern.schilberg@intevation.de> +.. Stephan Holl <stephan.holl@intevation.de> + + .. index:: restrictions, label, Raster, ArcSDE, SDE, workaround, picture-symols, windows, ArcEngine .. _restriction-label:
--- a/mapserver/epsg/epsg Mon Aug 15 14:12:19 2011 +0200 +++ b/mapserver/epsg/epsg Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # WGS 84 / LAT-LON <4326> +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs <>
--- a/mapserver/fonts/fonts.txt Mon Aug 15 14:12:19 2011 +0200 +++ b/mapserver/fonts/fonts.txt Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + ## SLES 11 DejaVuSans /usr/share/fonts/truetype/DejaVuSans.ttf
--- a/mapserver/mapfile/mapfile_header.include Mon Aug 15 14:12:19 2011 +0200 +++ b/mapserver/mapfile/mapfile_header.include Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + STATUS ON SIZE 400 400 EXTENT 3427000 5787000 3444200 5801000
--- a/mapserver/mapfile/mxd.map Mon Aug 15 14:12:19 2011 +0200 +++ b/mapserver/mapfile/mxd.map Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + #MapServer mxd map file MAP
--- a/mapserver/symbols/symbols.sym Mon Aug 15 14:12:19 2011 +0200 +++ b/mapserver/symbols/symbols.sym Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + SYMBOLSET # basic symbol for hatching in all variantes which # will be combined inside the STYLE-block
--- a/properties.xml Mon Aug 15 14:12:19 2011 +0200 +++ b/properties.xml Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,24 @@ +<!-- +/* + * Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> + * + * This file is part of MXD2map. + * + * This program is free software under the LGPL (>=v2.1) + * Read the file LICENCE.txt coming with the software for details + * or visit http://www.gnu.org/licenses/ if it does not exist. + * + * MXD2map has been developed on behalf of the + * Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg + * by Intevation GmbH. + * + * Authors: + * Raimund Renkert <raimund.renkert@intevation.de> + * Bjoern Schilberg <bjoern.schilberg@intevation.de> + * Stephan Holl <stephan.holl@intevation.de> + */ +--> + <!-- ========================================= --> <!-- load environment variables --> <!-- ========================================= -->
--- a/ttf-fonts/fonts.txt Mon Aug 15 14:12:19 2011 +0200 +++ b/ttf-fonts/fonts.txt Mon Aug 15 15:03:44 2011 +0200 @@ -1,3 +1,21 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany <info@intevation.de> +# +# This file is part of MXD2map. +# +# This program is free software under the LGPL (>=v2.1) +# Read the file LICENCE.txt coming with the software for details +# or visit http://www.gnu.org/licenses/ if it does not exist. +# +# MXD2map has been developed on behalf of the +# Bundesamt fuer Seeschifffahrt und Hydrographie (BSH) in Hamburg +# by Intevation GmbH. +# +# Authors: +# Raimund Renkert <raimund.renkert@intevation.de> +# Bjoern Schilberg <bjoern.schilberg@intevation.de> +# Stephan Holl <stephan.holl@intevation.de> + # Make sure that your alias-names do _not_ contain spaces since the # parser does not handle that correctly. #