Commit 186c8974 authored by Łukasz Nowak's avatar Łukasz Nowak

Follow typical way with background invocation.

parent 52bb83c9
...@@ -50,17 +50,24 @@ ...@@ -50,17 +50,24 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>portal = context.getPortalObject()\n <value> <string encoding="cdata"><![CDATA[
portal = context.getPortalObject()\n
tag = script.id\n
if portal.portal_activities.countMessageWithTag(tag) > 0:\n
raise TypeError(\'Already running\')\n
\n \n
portal.ERP5Site_postUpgradeFixUpPortalDeliveries()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalDeliveries()\n
portal.ERP5Site_postUpgradeFixUpPortalTemplates()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalTemplates()\n
portal.ERP5Site_postUpgradeFixUpPortalTypes()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalTypes()\n
portal.ERP5Site_postUpgradeFixUpPortalPropertySheets()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalPropertySheets()\n
portal.ERP5Site_postUpgradeFixUpPortalRules()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalRules()\n
portal.ERP5Site_postUpgradeFixUpPortalSkins()\n portal.activate(tag=tag).ERP5Site_postUpgradeFixUpPortalSkins()\n
\n \n
return \'Done.\'\n return \'Done.\'\n
</string> </value>
]]></string> </value>
</item> </item>
<item> <item>
<key> <string>_params</string> </key> <key> <string>_params</string> </key>
......
37 38
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment