Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-foss4g/conf.py @ 1

Revision 1, 5.6 KB checked in by djay, 13 years ago (diff)

Initial import of the svn tree

RevLine 
[1]1# -*- coding: utf-8 -*-
2#
3# This file is execfile()d with the current directory set to its containing dir.
4#
5# The contents of this file are pickled, so don't put values in the namespace
6# that aren't pickleable (module imports are okay, they're removed automatically).
7#
8# All configuration values have a default value; values that are commented out
9# serve to show the default value.
10
11import sys, os
12
13# If your extensions are in another directory, add it here. If the directory
14# is relative to the documentation root, use os.path.abspath to make it
15# absolute, like shown here.
16#sys.path.append(os.path.abspath('some/directory'))
17
18# General configuration
19# ---------------------
20
21# Add any Sphinx extension module names here, as strings. They can be extensions
22# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
23extensions = []
24
25# Add any paths that contain templates here, relative to this directory.
26templates_path = ['../../_theme']
27
28# The suffix of source filenames.
29source_suffix = '.rst'
30
31# The master toctree document.
32master_doc = 'index'
33
34# General substitutions.
35project = u'Introduction to PostGIS'
36copyright = u'2010, Paul Ramsey, OpenGeo | Mark Leslie, LISAsoft'
37
38# The default replacements for |version| and |release|, also used in various
39# other places throughout the built documents.
40#
41# The short X.Y version.
42version = '1.0'
43# The full version, including alpha/beta/rc tags.
44release = '1.0'
45
46# There are two options for replacing |today|: either, you set today to some
47# non-false value, then it is used:
48#today = ''
49# Else, today_fmt is used as the format for a strftime call.
50today_fmt = '%B %d, %Y'
51
52# List of documents that shouldn't be included in the build.
53#unused_docs = []
54
55# List of directories, relative to source directories, that shouldn't be searched
56# for source files.
57exclude_trees = ['.build']
58
59# The reST default role (used for this markup: `text`) to use for all documents.
60#default_role = None
61
62# If true, '()' will be appended to :func: etc. cross-reference text.
63#add_function_parentheses = True
64
65# If true, the current module name will be prepended to all description
66# unit titles (such as .. function::).
67#add_module_names = True
68
69# If true, sectionauthor and moduleauthor directives will be shown in the
70# output. They are ignored by default.
71#show_authors = False
72
73# The name of the Pygments (syntax highlighting) style to use.
74pygments_style = 'sphinx'
75
76
77# Options for HTML output
78# -----------------------
79
80# The style sheet to use for HTML and HTML Help pages. A file of that name
81# must exist either in Sphinx' static/ path, or in one of the custom paths
82# given in html_static_path.
83html_style = 'default.css'
84
85# The name for this set of Sphinx documents.  If None, it defaults to
86# "<project> v<release> documentation".
87html_title = project
88
89# A shorter title for the navigation bar.  Default is the same as html_title.
90#html_short_title = None
91
92# The name of an image file (relative to this directory) to place at the top
93# of the sidebar.
94#html_logo = '../img/logo.png'
95
96# The name of an image file (within the static path) to use as favicon of the
97# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
98# pixels large.
99html_favicon = 'favicon.ico'
100
101# Add any paths that contain custom static files (such as style sheets) here,
102# relative to this directory. They are copied after the builtin static files,
103# so a file named "default.css" will overwrite the builtin "default.css".
104html_static_path = ['../../_theme/static']
105
106# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
107# using the given strftime format.
108html_last_updated_fmt = '%b %d, %Y'
109
110# If true, SmartyPants will be used to convert quotes and dashes to
111# typographically correct entities.
112#html_use_smartypants = True
113
114# Custom sidebar templates, maps document names to template names.
115#html_sidebars = {}
116
117# Additional templates that should be rendered to pages, maps page names to
118# template names.
119#html_additional_pages = {}
120
121# If false, no module index is generated.
122html_use_modindex = False
123
124# If false, no index is generated.
125html_use_index = False
126
127# If true, the index is split into individual pages for each letter.
128#html_split_index = False
129
130# If true, the reST sources are included in the HTML build as _sources/<name>.
131html_copy_source = False
132
133# If true, an OpenSearch description file will be output, and all pages will
134# contain a <link> tag referring to it.  The value of this option must be the
135# base URL from which the finished HTML is served.
136#html_use_opensearch = ''
137
138# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
139#html_file_suffix = ''
140
141# Output file base name for HTML help builder.
142htmlhelp_basename = 'GeostackIntro'
143
144
145# Options for LaTeX output
146# ------------------------
147
148# The paper size ('letter' or 'a4').
149#latex_paper_size = 'letter'
150
151# The font size ('10pt', '11pt' or '12pt').
152#latex_font_size = '11pt'
153
154latex_elements = {
155  'papersize':'a4paper',
156  'pointsize':'11pt'
157}
158
159# Grouping the document tree into LaTeX files. List of tuples
160# (source start file, target name, title, author, document class [howto/manual]).
161latex_documents = [
162  ('index', 'PostGISIntro.tex', u'Introduction to PostGIS',
163   u'Mark Leslie, Paul Ramsey', 'manual', True),
164]
165
166# The name of an image file (relative to this directory) to place at the top of
167# the title page.
168#latex_logo = '../img/logo.png'
169
170# For "manual" documents, if this is true, then toplevel headings are parts,
171# not chapters.
172#latex_use_parts = False
173
174# Additional stuff for the LaTeX preamble.
175#latex_preamble = ''
176
177# Documents to append as an appendix to all manuals.
178#latex_appendices = []
179
180# If false, no module index is generated.
181latex_use_modindex = False
Note: See TracBrowser for help on using the repository browser.