Jim Higson wrote: > I have a bunch of sxw files in a subversion repository (documentation for > an Open Source project). It'd be nice if the repo didn't have to treat > them as binary so it could do merge operations when several people make > minor changes. > > Is it possible to save in an uncompressed XML format?
There used to be FlatXML (which is uncompressed XML) filter for 1.1.* versions, but it is nowhere found for OOo 2.0. I have working hypothesis, that when you install null XSLT stylesheet (see included -- you have to copy & paste, this list IIRC does not allow attachements) as export filter (in Tools/XSLT Filters), then it might work. I would seriously welcome some testing of this hypothesis. Matej -- Matej Cepl, http://www.ceplovi.cz/matej/blog/ GPG Finger: 89EF 4BC6 288A BF43 1BAB 25C3 E09F EF25 D964 84AC Our lives are spectacles of powerlessness. -- Richard Rohr ========================================================== <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/> <xsl:strip-space elements="*"/> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
