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

jenkins at plone.org jenkins at plone.org
Tue Aug 26 03:13:46 UTC 2014


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

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


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

Repository: plone.transformchain
Branch: refs/heads/master
Date: 2014-08-26T00:42:47+02:00
Author: Gil Forcada (gforcada) <gforcada at gnome.org>
Commit: https://github.com/plone/plone.transformchain/commit/e2eccdd06f637343064e52fe1496c00cb419178e

Whitespaces cleanup

Files changed:
M README.txt
M docs/HISTORY.txt
M docs/INSTALL.txt

diff --git a/README.txt b/README.txt
index 4a591f8..788bdd3 100644
--- a/README.txt
+++ b/README.txt
@@ -51,25 +51,25 @@ Here is an example that uppercases everything::
 
     from zope.interface import implements, Interface
     from zope.component import adapts
-    
+
     from plone.transformchain.interfaces import ITransform
 
     class UpperTransform(object):
         implements(ITransform)
         adapts(Interface, Interface) # any context, any request
-        
+
         order = 1000
-        
+
         def __init__(self, published, request):
             self.published = published
             self.request = request
-        
+
         def transformBytes(self, result, encoding):
             return result.upper()
-            
+
         def transformUnicode(self, result, encoding):
             return result.upper()
-        
+
         def transformIterable(self, result, encoding):
             return [s.upper() for s in result]
 
@@ -77,7 +77,7 @@ You could register this in ZCML like so::
 
     <adapter factory=".transforms.UpperTransform" name="example.uppertransform" />
 
-If you need to turn off transformations for a particular request, you can 
+If you need to turn off transformations for a particular request, you can
 set a key in ``request.environ``::
 
     request.environ['plone.transformchain.disable'] = True
diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt
index de050cd..14ab6de 100644
--- a/docs/HISTORY.txt
+++ b/docs/HISTORY.txt
@@ -28,7 +28,7 @@ Changelog
 ------------------
 
 - Compute error_status and store it on request.
-  Work around bug with Zope 2.13 publication events : 
+  Work around bug with Zope 2.13 publication events :
   response.status is not set when IPubBeforeAbort is notified.
   [gotcha]
 
diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt
index f32f15c..ff052e8 100644
--- a/docs/INSTALL.txt
+++ b/docs/INSTALL.txt
@@ -4,7 +4,7 @@ plone.transformchain Installation
 To install plone.transformchain 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.transformchain``. 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.transformchain
-       
+
 * 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.transformchain
-      
+
 * 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.




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


More information about the Testbot mailing list