Slashdot Log In
OpenOffice.org for Mac OS X Alpha Released!
Posted by
Zonk
on Tue Jun 05, 2007 07:41 AM
from the copy-and-paste-how-do-you-break-that dept.
from the copy-and-paste-how-do-you-break-that dept.
An anonymous reader writes "Nearly 6 years after announcing a Mac port, OpenOffice.org has released the first release of OpenOffice.org for Mac OS X that can finally run without X11!! An alpha is available for download today, but a lot of help is still needed to make OpenOffice.org available for Mac OS X. The site is very blunt: 'WARNING: THIS SOFTWARE MAY CRASH AND MAY DESTROY YOUR DATA DO NOT USE THIS SOFTWARE FOR REAL WORK IN A PRODUCTION ENVIRONMENT. This is an alpha test version so that developers and users can find out what works and not, and make comments on how to improve it.' Currently missing functionality includes printing, pdf export, copy/pasting, and multiple monitors. That said, if you're interested in participating you can visit the Mac team to figure out how you can help today."
This discussion has been archived.
No new comments can be posted.
OpenOffice.org for Mac OS X Alpha Released!
|
Log In/Create an Account
| Top
| 251 comments
| Search Discussion
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
Good news (Score:2)
(http://www.tjerkstra.org/)
Re:Good news (Score:4, Insightful)
(http://www.lkmc.ch/)
And this is precisely what Apple wants. X11 on the Mac is for Geeks, not for "regular" users. The existing issues with X11 are intentional.
Let me explain what I meant (Score:5, Interesting)
(http://www.lkmc.ch/)
Not sure what you're trying to say here.
Labelling people "mac fanatics" because you don't understand their reasoning is pretty cheap. In your defense, I admit that I was unclear in my original post. Let me explain what I meant.
Apple depends on Mac OS X having applications which do not exist on other operating systems. It's a competitive advantage. Remember NeXT? They had a nice cross-platform development library which allowed NeXT apps to run on Windows. Initially, Apple planned to keep this in OS X. It was called "yellow box" ("blue box" was for old Mac apps).
Interestingly, the idea didn't survive. Eventually, Cocoa became Mac only. Why? Because Apple wants Mac-only applications.
Another example is Java. Making Java apps look good on a Mac is hard. Apple wants to discourage Mac developers from using Java to create cross-platform apps. They would rather keep apps Mac only.
And this brings us to X11. X11 is awesome if you want to run all kinds of apps on the Mac, but these apps don't behave like Mac apps. Why? Because if they did, it would be trivial to write Mac apps using X11 and then port them to other operating systems. Apple would rather keep these apps on the Mac, thus they are discouraging the use of X11 for Mac apps.
Do you now understand the reasoning, or are you still LOLing at me?
REALLY READ THAT WARNING MESSAGE (Score:5, Informative)
(http://minion.sourceforge.net/)
So have a look, and help submit bug reports, but please don't try using this is your normal editor, or get annoyed it isn't in a full usable state yet, that's why it is called alpha
Re:REALLY READ THAT WARNING MESSAGE (Score:4, Funny)
(http://www.jasonlefkowitz.net/)
Finally! An office suite on OS X that works just like OpenOffice does on Linux! ;-)
Neooffice - differences? (Score:3, Interesting)
What are the differences to Neooffice?
Are they working together?
Besides the slow startup I feel Neooffice already has taken that niche, hasn't it?
Re:Neooffice - differences? (Score:4, Informative)
(Last Journal: Monday October 22, @12:27PM)
the "6 year wait" is partly because OOo 1.x was incompatible with MacOS X because of the way symbol bindings were handled (I think it was basically a hack, anyway, exploiting a "feature" in most UNIX-based OSes), so the port really couldn't start until 2.0 (which was heavily rewritten). I was involved in another project when 2.0 came out (I believe STLport, which I think I actually got involved with due to OOo, but X.3 had all the STL features I needed, so I moved on), so I really didn't follow the split that started NeoOffice.
Re:Neooffice - differences? (Score:5, Informative)
(Last Journal: Friday November 09, @04:36PM)
This is a genuine native port, NeoOffice uses a Java intermediate layer to present the UI to Mac OS X.
As I understand it, they're not working with the NeoOffice people, there's always been a little friction between the groups.
In time, this project is likely to overtake NeoOffice, simply because changes to OpenOffice.org will always be faster than those in NeoOffice, which is in a continual state of catch-up.
Re:Neooffice - differences? (Score:4, Informative)
(Last Journal: Friday November 09, @04:36PM)
When you start off behind in some areas, but not in others, and in the "others" you can only ever be ahead of the rest. OpenOffice.org's Mac port is at an early stage at the moment, so it implements all of the latest version of OpenOffice.org (by definition) but not all of the Mac native subsystem. NeoOffice includes a complete Mac native subsystem, but not all of the features of the latest version of OpenOffice.org. As time goes by, because making OpenOffice.org native is a discrete, completable, task, OpenOffice.org will catch up with the part of NeoOffice it currently lags behind, but NeoOffice cannot catch up with OpenOffice.org (unless OpenOffice.org ceases to update.)
Does that make sense to you?
Re:Neooffice - differences? (Score:4, Informative)
(http://www.szegedi.org/ | Last Journal: Monday February 16 2004, @05:20PM)
Re:Neooffice - differences? (Score:5, Informative)
Many of the sub-systems, especially in things like drawing and sound, often have the more robust API written in Carbon, and then some of the Cocoa API's call those APIs while running. But generalizing like you do that Cocoa is built on Carbon is a mistake, there are many sections of Cocoa that have no Carbon at all underneath them.
A better concept of the major MacOS X API's are that at the root of things you have a layer called CoreFoundation that is written in C. This sits next to the APIs taken from FreeBSD (and the latter dangles down into the Kernel space as well). The primitives from Carbon are often found here, but that is not to say that these belong to Carbon. The primitives found in Cocoa are all built around these, and are often interchangeable with them in some regards.
On top of this you have the "Foundation" layer. This one is mostly written in C or a sub-set of C++ (basically the stuff that does not conflict with Obj-C). Many of the "core" services at the heart of the OS are built here, and at the top of this things start to blur with the bottom of the Carbon layer. Services such as Quartz (but not QuickDraw... which sort-of sits on top of Quartz... but that is messy) sit on this layer.
On top of this layer comes Carbon and Cocoa proper. There is quite a bit of messiness with the two of them calling back and forth, and there are some areas (like Quicktime) that have been very slow to get full implementations in "pure" Cocoa. And a lot more that have had real speed penalties for calling from Cocoa.
Carbon's roots go a little deeper (but less so every new version of MacOS X), but Cocoa and Carbon are philosophically on the same level.
Re:Neooffice - differences? (Score:5, Informative)
From the horse's mouth. [apple.com]
Carbon is NOT a fundamental API of Mac OS X. It sits side-by-side with Cocoa, and while it DID start out life as a transitional API from classic Mac OS, it is a peer API of Cocoa. In particular, if you can't deal with Objective-C, you'll likely be using Carbon as it's procedural and accessible from C/C++. Both Carbon and Cocoa are built atop the various "Core" API's. Remember that Mac OS X is a very direct descendent of NeXT, and as late as Rhapsody DR2, there was no such thing as Carbon.
Re:Neooffice - differences? (Score:4, Informative)
And apple uses Carbon for Finder [wikipedia.org], a fact that annoys the hell out of me on a daily basis.
Two things off the top of my head that are implemented in Cocoa apps but not Carbon apps: emacs-style text navigation (ctrl-F,ctrl-B, etc) and on-the-fly word definitions (ctrl-cmd-D while cursor is over a word). There are other differences, too, but I only notice them when they don't work in Finder or in Camino (or Photoshop!).
That said, it's a hell of a lot more integrated than Java!
Wow! (Score:1, Funny)
Good stuff! (Score:2)
(http://www.echtehelden.org/)
Neo Office (Score:5, Insightful)
A port of OpenOffice to Mac OS X that uses Java as a compatibility layer.
It _is_ production ready (I use it every day).
Why the OpenOffice people are hostile to this project is something I've stopped
wondering about... today's announcement of the "first" port of OOO to Mac not
using X11 just shows how badly a project hurts itself when it refuses to work
with others
Re:Neo Office (Score:5, Informative)
(http://photo.net/photos/swillden | Last Journal: Wednesday July 19 2006, @01:42PM)
This is incorrect. The problem isn't GPL vs LGPL, the problem is that Sun requires the copyright for all significant contributions to OpenOffice.org to be assigned to Sun, so they can sell StarOffice as proprietary code. The NeoOffice developers don't want their code sold as proprietary, and don't want to assign their copyrights to Sun.
Re:Neo Office (Score:5, Insightful)
That seems distinctly unfair. Don't the BSD and LGPL people always say that they don't care if people "take their code proprietary" as it were, and that "the code is still there even if someone else improves it and doesn't share back?" Why, just yesterday there were hundreds of comments to that effect on the GPL2 vs GPL3 story!
It's funny though, because it seems that for all their rhetoric about how using BSD and similarly "non-viral" free software licenses is somehow "more free", BSD/LGPL people generally aren't happy at all when people relicense their code. BSD people hate it when their code gets relicensed, ironically especially when that license is the GPL (for some reason, having their code co-opted by Microsoft or Sun bothers them less -- how does that work?) The LGPL is just like BSD, except that it is exclusively GPL-compatible by design. If it bothers you that someone is releasing mods to your LGPL-licensed program under the GPL, why on earth are you even using the LGPL?
Host and parasite -- god, I love it. Talk about double-speak! It reminds me of this great exchange between an interviewer and Theo de Raadt (whom I have the utmost respect for, as it happens, but this attitude is typical of BSD types):
That's from this interview with Theo at NewsForge [newsforge.com] if you want to read the whole thing. But basically, there's this tremendously hypocritical attitude among the most ardent supporters of licenses that are presumably "freer than the GPL". I see nothing wrong with the classic BSD/PD stance: "We don't care what you do with it, no matter what we still have the original copy". I think that's a noble way to look at things. It just seems that in practice, that's almost never how it is. Someone turns around and creates something useful from your code and relicenses it in a way that prevents you from benefiting, and suddenly they're evil, even though that's supposedly a right that you expressly wanted to guarantee to them in the first place!
Released? (Score:5, Informative)
(http://www.clickonstore.net/)
This however is apparently an 'alpha' which is commonly an early development version, not fit for general consumption and the type of thing you might get from CVS or a daily tarball.
Some developers use the term 'alpha release' as they assume others will know it's just a packaged up development snapshot, then some muppet takes it and runs to press with it.
Warning! (Score:5, Funny)
(http://robvincent.net/ | Last Journal: Tuesday October 09, @01:55PM)
Re:Warning! (Score:5, Funny)
Slashdot.org for truthiness released! (Score:2, Funny)
How does it perform? (Score:2)
Least of Their Worries (Score:1)
If someone uses the alpha, with these limitations, in a production environment, then crashing will be the least of their worries...
Still, I'm damn glad to see the (real) Mac version is finally moving forward. It'll be nice to switch when it's out of testing.
Thanks to neooffice... (Score:5, Insightful)
Don't worry about that (Score:2)
They shouldn't have announced this yet. (Score:1)
Stupid Title! (Score:1)
OpenOffice.org for Mac OS X Released!
To me, this implies that a version of OpenOffice that I could actually use for work has been released for OSX. Hell, the whole reason I read this article is because I thought it was, and that this would have been a breakthrough of sorts. An alpha version that should not be used for "real work in a production environment" isn't what I had in mind. According to the web site, you can't even print or copy and paste! This is merely a small step forward for OpenOffice being ported to OSX since the only significant change is the removal of the need to have an X server installed to run.
Finally! (Score:1)
(Last Journal: Sunday November 20 2005, @06:36PM)
sensational (Score:1)
And just to go ahead and respond to the obligatory joke: no, I am not new here. I just have a really, really bad memory.
Not Alpha (Score:5, Informative)
(http://slashdot.org/~Doc%20Ruby/journal | Last Journal: Thursday March 31 2005, @01:48PM)
Alpha/Beta/Release is not a measure of quality or maturity. It just tells who is testing, and their relationship to the software.
Re:Not Alpha (Score:4, Informative)
(http://slashdot.org/)
Alpha = feature incomplete software with bugs, Beta = feature complete software with bugs, Release = feature complete software with ideally very few bugs.
Still needs X11 (Score:2, Interesting)
(http://www.szegedi.org/ | Last Journal: Monday February 16 2004, @05:20PM)
ahem... (Score:2)
And no, I'm not going to offer to help - I tried that back in 2000, and they couldn't find their collective asses without directions...
Not exactly 'released' (Score:2)
(http://www.edholden.com/ | Last Journal: Tuesday January 20 2004, @11:15PM)
While a native OS X version of OpenOffice.org is a great thing, the title of TFA is a bit misleading. This software hasn't exactly been 'released' in the normal sense of the word. It would have been more accurate to say 'Alpha build of OpenOffice.org for OS X released!' (Yes, technically the exclamation point is not inaccurate, so I left it in.) Being an alpha build it has a number of odd qualities, including but not limited to the following:
Again: good, but alpha.
Why? (Score:1, Flamebait)
A) Your time isn't worth any money and you should reconsider what you're using it for
B) You can't afford it, so how can you afford the computer that you're using
C) You just have no desire to pay for software and/or hate Microsoft for XYZ reasons.
Obviously all of those items are problems, but for the price and how good Office is for the Mac, I think it's quite a value. Besides, "free" is relative, this is alpha software that's 5 years AT BEST behind Microsoft Office. I think that Google's Apps are much more promising as a Microsoft competitor than a buggy copy-cat of what you can already get for a relatively low cost.
Flame on.
i'd love to test this software. (Score:1)
(http://slashdot.org/)
I don't see why (Score:2)
Microsoft Office has been crashing and losing data for years but some people still use it in a production environment.
run your own comparison test (Score:2)
In particular, do they each:
1) use the standard OS X print and file navigation dialogs?
2) copy & paste using standard OS X facilities, playing nice with other apps?
3) use the standard OS X fonts?
4) provide Spotlight interfaces/plugins so that the documents are indexed by Spotlight?
5) provide access via the Services menu to things like the OS X system-wide Dictionary, or the Mail app?
6) support international languages in the standard OS X manner?
7) support Applescript -- at least via GUI scripting?
You can add other items to this list, but that's a useful starter set of comparison metrics.
Additionally, one should compare footprints (memory and disk) and overall responsiveness, in addition to launch times.
I think that OpenOffice has an incredibly long way to go before they can catch up to NeoOffice. NeoOffice still has room for improvement (as can be seen from the items in the above list that NeoOffice doesn't do -- I'll let you figure out which ones those are yourself), but it's an awesome program.
Why All the Fuss? (Score:2)
(Last Journal: Friday June 29, @04:58PM)
Now for the GIMP (Score:1)
Cool, Capcha fortune tellers - mine said foolish
Right Direction, An Esspecially Rough Alpha, Why? (Score:1)
(http://www.brendamake.com/)
* You cannot print
* PDF export does not properly work as thetext won't show on the page right
* Starting OpenOffice.org from a shared folder does not work
* Copy and paste does not fully work
* OpenOffice.org will crash after quitting
* Some text is not drawn in places like Impress
* Impress will not recognise multiple monitors
I download a lot of "beta" and "Alpha" software. I have never seen piece of software released that the developers knew it constantly crashes.
If is so rough that I found two typos in the known bugs.
http://porting.openoffice.org/mac/download/aqua.h
They spent years twiddling their thumbs why people asked them to port OpenOffice to OSX. They had a X11 version of OpenOffice, but X11 is not the standard for Macs, it's an option. They waited a while longer for the Openoffice API's were changed. NeoOffice showed them up a little, and now more people are buying Macs, and they were wondering what's going on with OpenOffice.org. They questioned the Sun's steering committee's influence. So, succumbing to pressure, they, and a lot of hardworking volunteers, created an alpha.
So, they proved their point. Technically, they are making progress. Software often has a lot of bugs when it's released, but usually not a known repeatable crash. It appears that they met some kind of self-imposed time limit.
I just downloaded and tried on my Mac Pro (Score:2)
(Last Journal: Thursday October 24 2002, @10:23AM)
The product crashed when I tried to Exit wanting to give me a crash report. They have a -LONG- way to go.
Also, the widgets all feel strangely out of place (Like a Mac OSX theme running on top of Gnome).
Yawn.... (Score:1)
I know it's an alpha version... (Score:1)
New Version Warnings (Score:1)
(http://www.kaptain.us/)
"Do not use this software if you are prone to violent fits of anger."
A Good Start, Particularly the Text Rendering (Score:2)
(http://garethpotter.com/)
Couldn't type properly in Japanese yet - the hovering IME window doesn't show up, but when "entered", the text shows up.
Plenty more to do then, but this bodes well. By using Apple's font engine for text rendering, they have already gone one better than Microsoft in Office 2004!
iqu
bean (Score:1)
(http://flybarf.com/ | Last Journal: Sunday November 12 2006, @03:20PM)
This is Bad news (Score:2)
copy/paste is missing in a word processor? (Score:2)
The 1980's Called, Wants It's Software Back (Score:3, Insightful)
A word processor?
You are killing me. A fucking word processor. It is like inviting people to use a back-breaking chair.
Now that we have more than one output medium, it is important to separate content from style. We also have a "universal" text format which is UTF-8 but we do not have a universal style format. If you munge in your styles with your text you are just setting up a situation where a publishing professional is going to have to rip that text back out of there and if you stored it with a funky old encoding good luck on your smart quotes and em dashes.
What would be the point of enabling a computer user in 2007 type type text and apply styles and you don't save their work as HTML+CSS? What is the point? It makes no sense to me.
What is required when you write is to store the actual typing. If you save UTF-8 you can type any character from any language and then later another human can use that UTF-8 text file to instantly "re-type" your work into any publishing system, smart quotes and all. No conversion necessary, no errors introduced. Doesn't matter if they are working in InDesign or Dreamweaver or other, there is simply no defensible argument for not having a single UTF-8 master copy of any kind of writing. You can drop it on a browser to read even 25 years from now, it will be compatible long after you are dead. In the entire history of computing there has not been a word processing format that lasted even 10 years. If you open a Word document from Word 97, that is only 10 years ago, it has to be "converted" (destroyed) when you open it. Good luck with that system here in the 21st century.
If Microsoft tries to sell ice in the Arctic, will open source follow with open source ice for the Arctic?
Movable Type is about 10,000 times more exciting than OpenOffice. I mean, c'mon.
TextWrangler for Mac OS X is free and it has UTF-8, RegEx find/replace that works across any number of files or a whole disk, real-time speller, S/FTP, lots of writing tools, a great find differences, beautiful text rendering, and completely scriptable with AppleScript (macros). Those are the tools that people need to do good writing and create documents that can be used in modern ways, not mail merge and bad fonts.
Re: disclaimer (Score:2)
(http://kim.biyn.com/)
If only Microsoft software were to come with this warning, then there would be truth in advertising.
lameness filter blocks quoting the story so let's type a bit to try to get rid of the warning
Reason: Don't use so many caps. It's like YELLING.
Reason: Don't use so many caps. It's like YELLING.
Reason: Don't use so many caps. It's like YELLING.
Re:Used it on MacOSX - switching to google docs (Score:5, Funny)
google...you seem to apologizing to you girlfriend.
would you like to
Re:Exclamatory! (Score:1)
(Last Journal: Friday November 09, @11:57PM)
Re:A Massive Waste Of Resources (Score:2, Funny)
(http://bruthamyles.blogspot.com/)
Re:Huh wha? (Score:3, Funny)
(http://www.xdesignlabs.com/)
Re:Used it on MacOSX - switching to google docs (Score:1)
(http://listeningtoreason.blogspot.com/)
I think you mean 20% of the functionality. I am frankly astounded by how few features Google Docs has.
Having said that, if it works for you, more power to you.
Re:Used it on MacOSX - switching to google docs (Score:2)
I like to use minor formatting in documents (and yes, some emails) to make them more pleasant to read, but generally they don't have to be perfect (or if they do have to look perfect, it is for web presentation), so google docs is perfect for me.
Re:please help (Score:2)
Myspace sucks.
Re:Huh wha? (Score:1)