Commit a8611444 authored by Julien Muchembled's avatar Julien Muchembled

ERP5Subversion: do not commit deleted files in a separate commits

This is done by reverting unselected files before committing everything
recursively.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40395 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ba22def5
...@@ -58,7 +58,6 @@ from Products.ERP5Type.Message import translateString\n ...@@ -58,7 +58,6 @@ from Products.ERP5Type.Message import translateString\n
from ZTUtils import make_query\n from ZTUtils import make_query\n
request = container.REQUEST\n request = container.REQUEST\n
\n \n
\n
# XXX: To be compatible with commit from diff view\n # XXX: To be compatible with commit from diff view\n
if same_type(added, []):\n if same_type(added, []):\n
added = \',\'.join(added)\n added = \',\'.join(added)\n
...@@ -67,62 +66,44 @@ if same_type(modified, []):\n ...@@ -67,62 +66,44 @@ if same_type(modified, []):\n
if same_type(removed, []):\n if same_type(removed, []):\n
removed = \',\'.join(removed)\n removed = \',\'.join(removed)\n
\n \n
commit_non_recurs = added\n
if commit_non_recurs != \'\' and commit_non_recurs != \'none\':\n
if modified != \'\' and modified != \'none\':\n
commit_non_recurs = commit_non_recurs+\',\'+modified \n
else:\n
if modified != \'\' and modified != \'none\':\n
commit_non_recurs = modified\n
\n
if commit_non_recurs != \'\' and commit_non_recurs != \'none\':\n
commit_non_recurs = commit_non_recurs.split(\',\')\n
if removed != \'\' and removed != \'none\':\n
commit_recurs = context.getPortalObject()["portal_subversion"].cleanChildrenInList(removed.split(\',\'))\n
else:\n
commit_recurs = removed\n
\n
if changelog is None :\n
request.set(\'portal_status_message\', translateString(\'Please set a ChangeLog message.\'))\n
request.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n
\n
if changelog.strip() == \'\' :\n
request.set(\'portal_status_message\', translateString("Error: ChangeLog message can not be empty."))\n
request.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed).BusinessTemplate_viewSvnChangelog()\n
\n
def getRevisionNumber(revision):\n def getRevisionNumber(revision):\n
"""get the revision number from a revision, with backward compatibility support.\n """get the revision number from a revision, with backward compatibility support.\n
"""\n """\n
if hasattr(revision, \'getNumber\'):\n try:\n
return revision.getNumber()\n return revision.getNumber()\n
return str(revision)\n except AttributeError:\n
return revision\n
\n \n
try:\n error_kw = {}\n
revision_string = \'\'\n if changelog is None or not changelog.strip():\n
if commit_non_recurs != \'none\' and commit_non_recurs != \'\':\n error_msg = "Please set a ChangeLog message."\n
revision = context.getPortalObject()["portal_subversion"].checkin(path=commit_non_recurs, business_template=context, recurse=False, log_message=changelog)\n else:\n
revision_string = \'%s\' % getRevisionNumber(revision)\n portal_subversion = context.getPortalObject().portal_subversion\n
if commit_recurs != \'none\' and commit_recurs != \'\':\n portal_subversion.revert(\'.\', business_template=context, recurse=True,\n
revision = context.getPortalObject()["portal_subversion"].checkin(path=commit_recurs, business_template=context, recurse=True, log_message=changelog)\n exclude_list = added.split(\',\') + modified.split(\',\') + removed.split(\',\'))\n
if revision_string:\n try:\n
revision_string = \'%s, %s\' % (revision_string, getRevisionNumber(revision))\n revision = portal_subversion.checkin(\'.\', business_template=context,\n
else:\n log_message=changelog)\n
revision_string = \'%s\' % getRevisionNumber(revision)\n except SubversionSSLTrustError, e:\n
except SubversionSSLTrustError, error:\n error_msg = "SSL Certificate was not recognized"\n
request.set(\'portal_status_message\', \'SSL Certificate was not recognized\')\n error_kw = dict(caller=\'commit\', trust_dict=e.getTrustDict())\n
request.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n except SubversionLoginError, e:\n
return context.asContext(added=added, modified=modified, removed=removed, changelog=changelog, trust_dict = error.getTrustDict(), caller=\'commit\').BusinessTemplate_viewSvnSSLTrust()\n error_msg = "Server needs authentication, no cookie found"\n
except SubversionLoginError, error1 :\n error_kw = dict(caller=\'commit\', realm=e.getRealm(),\n
request.set(\'portal_status_message\', \'Server needs authentication, no cookie found\')\n username=portal_subversion.getPreferredUsername())\n
request.set(\'cancel_url\', context.absolute_url() + \'/BusinessTemplate_viewSvnStatus?do_extract=False&portal_status_message=Commit%20cancelled.\')\n else:\n
return context.asContext(added=added, modified=modified, removed=removed, changelog=changelog, caller=\'commit\', realm = error1.getRealm(), username = context.getPortalObject()["portal_subversion"].getPreferredUsername()).BusinessTemplate_viewSvnLogin()\n return request.RESPONSE.redirect(\'%s/view?%s\' % (\n
context.absolute_url(),\n
make_query(portal_status_message=translateString(\n
\'Files committed successfully in revision ${revision}.\',\n
mapping=dict(revision=getRevisionNumber(revision))))))\n
\n \n
return request.RESPONSE.redirect(\'%s/view?%s\' % (\n request.set(\'portal_status_message\', translateString(error_msg))\n
context.absolute_url(),\n request.set(\'cancel_url\', context.absolute_url() +\n
make_query(portal_status_message=translateString(\'Files committed successfully in revision ${revision}.\',\n \'/BusinessTemplate_viewSvnStatus?do_extract=False\'\n
mapping=dict(revision=revision_string)))))\n \'&portal_status_message=Commit%20cancelled.\')\n
return context.asContext(added=added, modified=modified, removed=removed,\n
**error_kw).BusinessTemplate_viewSvnChangelog()\n
]]></string> </value> ]]></string> </value>
...@@ -177,19 +158,17 @@ return request.RESPONSE.redirect(\'%s/view?%s\' % (\n ...@@ -177,19 +158,17 @@ return request.RESPONSE.redirect(\'%s/view?%s\' % (\n
<string>container</string> <string>container</string>
<string>request</string> <string>request</string>
<string>same_type</string> <string>same_type</string>
<string>commit_non_recurs</string>
<string>_getitem_</string>
<string>context</string>
<string>commit_recurs</string>
<string>None</string>
<string>getRevisionNumber</string> <string>getRevisionNumber</string>
<string>revision_string</string> <string>error_kw</string>
<string>False</string> <string>None</string>
<string>revision</string> <string>error_msg</string>
<string>context</string>
<string>portal_subversion</string>
<string>True</string> <string>True</string>
<string>error</string> <string>revision</string>
<string>error1</string> <string>e</string>
<string>dict</string> <string>dict</string>
<string>_apply_</string>
</tuple> </tuple>
</value> </value>
</item> </item>
......
629 630
\ No newline at end of file \ No newline at end of file
...@@ -313,15 +313,6 @@ try: ...@@ -313,15 +313,6 @@ try:
return self.client.diff(tmp_path, url_or_path=path, recurse=False) return self.client.diff(tmp_path, url_or_path=path, recurse=False)
def revert(self, path, recurse=False): def revert(self, path, recurse=False):
try:
depth = pysvn.depth.infinity
except AttributeError:
depth = None
if depth is not None:
try:
return self.client.revert(path, depth=depth)
except TypeError:
pass
return self.client.revert(path, recurse) return self.client.revert(path, recurse)
def switch(self, path, url): def switch(self, path, url):
......
...@@ -604,16 +604,32 @@ class SubversionTool(BaseTool): ...@@ -604,16 +604,32 @@ class SubversionTool(BaseTool):
security.declareProtected('Import/Export objects', 'revert') security.declareProtected('Import/Export objects', 'revert')
# path can be absolute or relative # path can be absolute or relative
def revert(self, path, business_template=None, recurse=False): def revert(self, path, business_template=None,
recurse=False, exclude_list=()):
"""Revert local changes in a file or a directory. """Revert local changes in a file or a directory.
""" """
client = self._getClient() client = self._getClient()
if not isinstance(path, list) : if isinstance(path, basestring):
path = [self._getWorkingPath(self.relativeToAbsolute(path, \ path = path,
business_template))]
if business_template is not None: if business_template is not None:
path = [self._getWorkingPath(self.relativeToAbsolute(x, \ path = [self._getWorkingPath(self.relativeToAbsolute(x,
business_template)) for x in path] business_template)) for x in path]
if recurse and exclude_list:
exclude_list = frozenset(self._getWorkingPath(self.relativeToAbsolute(x,
business_template)) for x in exclude_list)
added_set = set()
other_list = []
for path in path:
for status in client.status(path):
path = status.getPath()
if path not in exclude_list:
status = str(status.getTextStatus())
if status == 'added':
added_set.add(path)
elif status != 'normal':
other_list.append(path)
client.revert(other_list, False)
path = [x for x in added_set if os.path.dirname(x) not in added_set]
client.revert(path, recurse) client.revert(path, recurse)
security.declareProtected('Import/Export objects', 'revertZODB') security.declareProtected('Import/Export objects', 'revertZODB')
......
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