Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5diff
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
erp5diff
Commits
ce8f714f
Commit
ce8f714f
authored
Sep 10, 2022
by
Jérome Perrin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add python3 support and modernize
parent
6561c395
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
60 additions
and
103 deletions
+60
-103
CHANGES.rst
CHANGES.rst
+4
-0
MANIFEST.in
MANIFEST.in
+3
-0
README
README
+11
-6
bootstrap.py
bootstrap.py
+0
-56
setup.py
setup.py
+5
-5
src/ERP5Diff/ERP5Diff.py
src/ERP5Diff/ERP5Diff.py
+20
-26
src/ERP5Diff/__init__.py
src/ERP5Diff/__init__.py
+3
-3
src/tests/test_erp5diff.py
src/tests/test_erp5diff.py
+14
-7
No files found.
CHANGES.
tx
t
→
CHANGES.
rs
t
View file @
ce8f714f
0.8.1.8 (2022/09/14)
--------------------
* Support python3
0.8.1.7 (2015/04/23)
--------------------
* Fix a regression that was introduced in 0.8.1.6.
...
...
MANIFEST.in
0 → 100644
View file @
ce8f714f
include *.py
include *.rst
include MANIFEST.in
README
View file @
ce8f714f
...
...
@@ -5,13 +5,18 @@ This is a XUpdate Generator to compare any XML document.
See <http://xmldb-org.sourceforge.net/xupdate/> for information on
XUpdate.
Installation
============
python setup install
Test
====
python setup test
Testing
=======
To run tests::
python -m unittest discover src
or, using ``zc.buildout`` with ``zope.testrunner``::
buildout
./bin/test
Usage
=====
...
...
bootstrap.py
deleted
100644 → 0
View file @
6561c395
##############################################################################
#
# Copyright (c) 2006 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Bootstrap a buildout-based project
Simply run this script in a directory containing a buildout.cfg.
The script accepts buildout command-line options, so you can
use the -c option to specify an alternate configuration file.
$Id: bootstrap.py 77225 2007-06-29 09:20:13Z dobe $
"""
import
os
,
shutil
,
sys
,
tempfile
,
urllib2
tmpeggs
=
tempfile
.
mkdtemp
()
try
:
import
pkg_resources
except
ImportError
:
ez
=
{}
exec
urllib2
.
urlopen
(
'http://peak.telecommunity.com/dist/ez_setup.py'
).
read
()
in
ez
ez
[
'use_setuptools'
](
to_dir
=
tmpeggs
,
download_delay
=
0
)
import
pkg_resources
cmd
=
'from setuptools.command.easy_install import main; main()'
if
sys
.
platform
==
'win32'
:
cmd
=
'"%s"'
%
cmd
# work around spawn lamosity on windows
ws
=
pkg_resources
.
working_set
assert
os
.
spawnle
(
os
.
P_WAIT
,
sys
.
executable
,
sys
.
executable
,
'-c'
,
cmd
,
'-mqNxd'
,
tmpeggs
,
'zc.buildout'
,
dict
(
os
.
environ
,
PYTHONPATH
=
ws
.
find
(
pkg_resources
.
Requirement
.
parse
(
'setuptools'
)).
location
),
)
==
0
ws
.
add_entry
(
tmpeggs
)
ws
.
require
(
'zc.buildout'
)
import
zc.buildout.buildout
zc
.
buildout
.
buildout
.
main
(
sys
.
argv
[
1
:]
+
[
'bootstrap'
])
shutil
.
rmtree
(
tmpeggs
)
setup.py
View file @
ce8f714f
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from
__future__
import
absolute_import
from
setuptools
import
setup
,
find_packages
import
re
api_version
=
re
.
search
(
r'\
s*__
version__\
s*=
\s*(\
S+)
',
open('
src
/
ERP5Diff
/
ERP5Diff
.
py
').read()).group(1).strip()
revision =
7
revision =
8
version = '
%
s
.
%
s
' % (api_version.replace("'", ''), revision)
def read(name):
...
...
@@ -15,7 +16,7 @@ def read(name):
long_description=(
read('README')
+ '
\
n
' +
read('CHANGES.
tx
t')
read('CHANGES.
rs
t')
)
setup(name="
erp5diff
",
...
...
@@ -24,18 +25,17 @@ setup(name="erp5diff",
long_description=long_description,
author="
Yoshinori
OKUJI
",
author_email="
yo
@
nexedi
.
com
",
url="
http
:
//
www
.
erp5
.
org
/
",
url="
http
s
:
//
lab
.
nexedi
.
com
/
nexedi
/
erp5diff
/
",
license="
GPL
",
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points={'console_scripts': ["
erp5diff
=
ERP5Diff
:
main
"]},
data_files=[('share/man/man1', ['src/erp5diff.1'])],
install_requires=['lxml'],
install_requires=['lxml'
, 'six', 'zope.interface'
],
classifiers=['License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Topic :: Text Processing :: Markup :: XML',
'Topic :: Utilities'],
include_package_data=True,
zip_safe=False,
test_suite='tests',
)
src/ERP5Diff/ERP5Diff.py
View file @
ce8f714f
...
...
@@ -21,16 +21,18 @@
#
##############################################################################
from
__future__
import
absolute_import
from
__future__
import
print_function
from
lxml
import
etree
import
six
from
six.moves
import
range
from
six.moves
import
zip
parser
=
etree
.
XMLParser
(
remove_blank_text
=
True
)
import
sys
import
getopt
import
os
try
:
from
cStringIO
import
StringIO
except
ImportError
:
from
StringIO
import
StringIO
from
six
import
StringIO
import
re
import
codecs
from
copy
import
deepcopy
...
...
@@ -49,6 +51,7 @@ def isNodeEquals(old, new):
return
False
return
True
@
zope
.
interface
.
implementer
(
IERP5Diff
)
class
ERP5Diff
:
"""
Make a difference between two XML documents using XUpdate.
...
...
@@ -65,9 +68,6 @@ class ERP5Diff:
used in ERP5 XML documents.
"""
# Declarative interfaces
zope
.
interface
.
implements
(
IERP5Diff
,)
__version__
=
'0.8.1'
def
__init__
(
self
):
...
...
@@ -137,7 +137,7 @@ class ERP5Diff:
if
namespace_uri
==
'http://www.w3.org/XML/1998/namespace'
:
prefix
=
'xml'
else
:
prefix
=
[
t
[
0
]
for
t
in
element
.
nsmap
.
iteritems
(
)
if
t
[
1
]
==
namespace_uri
][
0
]
prefix
=
[
t
[
0
]
for
t
in
six
.
iteritems
(
element
.
nsmap
)
if
t
[
1
]
==
namespace_uri
][
0
]
return
'%s:%s'
%
(
prefix
,
local_name
,),
namespace_uri
else
:
return
attr_name
,
None
...
...
@@ -149,10 +149,7 @@ class ERP5Diff:
root
=
self
.
_getResultRoot
()
append_element
=
etree
.
Element
(
'{%s}append'
%
self
.
_ns
,
nsmap
=
root
.
nsmap
)
append_element
.
attrib
[
'select'
]
=
path
key_list
=
attr_dict
.
keys
()
key_list
.
sort
()
for
name
in
key_list
:
val
=
attr_dict
[
name
]
for
name
,
val
in
sorted
(
six
.
iteritems
(
attr_dict
)):
attr_element
=
etree
.
Element
(
'{%s}attribute'
%
self
.
_ns
,
nsmap
=
nsmap
)
name
,
namespace_uri
=
name
attr_element
.
attrib
[
'name'
]
=
name
...
...
@@ -380,10 +377,7 @@ class ERP5Diff:
# Find all added or removed or changed attrib.
#sort key list to stick expected output
key_list1
=
dict1
.
keys
()
key_list1
.
sort
()
for
name1
in
key_list1
:
val1
=
dict1
[
name1
]
for
name1
,
val1
in
sorted
(
six
.
iteritems
(
dict1
)):
if
name1
in
dict2
:
if
val1
!=
dict2
[
name1
]:
# The value is different.
...
...
@@ -394,7 +388,7 @@ class ERP5Diff:
# This attribute is removed.
self
.
_xupdateRemoveAttribute
(
name1
,
path
,
nsmap
=
element
.
nsmap
)
d
=
{}
for
name2
,
val2
in
dict2
.
iteritems
(
):
for
name2
,
val2
in
six
.
iteritems
(
dict2
):
if
val2
is
not
None
:
# This attribute is added.
d
[
name2
]
=
val2
...
...
@@ -547,7 +541,7 @@ class ERP5Diff:
else
:
misplaced_node_dict
=
{}
for
k
,
v
in
misplaced_node_dict
.
items
(
):
for
k
,
v
in
list
(
misplaced_node_dict
.
items
()
):
if
k
in
old_new_index_mapping
:
value
=
misplaced_node_dict
[
k
]
misplaced_node_dict
[
old_new_index_mapping
[
k
]]
=
value
...
...
@@ -705,9 +699,9 @@ def main():
"""
try
:
opts
,
args
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
"ho:v"
,
[
"help"
,
"output="
,
"verbose"
])
except
getopt
.
GetoptError
,
msg
:
print
msg
print
"Try ``erp5diff --help'' for more information."
except
getopt
.
GetoptError
as
msg
:
print
(
msg
)
print
(
"Try ``erp5diff --help'' for more information."
)
sys
.
exit
(
2
)
output
=
None
verbose
=
0
...
...
@@ -715,24 +709,24 @@ def main():
if
o
==
"-v"
:
verbose
=
1
elif
o
in
(
"-h"
,
"--help"
):
print
'''Usage: erp5diff [OPTION]... OLD_XML NEW_XML
print
(
'''Usage: erp5diff [OPTION]... OLD_XML NEW_XML
Make a difference between two XML documents in XUpdate format.
-h, --help display this message and exit
-o, --output=FILE output the result to the file FILE
-v, --verbose print verbose messages
Report bugs to <yo@nexedi.com>.'''
'''
)
sys
.
exit
()
elif
o
in
(
"-o"
,
"--output"
):
output
=
a
if
len
(
args
)
!=
2
:
if
len
(
args
)
>
2
:
print
"Too many arguments."
print
(
"Too many arguments."
)
else
:
print
"Too few arguments."
print
"Try ``erp5diff --help'' for more information."
print
(
"Too few arguments."
)
print
(
"Try ``erp5diff --help'' for more information."
)
sys
.
exit
(
2
)
d
=
ERP5Diff
()
...
...
src/ERP5Diff/__init__.py
View file @
ce8f714f
# for backward compatibility with old import path
from
ERP5Diff
import
main
from
ERP5Diff
import
ERP5Diff
as
ERP5Diff
from
__future__
import
absolute_import
from
.ERP5Diff
import
main
from
.ERP5Diff
import
ERP5Diff
src/tests/
erp5diff_test_suite
.py
→
src/tests/
test_erp5diff
.py
View file @
ce8f714f
# -*- coding: utf-8 -*-
from
__future__
import
absolute_import
import
doctest
import
unittest
import
pkg_resources
import
lxml.doctestcompare
from
lxml
import
etree
from
ERP5Diff
import
ERP5Diff
from
lxml
import
etree
from
cStringIO
import
StringIO
erp5diff
=
ERP5Diff
()
class
TestERP5Diff
(
unittest
.
TestCase
):
...
...
@@ -16,10 +18,15 @@ class TestERP5Diff(unittest.TestCase):
"""
erp5diff
.
compare
(
old_xml
,
new_xml
)
result_tree
=
erp5diff
.
_result
result_string
=
etree
.
tostring
(
result_tree
,
pretty_print
=
True
)
self
.
assertEquals
(
result_string
,
expected_result_string
,
'
\
n
%s
\
n
\
n
%s'
%
(
result_string
,
expected_result_string
))
result_string
=
etree
.
tostring
(
result_tree
,
pretty_print
=
True
,
encoding
=
'unicode'
)
checker
=
lxml
.
doctestcompare
.
LXMLOutputChecker
()
if
not
checker
.
check_output
(
expected_result_string
,
result_string
,
0
):
self
.
fail
(
checker
.
output_difference
(
doctest
.
Example
(
""
,
expected_result_string
),
result_string
,
0
))
def
test_textNodes
(
self
):
"""update the texts of the three elements
...
...
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