Slashdot Log In
Opera CTO Hits Back at Microsoft's Standards Push
Posted by
Zonk
on Sat Feb 24, 2007 01:22 AM
from the going-to-make-the-nighly-news dept.
from the going-to-make-the-nighly-news dept.
Michael writes "Opera CTO Håkon Wium Lie hit back today at Microsoft's push to fast track Office Open XML into an ISO standard, in a
blistering article on CNET. He also took a swipe at Open Document Format: 'I'm no fan of either specification. Both are basically memory dumps with angle brackets around them. If forced to choose one, I'd pick the 700-page specification (ODF) over the 6,000-page specification (OOXML). But I think there is a better way.' The better way being the existing universally understood standards of HTML and CSS. Putting this to the test, Håkon has published a book using HTML and CSS."
Related Stories
[+]
IT: Microsoft Wins Industry Standard Status for Office 281 comments
everphilski writes "The International Herald-Tribune reports that Microsoft has won industry standard status for Office. EMCA International, a group of hardware and software makers based in Geneva, approved the MS file formats with only one dissenting vote - IBM. IBM backs the OpenDocument standard, which was approved by the ISO in May of this year." From the article: "Bob Sutor, IBM's vice president for open source and standards, called Microsoft's Office formats technically unwieldy - requiring software developers to absorb 6,000 pages of specifications, compared with 700 pages for OpenDocument. 'The practical effect is the only people who are going to be in a position to implement Microsoft's specifications are Microsoft,' Sutor said."
[+]
Microsoft Blasts IBM Over XML Standards 323 comments
carlmenezes writes "Ars Technica has up an article discussing Microsoft's latest salvo against IBM. Microsoft's open letter to IBM adds fresh ammunition to the battle of words between those who support Microsoft's Open XML and OpenOffice.org's OpenDocument file formats. Microsoft has strong words for IBM, which it accuses of deliberately trying to sabotage Microsoft's attempt to get Open XML certified as a standard by the ECMA. In the letter, general managers Tom Robertson and Jean Paol write: 'When ODF was under consideration, Microsoft made no effort to slow down the process because we recognized customers' interest in the standardization of document formats.' In contrast, the authors charge that IBM 'led a global campaign' urging that governments and other organizations demand that International Standards Organization (ISO) reject Open XML outright."
This discussion has been archived.
No new comments can be posted.
Opera CTO Hits Back at Microsoft's Standards Push
|
Log In/Create an Account
| Top
| 246 comments
| Search Discussion
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Yes. Well... (Score:3, Funny)
(http://www.nojailforpot.com/)
Ok... Cheese, anyone?
fsck'n ugly (Score:5, Insightful)
Re:fsck'n ugly (Score:5, Insightful)
(http://www.intelligentblogger.com/ | Last Journal: Monday August 27, @11:47AM)
You don't typeset with Microsoft Word, either. Which makes the entire argument specious. Word processors like MS Word and OOo Writer are for creating common documents like letters, memos, and maybe the occasional flyer. Neither one is particularly good at anything even close to professional publishing work. Even the book authors just use Word (or surprisingly, OOo Writer!) to do the text content. That text is then exported to a more sophisticated program, where the actual typesetting and page layouts are done.
I think this fellow's point is that HTML/CSS formats can store any information that a Word Processor might need to store, with no need to invoke new technologies. To a certain extent, he may be correct. Unfortunately, HTML/CSS may make a good intermediary format, but it is not particularly good from a performance or usability perspective. Then again, XML formats in general are fairly poor choices for the same reason.
I think if we want to break this conundrum, the industry is going to have to learn how to keep local data stores that are of high performance, while exporting intermediary formats when emailing or uploading to external computers. The only problem is finding a way of doing this so that it's completely transparent to users. The mythical "mom" doesn't want to worry about emailing a document in the right format, or having the right program to read the attachment she received. She just wants it to do what she tells it, with no bloody prompting with questions she has no answers for.
Re:fsck'n ugly (Score:5, Informative)
This would have to be done by the tool displaying it, same as a self-updating TOC in a Word or OpenOffice Writer document. The information is present in a correctly-structured HTML document in the form of Hx tags.
Hell, how can you even tell the page numbers in a html "document" anyways?
The same way you would in a Word document. It doesn't make sense if you're looking at it as a web page in your browser, but if your editor used HTML it would work the same way. (This also partially alleviates the rendering issues.)
Re:fsck'n ugly (Score:5, Insightful)
Re:fsck'n ugly (Score:5, Insightful)
- position an image on page 4 of my document?
- add footnotes?
- embed fields (date, last editor...)?
- mark the embedded TOC as TOC so that it gets regenerated on reload?
etc.
And on the CSS side, there are quite a lot of shortcomings, too.
Of course, all of this would work with custom XML tags or special id/class conventions, BUT then you'd have to specify those. And getting this below 700 pages won't be easy.
So repeat after me:
HTML is *not* a description language suitable for word processing in its current state, and it is unclear it can be made so without sacrificing device indepence.
Re:fsck'n ugly (Score:5, Interesting)
(http://theravensnest.org/ | Last Journal: Sunday October 07, @07:05AM)
I just dug out the template I wrote, and the pagination and ToC worked fine in Safari. The auto-numbering of headers, however, didn't. This is due to a lack of support for counters in generated content, and the same problem with Mozilla was a significant reason for abandoning the whole idea in the first place; the only browser everything worked in was Opera.
Another significant reason for abandoning this idea (not entirely relevant when talking about document formats being generated by tools) was that HTML is a huge pain to type, and XHTML is even worse. Something semantically equivalent to XHTML but using S-expressions would have been fine, but typing XHTML just involves spending far too much time hitting > and < keys (not to mention the redundancy of close tags having the full tag name). I turned to LaTeX, which is easier to type and also (being a Turing-complete programming language) much easier to extend than HTML.
Re:fsck'n ugly (Score:5, Informative)
(http://www.mosehansen.dk/)
- position an image on page 4 of my document?
You don't, nor do you want to. But you can anchor, float or bind the images to the text easily enough. This would be handled by css... for the HTML side, it would just be div and object tags --- not that you would ever see them, since this is an word app.
<p class="footnote">My footnote</p> with the appropriate CSS rule (presumably something like float: page or whatever.)
Using XML entities, presumably
Regenerated on reload? Come on, have some ambition.. it should be in sync at all times. Anyway, by keeping tracks of the header tags, presumably.
XHTML+CSS would need some expansions... but probably not much. A good layout program propably doesn't care about the device, but if it did, there are already @media tags to handle this situations. There are also a couple of other truly dedicated layout namespaces on w3 to consider.
But all this matters not. This is politics. Sadly.
Re:fsck'n ugly (Score:4, Insightful)
(http://studyinjapan.blogspot.com/)
Footnotes are easy, too: Text Text that needs a footnote.<div class="footnote">This is the footnote</div>. That's the same concept as in LaTeX, the best typesetting software out there.
Re:fsck'n ugly (Score:4, Insightful)
(http://www.a4fs.net/blog/)
No offense, but I'm getting sick of this line of reasoning. You're right, mom wants the computer to read her thoughts, know exactly what she really meant when she said X, anticipate every need she might have, and pre-calculate its complexity out of existence.
In other news, my boss would like this entire website built in one hour ($40), never need support, and scale to 300,000 users.
At a certain point IT's job goes from "give every user what heshe wants" to "educate users about what is feasible in the current technological situation.
Classic quote for the books, gotta love XML play (Score:5, Insightful)
(http://www.geocities.com/tablizer | Last Journal: Saturday March 15 2003, @01:22PM)
Is it mature enough? (Score:4, Interesting)
(http://www.sfu.ca/~rdickie)
I'm a latex junkie. Latex though is a PITA to create templates and styles for. Someone willing to take up the task to modernize latex or completely replace it?
Re:Is it mature enough? (Score:5, Informative)
Re:Is it mature enough? (Score:4, Informative)
Tables shouldn't be used for page layout -- that's what CSS is for. It's as simple as that.
Re:Is it mature enough? (Score:4, Funny)
(http://www.mrnaz.com/)
huh? (Score:5, Funny)
(http://www.atomjax.com/)
Uhm. I'm no expert, but isn't a book that uses HTML and CSS called a website?
Re:huh? (Score:5, Informative)
(http://www.8-bitdesign.com/)
Borat's here (Score:1, Funny)
OMG, Borat is teaming up with Steve Ballmer to spew out 6000 page docs!! Run for cover!
CSS for Documents? (Score:5, Insightful)
Having a word processor act more like a web browser would be awesome. Ever since I started using word processors (which for me was a long time after I started using web browsers), i've always thought, why doesn't updating this style make all text with that style update? Why do I always have to change the same thing over and over again?
While turning word processors into web browsers would be stupid, things like CSS would be awesome to have in word processors.
Re:CSS for Documents? (Score:4, Informative)
(http://jedidiah.stuff.gen.nz/wp/ | Last Journal: Wednesday April 04 2007, @02:51PM)
Such things exist. TeX provides a decent the base for such things, so it's a matter of finding a TeX centric editor. LyX would be a good example, and indeed it has the sort of functionality and general approach to document creation that you seem to be after. Of course it doesn't necessarily have all the other features that other word processors might have (like mail merge or what have you).
Re:CSS for Documents? (Score:4, Interesting)
I am finding myself wishing that OpenOffice had pursued putting a vastly better interface on TeX and LaTeX, rather than writing their own standard. It would probably have been faster and certainly would have been a lot more stable. Microsoft couldn't have even thought about it: its clean, open standards would not have lent themselves to the proprietary "extend" part of Microsoft's "embrace and extend" approach, or Microsoft's software licensing models.
Re:CSS for Documents? (Score:4, Insightful)
Word DOS (version 4 at least) had it back almost 20 years ago. And actually it was much easier to use styles back in the DOS version. Current versions try so hard to second guess you in the quest for user-friendliness and layering features on top of features that you can change or create new styles without knowing or intending to. Old-school required you to RTFA, but then you could use styles very efficiently. Now styles are much more sophisticated, but hardly anyone uses them correctly. I get docuements from all kinds of people, including many university lecturers. None, out of hundreds over the last 15 years, has had a clue of how to style their documents. Headings are "Normal" with font commands to make them large; body text is "Heading 1" converted to 12-point Times; bulleted and numbered lists are a minefield, tables are a quagmire of hacks, spaces and tabs, etc...
Re:CSS for Documents? (Score:4, Insightful)
(http://slashdot.org/)
Every word processor I've seen like forever has support for styles. The problem is:
1) It's impossible to avoid creating a million new styles by accident. Try looking at the styles list and you'll see it's full of junk
2) It's impossible to clean up a document with such a bunch of styles, for example say you have a document which has been completely fucked up with pseudo-styles. You've set "Normal" to be what the bulk text should be, and "Headings" to what they should be. What happened last time I tried it? Well, it was impossible to easily apply it without killing any bullet lists, bold, italics or any other intended variation of the normal text. Headers and numbering went beserk. Trying to do the same with the bullet list style lead to numbers going completely nutzoid, for some reason it thought everyone in the same style belonged to the same list so later lists would start at some random number.
3) If you for some reason is stuck copying between different versions of Word (norwegian and english comes to mind) then you'll have double the number of styles, which obviously aren't in synch.
So to sum it up what I would like:
1) Don't auto-create styles
2) This sentence does not contain three styles
3) Sane "apply style" functions
- Parituclary directed at fixing a mess
4) Make styles have an ID, at least for the default ones make them international so header 1 is header 1 in every language
5) Ability to "style-lock" documents for things like company standards, you can create new styles but not just randomly change around sizes and fonts
6) More visible styles (OpenOffice does this, MS word doesn't) because people don't see them
I don't know that I agree completely (Score:5, Insightful)
(http://www.evardsson.com/blog/)
Sure, it works, with enough tweaking, and CSS3, and a $350 download of a product to turn HTML/CSS3 into a PDF. This is better how? What about LyX, LaTeX, or even OpenOffice if you are just going to convert to PDF?
The whole HTML/CSS-to-print thing shoots the real argument in the foot.
Re:I don't know that I agree completely (Score:4, Insightful)
(http://slashdot.org/~panaceaa | Last Journal: Friday July 14 2006, @09:19PM)
I don't think he gets it. (Score:2, Insightful)
(http://www.8-bitdesign.com/)
Somehow I don't think that's going to fix the problem. Oh, and pointing out that the Microsoft letter doesn't validate. Isn't that a little petty?
How come? (Score:5, Funny)
(http://www.shaunc.com/)
Re:How come? (Score:5, Informative)
(http://neilmcallister.com/)
Since nobody gets it, I'll spoil it: That's how Håkon advises people to pronounce his name. It's even on his business card.
XML (Score:1)
(http://www.kaizenlog.com/)
Is there a FOSS way to make PDF from XHTML/CSS? (Score:2)
(http://www.ultraviolet.org/)
Can != Should (Score:3, Insightful)
(http://www.fundraw.com/ | Last Journal: Friday October 26, @03:42AM)
HTML + CSS vs. Word vs. OO.o seems to me to be an argument related to formatting documents, not a "book". It's not that you couldn't do it, but I'd consider using Quark or InDesign (what seems to be Adobe's successor to PageMaker) or even Tex and its variants (haven't used any Tex-based stuff, but heard wonderful things) for typesetting.
Arguments about standards aside, proof of concepts aside, I'd think that the real issue when it comes to any job is using the best tool for it. It's not a question of whether you can use these tools to typeset a book, but if you should.
The point of the proof of concept is to prove that the system is flexible or capable enough to go beyond its original intended use. I get that. But proving a chainsaw can be used to spread butter, doesn't mean it's inherently superior to a coping saw.
- Greg
to kill a mockingstandard (Score:3, Insightful)
(http://tonelli.sns.it/pub/mennucc1 | Last Journal: Friday October 26, @03:27AM)
Why not HTML for books? (Score:2, Insightful)
(http://slashdot.org/)
It would be possible to extend HTML to include such features or to create a HTML-like format that is more suitable for books (cf docbook). I agree that "word processors" today are a horrible mess, and we definately need something like a modernised LaTeX, but HTML isn't it.
I think it is an important point (Score:1)
(Last Journal: Sunday September 02, @06:01PM)
fonts (Score:3, Informative)
Too true (Score:4, Insightful)
I wrote my thesis book this way (Score:3, Informative)
(http://rudd-o.com/)
http://software-libre.rudd-o.com/ [rudd-o.com]
Used MediaWiki to write the chapters, wrote a small python proggie (available there) to consolidate the wiki into a single HTML file (mostly conforming to the Boom! microformat), then used Prince and Hakom's book CSS to generate the PDF.
Great typesetting, collaborative book editing, screw LaTeX!
Hakom was right.
Maybe... (Score:2)
If Html+Css offered a better model instead of the box model (example the point-line model) and offered some way of doing basic data structures I'd agree. The current box model is very limiting in its layout abilities.
Modern documents have so many binary data types inserted in them (images, fonts, etc.) that Html+Css isn't enough. It isn't even enough on the web and that's why Javascript and Flash are so prevalent. There needs to be another specification to support all the needs/wants of the users (who are not willing to go backwards for any ISO standard).
!RTFA (Score:1)
The question is `what does it do and how well does it do it?'
Should we desire for screen displayed content be equivalent to printed to published? No.
Do we desire for the three to have accessible translations between each other? Yes. And note that it goes both ways. I want to be able to throw an e-mail on a webpage and throw a doc on an e-mail and throw all three in a book and so forth. As more technology becomes available and therefore new mediums develop I want to be able to throw stuff in them and throw them in stuff.
Now sure, a book isn't that accessible to go back to digital (yet). Why not? Throw a barcode system in the books. They have an index and a table of contents and chapters and a bibliography. Why not a `printed information to digital information code' (PITDIC)?
But we're talking digital document formats.. which means that there should be what? What is the equivalent of having a barcode system in a book to allow a quick scan to give you all the data contained therein as a digital contents with relevant tagging/metadata? Uhh, dumbass. It's the metadata and the content, together!
Which is what XML and ODF and whatever dreck Microsoft has tried to override ODF with. Now, I have not studied the specific formats (so yes, you can call me an ass for being biased against MSFT), but if they are properly designed then they are a step in the right direction. What is properly designed? It's when they are simple and basic and elegant enough that we can change down the road and not break the old.
We're not children anymore, humanity. It's time we think about how to do that. And before you bitch at me, note there's a difference between being obsolete/technologically inferior and broken. Broken is when I can't access my old stuff. Obsolete/technologically inferior is when I don't want to.
ODF a memory dump of OOo? (Score:2)
Recently I hear a criticism of ODF by Miguel de Icaza is that ODF doesn't reuse standards like SVG as much as it should..
Open Office Herecy (sold here) (Score:5, Interesting)
(http://www.pobox.com/~rwhite)
That said, ODF it kind of blows. Really.
I write novel-length "books" and it is FREAKING IMPOSSIBLE to do some very basic things in any/every ODF based word processor I have tried to date.
Exercise for the Interested:
Make a "Book" with an automatic table of contents, said table to contain an "Authors Note", "Prologue", auto-numbered chapters 1 to N with their associated chapter titles (where the actual chapter number is the chapter number internal variable), and finally "Epilogue" all at the same level of the index.
This simple task is essentially impossible. The flaw is caused by the fact that everything goes through the "styles" and the styles don't inherit their list membership properties. You should be able to make a style "TOC Entry" that is assigned to a particular table of contents level (e.g. level 1) then make a sub-style "Chapter Heading" based on "TOC Entry" but with the chapter numbering magic attached, and in so doing, create "different styles" that go to the same level/point in the list.
Exercise for the Interested:
Make a "Book" with each chapter, and the prolog, and the epilog in separate sub documents. The linkage thing is a mess, it is hard to move "the pile of files" around especially if you want to use subdirectories (etc). If you have a custom style in the master document style list you have to _USE_ it in the master document if you want it to be pushed into the created sub-documents. Once the sub-documents are created it is a royal pain (read effectively impossible, or "supremely hidden feature required") to update those styles in those sub documents if you change that style.
Exercise for the Interested:
Put three separate "outlines" into one ODF Document. In ODF the outline is a function of the style headers, they only exist as implications of structure instead of first class abstractions. This is largely the fault of Microsoft Word, since the Word folks totally messed this up when they supplanted WordPerfect (which did this inset outline/object sort of thing right).
ODF was, IMHO, poisoned by the slavish attempt by someone trying to make a Word killer instead of a "good word processor."
And there are stacks more of these issues.
And all that said, I *STILL* use ODF (Open Office etc) because I CATEGORICALLY REFUSE to _RENT_ the right to access my own work from a third party. Microsoft has plainly stated that such rental model is their intended business plan, which makes them a non-starter.
In my opinion, having used both Word and OpenOffice for years; and having used Word Perfect and wordstar before them, ODF is a "workman like effort" to create a document format suitable for "normal business purposes". There is a reason that the legal profession never moved over to Word, and they likewise will not move to ODF, when you need to get to a tightly proscribed document format, both Word and ODF have a "you can't get there from here" fundamental limitation. Both formats simply refuse to represent some things because the designers "know" that a different format is better. Neither ODF nor Word has any allowances for _art_, professional or poetical.
So, governments should use ODF because it is "no worse" than Word in terms of the ability to represent the documents it can represent, and given that congruence, the shorter, 100% open standard is, or should be, a hard minimum requirements.
In terms of ODF being the be-all and end-all of document representation, I'd have to say "hardly!" I looked into the OpenOffice code base a while back to see if adding/changing the format to allow for "a book" would be reasonable. It didn't appear to be. Too many of the original StarOffice assumptions about document structure seemed pathologically uninspired. It was like looking at a big pile of Visual Basic. Everything in the standard is way too global, nothing "nests organically" it all nests pedagogically. (Every
You're using the wrong tool. (Score:4, Insightful)
output, at most (Score:1, Interesting)
I'm not a fan of the two mentioned formats either, way too much bloat. somehow that seems to be normal with xml based formats (but that's probably just a pet peeve of mine).
Google docs (Score:2, Interesting)
Anyways sounds like a good idea to me. I often have to share documents and I don't like to have to force people to install a specific application just to read them.
Um... NO (Score:5, Informative)
(http://www.indyassociates.com/)
OK, then here's a challenge for the Opera CEO (Score:2)
(http://www.ecis.com/~alizard)
Actually, I have every confidence that Opera can. . . I've been a happy Opera user since 1999.
Why is this an issue? (Score:2)
A standard is going to limit innovation in word processors unless you specifically allow extensions in the standard, which kind of defeats the purpose of a standard.
If the goal is to send out a document that anyone can read, then convert to PDF or a web page. "I shouldn't have to convert b/c I'm a stupid user" you say? Don't expect a 600-6000 page standard to solve this problem.
Compilation (Score:2)
"That's the reason I'd wish to add a third"
I wish he didn't ruin the entire opinion with all those html/css pipe dreams, they are so extremely unrealistic besides of all the mess that would actually be to adapt them in a useful way for office formats. Really this was kind of a shame.
I could also write a book in
My idea for a document format (Score:1)
(http://svgalibwindows.cjb.net/ | Last Journal: Tuesday November 01 2005, @12:22PM)
Packages would be translated into binary VM code. When a document is opened, they would be dynamically compiled or interpreted and would be able to respond to mouse or keyboard actions.
Hello World in Office XML (Score:2)
Sure it's not as clean as HTML for such a small bit of text, but it's not impossible to wield, unless you want pixel accuracy, in which case, CSS is difficult as well.
Office XML document:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<pkg:package xmlns:pkg="http://schemas.microsoft.com/office/200 6/xmlPackage"><pkg:part pkg:name="/_rels/.rels" pkg:contentType="application/vnd.openxmlformats-pa ckage.relationships+xml" pkg:padding="512"><pkg:xmlData><Relationships xmlns="http://schemas.openxmlformats.org/package/2 006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/extended-properties" Target="docProps/app.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/20 06/relationships/metadata/core-properties" Target="docProps/core.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/officeDocument" Target="word/document.xml"/></Relationships></pkg: xmlData></pkg:part><pkg:part pkg:name="/word/_rels/document.xml.rels" pkg:contentType="application/vnd.openxmlformats-pa ckage.relationships+xml" pkg:padding="256"><pkg:xmlData><Relationships xmlns="http://schemas.openxmlformats.org/package/2 006/relationships"><Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/webSettings" Target="webSettings.xml"/><Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/settings" Target="settings.xml"/><Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/styles" Target="styles.xml"/><Relationship Id="rId5" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/theme" Target="theme/theme1.xml"/><Relationship Id="rId4" Type="http://schemas.openxmlformats.org/officeDocu ment/2006/relationships/fontTable" Target="fontTable.xml"/></Relationships></pkg:xmlD ata></pkg:part><pkg:part pkg:name="/word/document.xml" pkg:contentType="application/vnd.openxmlformats-of ficedocument.wordprocessingml.document.main+xml">< pkg:xmlData><w:document xmlns:ve="http://schemas.openxmlformats.org/markup -compatibility/2006" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:o12="http://schemas.microsoft.com/office/200 4/7/core" xmlns:r="http://schemas.openxmlformats.org/officeD ocument/2006/relationships" xmlns:m="http://schemas.openxmlformats.org/officeD ocument/2006/math" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:wp="http://schemas.openxmlformats.org/drawin gml/2006/wordprocessingDrawing" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:w="http://schemas.openxmlformats.org/wordpro cessingml/2006/main" xmlns:wne="http://schemas.microsoft.com/office/wor d/2006/wordml">
<w:body>
<w:p><w:pPr><w:ind w:left="720"/></w:pPr>
<w:r w:rsidR="00F4543A">
<w:t>Hello World.</w:t>
</w:r>
<w:r w:rsidR="00F4543A"><w:br/></w:r>
<w:r w:rsidR="00F4543A"><w:br/>
<w:t>Hello Universe.</w:t>
</w:r>
</w:p>
<w:sectPr w:rsidR="0074581F" w:rsidSect="008A7339"><w:pgSz w:w="12240" w:h="15840"/>
<w:pgMar w:top="1440" w:right="1440" w:bottom="1440" w:left="1440" w:header="720" w:footer="720" w:gutter="0"/>
<w:cols w:space="720"/>
PDF? (Score:1)
It's called "programming" (Score:1)
1) Write a class for each document type, with methods to construct the logical document structure (eg, add paragraphs to a report, define the author name, whatever).
2) Define a set of standardized rendering interfaces (screen, printer, audio, etc).
3) Write some renderers for various (document-class, rendering-interface) permutations (eg, one that renders articles to the screen, or books to the printer).
You're welcome.
imagine the conformance suites (Score:1)
Given the 6000 pages for OOXML and 700 for ODF, it will be interested to see if either will be done. Just imagine the test cases and the explanation of what they do.
I start to understand why Håkon Lie doesn't much care for either.
Re:Scribus? (Score:2)
(http://justthings.info/ | Last Journal: Saturday December 09 2006, @05:17AM)
I publish a PDF magazine [justthings.info], I wouldn't use anything except Scribus to lay it out. I'm considering a print-CSS version, but I'm confused why anyone would make a print-CSS version and then convert it to PDF. To me, this seems to miss the point of both formats.