[mapserver-commits] r8164 - in trunk/docs: . howto input/vector
mapfile mapfile/symbology output utilities
svn at osgeo.org
svn at osgeo.org
Mon Dec 1 13:43:42 EST 2008
Author: hobu
Date: 2008-12-01 13:43:41 -0500 (Mon, 01 Dec 2008)
New Revision: 8164
Modified:
trunk/docs/conf.py
trunk/docs/howto/tileindex.txt
trunk/docs/input/vector/index.txt
trunk/docs/mapfile/feature.txt
trunk/docs/mapfile/symbology/construction.txt
trunk/docs/new_users.txt
trunk/docs/output/agg.txt
trunk/docs/utilities/legend.txt
trunk/docs/utilities/scalebar.txt
Log:
clean up more warnings
Modified: trunk/docs/conf.py
===================================================================
--- trunk/docs/conf.py 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/conf.py 2008-12-01 18:43:41 UTC (rev 8164)
@@ -166,7 +166,7 @@
# (source start file, target name, title, author, document class [howto/manual]).
latex_documents = [
('index', 'MapServer.tex', ur'MapServer Documentation',
- ur'Steve Lime', 'manual'),
+ ur'Steve Lime', 'manual', False),
]
# The name of an image file (relative to this directory) to place at the top of
@@ -175,7 +175,7 @@
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
-latex_use_parts = True
+latex_use_parts = False
# Additional stuff for the LaTeX preamble.
#latex_preamble = ''
Modified: trunk/docs/howto/tileindex.txt
===================================================================
--- trunk/docs/howto/tileindex.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/howto/tileindex.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -1,3 +1,5 @@
+.. _tileindex:
+
*****************************************************************************
Tileindexes: On the fly mosaics for ease and performance
*****************************************************************************
Modified: trunk/docs/input/vector/index.txt
===================================================================
--- trunk/docs/input/vector/index.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/input/vector/index.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -76,7 +76,7 @@
:maxdepth: 1
format_types
- format_introduction
+ format_intro
arcsde
ArcInfo
pgeo
@@ -87,7 +87,7 @@
inline
kml
mapinfo
- oci
+ oracle_spatial
dgn
mygis
ntf
Modified: trunk/docs/mapfile/feature.txt
===================================================================
--- trunk/docs/mapfile/feature.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/mapfile/feature.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -28,6 +28,7 @@
WKT "POINT(2000 2500)"
.. note:
-Inline features should be defined as their own layers in the mapfile. If
-another CONNECTIONTYPE is specified in the same layer, MapServer will always
-use the inline features to draw the layer and ignore the other CONNECTIONTYPEs.
\ No newline at end of file
+
+ Inline features should be defined as their own layers in the mapfile. If
+ another CONNECTIONTYPE is specified in the same layer, MapServer will always
+ use the inline features to draw the layer and ignore the other CONNECTIONTYPEs.
\ No newline at end of file
Modified: trunk/docs/mapfile/symbology/construction.txt
===================================================================
--- trunk/docs/mapfile/symbology/construction.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/mapfile/symbology/construction.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -540,7 +540,7 @@
.. _`tokr(a)tmapy.cz`: mailto:tokr at tmapy.cz
Dashed line of TYPE CARTOLINE
-#############################
+...............................................................................
::
@@ -556,7 +556,7 @@
END
LINEJOIN
-++++++++
+...............................................................................
The different values for the parameter LINEJOIN have the following visual effects
(see the following figure). Default is 'not set' but do not specify the string
@@ -579,8 +579,9 @@
.. image:: ../../images/miter-linejoin.jpg
LINEJOINMAXSIZE
-+++++++++++++++
+...............................................................................
+
Specify the maximum length of m (only relevant for LINEJOIN type MITER).
The value is a multiplication factor (default 3). The actual max length is
calculated as follows:
Modified: trunk/docs/new_users.txt
===================================================================
--- trunk/docs/new_users.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/new_users.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -1,3 +1,5 @@
+.. _new_users:
+
***************************************************
New Users
***************************************************
Modified: trunk/docs/output/agg.txt
===================================================================
--- trunk/docs/output/agg.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/output/agg.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -28,49 +28,50 @@
::
- OUTPUTFORMAT
- NAME 'AGG'
- DRIVER AGG/PNG
- IMAGEMODE RGB
- END
+ OUTPUTFORMAT
+ NAME 'AGG'
+ DRIVER AGG/PNG
+ IMAGEMODE RGB
+ END
24 bit png, transparent background:
::
- OUTPUTFORMAT
- NAME 'AGGA'
- DRIVER AGG/PNG
- IMAGEMODE RGBA
- END
+ OUTPUTFORMAT
+ NAME 'AGGA'
+ DRIVER AGG/PNG
+ IMAGEMODE RGBA
+ END
24 bit jpeg (jpeg compression artifacts may appear, but smaller file size):
::
- OUTPUTFORMAT
- NAME 'AGG_JPEG'
- DRIVER AGG/JPEG
- IMAGEMODE RGB
- END
+ OUTPUTFORMAT
+ NAME 'AGG_JPEG'
+ DRIVER AGG/JPEG
+ IMAGEMODE RGB
+ END
-png output, with number of colors reduced with quantization . (
+png output, with number of colors reduced with quantization.
.. note::
- this functionality is not supported with RGBA images, that is
- :ref:`OUTPUTFORMAT`s with IMAGEMODE RGBA, or maps with TRANSPARENT ON.
+ this functionality is not supported with RGBA images, that
+ is :ref:`OUTPUTFORMAT`s with IMAGEMODE RGBA, or maps with
+ TRANSPARENT ON.
::
- OUTPUTFORMAT
- NAME 'AGG_Q'
- DRIVER AGG/PNG
- IMAGEMODE RGB
- FORMATOPTION "QUANTIZE_FORCE=ON"
- FORMATOPTION "QUANTIZE_DITHER=OFF"
- FORMATOPTION "QUANTIZE_COLORS=256"
- END
+ OUTPUTFORMAT
+ NAME 'AGG_Q'
+ DRIVER AGG/PNG
+ IMAGEMODE RGB
+ FORMATOPTION "QUANTIZE_FORCE=ON"
+ FORMATOPTION "QUANTIZE_DITHER=OFF"
+ FORMATOPTION "QUANTIZE_COLORS=256"
+ END
New Features
=============
@@ -84,10 +85,10 @@
::
- STYLE
- WIDTH 5
- COLOR 0 0 255
- END
+ STYLE
+ WIDTH 5
+ COLOR 0 0 255
+ END
* A line symbolizer has been added, that works with vector or pixmap
symbols, to draw textured lines. This happens by default if a line's style
Modified: trunk/docs/utilities/legend.txt
===================================================================
--- trunk/docs/utilities/legend.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/utilities/legend.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -1,13 +1,14 @@
-.. _legend:
+.. _legend_utility:
*****************************************************************************
legend
*****************************************************************************
:Purpose: Creates a legend from a mapfile. Output is either PNG or GIF depending
- on what version of the GD library used.
+on what version of the GD library used.
:Syntax:
+
::
legend [mapfile] [output image]
\ No newline at end of file
Modified: trunk/docs/utilities/scalebar.txt
===================================================================
--- trunk/docs/utilities/scalebar.txt 2008-12-01 17:08:32 UTC (rev 8163)
+++ trunk/docs/utilities/scalebar.txt 2008-12-01 18:43:41 UTC (rev 8164)
@@ -1,4 +1,4 @@
-.. _scalebar:
+.. _scalebar_utility:
*****************************************************************************
scalebar
More information about the mapserver-commits
mailing list