Commit c0b005cd authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

interfaces directory now follows zope naming convention.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@27296 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d90ab338
......@@ -28,7 +28,7 @@
##############################################################################
from zLOG import LOG, WARNING, INFO
from Interface.IColumnMap import IColumnMap
from interfaces.column_map import IColumnMap
from Interface.Verify import verifyClass
from SQLCatalog import profiler_decorator
......
# This imports from Zope's products, which would otherwise be unreachable from parent folder.
from Interface.Verify import verifyClass
......@@ -30,7 +30,7 @@
from OperatorBase import OperatorBase
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.Interface.IOperator import IOperator
from Products.ZSQLCatalog.interfaces.operator import IOperator
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -29,7 +29,7 @@
##############################################################################
from zLOG import LOG
from Products.ZSQLCatalog.Interface.IOperator import IOperator
from Products.ZSQLCatalog.interfaces.operator import IOperator
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -30,7 +30,7 @@
from Query import Query
from zLOG import LOG
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -31,7 +31,7 @@
from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from SQLQuery import SQLQuery
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -31,7 +31,7 @@
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.ColumnMap import ColumnMap
from zLOG import LOG
from Products.ZSQLCatalog.Interface.IEntireQuery import IEntireQuery
from Products.ZSQLCatalog.interfaces.entire_query import IEntireQuery
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -28,7 +28,7 @@
#
##############################################################################
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
class Query(object):
......
......@@ -30,7 +30,7 @@
from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -30,7 +30,7 @@
from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
class SQLQuery(Query):
......
......@@ -29,7 +29,7 @@
##############################################################################
from Query import Query
from Products.ZSQLCatalog.Interface.IQuery import IQuery
from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
from zLOG import LOG, WARNING
......
......@@ -42,7 +42,7 @@ from xml.sax.saxutils import escape, quoteattr
import os
import md5
from Interface.IQueryCatalog import ISearchKeyCatalog
from interfaces.query_catalog import ISearchKeyCatalog
from Interface.Verify import verifyClass
from SearchText import isAdvancedSearchText
......@@ -1965,7 +1965,7 @@ class Catalog(Folder,
key
Default column (used when there is no explicit column in an AST leaf).
Expected node API is described in Interface/IAbstractSyntaxNode.py .
Expected node API is described in interfaces/abstract_syntax_node.py .
"""
search_key, related_key_definition = self.getColumnSearchKey(key)
if search_key is None:
......
......@@ -28,7 +28,7 @@
##############################################################################
from zLOG import LOG
from Interface.ISQLExpression import ISQLExpression
from interfaces.sql_expression import ISQLExpression
from Interface.Verify import verifyClass
from types import NoneType
from SQLCatalog import profiler_decorator
......
......@@ -34,7 +34,7 @@ from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.Query.ComplexQuery import ComplexQuery
from zLOG import LOG
from DateTime.DateTime import DateTime, DateTimeError, _cache
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
from Products.ZSQLCatalog.SearchText import parse
......
......@@ -30,7 +30,7 @@
from SearchKey import SearchKey
from Products.ZSQLCatalog.SearchText import parse
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
class DefaultKey(SearchKey):
......
......@@ -31,7 +31,7 @@
from SearchKey import SearchKey
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.SearchText import parse
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -30,7 +30,7 @@
from SearchKey import SearchKey
from Products.ZSQLCatalog.SearchText import parse
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
......
......@@ -29,7 +29,7 @@
##############################################################################
from SearchKey import SearchKey
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
class RawKey(SearchKey):
......
......@@ -33,7 +33,7 @@ from Products.ZSQLCatalog.Query.Query import Query
from Products.ZSQLCatalog.Query.RelatedQuery import RelatedQuery
from Products.ZSQLCatalog.Query.SQLQuery import SQLQuery
from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.Interface.ISearchKey import IRelatedKey
from Products.ZSQLCatalog.interfaces.search_key import IRelatedKey
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -31,7 +31,7 @@
from zLOG import LOG
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.Query.ComplexQuery import ComplexQuery
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey
from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
......@@ -28,7 +28,7 @@
from lexer import lexer, update_docstrings
try:
from Products.ZSQLCatalog.Interface.IAbstractSyntaxNode import INode, IValueNode, ILogicalNode, IColumnNode
from Products.ZSQLCatalog.interfaces.abstract_syntax_node import INode, IValueNode, ILogicalNode, IColumnNode
from Interface.Verify import verifyClass
except ImportError:
INode = None
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment