Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix typos in the OpenDocument case study. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | version-3.8.6 |
Files: | files | file ages | folders |
SHA1: |
6c66d1ee777b97415107fe5833ff852a |
User & Date: | drh 2014-09-08 12:34:27.248 |
Context
2014-09-21
| ||
16:58 | Cherrypick typo fixes from trunk. (check-in: d72427edab user: drh tags: version-3.8.6) | |
2014-09-08
| ||
12:34 | Fix typos in the OpenDocument case study. (check-in: 6c66d1ee77 user: drh tags: version-3.8.6) | |
12:33 | Fix typos in the OpenDocument case study. (check-in: d1bb4a6b20 user: drh tags: trunk) | |
12:11 | Add the OpenDocument as SQLite case study. (Cherrypicked from trunk.) (check-in: a39452f2a5 user: drh tags: version-3.8.6) | |
Changes
Changes to pages/affcase1.in.
︙ | ︙ | |||
30 31 32 33 34 35 36 | <h2>About OpenDocument And OpenDocument Presentation</h2> <p> The OpenDocument file format is used for office applications: word processors, spreadsheets, and presentations. It was originally designed for the OpenOffice suite but has since been incorporated into other desktop application suites. The OpenOffice application has been | | | | | > | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | <h2>About OpenDocument And OpenDocument Presentation</h2> <p> The OpenDocument file format is used for office applications: word processors, spreadsheets, and presentations. It was originally designed for the OpenOffice suite but has since been incorporated into other desktop application suites. The OpenOffice application has been forked and renamed a few times. This author's primary use for OpenDocument is building slide presentations with either [https://www.neooffice.org/neojava/en/index.php|NeoOffice] on Mac, or [http://www.libreoffice.org/|LibreOffice] on Linux and Windows. <p> An OpenDocument Presentation or "ODP" file is a [http://en.wikipedia.org/wiki/Zip_%28file_format%29|ZIP archive] containing XML files describing presentation slides and separate image files for the various images that are included as part of the presentation. (OpenDocument word processor and spreedsheet files are similarly structured but are not considered by this article.) The reader can easily see the content of an ODP file by using the "zip -l" command. For example, the following is the "zip -l" output from a 49-slide presentation about SQLite from the 2014 <a href="http://southeastlinuxfest.org/">SouthEast LinuxFest</a> conference: <blockquote><pre> Archive: self2014.odp Length Date Time Name --------- ---------- ----- ---- 47 2014-06-21 12:34 mimetype 0 2014-06-21 12:34 Configurations2/statusbar/ |
︙ | ︙ | |||
552 553 554 555 556 557 558 | These are just a few of the benefits of using SQLite as an application file format — the benefits that seem most likely to improve the user experience for applications like OpenOffice. Other applications might benefit from SQLite in different ways. See the [Application File Format] document for additional ideas. <p> | | | | 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | These are just a few of the benefits of using SQLite as an application file format — the benefits that seem most likely to improve the user experience for applications like OpenOffice. Other applications might benefit from SQLite in different ways. See the [Application File Format] document for additional ideas. <p> Finally, let us reiterate that this essay is a thought experiment. The OpenDocument format is well-established and already well-designed. Nobody really believes that OpenDocument should be changed to use SQLite as its container instead of ZIP. Nor is this article a criticism of OpenDocument for not choosing SQLite as its container since OpenDocument predates SQLite. Rather, the point of this article is to use OpenDocument as a concrete example of how SQLite can be used to build better application file formats for future projects. |