Commit 862c9088 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

fix typos : Crawable -> Crawlable.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40874 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e3fef847
......@@ -59,7 +59,7 @@ from Products.ERP5.mixin.text_convertable import TextConvertableMixin
from Products.ERP5.mixin.downloadable import DownloadableMixin
from Products.ERP5.mixin.document import DocumentMixin
from Products.ERP5.mixin.extensible_traversable import DocumentExtensibleTraversableMixin
from Products.ERP5.mixin.crawable import CrawableMixin
from Products.ERP5.mixin.crawlable import CrawlableMixin
_MARKER = []
VALID_ORDER_KEY_LIST = ('user_login', 'content', 'file_name', 'input')
......@@ -89,7 +89,7 @@ class NotConvertedError(Exception):pass
allow_class(NotConvertedError)
class Document(DocumentExtensibleTraversableMixin, XMLObject, UrlMixIn, CachedConvertableMixin,
CrawableMixin, TextConvertableMixin, DownloadableMixin, DocumentMixin):
CrawlableMixin, TextConvertableMixin, DownloadableMixin, DocumentMixin):
"""Document is an abstract class with all methods related to document
management in ERP5. This includes searchable text, explicit relations,
implicit relations, metadata, versions, languages, etc.
......
......@@ -29,9 +29,9 @@ from AccessControl import ClassSecurityInfo
from Products.ERP5Type import Permissions, PropertySheet
from Products.ERP5Type.XMLObject import XMLObject
from Products.ERP5.Document.Url import UrlMixIn
from Products.ERP5.mixin.crawable import CrawableMixin
from Products.ERP5.mixin.crawlable import CrawlableMixin
class ExternalSource(XMLObject, UrlMixIn, CrawableMixin):
class ExternalSource(XMLObject, UrlMixIn, CrawlableMixin):
"""
An External Source consists of single URL which defines the
root of a collection of documents, each of which can be accessed
......
......@@ -30,7 +30,7 @@
from AccessControl import ClassSecurityInfo, getSecurityManager
from Products.ERP5Type import Permissions
class CrawableMixin:
class CrawlableMixin:
"""
Generic implementation of ICrawlable interface
"""
......
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