Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-06 Thread Bernd Eilers
Hi there! Denver Gingerich wrote: On 6/5/07, Mathias Bauer [EMAIL PROTECTED] wrote: Denver Gingerich wrote: For example, the following should work: $ svn commit test.odt $ mv test.odt test1.odt $ svn up [pulls deleted test.odt from repository] $ diff test.odt test1.odt echo match

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-05 Thread Mathias Bauer
Denver Gingerich wrote: For example, the following should work: $ svn commit test.odt $ mv test.odt test1.odt $ svn up [pulls deleted test.odt from repository] $ diff test.odt test1.odt echo match match An SCM user might, for example, keep checksums of all the files they commit to

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-05 Thread Denver Gingerich
On 6/5/07, Mathias Bauer [EMAIL PROTECTED] wrote: Denver Gingerich wrote: For example, the following should work: $ svn commit test.odt $ mv test.odt test1.odt $ svn up [pulls deleted test.odt from repository] $ diff test.odt test1.odt echo match match An SCM user might, for example,

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Andy Pitonyak
Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip [options] ../doc2.zip * $ diff ../doc.odt ../doc2.zip

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Christian Lohmaier
Hi *, On Sat, Jun 02, 2007 at 08:56:16PM -0400, Denver Gingerich wrote: Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? Probably. I would like to be able to do something like the following: $ unzip

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Bernd Eilers
Hi there ! Andy Pitonyak wrote: Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip [options] ../doc2.zip * $

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Bernd Eilers
Bernd Eilers wrote: Hi there ! Andy Pitonyak wrote: Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Mathias Bauer
Denver Gingerich wrote: Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip [options] ../doc2.zip * $

Re: [dev] Constructing identical zip file from .ods/.odt contents

2007-06-04 Thread Denver Gingerich
On 6/4/07, Mathias Bauer [EMAIL PROTECTED] wrote: Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip

[dev] Constructing identical zip file from .ods/.odt contents

2007-06-02 Thread Denver Gingerich
Is it possible to construct a zip file from the extracted contents of an ods or odt file that is identical to the original ods/odt file? I would like to be able to do something like the following: $ unzip doc.odt -d doc $ cd doc $ zip [options] ../doc2.zip * $ diff ../doc.odt ../doc2.zip echo