[Erp5-report] r40961 nicolas - /erp5/trunk/products/ERP5/Document/ExternalSource.py

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Dec 1 15:16:23 CET 2010


Author: nicolas
Date: Wed Dec  1 15:16:23 2010
New Revision: 40961

URL: http://svn.erp5.org?rev=40961&view=rev
Log:
get UrlMixin from new location

Modified:
    erp5/trunk/products/ERP5/Document/ExternalSource.py

Modified: erp5/trunk/products/ERP5/Document/ExternalSource.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5/Document/ExternalSource.py?rev=40961&r1=40960&r2=40961&view=diff
==============================================================================
--- erp5/trunk/products/ERP5/Document/ExternalSource.py [utf8] (original)
+++ erp5/trunk/products/ERP5/Document/ExternalSource.py [utf8] Wed Dec  1 15:16:23 2010
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
 ##############################################################################
 #
 # Copyright (c) 2002-2007 Nexedi SARL and Contributors. All Rights Reserved.
@@ -28,10 +29,10 @@
 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.url import UrlMixin
 from Products.ERP5.mixin.crawlable import CrawlableMixin
 
-class ExternalSource(XMLObject, UrlMixIn, CrawlableMixin):
+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



More information about the Erp5-report mailing list