[REM] Deleted .apidoc lines.

They were probably used by some tools. How sad.

bzr revid: vmt@openerp.com-20130212142410-zqdjd8jw3gtvxab0
This commit is contained in:
Vo Minh Thu 2013-02-12 15:24:10 +01:00
parent f84535944f
commit c99c4091ce
31 changed files with 0 additions and 36 deletions

View File

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

View File

@ -20,8 +20,6 @@
#
##############################################################################
#.apidoc title: Common Services: netsvc
#.apidoc module-mods: member-order: bysource
import errno
import logging

View File

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

View File

@ -141,7 +141,6 @@ from openerp.osv import fields
from openerp.osv.orm import MAGIC_COLUMNS
import openerp.tools as tools
#.apidoc title: Domain Expressions
# Domain operators.
NOT_OPERATOR = '!'

View File

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

View File

@ -19,7 +19,6 @@
#
##############################################################################
#.apidoc title: Objects Services (OSV)
from functools import wraps
import logging

View File

@ -19,7 +19,6 @@
#
##############################################################################
#.apidoc title: Query object
def _quote(to_quote):

View File

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

View File

@ -22,7 +22,6 @@
import ps_list
import ps_form
#.apidoc title: Printscreen Support
""" A special report, that is automatically formatted to look like the
screen contents of Form/List Views.

View File

@ -28,7 +28,6 @@ from lxml import etree
import time, os
#.apidoc title: Printscreen for Form Views
class report_printscreen_list(report_int):
def __init__(self, name):

View File

@ -31,7 +31,6 @@ import time, os
from operator import itemgetter
from datetime import datetime
#.apidoc title: Printscreen for List Views
class report_printscreen_list(report_int):
def __init__(self, name):

View File

@ -1,5 +1,4 @@
from pdf import PdfFileReader, PdfFileWriter
#.apidoc title: pyPdf Engine
__all__ = ["pdf"]

View File

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

View File

@ -21,7 +21,6 @@
from html2html import parseString
#.apidoc title: HTML to HTML engine
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,7 +21,6 @@
from makohtml2html import parseNode
#.apidoc title: MAKO to HTML engine
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,6 +21,5 @@
from odt2odt import parseNode
#.apidoc title: ODT to ODT engine
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,7 +21,6 @@
from rml2html import parseString
#.apidoc title: RML to HTML engine
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -21,7 +21,6 @@
from trml2pdf import parseString, parseNode
#.apidoc title: RML to PDF engine
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -28,7 +28,6 @@ from reportlab import rl_config
from openerp.tools import config
#.apidoc title: TTF Font Table
"""This module allows the mapping of some system-available TTF fonts to
the reportlab engine.

View File

@ -21,7 +21,6 @@
from rml2txt import parseString, parseNode
#.apidoc title: RML to TXT engine
""" This engine is the minimalistic renderer of RML documents into text files,
using spaces and newlines to format.

View File

@ -40,7 +40,6 @@ import openerp.osv
from openerp.release import nt_service_name
import openerp.tools
#.apidoc title: RPC Services
""" Classes of this module implement the network protocols that the
OpenERP server uses to communicate with remote clients.

View File

@ -26,7 +26,6 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
#.apidoc title: HTTP and XML-RPC Server
""" This module offers the family of HTTP-based servers. These are not a single
class/functionality, but a set of network stack layers, implementing

View File

@ -19,7 +19,6 @@
#
##############################################################################
#.apidoc title: NET-RPC Server
""" This file contains instance of the net-rpc server
"""

View File

@ -23,7 +23,6 @@ import openerp.exceptions
import openerp.pooler as pooler
import openerp.tools as tools
#.apidoc title: Authentication helpers
def login(db, login, password):
pool = pooler.get_pool(db)

View File

@ -43,8 +43,6 @@ import openerp.exceptions
from openerp.service import http_server
from openerp import SUPERUSER_ID
#.apidoc title: Exported Service methods
#.apidoc module-mods: member-order: bysource
""" This python module defines the RPC methods available to remote clients.

View File

@ -24,7 +24,6 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
###############################################################################
#.apidoc title: HTTP Layer library (websrv_lib)
""" Framework for generic http servers

View File

@ -20,7 +20,6 @@
#
##############################################################################
#.apidoc title: PostgreSQL interface
"""
The PostgreSQL connector is a connectivity layer between the OpenERP code and
@ -30,8 +29,6 @@ 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']

View File

@ -35,7 +35,6 @@ from sql import *
from float_utils import *
from mail import *
#.apidoc title: Tools
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -47,7 +47,6 @@ class MyOption (optparse.Option, object):
self.my_default = attrs.pop('my_default', None)
super(MyOption, self).__init__(*opts, **attrs)
#.apidoc title: Server Configuration Loader
def check_ssl():
try:

View File

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

View File

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