Please enable JavaScript to use RhodeCode Enterprise
##// END OF EJS Templates
Time
Author
Commit
Description
0 commits hidden, click expand to show them.
No commits in this compare
rhodecode/lib/vcs/backends/base.py
0
0
-4
@@
-104,10
+104,6
b' class MergeFailureReason(object):'
104
104
# The source repo reference is missing.
105
105
MISSING_SOURCE_REF = 10
106
106
107
# The merge was not successful, there are conflicts related to sub
108
# repositories.
109
SUBREPO_MERGE_FAILED = 11
110
111
107
112
108
class UpdateFailureReason ( object ):
113
109
"""
rhodecode/lib/vcs/backends/hg/repository.py
0
+1
-6
@@
-44,7
+44,7
b' from rhodecode.lib.vcs.backends.hg.diff '
44
44
from rhodecode.lib.vcs.backends.hg.inmemory import MercurialInMemoryCommit
45
45
from rhodecode.lib.vcs.exceptions import (
46
46
EmptyRepositoryError , RepositoryError , TagAlreadyExistError ,
47
TagDoesNotExistError , CommitDoesNotExistError , SubrepoMergeError)
47
TagDoesNotExistError , CommitDoesNotExistError )
48
48
49
49
hexlify = binascii . hexlify
50
50
nullid = " \0 " * 20
@@
-712,11
+712,6
b' class MercurialRepository(BaseRepository'
712
712
# shadow repository.
713
713
shadow_repo . bookmark ( 'pr-merge' , revision = merge_commit_id )
714
714
merge_ref = Reference ( 'book' , 'pr-merge' , merge_commit_id )
715
except SubrepoMergeError :
716
log . exception (
717
'Subrepo merge error during local merge on hg shadow repo.' )
718
merge_possible = False
719
merge_failure_reason = MergeFailureReason . SUBREPO_MERGE_FAILED
720
715
except RepositoryError :
721
716
log . exception ( 'Failure when doing local merge on hg shadow repo' )
722
717
merge_possible = False
rhodecode/lib/vcs/exceptions.py
0
0
-9
@@
-128,14
+128,6
b' class NodeAlreadyRemovedError(Committing'
128
128
pass
129
129
130
130
131
class SubrepoMergeError ( RepositoryError ):
132
"""
133
This happens if we try to merge a repository which contains subrepos and
134
the subrepos cannot be merged. The subrepos are not merged itself but
135
their references in the root repo are merged.
136
"""
137
138
139
131
class ImproperArchiveTypeError ( VCSError ):
140
132
pass
141
133
@@
-164,7
+156,6
b' class UnhandledException(VCSError):'
164
156
# TODO: johbo: Define our own exception for this and stop abusing
165
157
# urllib's exception class.
166
158
'url_error' : urllib2 . URLError ,
167
'subrepo_merge_error' : SubrepoMergeError ,
168
159
}
169
160
170
161
rhodecode/model/pull_request.py
0
0
-3
@@
-105,9
+105,6
b' class PullRequestModel(BaseModel):'
105
105
MergeFailureReason . MISSING_SOURCE_REF : lazy_ugettext (
106
106
'This pull request cannot be merged because the source '
107
107
'reference is missing.' ),
108
MergeFailureReason . SUBREPO_MERGE_FAILED : lazy_ugettext (
109
'This pull request cannot be merged because of conflicts related '
110
'to sub repositories.' ),
111
108
}
112
109
113
110
UPDATE_STATUS_MESSAGES = {
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
g 0-9
Goto bookmarked items from 0-9
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository access permissions settings
t s
Toggle sidebar on some pages