fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'master' of stigma.nowoczesnapolska.org.pl:platforma
[redakcja.git]
/
lib
/
wlrepo
/
mercurial_backend
/
document.py
diff --git
a/lib/wlrepo/mercurial_backend/document.py
b/lib/wlrepo/mercurial_backend/document.py
index
3f94097
..
a579fb7
100644
(file)
--- a/
lib/wlrepo/mercurial_backend/document.py
+++ b/
lib/wlrepo/mercurial_backend/document.py
@@
-50,6
+50,10
@@
class MercurialDocument(wlrepo.Document):
ops(self._library, entry_path)
message, user = commit_info(self)
ops(self._library, entry_path)
message, user = commit_info(self)
+
+ message = self._library._sanitize_string(message)
+ user = self._library._sanitize_string(user)
+
self._library._commit(message, user)
try:
return self._library.document(docid=self.id, user=user)
self._library._commit(message, user)
try:
return self._library.document(docid=self.id, user=user)
@@
-98,15
+102,20
@@
class MercurialDocument(wlrepo.Document):
return (True, False)
if self._revision.has_children():
return (True, False)
if self._revision.has_children():
+ print 'Update failed: has children.'
# can't update non-latest revision
return (False, False)
sv = self.shared()
# can't update non-latest revision
return (False, False)
sv = self.shared()
-
- if not sv.ancestorof(self) and not self.parentof(sv):
- return self._revision.merge_with(sv._revision, user=user)
- return (False, False)
+ if self.parentof(sv):
+ return (True, False)
+
+ if sv.ancestorof(self):
+ return (True, False)
+
+
+ return self._revision.merge_with(sv._revision, user=user)
finally:
lock.release()
finally:
lock.release()