Microsoft Blasts IBM Over XML Standards
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 might be true, but when Massachusetts decided to adopt this standard they raised holy hell, and used every trick in the book to make Massachusetts take it back.
Eviscerati.Org: All Hail the Eviscerati
This little blurb just kills me...
"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."
Yep you bet no effort to slow down the standardization process because they refused to be involved. However they have made every effort possible and will continue to do so in the future to slow
the adoption and deployment of this standard by any means necessary.
Got Code?
I thought the main objection to OpenXML was that it fails to define a number of things, essentially saying "render like WordPerfect 1.0", making it an incomplete standard. Making it not impossible but very difficult for anyone other than Microsoft to implement it so it's fully compatible with the MS version.
This emphasis on ODF is to strengthen the parent post's claim on the importance of ODF being unencumbered.
Think global, act loco
Wow, it's almost as if we need some form of compression that would find often repeated strings and replace them with short strings. Let's invent it and write a program called gzip!
- OpenOffice
- Star Office
- Google Docs & Spreadsheets
- KOffice
- Scribus
- Abiword
- ajaxWrite
- Zoho Writer
- Ichitaro
- IBM's Lotus/Domino
- IBM Workplace
- Mobile Office
- Gnumeric
- Neo Office
- Hancom Office
- WordPerfect???
So it is just Microsoft who is trying to frame this as a MS Office vs. OpenOffice argument, when it really is an Open, multi-vendor format vs a single vendor, obfuscated format argument. Argue formats, not software.I have come to a conclusion that one useless man is a shame, two is a law firm, and three or more is a congress -J Adams
(uh, let's do that again, this time with Extrans)
...
n dThisIsTheVeryLongChildElementTagName>n dThisIsTheVeryLongChildElementTagName> ...
Wow, insightful indeed. To add some metrics to the rebuttals in this thread: create two files with some bogus XML, one with very short tag names, the other with long ones. Then compare their uncompressed versus zipped sizes:
File 1:
<r>
<c>Value</c>
<c>Value</c>
</r>
(1000 total copies of the <c> element)
Uncompressed: 16,009 bytes
Compressed: 190 bytes
File 2:
<thisIsTheVeryLongRootElementTagName>
<andThisIsTheVeryLongChildElementTagName>Value</a
<andThisIsTheVeryLongChildElementTagName>Value</a
</thisIsTheVeryLongRootElementTagName>
(1000 total copies of the <andThisIsTheVeryLongChildElementTagName> element)
Uncompressed: 92,079 bytes
Compressed: 525 bytes
So yeah, let's create really obscure and non-intuitive file formats to save ourselves the wasteful redundancy of XML.