|
Project Information
|
A library for the maniuplation of ODF files. Design goal is to provide a wrapper over REXML::Elements, where all higher level logic is applied immediately to the xml tree. Thus the xml is available at any time, and any holes in the api can be dealt with temporarily by working on the underlying xml (or where more power is needed). Examples: # accessing meta. automatic type casting to/from standard ruby types doc = OpenDocument.open 'document.odt' doc.meta.creator # => 'Charles' doc.meta.user_defined['foo'] # => 'bar' doc.meta.creator = 'Steven' doc.save 'new-document.odt' |