The OpenDocument XML.org web site is not longer accepting new posts. Information on this page is preserved for legacy purposes only. For current information on ODF, please see the OASIS OpenDocument Technical Committee.
The OpenDocument XML.org web site is not longer accepting new posts. Information on this page is preserved for legacy purposes only. For current information on ODF, please see the OASIS OpenDocument Technical Committee.
My thoughts regarding an OpenDocument toolkit
thank you for sharing your thoughts on an OpenDocument toolkit with us.
Please see my recent GullFOSS blog entry for my own thoughts on an OpenDocument toolkit.
Michael
Spreadsheet
The Jakarta POI project (http://jakarta.apache.org/) contains a description of a high-level spreadsheet format (http://jakarta.apache.org/poi/hssf/quick-guide.html). This might be a good starting point.
functions to perform common task
I like bdarcus idea of a superset API.
As someone who use DOM Parser regularly, I am sometimes frustrated by the fact that at times I have to create individual elements. Hence, it may be useful to have functions to perform common task. Using HTML as an example:
node.appendItalicText("my italic text")
will append "<i>my italic text</i>", rather than having to create child node "i" and grand-child node textnode "my italic text" individually.
Best regards,
Cinly
Just to give a sense of the
Time to reimagine just a bit what document authoring ought to look like in the 21st century.
Metadata approach is indeed
Worst case scenario is I start to use "italic", "bold" etc as metadata. In fact, this can be a way to deal with legacy document.
The big unknown I have with metadata is "Will users do it"? My worry is anything that requires user to do extra work, e.g., tagging metadata to text, is not going to be workable.
One good example of a rethink of document authoring ought to look like in 21st century is the winning entry of KOffice GUI and Functionality Design Competition (http://www.koffice.org/competition/gui1results.php). I like to see something like this in the proposed kit.
Best regards,
Cinly
Two things:1) On the "will
I like the idea Rob. The
It would be nice, though, to not design an API and tools strictly from the ODF spec, but to perhaps consider a superset that removes some of the structural weakness that XHTML 1.0, ODF and OXML all share, but which other formats (DocBook, XHTML 2.0) do not.
A list or a blockquote, for example, should be able to be a part of a paragraph object, rather than to always necessarily stand alone.
Likewise, instead of fixed metadata properties tied only to the document, one might design it to be more flexible up front ;-)
true
Good point. The trick is to find something that is intuitive to the application developer. Replacing a 700-page XML specification with a 700-page API specification will not solve this problem. If you assume that the app developer does not already know ODF, then what is the source of his or her intuition? This would need to be their experience with using word processors and spreadsheets, as well as their experience using modern programming languages and XML API's. I think we can assume those three as a common background and build upon the conceptual models that flow from that.
-Rob