Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

Microsoft Opposing California Open Doc Bill

Posted by kdawson on Sun Apr 08, 2007 08:02 AM
from the write-fax-or-email dept.
ZJMX writes "Microsoft is going through its email and phone lists asking people to support their opposition to California A.B. 1668 — 'Open Document Format, Open Source' — by writing to the California Assemblymen involved in this bill (contact info in the link). Apparently they fear that California will join Massachusetts in wanting documents based on open standards in their government. Let's see if this community can raise as much support for the California ODF bill as Microsoft can raise opposition."
+ -
story
This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • by eldavojohn (898314) * <my/.username@@@gmail.com> on Sunday April 08 2007, @08:07AM (#18654477) Homepage Journal
    This is what I read:

    "Blah blah blah politics. Bitch bitch bitch IBM did this so now we do it."

    I read this hoping for some key points in distinguishing the functionality or benefits versus costs in using either format.

    Nope.

    The closest they get to that is "ODF is tightly tied to OOo." Oh, no! Not that! You know, that argument is null and void, right? Because these document formats are supposed to be open, like the names of both of them imply. Who cares if it's not yet integrated into your product, either format should allow that. It is, in fact, confusing to me why they don't let both formats exist and allow the government bodies to pick whatever the hell the want to store their data in. That's all this is, a political issue which is why it's filed in the politics section I guess.

    If Microsoft truly believed their product to be superior to the alternative, they would sit back and let California make the mistake. Then, when everything falls apart, they could step in and save the day, while at the same time setting a precident for one format being better than the other. But, we all know that's not going to happen because I haven't heard Massachussetts hurting due to their choice. So, I guess Mr. Ballmer is going to have to set his fears aside & simply come to the harsh realization that another community developed format is just as good or better than their format. Heads up, ODF community, he just may fucking kill you.

    And I certainly don't appreciate them demonizing IBM. "Big bad evil corporation launches national campaign to force their consumers into using something!" Pot calling the kettle black, in my opinion. If you could track the amount of money I have paid to a company--directly or indirectly--I would wager that I've paid IBM far less than Microsoft and I feel that IBM has done far more for me than Microsoft.

    Shut up and let the consumer decide, Microsoft. Nothing's wrong with unbiased comparisons in helping them decide but you've got a conflict of interest here so I highly doubt anyone will swallow your tripe.
    • by swab79 (842256) on Sunday April 08 2007, @08:17AM (#18654501)
      As I understand it, the Microsoft format is not open but just an XML wrapper around their old .doc format. They still don't open up on how to implement their format.
      • by dpilot (134227) on Sunday April 08 2007, @08:29AM (#18654539) Homepage Journal
        I once heard this in a different (The "Open" Group) context, but an adaptation seems appropriate here:

        The only thing "Open" about Microsoft is your wallet.
        • by TERdON (862570) on Sunday April 08 2007, @08:38AM (#18654569) Homepage
          on the other hand, one might think there shouldn't be any need for the phrase "legacy purposes only" when discussing the first version of a new standard.

          Any conversion of such things should reasonably be done in the tool doing the file conversion, not in the file format itself.
        • by Anonymous Coward on Sunday April 08 2007, @09:16AM (#18654743)

          There are a few tags which are not explicit in their implementation which exist for legacy purposes only, such as supporting defunct features found in Word 95.
          And because the standard contains these tags but does not contain the information required to implement them, nobody but Microsoft can implement them. A standard that is designed in such a way that only one company can implement it fully is not an "open" standard in any conventional sense of the word.

          Yes, an implementation that doesn't include these tags will not be disadvantaged in practical terms, but that doesn't mean it's not a big deal. Because what this means is that Microsoft will be able to say, quite truthfully, that only Microsoft can offer a 100%-compliant implementation of the standard. This is not how open standards should be - the whole purpose of open standards is to level the playing field and let products compete on their true merits. Being able to wrap Asian text in exactly the same way as Word 6.0 for Macintosh is not a big advantage for the average American consumer, but what average American consumer is going to understand that when Microsoft says "OpenOffice.org is not 100% compliant!", they're talking about crap like that? The sole purpose of these tags is to enable Microsoft to use misleading advertising. This is not what standards are for.
        • by init100 (915886) on Sunday April 08 2007, @12:18PM (#18655675)

          These formats have absolutely nothing to do with the .DOC format. .DOC was literally a memory dump of the data structures. The XML files are well structured. Style and content are highly separated. They are quite easy to read and understand.

          Quite easy to read and understand?

          Open XML:

          <w:p>
          <w:r><w:t>This is a </w:t></w:r>
          <w:r><w:rPr><w:b /></w:rPr><w:t>very basic</w:t></w:r>
          <w:r><w:t> document </w:t></w:r>
          <w:r><w:rPr><w:i /></w:rPr><w:t>with some</w:t></w:r>
          <w:r><w:t> formatting, and a </w:t></w:r><w:hyperlink w:rel="rId4" w:history="1">
          <w:r><w:rPr><w:rStyle w:val="Hyperlink" /></w:rPr><w:t>hyperlink</w:t></w:r>
          </w:hyperlink>
          </w:p>

          I wouldn't call that easy to read and understand.

          • by swillden (191260) * <shawn-ds@willden.org> on Sunday April 08 2007, @03:16PM (#18657055) Homepage Journal

            Try the OpenDoc equivalent:

            <text:p text:style-name="Standard">This is a
            <text:span text:style-name="T1">very basic </text:span>
            <text:span text:style-name="T2">document </text:span>
            <text:span text:style-name="T3">with some </text:span>
            <text:span text:style-name="T4">formatting, and a </text:span>
            <text:a xlink:type="simple" xlink:href="http://slashdot.org/">hyperlink</text: a>
            </text:p>

            Of course, I omitted the declarations of text styles T1 through T4, but they're also pretty clear.

            It looks like Microsoft has tried to make their tags very compact for some reason, perhaps in a mistaken effort to reduce file size. That's foolish since any XML-based format is going to result in large file sizes unless compressed, and if you're compressing anyway, more verbose and hence more self-explanatory tag names don't cost anything[*]. Personally, I find the OpenDoc version to be much clearer. I also think it's much better to apply style attributes to text spans, rather than to define tags that implement specific stylistic effects (bold, italic, etc.).

            IMO, OpenDoc is not only more open, it's clearer and better-designed as well.

            [*] Given a perfect compression algorithm, the cost of using more verbose tags is precisely zero, because the longer tags don't increase the entropy of the file. The reality, of course, is that compression algorithms aren't perfect, and there may be a small cost, but in practice the algorithms are good enough that the cost is negligible, particularly for large documents where it really matters.

        • by imroy (755) <ian@testers.homelinux.net> on Sunday April 08 2007, @01:09PM (#18656099) Homepage Journal

          There are a few tags which are not explicit in their implementation which exist for legacy purposes only, such as supporting defunct features found in Word 95. These formats have absolutely nothing to do with the .DOC format. .DOC was literally a memory dump of the data structures. The XML files are well structured. Style and content are highly separated. They are quite easy to read and understand.

          Sorry mate, but bullshit. Yes, the DOC format was an object serialization of the in-memory format. But OOXML is no saint by any measure. Not only does it include references to Word 95, but also Word 6.0, Word 5.0, Word 97, Word 2002, and Wordperfect 6.x [slashdot.org]. It also references several Word/Office versions on the Macintosh, because heavens forbid MS make a cross-platform application that works the same on both Windows and Mac. It even references east Asian font rendering in a specific version of Word. And note I say "references", because that's all the standard does. Finding out what all those different versions of MS Office did on both Windows and Macintosh, and possibly also for different languages or regions of the world is left up to anyone trying to implement Microsoft's "Open" Office XML format. Even though the documentation for OOXML is huge compared to ODF, these details are still not included.

          So please tell me, what do these few tags/attributes do?

          • lineWrapLikeWord6
          • mwSmallCaps
          • shapeLayoutLikeWW8
          • truncateFontHeightsLikeWP6
          • useWord2002TableStyleRules
          • useWord97LineBreakRules
          • wpJustification
          • shapeLayoutLikeWW8

          Anyone claiming OOXML is in any way comparable to ODF is either misinformed and/or a shill. As we can see with this story, MS has a lot of money and influence to throw around for the purpose of muddying the waters and making OOXML look like a viable "standard".

        • by stephanruby (542433) on Sunday April 08 2007, @02:24PM (#18656649)
          "You understand it wrong. The OpenXML format is completely open for every feature implemented in Office 2007 [...]"

          The problem with this statement is that Office 2007 still contains most of the code base for Office 95, and it contains the code of every Office version thereafter. So unless you know something I don't know -- there is no way to be sure that "the OpenXML format is completely open for every feature" of Office 2007.

          The second problem is that during its anti-trust case, Bill Gates was on the record saying that his Office Suite wasn't tied to his Operating System, and that some kind of wall was erected between those two divisions so they couldn't talk to each other and share undocumented features, when in fact current analysis of their leaked code -- shows the exact opposite -- that their Office suite was indeed and (still is) closely intermingled with their OS at the undocumented system's calls level.

          So for you to be so sure of the openness of OpenXML, you must not only know something I don't, but you must also be far more knowledgeable than Bill Gates was on this subject, since he either lied under oath about this particular topic, or was just too ignorant to know what was happening at the source code implementation level.

          In either case, I'm not even sure why we're even discussing this. If you have to argue, and if I have to take your word for it, that a particular piece of closed source code, inside an "open" data format, does nothing that's needed by Office 2007, then this "open" format is not really open -- is it?
  • The benefits of avoiding vendor lock, true interoperability fostering competition among the software vendors etc will ulitmately benefit the consumers. No doubt about it. Among the consumers the biggest block is the corporate America and these big companies that spend billions of dollars. But they dont seem to care much for OpenDoc and are, persumably willingly, paying whatever MSFT is billing them. What is going on? Bigname PC vendors all compete on price and not single one of them is trying to differentiate themselves from rest of the pack by pre loading the windows boxes with OpenOffice or FireFox or Gimp. Corporate America is not demanding true interoperability and a level playing field for their vendors. Either there is some serious wrong doing by MSFT like bribing IT managers and giving kick backs to PC vendors. Or these people are really dumb. Still I think the time to celebrate is when corporate America decides not lock up their data in a format owned by someone else. Politicians are fickle. A few thousand in campaign contributions they will sing MSFT anthem and betray their voters.
    • by Pecisk (688001) on Sunday April 08 2007, @09:10AM (#18654719)
      Surprise, _yes_, Microsoft lobbies IT managers and even managers from higher levels. And they have done it some much that managers already have used to it and assumes it as "natural" right to have "gifts" from Microsoft. Not to blame only Microsoft entirely, it is common "marketing style" of lot of companies who produces so-so products.

      It is corruption? yes. Corruption is still corruption, whatever government or shareholder's company is involved. However, you will have hard time to convince those managers not to accept these presents. Because overall atmosphere and dignity in such jobs are long gone. Only if you inform heavily shareholders you maybe will do something.
    • by SmallFurryCreature (593017) on Sunday April 08 2007, @09:11AM (#18654725) Journal

      Big business leaders don't know IT. For that matter, few people in IT really know IT, but that is another rant.

      Someone who can run a transport company successfully and knows that only a fool would allow your company to be totally dependent on one vehicle supllier will NOT realise that the same thing applies to the computers controlling the fleet of vehicles.

      Standard example, every truck fleet owner has a favorite brand, yet they always got a couple of trucks that are of a different brand. The reason, simple, it makes negotiations a bit easier. Sure out of the 500 trucks in company 490 will be say Mercedes BUT on the day the Mercedes rep comes to talk about a new order you can bet that the 10 daf trucks will be proudly parked right outside the office. Just a hint that the order does not have to go to Mercedes this time.

      That is because trucking company directors understand trucking. They do not understand IT. So when the MS salesrep arrives he will have confirmed via outlook, using documents created in office and be assured of seeing nothing but windows machines as he visits the office.

      Offcourse he still gives a nice discount. That is easy. Establish the true price, hike it by a couple of hundred percent, give a discount of 50% percent and you got MS record profits.

      And the really odd thing is that all those directors who wouldn't trust a truck maker who reported the same kind of profits as MS think it is a good sign that MS is making such huge profits.

      People do NOT understand fields that they are not experts in and this goes triple for IT.

      Couple this with the old maxim, nobody has ever been fired for buying Microsoft and you got the current situation.

      It is changing but you are going to have to fight a bloody struggle to get anywhere. Remember, if you introduce linux into a company and suddenly costs plummet and productivity soars you will have made an awfull lot of enemies, every single person who said that MS software was the way to go.

      I was in this situation once. A company had two websites belonging to different divesions. The one I was responsible for ran a webshop and services for customers and offcourse ran on linux cheapo hardware. The intraweb was purely windows and was run by the internal IT department but it also contained some sites available to our resellers and such. My divesion was brought back in under the umbrella of the mother coorperation, our website sold more products then all other sales efforts combined, so rather then being an experiment we turned into the biggest sales channel.

      Anyway, oneday a director asked the question of why the intraweb was down once again, and for some reason the question was asked NOT to the internal IT department but to the web department (probably the doofus didn't realize the difference).

      So what was I supposed to do? The reason the intraweb sucked was simple, it was run on windows, with IIS (or ISS, what ever acronym stands for steaming pile of garbage, was run by windows admins, and just wasn't designed by anyone who cared.

      Yet for some reason, the idea seemed to be that since the director new that we used linux and windows and that the intraweb sucked that linux was used for the intraweb. And since everyone knows I run Linux I was told to convert the site to windows to fix the troubles and get help from the internal IT department.

      Can you guess how many seconds it took me to reactivate my CV on monsterboard?

      It was not that the guy in question was an idiot, he knew his business. It just didn't happen to be IT. And what could I do? My department was supposed to merge with the internal IT department and since they wore suits it was pretty clear to me who would end up as whose boss.

      So I arranged some job interviews, and just told them that linux sadly wasn't up to the job and that switching the external site to windows was the best way to go, but sadly I did not have the qualifications to do that so the internal IT department should handle it, and handed in

    • by wtansill (576643) on Sunday April 08 2007, @04:19PM (#18657455)

      Either there is some serious wrong doing by MSFT like bribing IT managers and giving kick backs to PC vendors. Or these people are really dumb. Still I think the time to celebrate is when corporate America decides not lock up their data in a format owned by someone else. Politicians are fickle. A few thousand in campaign contributions they will sing MSFT anthem and betray their voters.
      Sorry, but you have it exactly backwards. I spent 12 years working for various government contractors. Contractors need to be able to read bidding specifications, supply documents for bids, pose questions regarding bidding specs, provide cost analysis data, etc. to the Government. If the Government uses Word and Excel, for example, so does the contractor. If you have a prime/subcontractor relationship, then all of the subs will use Word and Excel as well, as that is what the prime uses to communicate with the Government. OTOH, if the Government breaks the mold and begins to use ODF, then the Government's supply chain will as well. The Government is big enough to pull this off, but no single company can do the same.
  • So... (Score:4, Insightful)

    by JamesTRexx (675890) on Sunday April 08 2007, @08:20AM (#18654513) Homepage Journal
    They can't get their foot in the door of the government, so now they resort to spamming?
    • Did the email even originate from Microsoft? As far as I can tell, all we have is a single email received by a single person. Perhaps it's a delayed April Fool's joke or something of that sort? It would be incredibly stupid (even for Microsoft) to send out official emails like this.

      Even if several people receive such emails, that doesn't prove it is from Microsoft. Is there any official reaction by them, or proof that it came from an official Microsoft email account?

      Regardless of this matter, the push
  • by Marcion (876801) on Sunday April 08 2007, @08:27AM (#18654531) Homepage Journal
    Microsoft seem to have become a very large and well funded political lobbying group.

    Sure they buy in lots of software and rebrand it, they also copy a load of stuff and then try to bundle into their existing products. However, have they actually developed anything in the last year or two that did not suck and then disappear?
  • by lord_mike (567148) on Sunday April 08 2007, @08:28AM (#18654533)
    ...Microsoft knows that the one and only thing that is preserving their monopoly is Microsoft Office as a standard. If that ever goes away, so does their monopoly. Anyone can run a Mac or Linux and have 75% of their needs happily met via these (or any other) operating system. The one piece missing is fully compatible office software. So, Microsoft needs to hold everyone hostage with proprietary Office formats.

    Thanks,

    Mike
  • by lancejjj (924211) on Sunday April 08 2007, @08:41AM (#18654583) Homepage
    Dear Representative Smith:

    One of Microsoft's innovations is our ability to help millions of customers with our proprietary file formats. If large purchasers, such as your state government, wrongly conclude that an open standard is in their best interest, Microsoft's proprietary file format becomes substantially less valuable to all Americans, and indeed, the world.

    So let us describe to you what will happen if this proposal becomes reality:

    (1) Microsoft will need to compete with other products based on attributes other than file format. In turn, Microsoft products will rise in price by millions of dollars, leading to riots in your neighborhood.

    (2) This will forever make the USA a 3rd world country. China will be willing to step in and take over Microsoft's responsibility as the engine of the American economy.

    (3) An American innovator and icon will no longer be the richest man in the world. Americans will no longer be proud or patriotic; most, if not all, will end up voting against you. Microsoft will no longer be a name loved by millions of children - instead, it could be "Al Jezerra".

    Please make your decision carefully. We have included a check of $50,000 to put towards your next campaign. See you at the golf tournament next week!
  • by Anonymous Coward on Sunday April 08 2007, @08:49AM (#18654611)

    When contacting people, please remember what is crucial:

    Be polite - this will make them much more likely to listen. If you are feeling angry, take a walk outside, have a nice snack then come back when you are calmed down.

    Make personal contact - fax or phone where you can; reinforce emails by calling up to check that they got them. Write your own letter, based on somebody elses template if you need, but with your own information. If they promise to look into it, call back later to find out what they found out.

    State clearly your relationship to them - resident of the state / local business / supporter / floating voter etc. Always find a reason why they should take notice of you. Identify yourself clearly and let them call you back later (better to give a business phone or mobile so that they don't call you at home during election campaign time though)

    Give information - links to pages about problems [grokdoc.net] - specific links to ODF sites [odfalliance.org] or the Wikipedia article [wikipedia.org] etc. to show alternatives. However, read through those pages yourself and pick out and explain specific points from them that you think are important.

    Be efficient. Make your point early; don't drown them in extra information; Say only things which you think are important.

    Be original. Give specific information about your position and how you will benefit from alternative solutions. Show that you care about it and why.

    Dear Mr Leno;

    I am the owner of a small web hosting company. I am writing to support "California A.B. 1668 : Open Document Format, Open Source.". We would like to be able to automatically send out pre-filled billing forms from our billing system and expect all our customers to be able to complete them easily. Unfortuantely, the current de-facto standard for documents is Microsofts .doc format and that is too complex for us to be able to add it to the billing system. A new alteranative exists in the ISO standard Open Document Format. If that was widely adopted our problem would be solved. Unfortuantely, Microsoft is trying to block this adoption by having a fake new standard based on .doc. This isn't really a standard because it doesn't fully specifiy how the format works (please see http://www.grokdoc.net/index.php/EOOXML_objections [grokdoc.net] section 10.2 "Cloning the behaviour of proprietary applications") and is far to big for us to deal with, let alone be a reasonably reviewed ISO standard ( see http://www.grokdoc.net/index.php/EOOXML_objections [grokdoc.net] secton 11 "Ecma 376 cannot be adequately evaluated within the 30-day evaluation period")

    We believe that if Microsofts standard is blocked and the Open Document Format is standardised for state use, in future we would be able to rely on it's availability everywhere and our buisiness would be able to work much better with its customers.

    As you know well, we are strongly committed to supporting the good of our state and my wife and I have often run coffee mornings for the state assembly which you have attended yourself. We think that this bill would clearly improve life in our state and look forward to hearing that you are committed to supporting it.

    Best Regards
    Jason R Kovacs Jr.
  • I submit that:
    1. Use of ODF will keep more money in California and less flowing to Washington state.
    2. Governments are responsible for guaranteeing archives, minimizing expenses, and reducing barriers, therefore ODF is best choice for them.
    3. These days a monetary figure can be assigned what it costs Microsoft in negative PR, lobbying and advertising this anti-ODF campaign. They could make more money by instead becoming the main proponent of ODF and other open standards, and developing commercial SDKs to develop software for all platforms based on truly open standards.
    4. Microsoft also is harmed by the effects of its embrace and extend campaign. Not only in hatred by potential developers, but also because of the monetary cost of running the campaign, and the chaos and reduced size of the market it causes.
    5. Microsoft could support independent developers by allowing them to rent SDKs and code of other participating vendors, and allowing developers to pay in part by product royalties. By creating a new ecosystem in this way Microsoft can become the facilitator and also own part of the ecosystem's code base, increasing market size and opportunities. It may even by quick footwork, honesty, sincerity and trust building be able to draw in most of the industry for niche products (say an open standards based tax form creation and submission infrastructure).
    6. Microsoft is a dinosaur walking on treacherous ground. It has depended on a cynical and unethical strategy relying on bloatware, hatchetwork, lobbying, FUD, legal games, discounts, etc. By reversing 180 degrees its current orientation, away from FUD and Embrace/Extend, it will gain amazingly broad new horizons for profit, reducing risk and not incidentally creating new reasons for people to stick with Office.
    7. Microsoft also resembles Sony quite a lot, which is not good for Microsoft. Both companies are impossible to make a deal with, they either try to buy you or destroy you. Both companies are utterly cynical and untrusted. Both companies are a bucket of fragmented interests, their strengths wasted on their habits of looking inward at other divisions and not at their customers. Both dream of huge profits from Hollywood, which is silly (see next point).
    8. Both Microsoft and Sony have ignored George Lucas' comments that Hollywood does not make a profit in theaters, which is why he wants to go into TV. They also ignore that the movie industry is not as profitable as it would seem, due to the huge number of flops (since they are filled with cynical crap creators too), is an unsteady earner which also translates to risk, and is the driving force behind DRM which has set the electronics industry back 15 years and spurs development of alternate delivery systems that they cannot control as well (piracy has a tiny effect on actual profit now but has risen to equal the pornography industry in driving creative programmers to invent creative, new systems). Additionally both Microsoft and Sony have a bizarre interest in supporting only the biggest players despite contemporary media distribution systems' being so much more supportive of the medium to long tail, i.e. smaller bands/producers.
    9. Take the example of Sony which constantly releases expensive hardware that is lower in quality than the Sony name used to signify and that only works with Sony products. Sony gets its lunch eaten so often, it is its own worst enemy. Microsoft and Sony both share a very similar conceit, inflated self-importance, cynicism, misguided goals, and disparagement of both vendors and customers. Unfortunately they both have corporate cultures that are so strongly biased in this way that the cultures actually warp otherwise sound minds, witness what Mhyrvold has to show for his work there. Since even scientists are swayed by bizarre corporate cultures, the corporation consistently generates failures, seeks to recoup them with grandiose schemes, and in the end needs to draw in new blood from the outside in an attempt to solve the unsolvable.
  • by duh P3rf3ss3r (967183) on Sunday April 08 2007, @10:01AM (#18654903)
    Who is 'Open Doc Bill' and why does Microsoft oppose his going to California?

    No time to RTFA but lots of time to post and read replies! ;-)
    • Re:Personally... (Score:5, Informative)

      by couchslug (175151) on Sunday April 08 2007, @10:29AM (#18655029)
      This isn't about vendor preference, it's about freedom of public access to public documents.
      For the public to allow vendor lock and depend on a single vendor for future access because they accepted a vendor standard is "just plain stupid".

      No vendor whould be forced out, but the product the public entities buy would be standardized.

    • Re:Personally... (Score:5, Interesting)

      by DannyO152 (544940) on Sunday April 08 2007, @10:37AM (#18655077)

      The State of California is a customer and, like you, has to right to choose what it buys based on measurements of price vs. performance. If California says it requires software for its bureaus that uses neutral file formats, then the expression of that requirement is no more legislating people out of business than a requirement that paint bought for state buildings meet minimum performance and environmntal standards. As California, the great state where I reside, is spending taxpayer money, there are occasional efforts towards ensuring that the money isn't being spent in stupid ways. (I shall not be reimbursing any one for keyboards lost while reading the prior sentence.)

      Something I'm really curious about: where are the Microsoft shareholders on these questions. Why do they think that when large customers start to evolve different requirements, the proper response is to spend money on publicity, lobbying, and advocacy advertising and to play chicken with the customers, rather than evolving with the market?

    • Re:Personally... (Score:4, Insightful)

      by init100 (915886) on Sunday April 08 2007, @02:37PM (#18656747)

      A law that dictates that ODF is used for the state's documents does not exclude any vendor from the market. Microsoft is welcome to add ODF support to its office suite, but refuses to do so. In other words, they are excluding themselves from competing by not supporting ODF. Instead of adding support for ODF, they try to push states to standardize on their format instead.