[IMP] mail: disable autofocus in formview
[odoo/odoo.git] / doc / conf.py
index 090276d..a5ff6be 100644 (file)
@@ -16,8 +16,9 @@ import sys, os
 # 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.insert(0, os.path.abspath('.'))
 sys.path.append(os.path.abspath('_themes'))
+sys.path.insert(0, os.path.abspath('../addons'))
+sys.path.insert(0, os.path.abspath('..'))
 
 # -- General configuration -----------------------------------------------------
 
@@ -38,10 +39,10 @@ source_suffix = '.rst'
 #source_encoding = 'utf-8-sig'
 
 # The master toctree document.
-master_doc = 'api'
+master_doc = 'index'
 
 # General information about the project.
-project = u'OpenERP Technical Documentation'
+project = u'OpenERP Web Developers Documentation'
 copyright = u'2012, OpenERP s.a.'
 
 # The version info for the project you're documenting, acts as replacement for
@@ -49,9 +50,9 @@ copyright = u'2012, OpenERP s.a.'
 # built documents.
 #
 # The short X.Y version.
-version = '0.0'
+version = '6.1'
 # The full version, including alpha/beta/rc tags.
-release = '0.0'
+release = '6.1'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.
@@ -169,7 +170,7 @@ html_sidebars = {
 #html_file_suffix = None
 
 # Output file base name for HTML help builder.
-htmlhelp_basename = 'openerp-technical-documentation-doc'
+htmlhelp_basename = 'openerp-web-doc'
 
 
 # -- Options for LaTeX output --------------------------------------------------
@@ -188,7 +189,7 @@ latex_elements = {
 # Grouping the document tree into LaTeX files. List of tuples
 # (source start file, target name, title, author, documentclass [howto/manual]).
 latex_documents = [
-  ('index', 'openerp-technical-documentation.tex', u'OpenERP Technical Documentation',
+  ('index', 'openerp-web-doc.tex', u'OpenERP Web Developers Documentation',
    u'OpenERP s.a.', 'manual'),
 ]
 
@@ -218,7 +219,7 @@ latex_documents = [
 # One entry per manual page. List of tuples
 # (source start file, name, description, authors, manual section).
 man_pages = [
-    ('index', 'openerp-technical-documentation', u'OpenERP Technical Documentation',
+    ('index', 'openerp-web-doc', u'OpenERP Web Developers Documentation',
      [u'OpenERP s.a.'], 1)
 ]
 
@@ -232,8 +233,8 @@ man_pages = [
 # (source start file, target name, title, author,
 #  dir menu entry, description, category)
 texinfo_documents = [
-  ('index', 'OpenERPTechnicalDocumentation', u'OpenERP Technical Documentation',
-   u'OpenERP s.a.', 'OpenERPTechnicalDocumentation', 'One line description of project.',
+  ('index', 'OpenERPWebDocumentation', u'OpenERP Web Developers Documentation',
+   u'OpenERP s.a.', 'OpenERPWebDocumentation', 'Developers documentation for the openerp-web project.',
    'Miscellaneous'),
 ]
 
@@ -246,8 +247,11 @@ texinfo_documents = [
 # How to display URL addresses: 'footnote', 'no', or 'inline'.
 #texinfo_show_urls = 'footnote'
 
+todo_include_todos = True
 
 # Example configuration for intersphinx: refer to the Python standard library.
 intersphinx_mapping = {
-    'http://docs.python.org/': None,
-    }
+    'python': ('http://docs.python.org/', None),
+    'openerpserver': ('http://doc.openerp.com/trunk/developers/server', None),
+    'openerpdev': ('http://doc.openerp.com/trunk/developers', None),
+}