Slashdot Mirror


OpenOffice.org 2.0 Released

Da Massive writes "The official release of OpenOffice.org 2.0 has been pushed to the download servers, as of Thursday the 20th." From the article: "OpenDocument is an XML file format for saving office documents such as spreadsheets, memos, charts, and presentations. It was approved as an OASIS (Organization for the Advancement of Structured Information Standards) standard at the beginning of this year. OpenDocument, set as a default in OpenOffice, is cited by proponents as a way of fighting vendor lock-in associated with proprietary formats. Already, it is the required office format for internal archives of the US State of Massachusetts." You can download, or read past coverage including a preview or a comparison with MS Office. Update: 10/20 17:22 GMT by Z : Made date reference more topical.

9 of 525 comments (clear)

  1. Speaking of milk... by Anonymous Coward · · Score: 5, Informative

    Directly after the release this morning, Mad Penguin published a lengthy interview with OOo's Lois Suarez-Potts which represents part 3 of their OpenOffice.org interview series (part 1 and 2 were covered previously on Slashdot). The article is 3 pages long but an excellent read all the same.

  2. Bittorrent / P2P download links by Anonymous Coward · · Score: 5, Informative
  3. you eeeeediot moderators by djdavetrouble · · Score: 5, Informative

    Off topic my shiny metal ass... a simple google search for openoffice milk expired would have led you to this article. Now wait until after noon before you smoke any more crack.

    --
    music lover since 1969
  4. Re:It's on time! by VStrider · · Score: 5, Informative

    Parent is not offtopic. :) See http://interviews.slashdot.org/article.pl?sid=05/1 0/12/1610249&threshold=-1&tid=102&tid=11

    the stable 2.0 release will come before any recently purchased cartons of milk expire in your refrigerator.

    --
    VStrider.
  5. Re:Solution to MS Office + OpenDocument by DrXym · · Score: 5, Informative
    When you print from an application you essentially open a device context and send it a bunch of instructions to draw text here, a line there and so on. This can be captured PDF but is totally unsuitable to printing out an .odt file for instance. In the process of conversion you'd lose all meta info, any revision history, digital signatures, styles, hidden text, rulers, margins, links to other documents / graphics and basically anything else which goes to producing a document but doesn't appear in the end result. In short, a "Print to OpenDocument" would be worse than useless.

    On the other hand, an import / export filter for MS Word to Open Document would be very useful. I assume that such a thing is quite possible, but how far along anyone is with producing such a thing (as open source), I have no idea.

  6. Re:Grrrr by sucker_muts · · Score: 5, Informative

    No problem, apart from it's name, RC3 is 100% identical as 2.0.

    They just updated the version number thoughout and made sure beta was mentioned nowhere anymore. Once they were sure no (major) bugs were found in the latest beta they could push it as a final version.

    Just keep your RC3, it's the same as 2.0 final.

    --
    Dependency hell? => /bin/there/done/that
  7. Re:Excellent!!!! by Wornstrom · · Score: 5, Informative

    I push openoffice on anyone who asks me if I have a "copy" of office they can "install" on their new computer. Now with the more advanced Access style database stuff and general improvements, I couldn't imagine the "need" for MS Office anywhere. Except maybe in schools where the classes they teach on basic computer skills require that students have a copy of the latest version of Office. That is one thing that needs to be changed. Users are getting their basic education in productivity applications without any alternatives. Amazon is preselling the openoffice 2.x resource kit for $32.99, which comes with the cd with several versions (MS, Linux, Solaris, Apple) of OOo, plus macros and such. Might make a good gift for someone with the in-depth manual that explains how to do everything.

  8. Detailed Comparison of OO Writer and MS Word by L.+VeGas · · Score: 5, Informative

    Not to totally plug my own article, but I have a detailed comparison between the two here that some might be interested in.

  9. PDF is actually less dynamic by jonabbey · · Score: 5, Informative

    PDF is actually less dynamic. A PostScript file is actually a computer program that, when executed in a PostScript interpreter, winds up executing instructions to draw marks on a rendering surface. You can't, in principle, know what a PostScript file will end up looking like, until you run the program to its per-page completion. If the PostScript winds up looping forever or takes up too much memory, either a user or the printer has to be smart enough to cancel the job and report an error.

    People have done crazy things with PostScript in this way, actually. I've seen PostScript print files that print out digits of Pi, using the printer's CPU engine to calculate the digits!

    PDF, on the other hand, is basically a flash-frozen listing of those rendering instructions. That's why a PDF file can be edited with the appropriate Adobe software.. it just goes in and changes the rendering instructions.

    Back in the day, when Adobe introduced PDF, the big excitement was that PDF's font support was fancy enough so that if your printer didn't have a font that the PDF specified, the PDF reader could just tweak the size and shape of a standard font in order to make the spacing and visual quality come out looking right, anyway, without having to stuff a bunch of full spline definitions for fonts into the PDF file. This fit into the goal of allowing PDF files to be efficiently compressed.

    So, PDF is good stuff! PostScript is the dynamic one, though.