-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
35 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,5 @@ | ||
[buildout] | ||
|
||
|
||
# use this extend one of the buildout configuration: | ||
extends = | ||
test_plone52.cfg | ||
|
||
[instance] | ||
eggs += | ||
redturtle.volto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,47 @@ | ||
<configure | ||
xmlns="http://namespaces.zope.org/zope" | ||
xmlns:zcml="http://namespaces.zope.org/zcml" | ||
xmlns:five="http://namespaces.zope.org/five" | ||
xmlns:genericsetup="http://namespaces.zope.org/genericsetup" | ||
xmlns:i18n="http://namespaces.zope.org/i18n" | ||
xmlns:zcml="http://namespaces.zope.org/zcml" | ||
i18n_domain="collective.limitfilesizepanel" | ||
> | ||
xmlns:genericsetup="http://namespaces.zope.org/genericsetup" | ||
i18n_domain="collective.limitfilesizepanel"> | ||
|
||
<genericsetup:upgradeStep | ||
title="Upgrade to collective.limitfilesizepanel to version 1.1" | ||
description="Migrates collective.limitfilesizepanel to 1000" | ||
profile="collective.limitfilesizepanel:default" | ||
source="1.0" | ||
destination="1000" | ||
handler=".setuphandlers.migrateTo1000" | ||
sortkey="1" | ||
/> | ||
title="Upgrade to collective.limitfilesizepanel to version 1.1" | ||
description="Migrates collective.limitfilesizepanel to 1000" | ||
source="1.0" | ||
destination="1000" | ||
handler=".setuphandlers.migrateTo1000" | ||
sortkey="1" | ||
profile="collective.limitfilesizepanel:default" | ||
/> | ||
<genericsetup:upgradeStep | ||
title="Upgrade to collective.limitfilesizepanel to version 1.3" | ||
description="Migrates collective.limitfilesizepanel to 1100" | ||
profile="collective.limitfilesizepanel:default" | ||
source="11000" | ||
destination="1100" | ||
handler=".setuphandlers.migrateTo1100" | ||
sortkey="2" | ||
/> | ||
title="Upgrade to collective.limitfilesizepanel to version 1.3" | ||
description="Migrates collective.limitfilesizepanel to 1100" | ||
source="11000" | ||
destination="1100" | ||
handler=".setuphandlers.migrateTo1100" | ||
sortkey="2" | ||
profile="collective.limitfilesizepanel:default" | ||
/> | ||
|
||
<genericsetup:upgradeStep | ||
title="Upgrade to collective.limitfilesizepanel to version 1200" | ||
description="Migrates collective.limitfilesizepanel to 1200" | ||
profile="collective.limitfilesizepanel:default" | ||
source="1100" | ||
destination="1200" | ||
handler=".setuphandlers.migrateTo1200" | ||
sortkey="3" | ||
/> | ||
title="Upgrade to collective.limitfilesizepanel to version 1200" | ||
description="Migrates collective.limitfilesizepanel to 1200" | ||
source="1100" | ||
destination="1200" | ||
handler=".setuphandlers.migrateTo1200" | ||
sortkey="3" | ||
profile="collective.limitfilesizepanel:default" | ||
/> | ||
<genericsetup:upgradeStep | ||
title="Upgrade to collective.limitfilesizepanel to version 1300" | ||
description="Migrates collective.limitfilesizepanel to 1300" | ||
profile="collective.limitfilesizepanel:default" | ||
source="1200" | ||
destination="1300" | ||
handler=".setuphandlers.migrateTo1300" | ||
sortkey="4" | ||
/> | ||
title="Upgrade to collective.limitfilesizepanel to version 1300" | ||
description="Migrates collective.limitfilesizepanel to 1300" | ||
source="1200" | ||
destination="1300" | ||
handler=".setuphandlers.migrateTo1300" | ||
sortkey="4" | ||
profile="collective.limitfilesizepanel:default" | ||
/> | ||
|
||
</configure> |