ogcserver: add module level docstrings for remaining ogcserver files

This commit is contained in:
Dane Springmeyer 2009-03-30 04:25:01 +00:00
parent a40bcc2571
commit a87acb13d5
7 changed files with 19 additions and 1 deletions

View file

@ -17,4 +17,6 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# $Id$
# $Id$
"""Mapnik OGC WMS Server."""

View file

@ -19,6 +19,12 @@
#
# $Id$
"""CGI/FastCGI handler for Mapnik OGC WMS Server.
Requires 'jon' module.
"""
from os import environ
from tempfile import gettempdir
environ['PYTHON_EGG_CACHE'] = gettempdir()

View file

@ -19,6 +19,8 @@
#
# $Id$
"""Custom OGCServer Exceptions"""
class OGCException(Exception):
pass

View file

@ -19,6 +19,8 @@
#
# $Id: modserver.py 283 2006-07-22 18:54:53Z jdoyon $
"""Mod_python handler for Mapnik OGC WMS Server."""
import sys
from mod_python import apache, util
from exceptions import OGCException, ServerConfigurationError

View file

@ -19,6 +19,8 @@
#
# $Id$
"""WMS 1.1.1 compliant GetCapabilities, GetMap, GetFeatureInfo, and Exceptions interface."""
from common import ParameterDefinition, Response, Version, ListFactory, \
ColorFactory, CRSFactory, WMSBaseServiceHandler, CRS, \
BaseExceptionHandler, Projection

View file

@ -19,6 +19,8 @@
#
# $Id$
"""WMS 1.3.0 compliant GetCapabilities, GetMap, GetFeatureInfo, and Exceptions interface."""
from common import ParameterDefinition, Response, Version, ListFactory, \
ColorFactory, CRSFactory, CRS, WMSBaseServiceHandler, \
BaseExceptionHandler, Projection

View file

@ -19,6 +19,8 @@
#
# $Id$
"""WSGI application wrapper for Mapnik OGC WMS Server."""
from exceptions import OGCException, ServerConfigurationError
from configparser import SafeConfigParser
from cgi import parse_qs