Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
7e200c2a
Commit
7e200c2a
authored
Aug 29, 2011
by
Łukasz Nowak
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into certificate_authority
parents
6ddfc3ad
ec48a173
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
11 deletions
+22
-11
product/ERP5Type/DiffUtils.py
product/ERP5Type/DiffUtils.py
+6
-5
product/ERP5Type/tests/ERP5TypeTestCase.py
product/ERP5Type/tests/ERP5TypeTestCase.py
+12
-4
product/ERP5VCS/Git.py
product/ERP5VCS/Git.py
+4
-2
No files found.
product/ERP5Type/DiffUtils.py
View file @
7e200c2a
...
...
@@ -57,11 +57,10 @@ class DiffFile(object):
"""
def
__init__
(
self
,
raw_diff
):
if
'@@'
not
in
raw_diff
:
self
.
binary
=
True
self
.
children
=
[]
self
.
binary
=
raw_diff
and
'@@'
not
in
raw_diff
if
self
.
binary
or
not
raw_diff
:
return
else
:
self
.
binary
=
False
self
.
header
=
raw_diff
.
split
(
'@@'
)[
0
][:
-
1
]
# Getting file path in header
self
.
path
=
self
.
header
.
split
(
'===='
)[
0
][:
-
1
].
strip
()
...
...
@@ -84,7 +83,6 @@ class DiffFile(object):
if
not
self
.
body
.
startswith
(
'@@'
):
self
.
body
=
os
.
linesep
.
join
(
raw_diff
.
strip
().
splitlines
()[
4
:])
# Now splitting modifications
self
.
children
=
[]
first
=
True
tmp
=
[]
for
line
in
self
.
body
.
splitlines
():
...
...
@@ -97,6 +95,9 @@ class DiffFile(object):
tmp
.
append
(
line
)
self
.
children
.
append
(
CodeBlock
(
os
.
linesep
.
join
(
tmp
)))
def
__nonzero__
(
self
):
return
self
.
binary
or
bool
(
self
.
children
)
def
__len__
(
self
):
return
len
(
self
.
children
)
...
...
product/ERP5Type/tests/ERP5TypeTestCase.py
View file @
7e200c2a
...
...
@@ -556,15 +556,23 @@ class ERP5TypeTestCaseMixin(ProcessingNodeTestCase, PortalTestCase):
"""Invoke debugger"""
try
:
# try ipython if available
import
IPython
IPython
.
Shell
.
IPShell
(
argv
=
[])
tracer
=
IPython
.
Debugger
.
Tracer
()
try
:
IPython
.
InteractiveShell
()
tracer
=
IPython
.
core
.
debugger
.
Tracer
()
except
AttributeError
:
# for ipython-0.10 or before
IPython
.
Shell
.
IPShell
(
argv
=
[])
tracer
=
IPython
.
Debugger
.
Tracer
()
except
ImportError
:
from
pdb
import
set_trace
as
tracer
tracer
()
def
stepIPython
(
self
,
sequence
=
None
,
sequence_list
=
None
):
import
IPython.Shell
IPython
.
Shell
.
IPShellEmbed
(())()
import
IPython
try
:
ipshell
=
IPython
.
frontend
.
terminal
.
embed
.
InteractiveShellEmbed
()
except
AttributeError
:
# for ipython-0.10 or before
ipshell
=
IPython
.
Shell
.
IPShellEmbed
(())
ipshell
()
def
stepTic
(
self
,
**
kw
):
"""
...
...
product/ERP5VCS/Git.py
View file @
7e200c2a
...
...
@@ -217,8 +217,10 @@ class Git(WorkingCopy):
template
=
'Index: %%s
\
n
%s%%s
\
n
'
%
(
'='
*
67
)
for
diff
in
out
:
path
=
diff
[:
diff
.
index
(
' '
)]
# XXX: the following line fails if only the file mode changes
diff_dict
[
path
]
=
template
%
(
path
,
diff
[
diff
.
index
(
'
\
n
---'
):])
try
:
diff_dict
[
path
]
=
template
%
(
path
,
diff
[
diff
.
index
(
'
\
n
---'
):])
except
ValueError
:
pass
# empty file is deleted or only file mode is changed
return
stat_dict
,
diff_dict
def
getModifiedTree
(
self
,
show_unmodified
=
False
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment