[Checkins] SVN: docs.zope.org_website/ - initial import

Jens Vagelpohl jens at dataflake.org
Sat Jul 31 11:39:29 EDT 2010


Log message for revision 115271:
  - initial import
  

Changed:
  A   docs.zope.org_website/
  A   docs.zope.org_website/README.txt
  A   docs.zope.org_website/bootstrap.py
  A   docs.zope.org_website/buildout.cfg
  A   docs.zope.org_website/templates/
  A   docs.zope.org_website/templates/_static/
  A   docs.zope.org_website/templates/_static/favicon.ico
  A   docs.zope.org_website/templates/_templates/
  A   docs.zope.org_website/templates/_templates/layout.html
  A   docs.zope.org_website/templates/conf.py
  A   docs.zope.org_website/templates/index.rst
  A   docs.zope.org_website/templates/z3cpackages.rst.in
  A   docs.zope.org_website/templates/zope2packages.rst.in
  A   docs.zope.org_website/templates/ztkapppackages.rst.in
  A   docs.zope.org_website/templates/ztkpackages.rst.in

-=-
Added: docs.zope.org_website/README.txt
===================================================================
--- docs.zope.org_website/README.txt	                        (rev 0)
+++ docs.zope.org_website/README.txt	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,38 @@
+docs.zope.org buildout README
+=============================
+This buildout automates building content for the docs.zope.org 
+website. It uses the ``dataflake.docbuilder`` package to do the 
+following:
+
+* Define pages showing sets of software packages
+* Download and build `Sphinx` documentation for these packages
+* Link the resulting package documentation in one central place
+* Build an index file showing the documented packages
+
+
+How do I add or remove a package from a package list?
+-----------------------------------------------------
+Find the respective buildout stanza and remove or add the 
+Subversion URLs in the ``sources`` list. The URL must use 
+a protocol understood by Subversion, and it must point to 
+the `main` package location which has the package's 
+``trunk`` folder in it.
+
+
+How do I add another packages set page?
+---------------------------------------
+Start by copying an existing buildout stanza. Then change 
+the values for ``index-name`` (this is the page name for
+your package list without any extension like ``.rst``), 
+and the Subversion URLs in the ``sources`` list.
+
+The main site index is built from the file ``templates/index.rst`` 
+and should be maintaind by hand. Simply add another section or 
+link as needed for your new package set page and rebuild.
+
+
+How do I change the site styling or layout?
+-------------------------------------------
+The site root is built from the Sphinx configuration in 
+the ``templates`` folder. You can adjust the main page content 
+(the ``index.rst`` file) and the configuration as you like.


Property changes on: docs.zope.org_website/README.txt
___________________________________________________________________
Added: svn:eol-style
   + native

Added: docs.zope.org_website/bootstrap.py
===================================================================
--- docs.zope.org_website/bootstrap.py	                        (rev 0)
+++ docs.zope.org_website/bootstrap.py	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,121 @@
+##############################################################################
+#
+# Copyright (c) 2006 Zope Foundation and Contributors.
+# All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE.
+#
+##############################################################################
+"""Bootstrap a buildout-based project
+
+Simply run this script in a directory containing a buildout.cfg.
+The script accepts buildout command-line options, so you can
+use the -c option to specify an alternate configuration file.
+
+$Id$
+"""
+
+import os, shutil, sys, tempfile, urllib2
+from optparse import OptionParser
+
+tmpeggs = tempfile.mkdtemp()
+
+is_jython = sys.platform.startswith('java')
+
+# parsing arguments
+parser = OptionParser()
+parser.add_option("-v", "--version", dest="version",
+                          help="use a specific zc.buildout version")
+parser.add_option("-d", "--distribute",
+                   action="store_true", dest="distribute", default=False,
+                   help="Use Distribute rather than Setuptools.")
+
+parser.add_option("-c", None, action="store", dest="config_file",
+                   help=("Specify the path to the buildout configuration "
+                         "file to be used."))
+
+options, args = parser.parse_args()
+
+# if -c was provided, we push it back into args for buildout' main function
+if options.config_file is not None:
+    args += ['-c', options.config_file]
+
+if options.version is not None:
+    VERSION = '==%s' % options.version
+else:
+    VERSION = ''
+
+USE_DISTRIBUTE = options.distribute
+args = args + ['bootstrap']
+
+to_reload = False
+try:
+    import pkg_resources
+    if not hasattr(pkg_resources, '_distribute'):
+        to_reload = True
+        raise ImportError
+except ImportError:
+    ez = {}
+    if USE_DISTRIBUTE:
+        exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
+                         ).read() in ez
+        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
+    else:
+        exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
+                             ).read() in ez
+        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
+
+    if to_reload:
+        reload(pkg_resources)
+    else:
+        import pkg_resources
+
+if sys.platform == 'win32':
+    def quote(c):
+        if ' ' in c:
+            return '"%s"' % c # work around spawn lamosity on windows
+        else:
+            return c
+else:
+    def quote (c):
+        return c
+
+cmd = 'from setuptools.command.easy_install import main; main()'
+ws  = pkg_resources.working_set
+
+if USE_DISTRIBUTE:
+    requirement = 'distribute'
+else:
+    requirement = 'setuptools'
+
+if is_jython:
+    import subprocess
+
+    assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
+           quote(tmpeggs), 'zc.buildout' + VERSION],
+           env=dict(os.environ,
+               PYTHONPATH=
+               ws.find(pkg_resources.Requirement.parse(requirement)).location
+               ),
+           ).wait() == 0
+
+else:
+    assert os.spawnle(
+        os.P_WAIT, sys.executable, quote (sys.executable),
+        '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
+        dict(os.environ,
+            PYTHONPATH=
+            ws.find(pkg_resources.Requirement.parse(requirement)).location
+            ),
+        ) == 0
+
+ws.add_entry(tmpeggs)
+ws.require('zc.buildout' + VERSION)
+import zc.buildout.buildout
+zc.buildout.buildout.main(args)
+shutil.rmtree(tmpeggs)


Property changes on: docs.zope.org_website/bootstrap.py
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: docs.zope.org_website/buildout.cfg
===================================================================
--- docs.zope.org_website/buildout.cfg	                        (rev 0)
+++ docs.zope.org_website/buildout.cfg	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,210 @@
+[buildout]
+parts = 
+    ztkdocs
+    ztkappdocs
+    zope2docs
+    z3cdocs
+
+[ztkdocs]
+recipe = dataflake.docbuilder
+trunk-only = True
+eggs =  
+index-template = ${buildout:directory}/templates
+index-name = ztkpackages
+output-directory = ${buildout:directory}/output
+z3csphinx-output-directory = /usr/local/nobackup/z3c.zopedocs/parts/docs
+sources =
+    http://svn.zope.org/repos/main/zope.annotation
+    http://svn.zope.org/repos/main/zope.applicationcontrol
+    http://svn.zope.org/repos/main/zope.authentication
+    http://svn.zope.org/repos/main/zope.broken
+    http://svn.zope.org/repos/main/zope.browser
+    http://svn.zope.org/repos/main/zope.browsermenu
+    http://svn.zope.org/repos/main/zope.browserpage
+    http://svn.zope.org/repos/main/zope.browserresource
+    http://svn.zope.org/repos/main/zope.cachedescriptors
+    http://svn.zope.org/repos/main/zope.catalog
+    http://svn.zope.org/repos/main/zope.component
+    http://svn.zope.org/repos/main/zope.componentvocabulary
+    http://svn.zope.org/repos/main/zope.configuration
+    http://svn.zope.org/repos/main/zope.container
+    http://svn.zope.org/repos/main/zope.contentprovider
+    http://svn.zope.org/repos/main/zope.contenttype
+    http://svn.zope.org/repos/main/zope.copy
+    http://svn.zope.org/repos/main/zope.copypastemove
+    http://svn.zope.org/repos/main/zope.datetime
+    http://svn.zope.org/repos/main/zope.deferredimport
+    http://svn.zope.org/repos/main/zope.deprecation
+    http://svn.zope.org/repos/main/zope.documenttemplate
+    http://svn.zope.org/repos/main/zope.dottedname
+    http://svn.zope.org/repos/main/zope.dublincore
+    http://svn.zope.org/repos/main/zope.error
+    http://svn.zope.org/repos/main/zope.event
+    http://svn.zope.org/repos/main/zope.exceptions
+    http://svn.zope.org/repos/main/zope.filerepresentation
+    http://svn.zope.org/repos/main/zope.formlib
+    http://svn.zope.org/repos/main/zope.hookable
+    http://svn.zope.org/repos/main/zope.i18n
+    http://svn.zope.org/repos/main/zope.i18nmessageid
+    http://svn.zope.org/repos/main/zope.index
+    http://svn.zope.org/repos/main/zope.interface
+    http://svn.zope.org/repos/main/zope.intid
+    http://svn.zope.org/repos/main/zope.keyreference
+    http://svn.zope.org/repos/main/zope.lifecycleevent
+    http://svn.zope.org/repos/main/zope.location
+    http://svn.zope.org/repos/main/zope.login
+    http://svn.zope.org/repos/main/zope.mimetype
+    http://svn.zope.org/repos/main/zope.minmax
+    http://svn.zope.org/repos/main/zope.pagetemplate
+    http://svn.zope.org/repos/main/zope.password
+    http://svn.zope.org/repos/main/zope.pluggableauth
+    http://svn.zope.org/repos/main/zope.principalannotation
+    http://svn.zope.org/repos/main/zope.principalregistry
+    http://svn.zope.org/repos/main/zope.processlifetime
+    http://svn.zope.org/repos/main/zope.proxy
+    http://svn.zope.org/repos/main/zope.ptresource
+    http://svn.zope.org/repos/main/zope.publisher
+    http://svn.zope.org/repos/main/zope.ramcache
+    http://svn.zope.org/repos/main/zope.schema
+    http://svn.zope.org/repos/main/zope.security
+    http://svn.zope.org/repos/main/zope.securitypolicy
+    http://svn.zope.org/repos/main/zope.sendmail
+    http://svn.zope.org/repos/main/zope.sequencesort
+    http://svn.zope.org/repos/main/zope.server
+    http://svn.zope.org/repos/main/zope.session
+    http://svn.zope.org/repos/main/zope.site
+    http://svn.zope.org/repos/main/zope.size
+    http://svn.zope.org/repos/main/zope.structuredtext
+    http://svn.zope.org/repos/main/zope.tal
+    http://svn.zope.org/repos/main/zope.tales
+    http://svn.zope.org/repos/main/zope.testing
+    http://svn.zope.org/repos/main/zope.traversing
+    http://svn.zope.org/repos/main/zope.viewlet
+
+
+[ztkappdocs]
+recipe = dataflake.docbuilder
+trunk-only = True
+eggs =  
+index-template = ${buildout:directory}/templates
+index-name = ztkapppackages
+output-directory = ${buildout:directory}/output
+z3csphinx-output-directory = /usr/local/nobackup/z3c.zopedocs/parts/docs
+sources =
+    http://svn.zope.org/repos/main/zope.app.apidoc
+    http://svn.zope.org/repos/main/zope.app.applicationcontrol
+    http://svn.zope.org/repos/main/zope.app.appsetup
+    http://svn.zope.org/repos/main/zope.app.authentication
+    http://svn.zope.org/repos/main/zope.app.basicskin
+    http://svn.zope.org/repos/main/zope.app.broken
+    http://svn.zope.org/repos/main/zope.app.cache
+    http://svn.zope.org/repos/main/zope.app.catalog
+    http://svn.zope.org/repos/main/zope.app.component
+    http://svn.zope.org/repos/main/zope.app.container
+    http://svn.zope.org/repos/main/zope.app.content
+    http://svn.zope.org/repos/main/zope.app.dav
+    http://svn.zope.org/repos/main/zope.app.debug
+    http://svn.zope.org/repos/main/zope.app.debugskin
+    http://svn.zope.org/repos/main/zope.app.dependable
+    http://svn.zope.org/repos/main/zope.app.error
+    http://svn.zope.org/repos/main/zope.app.exception
+    http://svn.zope.org/repos/main/zope.app.file
+    http://svn.zope.org/repos/main/zope.app.folder
+    http://svn.zope.org/repos/main/zope.app.form
+    http://svn.zope.org/repos/main/zope.app.ftp
+    http://svn.zope.org/repos/main/zope.app.generations
+    http://svn.zope.org/repos/main/zope.app.http
+    http://svn.zope.org/repos/main/zope.app.i18n
+    http://svn.zope.org/repos/main/zope.app.interface
+    http://svn.zope.org/repos/main/zope.app.interpreter
+    http://svn.zope.org/repos/main/zope.app.intid
+    http://svn.zope.org/repos/main/zope.app.keyreference
+    http://svn.zope.org/repos/main/zope.app.locales
+    http://svn.zope.org/repos/main/zope.app.localpermission
+    http://svn.zope.org/repos/main/zope.app.locking
+    http://svn.zope.org/repos/main/zope.app.onlinehelp
+    http://svn.zope.org/repos/main/zope.app.pagetemplate
+    http://svn.zope.org/repos/main/zope.app.preference
+    http://svn.zope.org/repos/main/zope.app.preview
+    http://svn.zope.org/repos/main/zope.app.principalannotation
+    http://svn.zope.org/repos/main/zope.app.publication
+    http://svn.zope.org/repos/main/zope.app.publisher
+    http://svn.zope.org/repos/main/zope.app.renderer
+    http://svn.zope.org/repos/main/zope.app.rotterdam
+    http://svn.zope.org/repos/main/zope.app.schema
+    http://svn.zope.org/repos/main/zope.app.security
+    http://svn.zope.org/repos/main/zope.app.securitypolicy
+    http://svn.zope.org/repos/main/zope.app.server
+    http://svn.zope.org/repos/main/zope.app.session
+    http://svn.zope.org/repos/main/zope.app.skins
+    http://svn.zope.org/repos/main/zope.app.testing
+    http://svn.zope.org/repos/main/zope.app.tree
+    http://svn.zope.org/repos/main/zope.app.twisted
+    http://svn.zope.org/repos/main/zope.app.undo
+    http://svn.zope.org/repos/main/zope.app.wsgi
+    http://svn.zope.org/repos/main/zope.app.zcmlfiles
+    http://svn.zope.org/repos/main/zope.app.zopeappgenerations
+    http://svn.zope.org/repos/main/zope.app.zptpage
+    http://svn.zope.org/repos/main/zc.sourcefactory
+    http://svn.zope.org/repos/main/zodbcode
+    http://svn.zope.org/repos/main/zope.file
+    http://svn.zope.org/repos/main/zope.html
+    http://svn.zope.org/repos/main/zope.modulealias
+    http://svn.zope.org/repos/main/zope.preference
+    http://svn.zope.org/repos/main/zope.testbrowser
+    http://svn.zope.org/repos/main/zope.thread
+    http://svn.zope.org/repos/main/zope.xmlpickle
+    http://svn.zope.org/repos/main/zope.rdb
+
+[zope2docs]
+recipe = dataflake.docbuilder
+trunk-only = True
+index-template = ${buildout:directory}/templates
+index-name = zope2packages
+output-directory = ${buildout:directory}/output
+z3csphinx-output-directory = /usr/local/nobackup/z3c.zopedocs/parts/docs
+eggs =
+sources = 
+    svn://svn.zope.org/repos/main/Zope
+    svn://svn.zope.org/repos/main/AccessControl
+    svn://svn.zope.org/repos/main/Acquisition
+    svn://svn.zope.org/repos/main/DateTime
+    svn://svn.zope.org/repos/main/DocumentTemplate
+    svn://svn.zope.org/repos/main/ExtensionClass
+    svn://svn.zope.org/repos/main/initgroups
+    svn://svn.zope.org/repos/main/Missing
+    svn://svn.zope.org/repos/main/MultiMapping
+    svn://svn.zope.org/repos/main/nt_svcutils
+    svn://svn.zope.org/repos/main/Persistence
+    svn://svn.zope.org/repos/main/Products.BTreeFolder2
+    svn://svn.zope.org/repos/main/Products.ExternalMethod
+    svn://svn.zope.org/repos/main/Products.MailHost
+    svn://svn.zope.org/repos/main/Products.MIMETools
+    svn://svn.zope.org/repos/main/Products.OFSP
+    svn://svn.zope.org/repos/main/Products.PythonScripts
+    svn://svn.zope.org/repos/main/Products.StandardCacheManagers
+    svn://svn.zope.org/repos/main/Products.ZCTextIndex
+    svn://svn.zope.org/repos/main/Record
+    svn://svn.zope.org/repos/main/tempstorage
+    svn://svn.zope.org/repos/main/zExceptions
+    svn://svn.zope.org/repos/main/zLOG
+    svn://svn.zope.org/repos/main/ZopeUndo
+    svn://svn.zope.org/repos/main/ZODB
+
+[z3cdocs]
+recipe = dataflake.docbuilder
+trunk-only = True
+index-template = ${buildout:directory}/templates
+index-name = z3cpackages
+output-directory = ${buildout:directory}/output
+z3csphinx-output-directory = /usr/local/nobackup/z3c.zopedocs/parts/docs
+eggs =
+sources = 
+    svn://svn.zope.org/repos/main/z3c.form
+    svn://svn.zope.org/repos/main/z3c.formjs
+    svn://svn.zope.org/repos/main/z3c.table
+    svn://svn.zope.org/repos/main/z3c.boiler
+    svn://svn.zope.org/repos/main/z3c.feature.core
+    svn://svn.zope.org/repos/main/z3c.feature.zope
+    svn://svn.zope.org/repos/main/z3c.builder.core
+

Added: docs.zope.org_website/templates/_static/favicon.ico
===================================================================
(Binary files differ)


Property changes on: docs.zope.org_website/templates/_static/favicon.ico
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Added: docs.zope.org_website/templates/_templates/layout.html
===================================================================
--- docs.zope.org_website/templates/_templates/layout.html	                        (rev 0)
+++ docs.zope.org_website/templates/_templates/layout.html	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,16 @@
+{% extends "!layout.html" %}
+
+{% block sidebarrel %}
+  {{ super() }}
+
+  <h3>Related links</h3>
+  <ul>
+    <li><a class="reference external" href="http://bluebream.zope.org/">bluebream.zope.org</a></li>
+    <li><a class="reference external" href="http://www.buildout.org/">buildout.org</a></li>
+    <li><a class="reference external" href="http://www.zodb.org/">zodb.org</a></li>
+    <li><a class="reference external" href="http://zope2.zope.org/">zope2.zope.org</a></li>
+  </ul>
+{% endblock %}
+
+{%- block sidebarsearch %}
+{% endblock %}

Added: docs.zope.org_website/templates/conf.py
===================================================================
--- docs.zope.org_website/templates/conf.py	                        (rev 0)
+++ docs.zope.org_website/templates/conf.py	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,196 @@
+# -*- coding: utf-8 -*-
+#
+# Documentation documentation build configuration file, created by
+# sphinx-quickstart on Sun Jul 25 14:37:28 2010.
+#
+# This file is execfile()d with the current directory set to its containing dir.
+#
+# Note that not all possible configuration values are present in this
+# autogenerated file.
+#
+# All configuration values have a default; values that are commented out
+# serve to show the default.
+
+import datetime
+import os
+import sys
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+#sys.path.append(os.path.abspath('.'))
+
+# -- General configuration -----------------------------------------------------
+
+# Add any Sphinx extension module names here, as strings. They can be extensions
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+extensions = []
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The encoding of source files.
+#source_encoding = 'utf-8'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = u'docs.zope.org'
+copyright = u'2009-%i, Zope Foundation and contributors' % datetime.datetime.now().year
+
+# The version info for the project you're documenting, acts as replacement for
+# |version| and |release|, also used in various other places throughout the
+# built documents.
+#
+# The short X.Y version.
+version = ''
+# The full version, including alpha/beta/rc tags.
+release = ''
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+#today = ''
+# Else, today_fmt is used as the format for a strftime call.
+#today_fmt = '%B %d, %Y'
+
+# List of documents that shouldn't be included in the build.
+#unused_docs = []
+
+# List of directories, relative to source directory, that shouldn't be searched
+# for source files.
+exclude_trees = []
+
+# The reST default role (used for this markup: `text`) to use for all documents.
+#default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+#add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+#add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+#show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+#modindex_common_prefix = []
+
+
+# -- Options for HTML output ---------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages.  Major themes that come with
+# Sphinx are currently 'default' and 'sphinxdoc'.
+html_theme = 'default'
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further.  For a list of options available for each theme, see the
+# documentation.
+#html_theme_options = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+#html_theme_path = []
+
+# The name for this set of Sphinx documents.  If None, it defaults to
+# "<project> v<release> documentation".
+html_title = 'docs.zope.org'
+
+# A shorter title for the navigation bar.  Default is the same as html_title.
+html_short_title = 'docs.zope.org'
+
+# The name of an image file (relative to this directory) to place at the top
+# of the sidebar.
+#html_logo = None
+
+# The name of an image file (within the static path) to use as favicon of the
+# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+html_favicon = 'favicon.ico'
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['_static']
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+#html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+#html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+#html_additional_pages = {}
+
+# If false, no module index is generated.
+html_use_modindex = False
+
+# If false, no index is generated.
+html_use_index = False
+
+# If true, the index is split into individual pages for each letter.
+#html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+#html_show_sourcelink = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a <link> tag referring to it.  The value of this option must be the
+# base URL from which the finished HTML is served.
+#html_use_opensearch = ''
+
+# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
+#html_file_suffix = ''
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'docszopeorg'
+
+
+# -- Options for LaTeX output --------------------------------------------------
+
+# The paper size ('letter' or 'a4').
+#latex_paper_size = 'letter'
+
+# The font size ('10pt', '11pt' or '12pt').
+#latex_font_size = '10pt'
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title, author, documentclass [howto/manual]).
+latex_documents = [
+  ('index', 'Documentation.tex', u'docs.zope.org',
+   u'Zope Foundation and contributors', 'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+#latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+#latex_use_parts = False
+
+# Additional stuff for the LaTeX preamble.
+#latex_preamble = ''
+
+# Documents to append as an appendix to all manuals.
+#latex_appendices = []
+
+# If false, no module index is generated.
+#latex_use_modindex = True


Property changes on: docs.zope.org_website/templates/conf.py
___________________________________________________________________
Added: svn:keywords
   + Id
Added: svn:eol-style
   + native

Added: docs.zope.org_website/templates/index.rst
===================================================================
--- docs.zope.org_website/templates/index.rst	                        (rev 0)
+++ docs.zope.org_website/templates/index.rst	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,43 @@
+===============
+ docs.zope.org
+===============
+
+Zope and the various Zope packages have lots of documentation 
+embedded in the source code, which is sometimes hard to find.
+
+Developer information
+=====================
+* `Repository access <http://docs.zope.org/developer/>`_
+* `Becoming a committer <http://docs.zope.org/developer/becoming-a-committer.html>`_
+
+Zope Toolkit (ZTK)
+==================
+* `Zope Toolkit documentation <http://docs.zope.org/zopetoolkit/>`_
+* Package documentation: :doc:`ztkpackages` and :doc:`ztkapppackages`
+
+Zope 2
+======
+* `The Zope 2 Book <http://docs.zope.org/zope2/zope2book/>`_
+* `The Zope 2 Developers Guide <http://docs.zope.org/zope2/zdgbook/>`_
+* `Release notes <http://docs.zope.org/zope2/releases/>`_
+* Package documentation: :doc:`ztkpackages` and :doc:`zope2packages`
+
+BlueBream
+=========
+BlueBream is the the successor of the former Zope 3 web application 
+server.
+
+* `BlueBream documentation <http://bluebream.zope.org/doc/>`_
+* Package documentation: :doc:`ztkpackages` and :doc:`ztkapppackages`
+* `Zope 3 API documentation (outdated) <http://docs.zope.org/zope3/>`_
+
+ZODB
+====
+* `ZODB tutorial <http://www.zodb.org/documentation/tutorial.html>`_
+* `ZODB/ZEO programming guide <http://www.zodb.org/documentation/guide/>`_
+* `ZODB articles <http://www.zodb.org/documentation/articles/>`_
+
+Other Zope community packages (z3c)
+===================================
+* Package documentation: :doc:`z3cpackages`
+

Added: docs.zope.org_website/templates/z3cpackages.rst.in
===================================================================
--- docs.zope.org_website/templates/z3cpackages.rst.in	                        (rev 0)
+++ docs.zope.org_website/templates/z3cpackages.rst.in	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,4 @@
+=================================
+ Zope 3 Community (z3c) packages
+=================================
+

Added: docs.zope.org_website/templates/zope2packages.rst.in
===================================================================
--- docs.zope.org_website/templates/zope2packages.rst.in	                        (rev 0)
+++ docs.zope.org_website/templates/zope2packages.rst.in	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,8 @@
+=================
+ Zope 2 packages
+=================
+
+.. note::
+
+    Packages that are not linked do not provide any 
+    `Sphinx` documentation.

Added: docs.zope.org_website/templates/ztkapppackages.rst.in
===================================================================
--- docs.zope.org_website/templates/ztkapppackages.rst.in	                        (rev 0)
+++ docs.zope.org_website/templates/ztkapppackages.rst.in	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,8 @@
+==================
+ ZTK App packages
+==================
+
+.. note::
+
+    Packages that are not linked do not provide any 
+    `Sphinx` documentation.

Added: docs.zope.org_website/templates/ztkpackages.rst.in
===================================================================
--- docs.zope.org_website/templates/ztkpackages.rst.in	                        (rev 0)
+++ docs.zope.org_website/templates/ztkpackages.rst.in	2010-07-31 15:39:29 UTC (rev 115271)
@@ -0,0 +1,8 @@
+==============
+ ZTK packages
+==============
+
+.. note::
+
+    Packages that are not linked do not provide any 
+    `Sphinx` documentation.



More information about the checkins mailing list