[Testbot] Plone 5.0 - Python 2.7 - Build # 1553 - Regression! - 10 failure(s)

jenkins at plone.org jenkins at plone.org
Fri Feb 14 01:17:06 UTC 2014


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

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


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

Repository: plone.app.contenttypes
Branch: refs/heads/master
Date: 2014-02-13T16:26:50-08:00
Author: Philip Bauer (pbauer) <bauer at starzel.de>
Commit: https://github.com/plone/plone.app.contenttypes/commit/d5126b764b7ec384c9aa8c459151c66416c49e3f

Workon documentation and add more contributors

Files changed:
M CHANGES.rst
M README.rst

diff --git a/CHANGES.rst b/CHANGES.rst
index 3cbcd88..4ad1da3 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -7,16 +7,16 @@ Changelog
 - Add a richtext-behavior and use it in for all types.
   [amleczko]
 
-- Improve migration-results page (Fix #67)
+- Improve the migration-results page (Fix #67).
   [pbauer]
 
-- Show a warning and hide the edit-link for uneditable content
+- For uneditable content show a warning and hide the edit-link.
   [pbauer]
 
-- Fix #62: Keep ModificationDate during migration.
+- Keep all modification-date during migration (Fix #62).
   [pbauer]
 
-- Only attempt transforming files if valid content type
+- Only attempt transforming files if valid content type.
   [vangheem]
 
 - Make the collection behavior aware of INavigationRoot. Fixes #98
@@ -26,8 +26,8 @@ Changelog
   of a news item's lead image. This allows use of a stronger caching policy.
   [rafaelbco]
 
-- Fix #110: URL for Link object is wrong on the navigation portlet if it
-  contains variables
+- Fix URL for Link object on the navigation portlet if it
+  contains variables (Fix #110).
   [rafaelbco]
 
 1.1a1 (2013-11-22)
@@ -296,4 +296,5 @@ Changelog
 1.0a1 (unreleased)
 ------------------
 
-- Initial release.
+- Initial implementation.
+  [pbauer, timo, pumazi, agitator]
diff --git a/README.rst b/README.rst
index 53a3467..975380d 100644
--- a/README.rst
+++ b/README.rst
@@ -7,9 +7,7 @@ Introduction
 
 plone.app.contenttypes offers default content types for Plone based on Dexterity. This package replaces ``Products.ATContenttypes`` and will provide the default-types in Plone 5.
 
-**Warning: plone.app.contenttypes can be used on a new site without problems. Using it on a site with existing content requires migrating the sites content and is only recommended if you know what you're doing! Please see the chapter "Migration"**
-
-It contains the same types as default Plone does:
+It contains the following types:
 
 * Folder
 * Document
@@ -22,10 +20,11 @@ It contains the same types as default Plone does:
 
 The main difference from a users perspective is that these types are extendable through-the-web. This means you can add or remove fields and behaviors using the control-panel "Dexterity Content Types" (``/@@dexterity-types``).
 
-The aim is to mimick the old default-types as closely as possible, not to change the content-creation experience for editors.
+The aim is to mimick the default-types as closely as possible.
 
 plone.app.contenttypes has been merged into the Plone 5.0 branch and will be shipped with the next Plone release: https://dev.plone.org/ticket/12344
 
+**Warning: Using plone.app.contenttypes on a site with existing content requires migrating the sites content. Please see the chapter "Migration". It can be used on a new site without problems.**
 
 Compatability
 =============
@@ -47,6 +46,21 @@ If you have a mixed Plone site with Archetypes content and dexterity content use
     ``plone.app.contenttypes ['atrefs']``
 
 
+Installation as a dependency from another product
+-------------------------------------------------
+
+If you want to add plone.app.contenttypes as a dependency from another products use the profile ``plone-content`` in your ``metadata.xml`` to have Plone populate a new site with DX-based default-content. ::
+
+    <metadata>
+      <version>1</version>
+        <dependencies>
+            <dependency>profile-plone.app.contenttypes:plone-content</dependency>
+        </dependencies>
+    </metadata>
+
+If you use the profile ``default`` then the default-content in new sites will still be Archetypes-based. You'll then have to migrate that content using the migration-form ``@@atct_migrator`` or delete it by hand.
+
+
 What happens to existing content?
 ---------------------------------
 
@@ -77,24 +91,20 @@ Any content you created based on plone.app.contenttypes will not be editable unt
 Migration
 =========
 
-**Warning: Migrations are in an early stage and might break your site in some cases! Please read this thoroughly!**
-
-To migrate your content from Archetypes to Dexterity use the form at ``/@@atct_migrator``.
+To migrate your existing content from Archetypes to Dexterity use the form at ``/@@atct_migrator``.
 
 plone.app.contenttypes includes migrations for the following use-cases:
 
 * from default Archetypes-based types to plone.app.contenttypes
 * from older versions of plone.app.contenttypes to current versions
-
-Migrations that will be will come in future version:
-
 * from old plone.app.contenttypes-event to DX-plone.app.event
 * from AT-plone.app.event to DX-plone.app.event
 * from atct ATEvent to DX-plone.app.event
-* from ATTopic to DX-plone.app.collections
 * from AT-plone.app.collection to DX-plone.app.collections
 
-There is a working migration from atct ATEvent to AT-plone.app.event in the plone.app.event package implemented as an upgrade step.
+Migrations that will be will come in future version:
+
+* from ATTopic to DX-plone.app.collections
 
 For migrations to work you need at least ``Products.contentmigration = 2.1.3`` (part of Plone since Plone 4.2.5) and ``plone.app.intid`` (part of Plone since Plone 4.1.0).
 
@@ -149,7 +159,9 @@ Dependencies
 
 * ``plone.app.dexterity``. Dexterity is shipped with Plone 4.3.x. Version pins for Dexterity are included in Plone 4.2.x. For Plone 4.1.x you need to pin the correct version for Dexterity in your buildout. See `Installing Dexterity on older versions of Plone <http://developer.plone.org/reference_manuals/external/plone.app.dexterity/install.html#installing-dexterity-on-older-versions-of-plone>`.
 
-* ``plone.app.collection``.
+* ``plone.dexterity >= 2.2.1``. Olders version of plone.dexterity break the RRS-functionalisty in Plone because plone.app.contenttypes 1.1a2 uses behaviors for the Richtext-Fields.
+
+* ``plone.app.event``.
 
 Toubleshooting
 ==============
@@ -180,6 +192,7 @@ Differences to Products.ATContentTypes
 ======================================
 
 - The image of the News Item is not a field on the contenttype but a behavior that can add a image to any contenttypes (similar to http://pypi.python.org/pypi/collective.contentleadimage)
+- All richtext-fields are also provided by a reuseable behavior.
 - The functionality to transform (rotate and flip) images has been removed.
 - There is no more field ``Location``. If you need georeferenceable consider using ``collective.geo.behaviour``
 - The link on the image of the newsitem triggers an overlay
@@ -201,9 +214,22 @@ Contributors
 * Timo Stollenwerk <contact at timostollenwerk.net>
 * Peter Holzer <hpeter at agitator.com>
 * Patrick Gerken <gerken at starzel.de>
-* Steffen Lindner
+* Steffen Lindner <lindner at starzel.de>
 * Daniel Widerin <daniel at widerin.net>
 * Jens Klein <jens at bluedynamics.com>
 * Joscha Krutzki <joka at jokasis.de>
 * Mathias Leimgruber <m.leimgruber at 4teamwork.ch>
 * Matthias Broquet <mbroquet at atreal.fr>
+* Wolfgang Thomas <thomas at syslab.com>
+* Bo Simonsen <bo at geekworld.dk>
+* Andrew Mleczko <andrew at mleczko.net>
+* Roel Bruggink <roel at jaroel.nl>
+* Carsten Senger <senger at rehfisch.de>
+* Rafael Oliveira <rafaelbco at gmail.com>
+* Martin Opstad Reistadbakk <martin at blaastolen.com>
+* Nathan Van Gheem <vangheem at gmail.com>
+* Johannes Raggam <raggam-nl at adm.at>
+* Jamie Lentin <jm at lentin.co.uk>
+* Maurits van Rees <maurits at vanrees.org>
+* David Glick <david at glicksoftware.com>
+* Kees Hink <keeshink at gmail.com>




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


More information about the Testbot mailing list