Commit 1c006d9e authored by Yoshinori Okuji's avatar Yoshinori Okuji

tweaking the repository structure.

parents
This diff is collapsed.
This is a XUpdate Generator for ERP5.
See <http://www.xmldb.org/xupdate/index.html> for information on
XUpdate.
See <http://erp5.org/> for information on ERP5.
For the installation, do "python setup.py install".
Once you have installed erp5diff, you can use "erp5diff" in a shell:
$ erp5diff old.xml new.xml
See the manpage erp5diff(1) or "erp5diff --help" for more information.
Also, you can use the module ERP5Diff from your Python script.
Do "pydoc ERP5Diff" for more information.
- 2003-12-04, Yoshinori OKUJI <yo@nexedi.com>
#! /usr/bin/python
##############################################################################
#
# Yoshinori OKUJI <yo@nexedi.com>
#
# Copyright (C) 2003 Nexedi SARL
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ?See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ?02111-1307, USA.
#
##############################################################################
from ERP5Diff import main
main()
\ No newline at end of file
.TH ERP5DIFF 1 "4 Dec 2003" "ERP5DIFF version 0.1" Nexedi
.SH NAME
erp5diff \- find differences between two XML documents for ERP5
.SH SYNOPSIS
.B erp5diff
[\fIoptions\fR]...
.LP
.SH DESCRIPTION
ERP5Diff is a XUpdate Generator for ERP5. It takes two XML files
as input data, and generates differences between these two XML
documents in XUpdate language.
.LP
ERP5Diff depends on more or less ERP5's XML data format. So this tool
cannot be used for general purpose, but might work if your XML files
are similar to ERP5's.
.SH OPTIONS
.TP
\fB\-o\fR, \fB\-\-output\fR=\fIFILE\fR
Specify the output file. The standard output is used by default.
.TP
\fB\-h\fR, \fB\-\-help\fR
Display the usage and exit.
.TP
\fB\-v\fR, \fB\-\-verbose\fR
Print verbose messages. Only useful for debugging.
.SH AUTHOR
Yoshinori OKUJI <yo@nexedi.com>
.SH "SEE ALSO"
\fIhttp://www.xmldb.org/xupdate/index.html\fR,
\fIhttp://www.w3.org/TR/xpath\fR,
\fIhttp://www.w3.org/TR/REC-xml\fR,
\fIhttp://erp5.org\fR
#! /usr/bin/env python
from distutils.core import setup
setup(name="erp5diff",
version="0.1",
description="XUpdate Generator for ERP5",
author="Yoshinori OKUJI",
author_email="yo@nexedi.com",
url="http://nexedi.com",
license="GPL",
py_modules=["ERP5Diff"],
scripts=["erp5diff"],
data_files=[('share/man/man1', ['erp5diff.1'])]
)
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