Re: createrepo 0.3.2
seth vidal <[email protected]>
| Newsgroups | gmane.linux.rpm.metadata |
|---|---|
| Message-ID | <[email protected]> |
On Mon, 2004-04-19 at 10:54, Jeff Sheltren wrote: > By 'pretty printed' do you mean the tabs/spaces in the .xml file to make > it a bit more human readable? And the speedup when using the 'ugly' > file format: is that the import times when yum is reading the file, or > the time it takes to create the file initially? > > Thanks for the clarification. pretty printing is like: <foo> <bar>stuff</bar> <baz>other stuff</baz> </foo> unpretty printing is: <foo><bar>stuff</bar><baz>other stuff</baz></foo> same actual content - just no formatting. and the import time should be improved for anything using an xml library to import b/c it will mean less garbage text nodes. -sv