API docs: settings file and titles at modules

bzr revid: xrg@linux.gr-20110623090357-nazly8vpfnw0iskr
This commit is contained in:
P. Christeas 2011-06-23 12:03:57 +03:00 committed by P. Christeas
parent 588552b52d
commit cf6e623f7d
15 changed files with 31 additions and 4 deletions

1
bin/.apidoc Normal file
View File

@ -0,0 +1 @@
excludes: pychart release openerp-server test run_tests

View File

@ -21,5 +21,7 @@
import publisher_warranty
#.apidoc title: IR interface (Deprecated)
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -22,6 +22,7 @@
import osv
import fields
#.apidoc title: Object Services and Relational Mapping
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -23,6 +23,8 @@
from openerp.tools import flatten, reverse_enumerate
import fields
#.apidoc title: Domain Expressions
class expression(object):
"""

View File

@ -19,6 +19,9 @@
#
##############################################################################
#.apidoc title: Object Relational Mapping
#.apidoc module-mods: member-order: bysource
"""
Object relational mapping to database (postgresql) module
* Hierarchical structure

View File

@ -19,9 +19,7 @@
#
##############################################################################
#
# OSV: Objects Services
#
#.apidoc title: Objects Services (OSV)
import orm
import openerp.netsvc as netsvc

View File

@ -19,6 +19,7 @@
#
##############################################################################
#.apidoc title: Query object
def _quote(to_quote):
if '"' not in to_quote:

View File

@ -31,5 +31,7 @@ import report_sxw
import printscreen
#.apidoc title: Reporting Support and Engines
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -23,6 +23,8 @@ from simple import simple
from rml import rml, rml2html, rml2txt, odt2odt , html2html, makohtml2html
from render import render
#.apidoc title: Report Rendering
try:
import Image
except ImportError:

View File

@ -20,6 +20,8 @@
#
##############################################################################
#.apidoc title: PostgreSQL interface
"""
The PostgreSQL connector is a connectivity layer between the OpenERP code and
the database, *not* a database abstraction toolkit. Database abstraction is what
@ -28,6 +30,9 @@ the ORM does, in fact.
See also: the `pooler` module
"""
#.apidoc add-functions: print_stats
#.apidoc add-classes: Cursor Connection ConnectionPool
__all__ = ['db_connect', 'close_db']
from threading import currentThread

View File

@ -26,9 +26,11 @@ import marshal
import netsvc
#.apidoc title: Net-RPC classes
class Myexception(Exception):
"""
custome exception object store
custom exception object store
* faultcode
* faulestring
* args

View File

@ -32,5 +32,7 @@ from pdf_utils import *
from yaml_import import *
from sql import *
#.apidoc title: Tools
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -45,6 +45,8 @@ class MyOption (optparse.Option, object):
self.my_default = attrs.pop('my_default', None)
super(MyOption, self).__init__(*opts, **attrs)
#.apidoc title: Server Configuration
def check_ssl():
try:
from OpenSSL import SSL

View File

@ -20,6 +20,8 @@
#
##############################################################################
#.apidoc title: Utilities: tools.misc
"""
Miscelleanous tools used by OpenERP.
"""

View File

@ -21,6 +21,8 @@
import wkf_service
#.apidoc title: Workflow objects
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: