Commit 9bcc7e54 authored by Christophe Dumez's avatar Christophe Dumez

added "update business template" from repository function.

It will import a clean (and up to date) business template from the svn repository to zodb and install it (showing changes)

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@6924 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0d845609
...@@ -66,10 +66,12 @@ ...@@ -66,10 +66,12 @@
</item> </item>
<item> <item>
<key> <string>_body</string> </key> <key> <string>_body</string> </key>
<value> <string>from Products.ERP5Subversion.SubversionClient import SubversionSSLTrustError, SubversionLoginError\n <value> <string encoding="cdata"><![CDATA[
from Products.ERP5Subversion.SubversionClient import SubversionSSLTrustError, SubversionLoginError\n
\n \n
try:\n try:\n
context.getPortalObject()["portal_subversion"].update(context)\n new_bt = context.getPortalObject()["portal_subversion"].update(context)\n
except SubversionSSLTrustError, error:\n except SubversionSSLTrustError, error:\n
context.REQUEST.set(\'portal_status_message\', \'SSL Certificate was not recognized\')\n context.REQUEST.set(\'portal_status_message\', \'SSL Certificate was not recognized\')\n
return context.asContext(trust_dict = error.getTrustDict(), caller=\'update\').BusinessTemplate_viewSvnSSLTrust()\n return context.asContext(trust_dict = error.getTrustDict(), caller=\'update\').BusinessTemplate_viewSvnSSLTrust()\n
...@@ -78,8 +80,10 @@ except SubversionLoginError, error1 :\n ...@@ -78,8 +80,10 @@ except SubversionLoginError, error1 :\n
return context.asContext(caller=\'update\', realm = error1.getRealm(), username = context.getPortalObject().portal_preferences.getPreference(\'preferred_subversion_user_name\')).BusinessTemplate_viewSvnLogin()\n return context.asContext(caller=\'update\', realm = error1.getRealm(), username = context.getPortalObject().portal_preferences.getPreference(\'preferred_subversion_user_name\')).BusinessTemplate_viewSvnLogin()\n
\n \n
context.REQUEST.set(\'portal_status_message\', \'Working Copy updated successfully.\')\n context.REQUEST.set(\'portal_status_message\', \'Working Copy updated successfully.\')\n
return context.BusinessTemplate_viewSvnStatus()\n return new_bt.REQUEST.RESPONSE.redirect(new_bt.REQUEST[\'BASE3\']+\'/\'+new_bt.getId()+\'/\'+\'BusinessTemplate_viewInstallationDialog?workflow_action=install_action&form_id=\'+context.getId())\n
</string> </value>
]]></string> </value>
</item> </item>
<item> <item>
<key> <string>_code</string> </key> <key> <string>_code</string> </key>
...@@ -125,6 +129,7 @@ return context.BusinessTemplate_viewSvnStatus()\n ...@@ -125,6 +129,7 @@ return context.BusinessTemplate_viewSvnStatus()\n
<string>_getattr_</string> <string>_getattr_</string>
<string>_getitem_</string> <string>_getitem_</string>
<string>context</string> <string>context</string>
<string>new_bt</string>
<string>error</string> <string>error</string>
<string>error1</string> <string>error1</string>
</tuple> </tuple>
......
2006-04-25 chris
* Added update business from SVN repository function
2006-04-24 chris 2006-04-24 chris
* Subversion should be stable * Subversion should be stable
......
0.4 0.5
\ 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