# HG changeset patch # User intevation@vbox-server2003.hq.intevation.de # Date 1315479724 -7200 # Node ID 42c89821a8681ae700d359fc0f3eec887803791d # Parent 2cb2f26d0d54971b6b8ecd27abc535487884b996 Added installer files. diff -r 2cb2f26d0d54 -r 42c89821a868 ChangeLog --- a/ChangeLog Tue Aug 16 17:15:35 2011 +0200 +++ b/ChangeLog Thu Sep 08 13:02:04 2011 +0200 @@ -1,3 +1,31 @@ +2011-09-08 Raimund Renkert + + Added installer files. + + * contrib\installer\bin\MXD2map-Shell.bat, + contrib\installer\bin\conf\log4j.properties + contrib\installer\bin\converter.properties.sample + contrib\installer\bin\epsg\epsg + contrib\installer\bin\favicon.ico + contrib\installer\bin\lib\commons-codec-1.5.jar + contrib\installer\bin\lib\jargs.jar + contrib\installer\bin\lib\log4j-1.2.16.jar + contrib\installer\bin\lib\mapscript.dll + contrib\installer\bin\lib\mapscript.jar + contrib\installer\bin\ms_6.1-dev\Readme.txt + contrib\installer\bin\symbols\symbols.sym + contrib\installer\bin\ttf-fonts\DejaVuSans.ttf + contrib\installer\bin\ttf-fonts\fonts.txt + contrib\installer\example\epsg\epsg + contrib\installer\example\example.mxd + contrib\installer\example\mapfile_header.include + contrib\installer\example\symbols\symbols.sym + contrib\installer\example\template.map + contrib\installer\example\testdata-frida\Readme.txt + contrib\installer\example\ttf-fonts\DejaVuSans.ttf + contrib\installer\example\ttf-fonts\fonts.txt: + New. + 2011-08-16 Raimund Renkert * src/java/de/intevation/mxd/reader/GroupLayerReader.java, diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/MXD2map-Shell.bat --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/MXD2map-Shell.bat Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,40 @@ +@echo off +if "%1" == "setenv" goto setenv + +%comspec% /k MXD2map-Shell.bat setenv %1 +goto exit + +:setenv +@echo Setting environment for using MXD2map based on gisinternals.com windows builds. +@echo See http://mxd2map.org and http://gisinternals.com/sdk/ for details. + +if "%2"=="hideoci" goto hideoci + +set ocipath=0 +set _path="%PATH:;=" "%" +for %%p in (%_path%) do if not "%%~p"=="" if exist %%~p\oci.dll set ocipath=1 + +if "%ocipath%"=="0" goto hideoci +@echo WARNING: If you encounter problems with missing oci libraries then type: +@echo MXD2mapShell hideoci +goto setenv2 + +:hideoci +@echo Hiding the OCI plugin library. +if not exist %CD%\ms_6.1-dev\bin\gdal\plugins-optional mkdir %CD%\ms_6.1-dev\bin\gdal\plugins-optional +if exist %CD%\ms_6.1-dev\bin\gdal\plugins\ogr_OCI.dll move %CD%\ms_6.1-dev\bin\gdal\plugins\ogr_OCI.dll %CD%\ms_6.1-dev\bin\gdal\plugins-optional\ogr_OCI.dll +if exist %CD%\ms_6.1-dev\bin\gdal\plugins\gdal_GEOR.dll move %CD%\ms_6.1-dev\bin\gdal\plugins\gdal_GEOR.dll %CD%\ms_6.1-dev\bin\gdal\plugins-optional\gdal_GEOR.dll + +REM SEE Details about the installation of arcobjects.jar!! +REM http://forums.arcgis.com/threads/17398-Unable-to-initialize-ArcObjects-environment-%28Java-API%29 +REM http://forums.arcgis.com/threads/12833-ArcGIS-Server-initialize-license-%28Java-version%29 +REM SEE Details about the installation of arcobjects.jar!! +:setenv2 +SET PATH=C:\Program Files\ArcGIS\DeveloperKit10.0\java\jre\bin;C:\Program Files\Java\jdk1.6.0_26\bin;C:\Program Files\ArcGIS\Desktop10.0\bin;C:\Program Files\ArcGIS\Desktop10.0\java\lib;C:\Program Files\ArcGIS\DeveloperKit10.0\java\tools\ant\bin;%CD%\ms_6.1-dev\bin;%CD%\ms_6.1-dev\bin\gdal\python\osgeo;%CD%\ms_6.1-dev\bin\proj\apps;%CD%\ms_6.1-dev\bin\gdal\apps;%CD%\ms_6.1-dev\bin\ms\apps;%CD%\ms_6.1-dev\bin\gdal\csharp;%CD%\ms_6.1-dev\bin\ms\csharp;%CD%\ms_6.1-dev\bin\curl;%CD%\ms_6.1-dev\bin\ms\java;%PATH% +SET GDAL_DATA=%CD%\ms_6.1-dev\bin\gdal-data +SET GDAL_DRIVER_PATH=%CD%\ms_6.1-dev\bin\gdal\plugins +SET PYTHONPATH=%CD%\ms_6.1-dev\bin\gdal\python\osgeo +SET PROJ_LIB=%CD%\bin\proj\SHARE +SET CURL_CA_BUNDLE=C:\ms4w\Apache\conf\ca-bundle\cacert.pem +SET JAVA_HOME=C:\Program Files\Java\jdk1.6.0_26 +:exit diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/conf/log4j.properties --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/conf/log4j.properties Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,16 @@ +#### Log just errors and warnings to a file. +log4j.rootLogger=DEBUG, MXD, Console + +log4j.appender.MXD=org.apache.log4j.RollingFileAppender +log4j.appender.MXD.File=${user.home}/MXD2map/logs/console-client.log +log4j.appender.MXD.MaxFileSize=5000KB +log4j.appender.MXD.MaxBackupIndex=1 +log4j.appender.MXD.layout=org.apache.log4j.PatternLayout +log4j.appender.MXD.layout.ConversionPattern=%d [%t] %-5p %c - %m%n + +#log4j.rootLogger=WARN, Console +log4j.appender.Console=org.apache.log4j.ConsoleAppender +log4j.appender.Console.Threshold=INFO +log4j.appender.Console.layout=org.apache.log4j.PatternLayout +log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p %c - %m%n + diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/converter.properties.sample --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/converter.properties.sample Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,23 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany +# +# 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 +# Bjoern Schilberg +# Stephan Holl + +# 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 diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/epsg/epsg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/epsg/epsg Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,5 @@ +# WGS 84 / LAT-LON +<4326> +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs <> + +# DHDN / Gauss-Kruger zone 3 +<31467> +proj=tmerc +lat_0=0 +lon_0=9 +k=1 +x_0=3500000 +y_0=0 +ellps=bessel +datum=potsdam +units=m +no_defs <> diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/favicon.ico Binary file contrib/installer/bin/favicon.ico has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/lib/commons-codec-1.5.jar Binary file contrib/installer/bin/lib/commons-codec-1.5.jar has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/lib/jargs.jar Binary file contrib/installer/bin/lib/jargs.jar has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/lib/log4j-1.2.16.jar Binary file contrib/installer/bin/lib/log4j-1.2.16.jar has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/lib/mapscript.dll Binary file contrib/installer/bin/lib/mapscript.dll has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/lib/mapscript.jar Binary file contrib/installer/bin/lib/mapscript.jar has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/ms_6.1-dev/Readme.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/ms_6.1-dev/Readme.txt Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,28 @@ +Download the installation package for MapServer from + +http://gisinternals.com/sdk/ + +and unpack the binaries. + +The following structure is expected for the MXD2map converter: + +ms_6.1-dev +|-- bin +| |-- curl +| |-- gdal +| | |-- apps +| | |-- plugins +| | `-- plugins-optional +| |-- gdal-data +| |-- ms +| | |-- apps +| | |-- java +| | `-- plugins +| | |-- mssql2008 +| | |-- oci +| | `-- sde +| `-- proj +| |-- apps +| `-- SHARE +`-- doc + diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/symbols/symbols.sym --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/symbols/symbols.sym Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,8 @@ +SYMBOLSET + # basic symbol for hatching in all variantes which + # will be combined inside the STYLE-block + SYMBOL + NAME "hatch" + TYPE hatch + END +END diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/ttf-fonts/DejaVuSans.ttf Binary file contrib/installer/bin/ttf-fonts/DejaVuSans.ttf has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/bin/ttf-fonts/fonts.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/bin/ttf-fonts/fonts.txt Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,81 @@ +# Make sure that your alias-names do _not_ contain spaces since the +# parser does not handle that correctly. +# +# Also make sure providing the fonts referenced here inside this folder or +# adopt the paths accordinly. +# +# FreeSans is a default fallback-font. +FreeSans DejaVuSans.ttf +ESRIMeteorological01 C:/Windows/Fonts/esri_105.ttf +ESRIDefaultMarker C:/Windows/Fonts/esri_11.ttf +ESRIOrdnanceSurvey C:/Windows/Fonts/esri_121.ttf +ESRINIMADNCPT C:/Windows/Fonts/esri_12.ttf +ESRISDS1.951 C:/Windows/Fonts/esri_130.ttf +ESRISDS1.952 C:/Windows/Fonts/esri_131.ttf +ESRISDS2.001 C:/Windows/Fonts/esri_132.ttf +ESRISDS2.002 C:/Windows/Fonts/esri_133.ttf +ESRINIMADNCLN C:/Windows/Fonts/esri_13.ttf +ESRIArrowhead C:/Windows/Fonts/esri_144.ttf +ESRISurveyor C:/Windows/Fonts/esri_149.ttf +ESRINIMAVMAP1&2PT C:/Windows/Fonts/esri_14.ttf +ESRIAMFMElectric C:/Windows/Fonts/esri_150.ttf +ESRIAMFMGas C:/Windows/Fonts/esri_151.ttf +ESRIAMFMSewer C:/Windows/Fonts/esri_152.ttf +ESRIAMFMWater C:/Windows/Fonts/esri_153.ttf +ESRIHydrants C:/Windows/Fonts/esri_159.ttf +ESRINIMAVMAP1&2LN C:/Windows/Fonts/esri_15.ttf +ESRITelecom C:/Windows/Fonts/esri_160.ttf +ESRIPipelineUS1 C:/Windows/Fonts/esri_161.ttf +ESRINIMACityGraphicPT C:/Windows/Fonts/esri_16.ttf +ESRINIMACityGraphicLN C:/Windows/Fonts/esri_17.ttf +ESRIMilMod02 C:/Windows/Fonts/esri_19.ttf +ESRICartography C:/Windows/Fonts/esri_1.ttf +ESRIMilRed01 C:/Windows/Fonts/esri_20.ttf +ESRIIGLFont16 C:/Windows/Fonts/esri_216.ttf +ESRIMilSym01 C:/Windows/Fonts/esri_21.ttf +ESRIIGLFont20 C:/Windows/Fonts/esri_220.ttf +ESRIIGLFont21 C:/Windows/Fonts/esri_221.ttf +ESRIIGLFont22 C:/Windows/Fonts/esri_222.ttf +ESRIIGLFont23 C:/Windows/Fonts/esri_223.ttf +ESRIIGLFont24 C:/Windows/Fonts/esri_224.ttf +ESRIIGLFont25 C:/Windows/Fonts/esri_225.ttf +ESRIMilSym02 C:/Windows/Fonts/esri_22.ttf +ESRIMilSym03 C:/Windows/Fonts/esri_23.ttf +ESRIMilSym04 C:/Windows/Fonts/esri_24.ttf +ESRIMilSym05 C:/Windows/Fonts/esri_25.ttf +ESRIMilMod01 C:/Windows/Fonts/esri_26.ttf +ESRIMil2525CModifiers C:/Windows/Fonts/esri_27Mcr_2.ttf +ESRIPublic1 C:/Windows/Fonts/esri_29.ttf +ESRIEnvironmental&Icons C:/Windows/Fonts/esri_2.ttf +ESRIArcPad C:/Windows/Fonts/esri_30s.ttf +ESRIClimate&Precipitation C:/Windows/Fonts/esri_33.ttf +ESRIBusiness C:/Windows/Fonts/esri_34.ttf +ESRICaves1 C:/Windows/Fonts/esri_375.ttf +ESRICaves2 C:/Windows/Fonts/esri_376.ttf +ESRICaves3 C:/Windows/Fonts/esri_377.ttf +ESRIDimensioning C:/Windows/Fonts/esri_39.ttf +ESRIGeometricSymbols C:/Windows/Fonts/esri_3.ttf +ESRIGeologyUSGS95-525 C:/Windows/Fonts/esri_400.ttf +ESRIElements C:/Windows/Fonts/esri_405.ttf +ESRICommodities C:/Windows/Fonts/esri_406.ttf +ESRINorth C:/Windows/Fonts/esri_40.ttf +ESRIShields C:/Windows/Fonts/esri_44.ttf +ESRIUSMUTCD1 C:/Windows/Fonts/esri_47.ttf +ESRIUSMUTCD2 C:/Windows/Fonts/esri_48.ttf +ESRIUSMUTCD3 C:/Windows/Fonts/esri_49.ttf +ESRIOilGasWater C:/Windows/Fonts/esri_4.ttf +ESRIGeologyAGSO1 C:/Windows/Fonts/esri_500.ttf +ESRIWeather C:/Windows/Fonts/esri_5.ttf +ESRIUSForestry1 C:/Windows/Fonts/esri_651.ttf +ESRIUSForestry2 C:/Windows/Fonts/esri_652.ttf +ESRIConservation C:/Windows/Fonts/esri_730.ttf +ESRIGeology C:/Windows/Fonts/esri_7.ttf +ESRIEnviroHazardIncident C:/Windows/Fonts/esri_800.ttf +ESRIEnviroHazardAnalysis C:/Windows/Fonts/esri_801.ttf +ESRIEnviroHazardSites C:/Windows/Fonts/esri_802.ttf +ESRIHazardousMaterials C:/Windows/Fonts/esri_803.ttf +ESRIFireIncidentNFPA C:/Windows/Fonts/esri_804.ttf +ESRIERSInfrastructuresS1 C:/Windows/Fonts/esri_832.ttf +ESRIERSOperationsS1 C:/Windows/Fonts/esri_837.ttf +ESRICrimeAnalysis C:/Windows/Fonts/esri_8.ttf +ESRITransportationCivic C:/Windows/Fonts/esri_9.ttf diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/epsg/epsg --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/epsg/epsg Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,5 @@ +# WGS 84 / LAT-LON +<4326> +proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs <> + +# DHDN / Gauss-Kruger zone 3 +<31467> +proj=tmerc +lat_0=0 +lon_0=9 +k=1 +x_0=3500000 +y_0=0 +ellps=bessel +datum=potsdam +units=m +no_defs <> diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/example.mxd Binary file contrib/installer/example/example.mxd has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/mapfile_header.include --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/mapfile_header.include Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,74 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany +# +# 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 +# Bjoern Schilberg +# Stephan Holl + +STATUS ON +EXTENT 3427000 5787000 3444200 5801000 +UNITS meters +IMAGECOLOR -1 -1 -1 #transparent +FONTSET "ttf-fonts/fonts.txt" +SYMBOLSET "../symbols/symbols.sym" +SHAPEPATH "example/testdata-frida/" +IMAGETYPE png + +MAXSIZE 2500 # 2500x2500 pixel maximum Site + +# Own PROJECTION-file +CONFIG "PROJ_LIB" "epsg" + +PROJECTION + "init=epsg:31467" +END + +#8bit png, supports transparency. +OUTPUTFORMAT + NAME aggpng + DRIVER AGG/PNG + MIMETYPE "image/png" + + ## transparency only with RGBA Image Mode + ## mapserver had to be compiled -with-experimental-png + + IMAGEMODE RGBA + EXTENSION "png" + + ## The next options works with transparency, when requesting another + ## layer within the same request. When requesting the layer alone, + ## everything seems black. TODO: Verify if this is a bug or a features. + ## Anyway, it reduces the PNG-filesize by 70% though! + FORMATOPTION "QUANTIZE_FORCE=ON" + FORMATOPTION "QUANTIZE_COLORS=256" + FORMATOPTION "QUANTIZE_NEW=ON" + + + ## The next options will work with transparency but are incompatible + ## with the previous quantization options. + #FORMATOPTION "PALETTE_FORCE=ON" + #FORMATOPTION "PALETTE=/home/geo4/mapserver/palette.txt" #to be defined + + TRANSPARENT ON +END + +#24bit png, supports all colors but does not support transparency. +OUTPUTFORMAT + NAME aggpng24 + DRIVER AGG/PNG + MIMETYPE "image/png; mode=24bit" + IMAGEMODE RGBA + EXTENSION "png" +END + diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/symbols/symbols.sym --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/symbols/symbols.sym Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,8 @@ +SYMBOLSET + # basic symbol for hatching in all variantes which + # will be combined inside the STYLE-block + SYMBOL + NAME "hatch" + TYPE hatch + END +END diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/template.map --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/template.map Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,58 @@ +# +# Copyright (c) 2011 by Intevation GmbH, Germany +# +# 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 +# Bjoern Schilberg +# Stephan Holl + +#MapServer mxd map file +MAP + + NAME "mxd" + INCLUDE "mapfile_header.include" + +WEB + IMAGEPATH "/tmp/" + IMAGEURL "/tmp/" + + METADATA + 'ows_title' 'Intevation MXD WMS DemoService' + 'ows_srs' 'EPSG:4326 EPSG:31467' + 'ows_extent' '3427000 5787000 3444200 5801000' + 'ows_addresstype' 'postal' + 'ows_address' 'Neuer Graben 17' + 'ows_postcode' '49074' + 'ows_city' 'Osnabrueck' + 'ows_stateorprovince' 'DE-NDS' + 'ows_country' 'DE' + 'ows_contactposition' 'Geospatial' + 'ows_contactorganization' 'Geospatial' + 'ows_contactvoicetelephone' '+49 541 33 50 83 0' + 'ows_contactfacsimiletelephone' '+49 541 33 50 83 99' + 'ows_contactelectronicmailaddress' 'geospatial@intevation.de' + 'ows_abstract' 'MXD - Demo-Dienst für die Überprüfung der Konvertierung der MXD Dateien nach MAP Dateien.' + 'ows_fees' 'Die Nutzung dieses Dienstes ist kostenfrei.' + 'ows_accessconstraints' 'Sämtliche Rechte an diesem Produkt liegen bei der Intevation GmbH.' + 'ows_keywordlist' 'MXD, STYLES, SYMBOLOGY' + 'ows_sld_enabled' 'false' + 'ows_http_max_age' '86400' # should 24h in seconds + 'ows_enable_request' '*' + 'wms_feature_info_mime_type' 'text/html' + 'wms_getmap_formatlist' 'image/png,image/png; mode=24bit' + 'wms_encoding' 'UTF-8' + 'wms_exceptions_format' 'XML' + END +END + +END diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/testdata-frida/Readme.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/testdata-frida/Readme.txt Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,3 @@ +Find shape testdata on FTP: + +ftp://ftp.intevation.de/freegis/frida/frida-1.0.1-shp.tar.gz \ No newline at end of file diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/ttf-fonts/DejaVuSans.ttf Binary file contrib/installer/example/ttf-fonts/DejaVuSans.ttf has changed diff -r 2cb2f26d0d54 -r 42c89821a868 contrib/installer/example/ttf-fonts/fonts.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/installer/example/ttf-fonts/fonts.txt Thu Sep 08 13:02:04 2011 +0200 @@ -0,0 +1,81 @@ +# Make sure that your alias-names do _not_ contain spaces since the +# parser does not handle that correctly. +# +# Also make sure providing the fonts referenced here inside this folder or +# adopt the paths accordinly. +# +# FreeSans is a default fallback-font. +FreeSans DejaVuSans.ttf +ESRIMeteorological01 C:/Windows/Fonts/esri_105.ttf +ESRIDefaultMarker C:/Windows/Fonts/esri_11.ttf +ESRIOrdnanceSurvey C:/Windows/Fonts/esri_121.ttf +ESRINIMADNCPT C:/Windows/Fonts/esri_12.ttf +ESRISDS1.951 C:/Windows/Fonts/esri_130.ttf +ESRISDS1.952 C:/Windows/Fonts/esri_131.ttf +ESRISDS2.001 C:/Windows/Fonts/esri_132.ttf +ESRISDS2.002 C:/Windows/Fonts/esri_133.ttf +ESRINIMADNCLN C:/Windows/Fonts/esri_13.ttf +ESRIArrowhead C:/Windows/Fonts/esri_144.ttf +ESRISurveyor C:/Windows/Fonts/esri_149.ttf +ESRINIMAVMAP1&2PT C:/Windows/Fonts/esri_14.ttf +ESRIAMFMElectric C:/Windows/Fonts/esri_150.ttf +ESRIAMFMGas C:/Windows/Fonts/esri_151.ttf +ESRIAMFMSewer C:/Windows/Fonts/esri_152.ttf +ESRIAMFMWater C:/Windows/Fonts/esri_153.ttf +ESRIHydrants C:/Windows/Fonts/esri_159.ttf +ESRINIMAVMAP1&2LN C:/Windows/Fonts/esri_15.ttf +ESRITelecom C:/Windows/Fonts/esri_160.ttf +ESRIPipelineUS1 C:/Windows/Fonts/esri_161.ttf +ESRINIMACityGraphicPT C:/Windows/Fonts/esri_16.ttf +ESRINIMACityGraphicLN C:/Windows/Fonts/esri_17.ttf +ESRIMilMod02 C:/Windows/Fonts/esri_19.ttf +ESRICartography C:/Windows/Fonts/esri_1.ttf +ESRIMilRed01 C:/Windows/Fonts/esri_20.ttf +ESRIIGLFont16 C:/Windows/Fonts/esri_216.ttf +ESRIMilSym01 C:/Windows/Fonts/esri_21.ttf +ESRIIGLFont20 C:/Windows/Fonts/esri_220.ttf +ESRIIGLFont21 C:/Windows/Fonts/esri_221.ttf +ESRIIGLFont22 C:/Windows/Fonts/esri_222.ttf +ESRIIGLFont23 C:/Windows/Fonts/esri_223.ttf +ESRIIGLFont24 C:/Windows/Fonts/esri_224.ttf +ESRIIGLFont25 C:/Windows/Fonts/esri_225.ttf +ESRIMilSym02 C:/Windows/Fonts/esri_22.ttf +ESRIMilSym03 C:/Windows/Fonts/esri_23.ttf +ESRIMilSym04 C:/Windows/Fonts/esri_24.ttf +ESRIMilSym05 C:/Windows/Fonts/esri_25.ttf +ESRIMilMod01 C:/Windows/Fonts/esri_26.ttf +ESRIMil2525CModifiers C:/Windows/Fonts/esri_27Mcr_2.ttf +ESRIPublic1 C:/Windows/Fonts/esri_29.ttf +ESRIEnvironmental&Icons C:/Windows/Fonts/esri_2.ttf +ESRIArcPad C:/Windows/Fonts/esri_30s.ttf +ESRIClimate&Precipitation C:/Windows/Fonts/esri_33.ttf +ESRIBusiness C:/Windows/Fonts/esri_34.ttf +ESRICaves1 C:/Windows/Fonts/esri_375.ttf +ESRICaves2 C:/Windows/Fonts/esri_376.ttf +ESRICaves3 C:/Windows/Fonts/esri_377.ttf +ESRIDimensioning C:/Windows/Fonts/esri_39.ttf +ESRIGeometricSymbols C:/Windows/Fonts/esri_3.ttf +ESRIGeologyUSGS95-525 C:/Windows/Fonts/esri_400.ttf +ESRIElements C:/Windows/Fonts/esri_405.ttf +ESRICommodities C:/Windows/Fonts/esri_406.ttf +ESRINorth C:/Windows/Fonts/esri_40.ttf +ESRIShields C:/Windows/Fonts/esri_44.ttf +ESRIUSMUTCD1 C:/Windows/Fonts/esri_47.ttf +ESRIUSMUTCD2 C:/Windows/Fonts/esri_48.ttf +ESRIUSMUTCD3 C:/Windows/Fonts/esri_49.ttf +ESRIOilGasWater C:/Windows/Fonts/esri_4.ttf +ESRIGeologyAGSO1 C:/Windows/Fonts/esri_500.ttf +ESRIWeather C:/Windows/Fonts/esri_5.ttf +ESRIUSForestry1 C:/Windows/Fonts/esri_651.ttf +ESRIUSForestry2 C:/Windows/Fonts/esri_652.ttf +ESRIConservation C:/Windows/Fonts/esri_730.ttf +ESRIGeology C:/Windows/Fonts/esri_7.ttf +ESRIEnviroHazardIncident C:/Windows/Fonts/esri_800.ttf +ESRIEnviroHazardAnalysis C:/Windows/Fonts/esri_801.ttf +ESRIEnviroHazardSites C:/Windows/Fonts/esri_802.ttf +ESRIHazardousMaterials C:/Windows/Fonts/esri_803.ttf +ESRIFireIncidentNFPA C:/Windows/Fonts/esri_804.ttf +ESRIERSInfrastructuresS1 C:/Windows/Fonts/esri_832.ttf +ESRIERSOperationsS1 C:/Windows/Fonts/esri_837.ttf +ESRICrimeAnalysis C:/Windows/Fonts/esri_8.ttf +ESRITransportationCivic C:/Windows/Fonts/esri_9.ttf