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 @@ ...@@ -28,7 +28,7 @@
############################################################################## ##############################################################################
from zLOG import LOG, WARNING, INFO from zLOG import LOG, WARNING, INFO
from Interface.IColumnMap import IColumnMap from interfaces.column_map import IColumnMap
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from SQLCatalog import profiler_decorator 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 @@ ...@@ -30,7 +30,7 @@
from OperatorBase import OperatorBase from OperatorBase import OperatorBase
from Products.ZSQLCatalog.SQLExpression import SQLExpression 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
############################################################################## ##############################################################################
from zLOG import LOG from zLOG import LOG
from Products.ZSQLCatalog.Interface.IOperator import IOperator from Products.ZSQLCatalog.interfaces.operator import IOperator
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
from Query import Query from Query import Query
from zLOG import LOG from zLOG import LOG
from Products.ZSQLCatalog.Interface.IQuery import IQuery from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
from Query import Query from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression from Products.ZSQLCatalog.SQLExpression import SQLExpression
from SQLQuery import SQLQuery from SQLQuery import SQLQuery
from Products.ZSQLCatalog.Interface.IQuery import IQuery from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
from Products.ZSQLCatalog.SQLExpression import SQLExpression from Products.ZSQLCatalog.SQLExpression import SQLExpression
from Products.ZSQLCatalog.ColumnMap import ColumnMap from Products.ZSQLCatalog.ColumnMap import ColumnMap
from zLOG import LOG 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
# #
############################################################################## ##############################################################################
from Products.ZSQLCatalog.Interface.IQuery import IQuery from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
class Query(object): class Query(object):
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
from Query import Query from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
from Query import Query from Query import Query
from Products.ZSQLCatalog.SQLExpression import SQLExpression 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 Interface.Verify import verifyClass
class SQLQuery(Query): class SQLQuery(Query):
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
############################################################################## ##############################################################################
from Query import Query from Query import Query
from Products.ZSQLCatalog.Interface.IQuery import IQuery from Products.ZSQLCatalog.interfaces.query import IQuery
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
from zLOG import LOG, WARNING from zLOG import LOG, WARNING
......
...@@ -42,7 +42,7 @@ from xml.sax.saxutils import escape, quoteattr ...@@ -42,7 +42,7 @@ from xml.sax.saxutils import escape, quoteattr
import os import os
import md5 import md5
from Interface.IQueryCatalog import ISearchKeyCatalog from interfaces.query_catalog import ISearchKeyCatalog
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from SearchText import isAdvancedSearchText from SearchText import isAdvancedSearchText
...@@ -1965,7 +1965,7 @@ class Catalog(Folder, ...@@ -1965,7 +1965,7 @@ class Catalog(Folder,
key key
Default column (used when there is no explicit column in an AST leaf). 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) search_key, related_key_definition = self.getColumnSearchKey(key)
if search_key is None: if search_key is None:
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
############################################################################## ##############################################################################
from zLOG import LOG from zLOG import LOG
from Interface.ISQLExpression import ISQLExpression from interfaces.sql_expression import ISQLExpression
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
from types import NoneType from types import NoneType
from SQLCatalog import profiler_decorator from SQLCatalog import profiler_decorator
......
...@@ -34,7 +34,7 @@ from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery ...@@ -34,7 +34,7 @@ from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.Query.ComplexQuery import ComplexQuery from Products.ZSQLCatalog.Query.ComplexQuery import ComplexQuery
from zLOG import LOG from zLOG import LOG
from DateTime.DateTime import DateTime, DateTimeError, _cache 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
from Products.ZSQLCatalog.SearchText import parse from Products.ZSQLCatalog.SearchText import parse
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
from SearchKey import SearchKey from SearchKey import SearchKey
from Products.ZSQLCatalog.SearchText import parse 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 Interface.Verify import verifyClass
class DefaultKey(SearchKey): class DefaultKey(SearchKey):
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
from SearchKey import SearchKey from SearchKey import SearchKey
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.SearchText import parse 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
from SearchKey import SearchKey from SearchKey import SearchKey
from Products.ZSQLCatalog.SearchText import parse 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
############################################################################## ##############################################################################
from SearchKey import SearchKey from SearchKey import SearchKey
from Products.ZSQLCatalog.Interface.ISearchKey import ISearchKey from Products.ZSQLCatalog.interfaces.search_key import ISearchKey
from Interface.Verify import verifyClass from Interface.Verify import verifyClass
class RawKey(SearchKey): class RawKey(SearchKey):
......
...@@ -33,7 +33,7 @@ from Products.ZSQLCatalog.Query.Query import Query ...@@ -33,7 +33,7 @@ from Products.ZSQLCatalog.Query.Query import Query
from Products.ZSQLCatalog.Query.RelatedQuery import RelatedQuery from Products.ZSQLCatalog.Query.RelatedQuery import RelatedQuery
from Products.ZSQLCatalog.Query.SQLQuery import SQLQuery from Products.ZSQLCatalog.Query.SQLQuery import SQLQuery
from Products.ZSQLCatalog.SQLExpression import SQLExpression 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
from zLOG import LOG from zLOG import LOG
from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery from Products.ZSQLCatalog.Query.SimpleQuery import SimpleQuery
from Products.ZSQLCatalog.Query.ComplexQuery import ComplexQuery 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 Interface.Verify import verifyClass
from Products.ZSQLCatalog.SQLCatalog import profiler_decorator from Products.ZSQLCatalog.SQLCatalog import profiler_decorator
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
from lexer import lexer, update_docstrings from lexer import lexer, update_docstrings
try: 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 from Interface.Verify import verifyClass
except ImportError: except ImportError:
INode = None 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