Your message dated Mon, 24 Aug 2015 21:23:26 +0000
with message-id <e1ztzdc-0005dp...@franck.debian.org>
and subject line Bug#648404: fixed in tilecache 2.11+ds-1
has caused the Debian Bug report #648404,
regarding tilecache: man page for tilecache is outdated
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
648404: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648404
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: tilecache
Version: 2.11-2
Severity: normal
Tags: patch

Dear Maintainer,

The man page for tilecache documenting the usage of the binary tilecache_seed
is outdated. I've attached a git format-patch against the git repo from
git.debian.org. The patch updates the existing man page to be consistent with
the new usage of the program.

I was unable to commit this patch directly to git.debian.org because my
request to join the team hasn't been approved as of yet.

Thanks.
From 5f6bbb8f1a13d2874dc5db11902b904c107daf73 Mon Sep 17 00:00:00 2001
From: Andrew Harvey <andrew.harv...@gmail.com>
Date: Sun, 6 Nov 2011 12:04:05 +1100
Subject: [PATCH] Update man page for tilecache_seed

---
 debian/changelog   |    6 ++++
 debian/tilecache.8 |   70 +++++++++++++++++++++++++++++++++++----------------
 2 files changed, 54 insertions(+), 22 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 4937f63..c332696 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tilecache (2.11-3) UNRELEASED; urgency=low
+
+  * Update tilecache man page
+
+ -- Andrew Harvey <andrew.harv...@gmail.com>  Sat, 05 Nov 2011 10:42:38 +1100
+
 tilecache (2.11-2) unstable; urgency=low
 
   * Upload to unstable.
diff --git a/debian/tilecache.8 b/debian/tilecache.8
index 7a1a686..4b4fda5 100644
--- a/debian/tilecache.8
+++ b/debian/tilecache.8
@@ -150,7 +150,7 @@ Configuring FastCGI is beyond the scope of this documentation.
 .\" depart_block_quote
 
 .SH CONFIGURATION
-TileCache is configured by a config file, defaulting to tilecache.cfg.
+TileCache is configured by a config file, defaulting to /etc/tilecache.cfg.
 There are several parameters to control TileCache layers that are applicable
 to all layers:
 
@@ -251,7 +251,7 @@ String describing the SRS value. Default is "EPSG:4326"
 .TP
 .B type
 The type of layer. Options are: WMSLayer, MapnikLayer, MapServerLayer,
-ImageLayer
+ImageLayer, GDAL, ArcXML
 
 
 .TP
@@ -329,20 +329,53 @@ need to have TileCache set up in one of the previously described configurations.
 .SS Usage
 
 .\" visit_block_quote
-/usr/sbin/tilecache_seed <url> <layer> [<zoom start> <zoom stop> [<bbox>]]
+/usr/sbin/tilecache_seed [options] <layer> [<zoom start> <zoom stop>]
 
 
 .\" depart_block_quote
 
-.SS Arguments
+.SS Options
 
-.\" visit_block_quote
+.TP
+.B --version
+show the program's version number and exit
 
 .TP
-.B url
-http://example.com/yourdir/tilecache.cgi? or
-http://example.com/yourdir/tilecache.py
+.B -h, --help
+show the program's help message and exit
+
+.TP
+.B -f, --force
+force recreation of tiles even if they are already in cache
 
+.TP
+.B -b BBOX, --bbox=BBOX
+restrict to specified bounding box where BBOX is in the format
+"left, bottom, right, top"
+
+.TP
+.B -c TILECACHECONFIG, --config=TILECACHECONFIG
+path to configuration file
+
+.TP
+.B -d DELAY, --delay=DELAY
+delay time between requests (default: 0)
+
+.TP
+.B -p PADDING, --padding=PADDING
+extra margin tiles to seed around target area.
+Defaults to 0 (some edge tiles might be missing).
+A value of 1 ensures all tiles will be created, but
+some tiles may be wholly outside your bbox
+
+.TP
+.B -r, --reverse
+reverse order of seeding tiles
+
+
+.SS Arguments
+
+.\" visit_block_quote
 
 .TP
 .B layer
@@ -355,20 +388,14 @@ Zoom level to start the process
 
 
 .TP
-.B zoom end
+.B zoom stop
 Zoom level to end the process
 
 
-.TP
-.B bbox
-The bounding box to seed
-
-
-
 .SS Seeding by center point and radius
-If called without zoom level arguments, tilecache_seed.py will assume
-that it needs to read a list of points and radii from standard input,
-in the form:
+If called without zoom level arguments, tilecache_seed.py will seed
+zoom levels 5 to 17 and assume that it needs to read a list of points
+and radii from standard input, in the form:
 
 
 
@@ -399,14 +426,13 @@ the position(s) to seed latitude
 the radius around the lon/lat to seed in degrees
 
 
-
 .SS Examples
 An example with zoom levels 5 through 12 would be like;
 
 
 
 .nf
-$ /usr/sbin/tilecache_seed "http://example.com/yourdir/tilecache.cgi?"; Zip_Codes 5 12 "\-118.12500,31.952162238,\-116.015625,34.3071438563"
+$ /usr/sbin/tilecache_seed -c /etc/tilecache.cfg -b "\-118.12500,31.952162238,\-116.015625,34.3071438563" Zip_Codes 5 12 
 .fi
 
 The bbox can be dropped and defaults to world lonlat(\-180,\-90,180,90):
@@ -414,7 +440,7 @@ The bbox can be dropped and defaults to world lonlat(\-180,\-90,180,90):
 
 
 .nf
-$ /usr/sbin/tilecache_seed.py "http://example.com/yourdir/tilecache.cgi?"; Zip_Codes 0 9
+$ /usr/sbin/tilecache_seed.py -c /etc/tilecache.cfg Zip_Codes 0 9
 .fi
 
 In center point/radius mode, the zoom level range is not specifiable from the
@@ -423,7 +449,7 @@ command\-line. An example usage might look like:
 
 
 .nf
-$ /usr/sbin/tilecache_seed.py "http://example.com/yourdir/tilecache.cgi?"; Zip_Codes
+$ /usr/sbin/tilecache_seed.py -c /etc/tilecache.cfg Zip_Codes
 \-118.12500,31.952162238,0.05
 \-121.46327,32.345345645,0.08
 <Ctrl+D>
-- 
1.7.7.2


--- End Message ---
--- Begin Message ---
Source: tilecache
Source-Version: 2.11+ds-1

We believe that the bug you reported is fixed in the latest version of
tilecache, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 648...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bas Couwenberg <sebas...@debian.org> (supplier of updated tilecache package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 24 Aug 2015 21:36:49 +0200
Source: tilecache
Binary: tilecache
Architecture: source all
Version: 2.11+ds-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GIS Project <pkg-grass-devel@lists.alioth.debian.org>
Changed-By: Bas Couwenberg <sebas...@debian.org>
Description:
 tilecache  - Web map tile caching system
Closes: 648404
Changes:
 tilecache (2.11+ds-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Andrew Harvey ]
   * Update tilecache man page. (closes: #648404)
 .
   [ Bas Couwenberg ]
   * Restructure control file with cme, changes:
     - Migrate from XS-Python-Version to X-Python-Version
     - Drop unneeded version constrainsts
     - Update Vcs-* fields to use canonical URLs
   * Add upstream metadata.
   * Bump debhelper compatibility to 9.
   * Update copyright file using copyright-format 1.0.
   * Add gbp.conf to use pristine-tar by default.
   * Repack upstream tarball to fix tar-errors-from-source issues.
   * Don't start description synopsis with an article.
   * Use packaged OpenLayers.js & underscore.js.
   * Bump Standards-Version to 3.9.6, changes:
     - canonical Vcs-* URLs
     - copyright-format 1.0
Checksums-Sha1:
 e0e9bc3a086162e97af36f20d78d40a3551faee5 1969 tilecache_2.11+ds-1.dsc
 a50ff191a0f9fe6666f71e1f1167bab69d805c5f 65221 tilecache_2.11+ds.orig.tar.gz
 6d8430636d4396bf156f2832429da8c54b0c751b 10488 
tilecache_2.11+ds-1.debian.tar.xz
 fcdd1bee4063e16ce9190fb37bd8da08a3b57b68 100928 tilecache_2.11+ds-1_all.deb
Checksums-Sha256:
 b183063ae22d50864653a4b890c01aa8877d6d6931e0fc562c1d6f8279e7607a 1969 
tilecache_2.11+ds-1.dsc
 702ac0884cb30d0ea4e34a52d6509e0a8aed2c6cb01e1e8913465048c8660a48 65221 
tilecache_2.11+ds.orig.tar.gz
 6043f8c699deaec7413ba28128401ba3260ea52bc15b6cc2801995d3a1fe0f0b 10488 
tilecache_2.11+ds-1.debian.tar.xz
 26f264a7ade7dd627527c3b37eb10f89ba94eddf6eb08ff54c5fb9ab2b296025 100928 
tilecache_2.11+ds-1_all.deb
Files:
 1c155a7d98d6a44b9a522fa5ab783d5b 1969 web extra tilecache_2.11+ds-1.dsc
 435ede4c25cd023f1fc5bca634b211c5 65221 web extra tilecache_2.11+ds.orig.tar.gz
 9cc8d1fbad4d4566f58705024ba5d1b2 10488 web extra 
tilecache_2.11+ds-1.debian.tar.xz
 bb6b58f41d83109b86e55f859983af1e 100928 web extra tilecache_2.11+ds-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBCgAGBQJV23WMAAoJEGdQ8QrojUrxcBcP/iJa7OmzW/o3CKwXGm4KcEY4
+UnTh2AhqaQuJZSNPzaUm13+lxFxbCx2K/Pprgg2jeXdcI1JTll8/3evtLmfZGRX
BTs64waQwwp55y453JVm75xvdu3HH0yfztPxBRC0HgUytRS+JB7huqL1va7tgfTG
RxfJWG0y+m14obk0XAeEL0bFqnLySEcSLGSxddxUOjGRYTVfsB7rRhijPv11GcLv
z5+k+PWJV3uTTltCqt12bt6VcUwGKBmlg8Sn+lUc354SyOvqdyIkYddxz0m0k6kR
10Ic44PgY+q49j0hId9bDiMMB0u26xwSwK4x1XAj63yCGAhpS7m7nBcfMDB5dSZc
sGk3lQJVzuUsN1+s3lZ0BpxtSGoG7o14vKWvdnuvh+SVZEwjMJcpUMU5EYD5+Y+h
j/lGtgX6kqbaIumO286U1HEK/LnlLpAQTAn54ZKuxvg0cU7tu5/l0+7TCztGBjBA
phJEBcc9IYUrV7gyA7+AaX+C9Yer4+LA9bgG26F7n/V2PoI3C0T5ezdo6S7WyReV
kdFzei0QhFOirWoGzFFPI1KtiDubhuZBZ2M1I49x/UlAh8K/Prm66/Ypx0xisNUz
07JEkW0+C8ypsgppireT7T5vz8SnUqvG6Tux0z+luRhaRnoGzvx4nXLOTn5Iahi9
y+QPhXcC9qWpVOl1Ua7g
=zcWm
-----END PGP SIGNATURE-----

--- End Message ---
_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to