[Testbot] Plone 5.0 - Python 2.7 - Build # 3082 - Still failing! - 0 failure(s)

jenkins at plone.org jenkins at plone.org
Sat Aug 23 02:41:15 UTC 2014


-------------------------------------------------------------------------------
Plone 5.0 - Python 2.7 - Build # 3082 - Still Failing!
-------------------------------------------------------------------------------

http://jenkins.plone.org/job/plone-5.0-python-2.7/3082/


-------------------------------------------------------------------------------
CHANGES
-------------------------------------------------------------------------------

Repository: plone.app.textfield
Branch: refs/heads/master
Date: 2014-08-23T00:55:38+02:00
Author: Gil Forcada (gforcada) <gforcada at gnome.org>
Commit: https://github.com/plone/plone.app.textfield/commit/902529b2bfd84375a9f7b9e7690bddbaa4c6e206

Whitespaces cleanup

Files changed:
M README.rst
M bootstrap.py
M buildout.cfg
M docs/INSTALL.txt
M docs/LICENSE.txt
M plone/app/textfield/TODO.txt
M plone/app/textfield/configure.zcml
M plone/app/textfield/editor.zcml
M plone/app/textfield/handler.py
M plone/app/textfield/handler.txt
M plone/app/textfield/marshaler.txt
M plone/app/textfield/marshaler.zcml
M plone/app/textfield/transform.py
M plone/app/textfield/transform.zcml
M plone/app/textfield/widget.zcml

diff --git a/README.rst b/README.rst
index fc33c63..d736bcb 100644
--- a/README.rst
+++ b/README.rst
@@ -10,9 +10,9 @@ To use the field, place it in a schema like so::
 
     from plone.app.textfield import RichText
     from zope.interface import Interface
-    
+
     class ITest(Interface):
-    
+
         bodyText = RichText(
                 title=u"Body text",
                 default_mime_type='text/structured',
@@ -38,16 +38,16 @@ attributes:
 
     raw
         The raw value as a unicode string.
-    
+
     mimeType
         The MIME type of the raw text.
-    
+
     output
         A unicode string that represents the value transformed to the
         default output MIME type. May be None if the transformation could
         not be completed successfully, but will be cached after it has been
         successfully transformed once.
-        
+
     outputMimeType
         The MIME type of the output string. This is normally copied from the
         field's ``output_mime_type`` property.
@@ -71,7 +71,7 @@ To invoke alternative transformations from a page template, you can use the
 following convenience syntax::
 
   <div tal:content="structure context/@@text-transform/fieldName/text/plain" />
-  
+
 Here ``fieldName`` is the name of the field (which must be found on ``context``
 and contain a ``RichTextValue``). ``text/plain`` is the desired output MIME
 type.
diff --git a/bootstrap.py b/bootstrap.py
index ed57894..506a75f 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -35,7 +35,7 @@
 Simply run this script in a directory containing a buildout.cfg, using the
 Python that you want bin/buildout to use.
 
-Note that by using --find-links to point to local resources, you can keep 
+Note that by using --find-links to point to local resources, you can keep
 this script from going over the network.
 '''
 
@@ -79,10 +79,10 @@
 
 if not options.allow_site_packages:
     # ez_setup imports site, which adds site packages
-    # this will remove them from the path to ensure that incompatible versions 
+    # this will remove them from the path to ensure that incompatible versions
     # of setuptools are not in the path
     import site
-    # inside a virtualenv, there is no 'getsitepackages'. 
+    # inside a virtualenv, there is no 'getsitepackages'.
     # We can't remove these reliably
     if hasattr(site, 'getsitepackages'):
         for sitepackage_path in site.getsitepackages():
diff --git a/buildout.cfg b/buildout.cfg
index d1e5a65..b7f58cf 100644
--- a/buildout.cfg
+++ b/buildout.cfg
@@ -4,4 +4,4 @@ package-name = plone.app.textfield
 package-extras = [tests]
 
 [versions]
-plone.app.textfield = 
+plone.app.textfield =
diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt
index a7471c9..c28f74f 100644
--- a/docs/INSTALL.txt
+++ b/docs/INSTALL.txt
@@ -4,7 +4,7 @@ plone.app.textfield Installation
 To install plone.app.textfield into the global Python environment (or a workingenv),
 using a traditional Zope 2 instance, you can do this:
 
-* When you're reading this you have probably already run 
+* When you're reading this you have probably already run
   ``easy_install plone.app.textfield``. Find out how to install setuptools
   (and EasyInstall) here:
   http://peak.telecommunity.com/DevCenter/EasyInstall
@@ -26,7 +26,7 @@ recipe to manage your project, you can do this:
     eggs =
         ...
         plone.app.textfield
-       
+
 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug:
 
     [instance]
@@ -34,10 +34,10 @@ recipe to manage your project, you can do this:
     ...
     zcml =
         plone.app.textfield
-      
+
 * Re-run buildout, e.g. with:
 
     $ ./bin/buildout
-        
+
 You can skip the ZCML slug if you are going to explicitly include the package
 from another package's configure.zcml file.
diff --git a/docs/LICENSE.txt b/docs/LICENSE.txt
index 8e06c93..e2b5438 100644
--- a/docs/LICENSE.txt
+++ b/docs/LICENSE.txt
@@ -12,5 +12,5 @@
 
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
+  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
   MA 02111-1307 USA.
diff --git a/plone/app/textfield/TODO.txt b/plone/app/textfield/TODO.txt
index d0d5d31..885cbb5 100644
--- a/plone/app/textfield/TODO.txt
+++ b/plone/app/textfield/TODO.txt
@@ -1,5 +1,5 @@
 
   [ ] Test:
-  
+
     - placing a value in an annotation (needs to remain persistent)
     - versioning/rollback (CMFEditions may have problems with blobs)
diff --git a/plone/app/textfield/configure.zcml b/plone/app/textfield/configure.zcml
index bbf6612..0aaa599 100644
--- a/plone/app/textfield/configure.zcml
+++ b/plone/app/textfield/configure.zcml
@@ -2,32 +2,32 @@
     xmlns="http://namespaces.zope.org/zope"
     xmlns:zcml="http://namespaces.zope.org/zcml"
     i18n_domain="plone.app.textfield">
-    
+
     <!-- Configure plone.supermodel support if available -->
     <include zcml:condition="installed plone.supermodel"
         file="handler.zcml"
         />
-    
+
     <!-- Configure PortalTransforms based transformer if available -->
     <include zcml:condition="installed Products.PortalTransforms"
         file="transform.zcml"
         />
-    
+
     <!-- Configure z3c.form widget if z3c.form is installed -->
     <include zcml:condition="installed z3c.form"
         file="widget.zcml"
         />
-        
+
     <!-- Configure plone.rfc822 marshaler if installed -->
     <include zcml:condition="installed plone.rfc822"
         file="marshaler.zcml"
         />
-    
+
     <!-- Configure plone.schemaeditor field factory if installed -->
     <include zcml:condition="installed plone.schemaeditor"
         file="editor.zcml"
         />
-    
+
     <!-- Configure transform invocation browser view -->
     <include file="browser.zcml" />
 
diff --git a/plone/app/textfield/editor.zcml b/plone/app/textfield/editor.zcml
index c5910cd..5265d28 100644
--- a/plone/app/textfield/editor.zcml
+++ b/plone/app/textfield/editor.zcml
@@ -5,7 +5,7 @@
   <class class=".RichText">
     <implements interface=".editor.IRichText" />
   </class>
-    
+
     <utility
         name="plone.app.textfield.RichText"
         component=".editor.RichTextFactory"
diff --git a/plone/app/textfield/handler.py b/plone/app/textfield/handler.py
index aaddec0..e9a0194 100644
--- a/plone/app/textfield/handler.py
+++ b/plone/app/textfield/handler.py
@@ -5,7 +5,7 @@
     HAVE_SUPERMODEL = False
 
 if HAVE_SUPERMODEL:
-    
+
     from zope.interface import implements
     from zope.component import adapts
     from plone.app.textfield import RichText
diff --git a/plone/app/textfield/handler.txt b/plone/app/textfield/handler.txt
index 421d5d7..144ddee 100644
--- a/plone/app/textfield/handler.txt
+++ b/plone/app/textfield/handler.txt
@@ -10,16 +10,16 @@ First, let's wire up the package.
     ... <configure
     ...      xmlns="http://namespaces.zope.org/zope"
     ...      i18n_domain="plone.app.textfield">
-    ...      
+    ...
     ...     <include package="zope.component" file="meta.zcml" />
     ...     <include package="plone.supermodel" />
-    ...     
+    ...
     ...     <utility
     ...         component="plone.app.textfield.handler.RichTextHandler"
     ...         name="plone.app.textfield.RichText"
     ...         />
     ...     <adapter factory="plone.app.textfield.handler.RichTextToUnicode" />
-    ...     
+    ...
     ... </configure>
     ... """
 
@@ -39,9 +39,9 @@ Then, let's test the field
     >>> import datetime
     >>> import plone.supermodel.tests
 
-    >>> field = RichText(__name__=u"dummy", title=u"Test", 
+    >>> field = RichText(__name__=u"dummy", title=u"Test",
     ...     description=u"Test desc", required=False, readonly=True,
-    ...     default=u"Test default", 
+    ...     default=u"Test default",
     ...     default_mime_type='text/plain',
     ...     output_mime_type='text/html',
     ...     allowed_mime_types=('text/plain', 'text/html',))
@@ -62,7 +62,7 @@ Then, let's test the field
       <required>False</required>
       <title>Test</title>
     </field>
-    
+
 To import:
 
     >>> from lxml import etree
@@ -83,7 +83,7 @@ To import:
     ...   </allowed_mime_types>
     ... </field>
     ... """)
-    
+
     >>> reciprocal = handler.read(element)
     >>> reciprocal.__class__
     <class 'plone.app.textfield.RichText'>
diff --git a/plone/app/textfield/marshaler.txt b/plone/app/textfield/marshaler.txt
index c163a62..a7c7cb8 100644
--- a/plone/app/textfield/marshaler.txt
+++ b/plone/app/textfield/marshaler.txt
@@ -10,11 +10,11 @@ To test this, we must first load some configuration:
     ... <configure
     ...      xmlns="http://namespaces.zope.org/zope"
     ...      i18n_domain="plone.app.textfield.tests">
-    ...      
+    ...
     ...     <include package="zope.component" file="meta.zcml" />
     ...     <include package="plone.rfc822" />
     ...     <include package="plone.app.textfield" file="marshaler.zcml" />
-    ...     
+    ...
     ... </configure>
     ... """
 
@@ -89,7 +89,7 @@ primary field so that it is encoded in the content body.
 
     >>> from zope.interface import alsoProvides
     >>> alsoProvides(ITestContent['_text'], IPrimaryField)
-    
+
     >>> message = constructMessageFromSchema(t, ITestContent)
     >>> messageBody = renderMessage(message)
     >>> print messageBody
diff --git a/plone/app/textfield/marshaler.zcml b/plone/app/textfield/marshaler.zcml
index 77bf724..9d01a59 100644
--- a/plone/app/textfield/marshaler.zcml
+++ b/plone/app/textfield/marshaler.zcml
@@ -1,7 +1,7 @@
 <configure
     xmlns="http://namespaces.zope.org/zope"
     i18n_domain="plone.app.textfield">
-    
+
     <adapter factory=".marshaler.RichTextFieldMarshaler" />
 
 </configure>
diff --git a/plone/app/textfield/transform.py b/plone/app/textfield/transform.py
index ef16ce3..66777f9 100644
--- a/plone/app/textfield/transform.py
+++ b/plone/app/textfield/transform.py
@@ -54,7 +54,7 @@ def __call__(self, value, mimeType):
                 # The following might work better, but how to get the request?
                 # IStatusMessage(request).add(msg, type='error')
                 return u''
-                
+
             else:
                 output = data.getData()
                 return output.decode(value.encoding)
diff --git a/plone/app/textfield/transform.zcml b/plone/app/textfield/transform.zcml
index f20e6eb..92a0d26 100644
--- a/plone/app/textfield/transform.zcml
+++ b/plone/app/textfield/transform.zcml
@@ -6,7 +6,7 @@
         factory=".transform.PortalTransformsTransformer"
         for="Products.CMFCore.interfaces.IContentish"
         />
-        
+
     <adapter
         factory=".transform.PortalTransformsTransformer"
         for="Products.CMFCore.interfaces.ISiteRoot"
diff --git a/plone/app/textfield/widget.zcml b/plone/app/textfield/widget.zcml
index 6fdd9e1..b0cb2e0 100644
--- a/plone/app/textfield/widget.zcml
+++ b/plone/app/textfield/widget.zcml
@@ -23,7 +23,7 @@
         layer="z3c.form.interfaces.IFormLayer"
         template="widget_display.pt"
         />
-    
+
     <z3c:widgetTemplate
         mode="input"
         widget=".widget.IRichTextWidget"




-------------------------------------------------------------------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: CHANGES.log
Type: application/octet-stream
Size: 11977 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20140823/ef43c87f/attachment-0002.obj>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: build.log
Type: application/octet-stream
Size: 118960 bytes
Desc: not available
URL: <http://lists.plone.org/pipermail/plone-testbot/attachments/20140823/ef43c87f/attachment-0003.obj>


More information about the Testbot mailing list