Skip to content

Commit

Permalink
Fix pr
Browse files Browse the repository at this point in the history
  • Loading branch information
folix-01 committed Jan 31, 2024
1 parent 9ded488 commit 4350f7c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 41 deletions.
5 changes: 0 additions & 5 deletions buildout.cfg
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
71 changes: 35 additions & 36 deletions collective/limitfilesizepanel/upgrades.zcml
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>

0 comments on commit 4350f7c

Please sign in to comment.