OSNews on the LinuxWorld Exhibition Floor 166
Expo writes "OSNews reports on the second day of the LinuxWorld Expo. Highlights of the article is CodeWeaver's CrossOver Photoshop effort and the fact that OpenOffice.org is collaborating with _all_ the other major Linux office suites and word processors towards the creation of a new, open XML-based, file format. NewsForge also has a report."
Same old, same old... (Score:4, Funny)
Re: games games games! (Score:2)
Thats why new computers come with Windows installed.
Re:Same old, same old... (Score:2)
There are games for WINCE, why the hell aren't there embedded games being developed for Linux? Take a look at http://infosync.no, they have news on the latest apps for the embedded world, including games... NOTHING for Linux... what gives?
We already have them. (Score:1)
I really don't get the big deal. (Score:1)
Re:I really don't get the big deal. (Score:1)
You're damn skippy! (Score:2)
Re:I really don't get the big deal. (Score:2)
That's not true for all applications. XML in itself is only useful for data that is suitable for sequential scanning and complete storage in RAM. To access the data in a random form, you need to build and maintain a binary index. To access data too large to conveniently fit in RAM, you need to have an external index and to be able to deal with partial XML data. XML can be bridged to a database but it is not a database.
--
Tim Maroney tim@maroney.org
Re:I really don't get the big deal. (Score:2)
Re:I really don't get the big deal. (Score:5, Interesting)
You hit it on the head. XML is a way of thinking.
Would you rather go to your boss and say, "Let's take a look at replacing MS Office with Open Office. They've started using a standard file format, so multiple vendors applications can read and interact with those files without any issues. This standard is available for Microsoft to implement also."
OR
"Let's take a look at replacing MS Office with Open Office. They've started using an XML-compliant file format, so multiple vendors applications can read and interact with those files without any issues. This standard is available for Microsoft to implement also, who is not yet using XML."
The Boss's brain stops at 'XML', and says "I know that word, everybody is moving in that direction*".
*all the guys on the golf course are talking about it - so they must already be using it.
Re:I really don't get the big deal. (Score:3, Informative)
Try writing a parser for any widely used file format. Go ahead I dare you, DOC, RTF, anyone. Just the parser, so the end result is a syntax tree in memory. See how long it takes to get anything useful. Don't stop there think of revisions of the format. Languages, are we going to have one solid C library and thats it? Aren't we going to support Ruby and Phython? Think of the API to get other programs to use your in-memory parse tree. How are you going to do that? Another API?
XML makes this trivial. with libxml or any of the other popular XML libraries, no *real* coding is involved, just supply the DTD. And plus XML libraries are everywhere. DOM is documented and understood by programmers who may not have encountered your format before, shortening the learning curve for use of your product
With an XML file format *any* of those libraries can be used to edit the format. No more sending mouse clicks to Microsoft word to do simple doc conversions or other hacks. Just write a *very* short PERL script that would parse this file. Also because XML is becoming the parser language of choice, there is a good chance that suitable XML libraries are available for your platform/langauge or installed already.
The idea to use XML is most likely from coders who have had to deal with these parser issues for years. I doubt it was handed down my OpenOffice "management".
Re:I really don't get the big deal. (Score:2, Informative)
That is the real beauty of XML, portability from one source to another. Wich is also helped and aided by it being both an Open standard and a Human readable way of storing data.
Re:I really don't get the big deal. (Score:2)
Re:I really don't get the big deal. (Score:2)
First of all, with licensing 6.0, we see that the customers are pushing back. They're not blindly accepting anymore. An XML format would help MS keep Office marketshare by being able to import and export that format.
Secondly, XML is said to be 'human readable'. It's plain text. I'd say like EDI, which does have some garbage in it, but you can read the files themselves. If Microsoft were to try and 'extend' the XML format, it would first be sensationalized (probably producing bad PR), and then, if the standards body approves it, adopted (Assuming OO, and not MS is playing catchup at that point).
Not an issue.
Re:I really don't get the big deal. (Score:2)
We need an open standard format that more than one project agrees on. This currently does not exist for wordprocessing and spreadsheets, unfortunately.
Re:I really don't get the big deal. (Score:2)
Yup...just like HTML - until things like Flash, Shockwave, Quicktime and all these other plugins get embedded into it.
Hopefully XML can remain pure and more useful than HTML has become.
And I don't even blame MS for this one - they may have added some things here and there, but even if you just follow the standards for HTML and CSS, half the crap only works on IE.
Re:I really don't get the big deal. (Score:1)
Suppose you want to define the font. In version 1.0 you have <font name="Arial" bold="true">. Now, in version 2.0 you come up with a cool formatting effect. It's a bit stupid but let's say you want font with a gradient. Now your new tag looks like <font name="Arial" bold="true" gradient="BlueGradient">. The old version of your app can simply ignore the new information and still load the document correctly.
Using a binary format, all that goes to hell when you realize that you need to store more data in a field and change it from a char to an int type, making the format unreadable by the previous version. And of course no company will be happy having to accept a format like what Word uses. What if they want to add a new feature that can't be expressed in
Re:I really don't get the big deal. (Score:3, Insightful)
It's definitely not as easy as just ignoring new data, as you suggest. Suppose the new feature is footnotes within footnotes. Throwing away all the nested footnotes when the data are processed by an old application is not the right way to go. And you can't just blindly preserve the unknown information either, since transforms done to the rest of the data (e.g., changing the font universally to Garamond) also may need to be applied to the unknown data. Or they may not. If you don't understand the data you don't know whether they need to be done or not, and you may not understand the right way to do the transform.
Some of these problems can be addressed in part, but they require significant extra infrastructure to do so, and complicate everyday data processing tasks. That is, a format flexible enough to solve most of these problems would be quite hard to deal with on an ongoing basis, due to the need to constantly make decisions based on variant data types and informational attributes. There is no magic bullet for the format change problem.
--
Tim Maroney tim@maroney.org
Re:I really don't get the big deal. (Score:1)
You seem to have given serious thought (beyond the hype of false solutions anyway) to this question, which I'm also trying to come to grips with. What are some good/bad strategies when you're designing a language and trying to make it extensible? I got some empirical feel for it by looking at some choice BNF/yacc grammars, TeX sources, how perl or html moved from version to version, even C -> Obj-C or C++ (and I should probably take a look at this book [amazon.com]), but if you have pointers at hand to any organized thoughts or references on the subject (books, courses, web, usenet, whatever), I'd be most interested. TIA!
moc.cam@noiretsyh
Re:I really don't get the big deal. (Score:1)
For example, I wrote a tiny POP3 client that was designed to store mail on a floppy. The format is approximately this:
4 bytes magic number
4 bytes header length
compressed table of 4 byte message lengths
compressed messages
compressed table of 4 byte message lengths
4 bytes header length
4 bytes magic number
As you see, the format is symmetric, to avoid data loss if the header becomes corrupt. Due to this design it's absolutely impossible to add anything to the end of the file, and since lengths are used instead of offsets it's not possible to add any new data between the length table and the compressed messages either.
It's very compact, and can easily store 1000 messages on a floppy. However it's inefficent, requiring to decompress a message to read its subject. There's no way of adding an uncompressed message subject without breaking compability. With XML the length table would have looked like this:
<message length=1024/>
With this system a bit more space would be spent, but adding a subject line would have been trivial without breaking compability. With a well written program and reasonably well designed format it would have been very easy to make sure that even the 1.0 version could still read the messages written by a 5.0 version made two years later.
Re:I really don't get the big deal. (Score:2)
> problem.
Sure there is. If both formats are open and processable by any language advanced enough to deal with the "character" data abstraction, scripts can be written in any language to translate from one format to the other. Lordy, you could even distribute these scripts as macros with a common interface, a practice invented by Dr. Paul E. Morphism in 1957. So users could be forwards-compatible with new formats without upgrading their client app, by downloading necessary translation modules.
Significant extrie architecture this is not.
Re:I really don't get the big deal. (Score:2)
--
Tim Maroney tim@maroney.org
Re:I really don't get the big deal. (Score:2)
Re:I really don't get the big deal. (Score:1)
No. Not always.
Re:I really don't get the big deal. (Score:2)
Eeek. Wrong.
Because a compatible format would not force-upgrade users.
Re:I really don't get the big deal. (Score:1)
Re:I really don't get the big deal. (Score:4, Informative)
XML allows you to define your own document format standards and embed those standards into your documents, for on-the-fly validation during parsing. DTDs can be distributed to your vendors, and they can draft documents according to that DTD, and be assured some level of compatibility with your software.
2) Heirarchal Storage of Data
This may not be that important to a lot of people, but it offers the ability to categorize data in common groupings with duplication of meta data. It's great for, say, directory structures and whatnot. Sure, there's LDAP, but that's an interface standard. This is a storage standard.
3) Readability
There's a whole debate over how readable XML is, given the prevalance of markup, but I would argue that the heirarchal outlines are much more intuitive than a flat file format. Well-designed DTDs and well-named tags help reduce the interference of markup.
4) Conciseness
XML wouldn't be good for, say, a network layer protocol, but as an interface between applications and users it is fairly small for what it does. Sure there's "overhead" and "bloat", but who wants to visually parse run-together character strings or hexadecimal encoded bytes?
5) Standardization
XML has to make a lot of concessions because it is designed to be universal. It's a standard. Yes, not all applications make use of all the features it offers. They don't have to. But those features are available so more applications can make use of it. It's widely used, it's open, and it works.
XML is good at what it's designed for. The standardized office document formats are a great place for it, as it offers the user *some* readability outside of an application framework while preserving special markup. Ever try reading a
Re:I really don't get the big deal. (Score:1)
Not to bash M$, but different companies working together is much better for the computer user. Ever try opening a Works document in M$ Word? It doesn't work, yet both packages are made from the same company, now what chance do other competing programs have with working with M$ files? The example of a common format will give more reason to use Linux, if this trend continues (or starts)
Set the standards babe! (Score:3, Interesting)
If GNU/linux/Open Source can be a part in setting the standards instead of just following them it would be awesome. Then linux could be the developers platform that set the industry instead of just playing tag along with windows.
To get backing for this it needs support from all other than Microsoft to be able to pressure them into supporting it. A web standard for documents would be nice instead of plain txt or vendor locked Microsoft and Adobe format. Adobe has its place too but its not a real standard, and its not free.
Re:Set the standards babe! (Score:2)
Adobe has its place too but its not a real standard, and its not free.
Sure it is. Its an open standard.
Apple created the OS X compositing engine to be compatible with PDF, making PDF generation a trivial thing for Mac Apps, and they did this without paying Adobe any money.
AFAIK there are Open source implementations of PDF as well, if not then its only because nobody wanted it enough to write one.
Or did you mean Free as in GNUtalitarian? "Sure, you're free to use our icon, you just have to open the source for your whole program. No, just releasing the changes you make to our work isn't enough, sorry."
Re:Set the standards babe! (Score:1)
Open Source PDF (Score:1)
Check out Xpdf [foolabs.com]. Xpdf is licensed under the GNU General Public License (GPL), version 2, so that should make many
Re:Set the standards babe! (Score:2)
PDF isn't really a word processing format though... it's a display format.
Re:Set the standards babe! (Score:1)
You mean like HTML?
Most (if not all) word processors are capable of exporting html and that's one hell of a standard. Open too.
NetBSD booth (Score:1)
It is nice to know that people wheren't setting fire to Microsoft or anything. anything that makes either linux or bsd look bad is going to end up being bad for the other, becuase we're all on the fringe compared to say, sun or ms.
Fringe? Wait for Sun's reverse stock split. (Score:1)
Greate company (Score:4, Interesting)
Re:Greate company (Score:1)
http://www.codeweavers.com/products/office/supp
And more mention of it here:
http://www.codeweavers.com/products/crosso
photoshop on linux?? (Score:3, Funny)
Re:photoshop on linux?? (Score:1)
Serioiusly though. Do you really need Photoshop when you have the GIMP?
Photoshop on Linux will get people to use Linux (Score:2)
Re:Photoshop on Linux will get people to use Linux (Score:2)
Re:Photoshop on Linux will get people to use Linux (Score:1)
Re:Photoshop on Linux will get people to use Linux (Score:2)
It's got nothing to do w/ nostalgia, Photoshop gets the job done. If Gimp did more than RGB, and was easier to use, then we'd see more people use it.
I think the nostalgia is yours, for Gimp.
Re:photoshop on linux?? (Score:1)
Without a partition is the key. (Score:1)
Re:photoshop on linux?? (Score:1, Insightful)
New format? (Score:2, Informative)
From the post: the fact that OpenOffice.org is collaborating with _all_ the other major Linux office suites and word processors towards the creation of a new, open XML-based, file format.
From the article: some Gobe people were there, and they were all discussing the idea of creating a new, XML-based, common format
Isn't there a difference between 'discussing the idea' of creating a new format and actually doing it?
Re:New format? (Score:3, Interesting)
Yes,
First you discuss,
Then you form a standards group,
then you make the standard.
Other than being "Captain Obvious", the AC is correct. You need to get all of the cats into the same corral before you can herd them along.
At least they're attacking the root problem - a useable, patent free, open standard document format, rather than a de facto standard format that's closed, proprietary and difficult to reverse engineer.
Soko
Microsoft Presence... (Score:1)
Evidently they got spent a lot of time thinking about who should represent them because the OSNews lady was quite impressed:
"Most interesting person: The main Microsoft guy. Wasn't that guy sharp or what?"
This is the best example I've seen to date about Microsoft taking *nix seriously
Re:Microsoft Presence... (Score:2, Interesting)
You don't consider them running their free online mail service [hotmail.com] on FreeBSD for years "taking *nix seriously"? ;-)
Re:Microsoft Presence... (Score:1)
We didn't have to (Score:1)
Just came to think about a thingie. (Score:1, Offtopic)
It has obviously been proven very succesful on networks so do any of you think it would be workable?
RedHat? (Score:2)
I ran RedHat for many years, it is still running on my Alpha UDB because I am just too damn lazy to wait for Debian to install on that lowly machine. Why is there such a buzz around RedHat as far as their distribution goes?
I know that they do A LOT for the community but I just don't see their distribution as being the cleanest and safest of all.
Any ideas on why they would be such a popular choice? Is it just their physical popularity or is there something else I am missing?
Re:RedHat? (Score:3, Insightful)
BTW, I am aware that Redhat does not eq linux and Linux was around before Redhat
Wow it is fun out here. (Score:2, Informative)
The highlights from linux world for me? Getting a pic of 17 Microsoft Employes all holding up a bumpersticker that said "You shouldnt Buy software from ex convicts". Besides that the allways insperational Linux Bowl/ or by its proper name the Golden Penguin Bowl when my Friend Arthur Ulfelt(? last name allways screws me up) got picked to be on the sides. And unfortunatly again one of my friends were on the looseing team since last year I got my friend Jesse Crocker to go up on one of the sides he lost forgetting that Trinity was in room 303 and he missed the 20 people makeing signs that said it with there fingers. Oh well. Arthurs shigning moment was when he said as the answer "Food" to the questoin is C6H1206 food or poisen =)
Re:Wow it is fun out here. (Score:1)
BTW, I submitted the story of Jeremy being on the winning team for a change...but it hasn't been accepted or rejected just yet. ChrisD may have taken offense at pointing out his "repepetitive" spelling mistakes...
XML DocBook? (Score:1)
I'd be content if one of them would come out w/ a straight up DocBook editor that despensed w/ all the WYSIWYG non-sense and provided a convenient way to apply stylesheets and generate different output. What's the advantage of yet another XML DTD?
Of course, it would also be nice if everyone would standardize on kerberos for single sign-on instead of all the bitching about liberty and passport.
jason
Re:XML DocBook? (Score:2)
Bugs (Score:1)
Bugs, yeah...they're called Microsoft lawyers
Photoshop on Linux is a good thing (Score:4, Informative)
The only app for Linux that's competitive in this space is GIMP. According to GIMP's web site, supporting CMYK will "require a complete rewrite" of the painting engine and will not be available until GIMP 2.0 which some speculate will never come to fruition.
There are entire industries blocking on Linux having the capabilities that Photoshop provides. This is a great step in the right direction, even if it's just a stop-gap until GIMP 2.0 is available.
CMYK is a color model in which all colors are described as a mixture of these four process colors. CMYK is the standard color model used in offset printing for full-color documents. Because such printing uses inks of these four basic colors, it is often called four-color printing.
In contrast, display devices generally use a different color model called RGB, which stands for Red-Green-Blue. One of the most difficult aspects of desktop publishing in color is color matching -- properly converting the RGB colors into CMYK colors so that what gets printed looks the same as what appears on the monitor.
Photoshop does this rather well.
Re:Photoshop on Linux is a good thing (Score:2, Interesting)
CMYK is a color model that only works on absorption media
(such as pigment on paper). On a luminous medium (such
as a CRT), things fundamentally don't (and can't) work that
way. As good as Photoshop is, speaking of its having "support
for CMYK" is marketroidese. All this means is that it can
convert from RGB formats (which *must* be used on your CRT
computer screen) to formats intended for printing. The
conversion is necessarily lossy, because ink on paper cannot
represent all of the same colours that the computer screen
can (and vice versa). Unless you're using phosphorescent
paint and viewing it under a blacklight, or some trick along
those lines, you can't represent the brightness of the sky
(for example) on paper. Similarly, your CRT can never show
a truly _flat_ (as in nonglossy, nonluminous) color.
You can throw buzzwords like "CMYK" at this all day long, but
an image will NEVER look the same on paper (no, not even on
glossy paper, although that's closer) as it does on a CRT
monitor, and that's a problem Photoshop can't solve.
LCDs (at their current level of tech) are even worse, because
they show colors inconsistently. Perhaps some future technology
will allow computers to display both luminous and flat colors on
the same display...
While we're on the subject of Photoshop, I agree that Photoshop
on Linux is a good thing. Photoshop is very entrenched in the
publishing community, and for good reason; it's quality stuff.
It also has a pricetag to match, so I surely hope Gimp continues
to develop (as it has been doing great so far), for those of us
with less expansive budgets. Photoshop may be (and probably is)
better, but my take on the matter is that Gimp is _comparable_,
which is a tremendous achievement. (I have a friend who does
graphics work for a living; he works at Eisenbraun's, a publisher
specialising particularly in ancient near-east stuff. He works
with Photoshop a lot. He'd been trying out Gimp, and was in
some ways (not all ways, but some) impressed with it, and had
noted that it had some really nice features Photoshop 6 did not
have. (He didn't specify which features.) Then he got the new
Photoshop, and they had it, he said, "in spades"). That says
to me that the two programs are in roughly the same league, a
huge accomplishment. But people who already know Photoshop and
have the budget for it will want to stick with it, rather than
learn Gimp which, although it's free, is not substantially
_better_ than Photoshop (at least, not at this time), surely
not better enough to justify a non-programmer to switch.
To me, Photoshop on Linux is a great thing, because it's
cross-platform technology, one more step toward separating
the decision of what OS to use from the decision of what
other software to use -- and THAT is a VERY good thing.
Re:Photoshop on Linux is a good thing (Score:2)
This final colorspace can be RGB, or CMYK, or a two plate process (black + spot color). Thats what I need to from photoshop.
Re:Photoshop on Linux is a good thing (Score:4, Informative)
FYI, for non-professional use, creating RGB images and then converting them to CMYK works fine. I have created a number of flyers, folders, and other print materials in this fashion. The final colors come out looking a bit different from what was on the screen (paricularly the blues), but it certainly looks just fine.
Re:Photoshop on Linux is a good thing (Score:2)
Re:Photoshop on Linux is a good thing (Score:2)
Well, CMYK is actually a smaller colorspace than RGB, so we DO lose quality. However, CMYK is closer to looks the same everywhere and is as such the standard of the print industry. As a scientist, every color figure I make must be converted to CMYK to be used, or else I have to send in hard copies, which they scan into CMYK.
Considering that print rags are becoming outdated, is this really that important?
Yes. Linux (and GIMP) will be useless for pre-press work until the CMYK thing is worked out. And that is HUGE. Many online publishers (most?) still produce paper versions, and use CMYK for both. Don't underestimate it - GIMP having real CMYK support would be an enormous advance for GIMP and for linux.
CMYK (Score:1)
Even more important, mixing colors cannot create exactly certain shades which can be produced by specialty inks. These colors are represented by "Pantone" colors, and any decent prepress system must allow spot Pantones to be added to an image.
Photoshop is the killer color application, and running it successfully on Linux would be a step towards giving Linux a slice of Apple's pie. But it is a relatively small pie, and I can't see the prepress guys happily surrendering their much-loved Macs any time soon. The fact is that "office" printers are stepping on the low-end territory of commercial print - and for these, the key issue is good Linux drivers with an ability to provide quality output from RGB.
My conclusion: Photoshop on Linux - OK but probably not a killer app
Excellent Linux drivers for things like the HP 4600, that work well with GIMP - better use of resources.
Oy, it's bad (Score:4, Informative)
The floor seems empty, the booths seems thin, and the coolest thing I think I saw was this handheld voice rec translator - and it was running Windows.
And - RedHat seems like a bunch of revolutionaries compared to the other exhibitors. They actualy use the words Open Source.
Way downhill from last year (where's Ximian and the cool jungle booth?)
Linux has more users than developers. Great! (Score:2)
I always thought real techies used the best tool for the job. If Linux is that tool, and that's why the Linuxworld attendees are there, more power to them
Its a good thing that Linux now has more users than the developers. It means the developers were doing something right. Just like the Windows world, there will be seperate, smaller shows that will cater for developers - OSCon here we come. As a system admin and someone who often has to work out the best way to perform a given tak on Linux I like the fact that they're seperate - system admins have a different set of skills and desires than coders do.
Re:Linux has more users than developers. Great! (Score:2)
Then the next milestone will be more users than Windows has bugs. (Or should that be security exploits?)
Re:Oy, it's bad (Score:2)
I went there on Aug 14 Wed, taking the day off at work. BIG MISTAKE.
1) the fun stuff were missing. Last years, there were tons of bean bags outside where geeks hung out and they were playing Matrix movie (or somethign else?) on a very big screen tv. This year nothing!
2)most people in the booths wore full-sleeve shirts except the guys @ kde.org! Can you say 'business casual'? Yuck!
3) the toys were lame too. I was only excited by
3.1) google color pen
3.2) Linux poster saying 'I will be your server for today Mr Gates'
4) Mandrake, where art thou? I just couldn't find the guys.
5) most guys in the booth were SALES people not techies. So asking them questions were pointless. I asked the 'geekiest looking guy' @ AMD booth about their Athlon MP workstation setup. I asked them what Video card they were using. THe answer I got 'we used standard OEM parts'.. WTF?? I left the booth laughing.
6) another eg: I asked the guy on SUN booth about SPARC-Linux. he said 'Linux runs only on intell stuff'
7) There is no 'COOL' product on display. Every one is selling (overpriced) network storage solutions and some embedded chips. I saw no compelling embedded device application at all.
8) the interestign part of the show was watching Larry Ellison give a presentation *shudder*.
Basically it has turned into a Comdex of Linux! waste of $30 bucks !!..*yawn*
LinuxLover
Re:Oy, it's bad (Score:2)
9) where are the GAMES man? Transgaming was absent. I couldn't find a single game vendor!
Low quality article (Score:4, Informative)
Commenting on the Athlon, the article starts out with:
"running at 1800 MHz (2200+) with the AthlonXP CPUs already maxed out in both speed and heat"
The 2400+ and 2600+ Athlon will very likely be released on the 21st of THIS month. And they are supposed to be running much cooler. AMD found a glitch in the Athlons that was responsible for a good deal of the chips heat.
Re:Low quality article (Score:1)
Funny quote... (Score:1, Offtopic)
Wow.. didn't know the
---
It is very difficult to prophesy, especially when it pertains to the future.
Office programs (Score:1, Redundant)
Man, maybe they should spend some time actually getting their suites to WORK RIGHT rather than file formats.
For various reasons, I needed to open an Excel file under Linux yesterday. Now, this Excel file was created with the Spreadsheet::WriteExcel module for Perl (which rocks, by the way). Totally documented format. So what happens?
Gnumeric: Opens it, but formatting all screwed up
Koffice: Core dumps
OpenOffice: Core dumps
This was NOT a complex spreadsheet. This was seriously pitiful. I hadn't tried the Linux office suites in a while, but this does not give me more motivation to try again.
Uh uhg ... (Score:2)
I'f I had the power I'd award your post the troll of the milenia award!
Re:Uh uhg ... (Score:2)
So instead of using an open format to create a spreadsheet, you use a perl module and create some .xls closed format file
Apparently, you've been living off planet earth for a while. While you've been gone, we've establish MS/Office as the industry standard document interchange format. My customers use Excel; My customers like Excel; therefore, I send them automatic Spreadsheet reports in Excel.
Besides that, you've apparently bought into the propaganda that Office is a totally closed format. Untrue. There are definitely undocumented parts, but much of it IS documented. That's what Spreadsheet::WriteExcel uses.
then expect other non MS suites to open them perfectly, and when one of them doesn't perfectly open your perl-created closed-format excel you request to have them working right and to not focus in file format?
You're damn right. An office program is completely WORTHLESS if it can't open the industry standard document formats. Maybe it's fine for you if you just want to exchange documents with your l33t haxhor friends, but in the real world, an office suite must read/write MS documents perfectly.
Which is the point. If the filter is such garbage, why even include it in the distribution? I would rather they at least be honest and say "We don't support MS/Office format." and then people can make an honest decision on whether they want to be completely closed off from that part of the world.
But there is just no excuse for not opening a simple Spreadsheet created with a COMPLETELY DOCUMENTED FORMAT.
Re:Uh uhg ... (Score:2)
Do you actually read your own post and check for consistency? Besides, I know MSOffice is the standard and that i can't use anything but Office when i need to talk to "normal people", but we will NEVER get 100% compatibility.
So the point is having a file format that every other single office suite can talk to. Then we can create a MSOffice import/export filter and that's it.
We can't keep saving everything as excel files as the standard. We need 1 single xls import/export filter to talk to a unified file format EVERYONE ELSE can use.
But you'll never understand so I don't feel write for answering and losing my time
Re:Uh uhg ... (Score:2)
So the point is having a file format that every other single office suite can talk to. Then we can create a MSOffice import/export filter and that's it.
That's fine -- in theory. I suppose one might argue that we could have a common filter interface. But I didn't see anything in those (admittedly) skimpy reports about that. All I see is talk about having a common format, not for the advantage of being able to read/write MS formats, but just so that there's a common format.
It's obvious that none of the suites are serious about writing MS documents, just based on the fact that THREE of them choke on an extremely simple file created without using ANY of the undocumented features.
I guess what irritates me is just the extreme stupidity that goes into this. It's like, "we hate Microsoft so much that we're going to write this office suite, and just to make sure no one uses it, we'll make the Microsoft import filters completely suck! That'll show Microsoft!"
Re:Uh uhg ... (Score:2)
OO has put a lot of effort in filters, but it's not only a compatibility thing, it has to actually implement _EVERYTHING_ Word and Excel do as well as provide their own funcionalities as well as reverse engineer every damn change. It's not easy and it will never be perfect.
Try to create your spreadsheet in Excel (same spreadsheet) and if it STILL crashes OO please file a gub report. They are very responsive and want to help.
But it's be nice if you used CVS or something else than
Unified office format and filters (Score:1)
That in turn would allow cooperation between all of these projects on getting just one filter but get it right, thus avoiding unnecessary multiplication of efforts. In short, I hope this idea goes through, everybody (but M$) wins
protest to mandate open source purchases fizzles (Score:2)
So it appears this crazy cause [slashdot.org] to make software "free as in required by law" is not even popular among the open source faithful. Chalk one up for common sense!
--
Tim Maroney tim@maroney.org
Re:Question.... (Score:2)
Just a few meters away, Microsoft's booth was packed. Lots of people, were looking at the three products Microsoft was presenting there: WebMatrix, a 1.3 MB free ASP.NET IDE, WindowsCE with its shared source code and Windows Services for Unix 3.0. Everything was normal and smooth at their booth, lots of people interested or simply curious.
Re:Question.... (Score:1)
Just a few meters away, Microsoft's booth was packed. Lots of people, were looking at the three products Microsoft was presenting there: WebMatrix, a 1.3 MB free ASP.NET IDE, WindowsCE with its shared source code and Windows Services for Unix 3.0. Everything was normal and smooth at their booth, lots of people interested or simply curious.
That took me about four seconds...
Re:Question.... (Score:2)
Why would you sign up for something like this?
"Ok..we need two people to go to a linux convention"
"You're kidding, right?"
"Nope"
"We better get combat pay"
"Damn straight"
"Ok, let's go"
Just another peak into my perverse mind.
JoeLinux
How do you make a cat go "woof" ? Soak it in gasoline and throw a match at it.
Re:Question.... (Score:2)
No, you didn't. If you did, you wouldn't have asked, "Is this the convention that MS got a booth in?"
They had the technologies listed, but they didn't tell whether or not people were openly mocking the poor saps who were supposed to man the booths.
See? You still haven't read the article:
So sad... all that effort into trying to appear on-topic, and you still didn't manage to get first post. Better luck next time! But when you get caught, don't lie about having read the article.
Re:This is why linux is doomed to FAIL (Score:1, Interesting)
Industry standard Microsoft Word? Tell that to my mom who has problems opening up her Word documents from other people who use word. Its not even compatible with itself. This toy OS you speak of is about as industry standard as your are going to get. It is molded for compatibility around a 30 year old operating system. Try that with Windows, that kept breaking programs through each release, from Windows 286, 3.0, 3.11, 95, 98, NT, 2000, XP. Old unix programs never die, they just run on newer hardware.
Re:Typical insane linux zealot delusions (Score:1, Funny)
You live on the bleeding edge of excitment and apparently don't have to worry about compatibility.
A bit offtopic, but still in concept (Score:2)
"Here's a clue for you, buddy: if an article goes on for two straight
paragraphs about "32-bit applications" and "64-bit processors," it's got
the "geeky details." In spades.
I don't want the geeky details, and I certainly don't need them to see that
there was nothing that a REAL computer user would be REMOTELY interested
in presented at this convention."
I guess you're one of the happy readers of "Runs better, faster" type of
logos, maybe you should read some children web site, there is that kind of
readings you'd wish. Hope you're not expecting that mostly linux geek site
will go on your level.
Or on the other hand, it would be useful some kid, user, geek preference
in your info.
"And who are these other people? Oh, right, EVERYBODY. That sounds like
a standard to me"
But, doesn't it bother you that less and less people confirms to that EVERYBODY?
"Eazel sure did well.... (cough)"
WHat has Eazel to do with documents compatibility
"I can still run all my old DOS programs in Windows XP. But, hey, if I
ever find one that I can't run, that's the price of progress. I'd much rather
lose the occasional 20 year old program (why would I want to run software
from 1982?) than be stuck with some ridiculous OS that requires me to "recompile
my kernel" every hour."
????
Ok, I've bought my self notebook with XP PRO. There's only two windows apps
I'm using.
One goes way back into startings of my company. All my comapny papers are
inside. Guess what. It doesn't work under XP.
Second one is not so old it's a one year old program that I use to connect
to the bank (Same program that half of the country uses). Guess what, Doesn't
work under XP.
So, to hell with your progress. Here's why somebody would use a program like
that.
"And that's exactly why unix has been left behind -- along with the rest
of the 70's."
Considering maturity of your answers, 20 years before you were born
Re:A bit offtopic, but still in concept (Score:1)
inside. Guess what. It doesn't work under XP.
Is that an archive format, a word processor, or an e-mail program?
It sounds like either a custom-built proprietary system, or a long non-upgraded system from a major vender. If the former, what the hell are you using XP for? If it's the later, bite the bullet and upgrade.
Second one is not so old it's a one year old program that I use to connect
to the bank (Same program that half of the country uses). Guess what, Doesn't
work under XP.
Hmm... do you mean Quicken, Money, your web browswer, or that proprietary "bank" software some banks were peddling? Upgrade if you can, and if not, go to the bank and see what they reccommend.
You might also want to try compatability mode for the apps before you call them dead. Man, if only Unix had a "compatabilty" mode--but that would require a standard, wouldn't it? (j/k)
So, to hell with your progress. Here's why somebody would use a program like
that.
Flame away, flame away. Just trying to help a fellow geek.
Re:A bit offtopic, but still in concept (Score:2)
Bite the bullet?
No, not proprietary software, there's only two different softwares that here in our coutry are used to connect to the bank. Guess what, Quicken is not supported. And yes I contacted vendor, they said I should move to Win2000.
Compatibility mode???? Hope you had better luck than me. That thing never worked. And yes, I tryed that.
Why the hell, would I need compatibility mode. Everything is either GPL or it's vendor supported. Every piece of software I bought for Linux is vendor supported.
Help me? With what? Sorry, I didn't asked you for help. Reason I answered was irritation with you arrogance in previous posts.
Re:A bit offtopic, but still in concept (Score:2)
You expressed dismay and a problem. I attempted to offer help. We are both allready participants in a relatively open forum for discussion.
I am bound by my faith to attempt to help my fellow man. Many apologies if I have offended your sensibilities. (Although I do wonder what country you're in...)
My own experiences with Linux have been less than stellar, and I have encountered near-zero incompatability between any two versions of windows. I am actually quite surprised that a vendor was able to wrangle code so it would work on 2000 and not XP
Re:A bit offtopic, but still in concept (Score:2)
Ok, thanks for trying to do something I've already done.
But, 2 points.
1. My experience with Windows go far enough. From the beggining 'till now. My work still involves working with them. Linux just can't support some jobs (but less and less
2. My experience with Linux. Well after working on SGI and Sparc. I've left Unix. There was no valid (or cheap, take it or leave it, I was still student) platform (after I've left the job where I was working with them) until Linux became valid platform for my needs. Now I'm back on *nix and that's the real thing. Coding too
Fellow man? First step on the ground and post viable comments. That's the kind of people that I call fellow man (not trollers). Although I admit that your attitude has changed.
Spitting on the ground you don't own is not allowed. If you're incapable to set up Linux (what is well readable from your post), that's not a reason to post to the world. Ok, learn your magic and when your ground is stable to make the posts constructive enough.
From which country I am?
work on 2000 and not XP? any driver based software. Credit Card specific software (that involves bank software). Based on a change of a driver model. Try installing older version of Corel. It may put in danger your System folder. Based on the thinking that applications provide system libraries in system folder many setups override without a question, that puts in danger whole system.
I wonder one thing, how many friends have you asked for help with linux (the ones that know what to do) before you started to think the way you do. And what version, ususaly that means 5 or 6 redhat. The orld has changed since then.
Many apologies if I have offended your sensibilities? No thanks, but apologie accepted.
Re:A bit offtopic, but still in concept (Score:2)
But if you're not, you should probably notice that it started as major trolling. So if you've fallen into this thread in a wrong time, well it has been a mistake. Check whole thread and then you'll know how big
Oh, yes. I've just checked your info, and I'm almost sure you're the right person. You must enjoy in conversations like this. God forbid me, I enjoy them too. That's tipical either for life losers or people that are used to have the last word (guess what, I'm the second one).
"Not sure what version they're using"
God, you've had a great and intensive look over something so complex as OS. It's just as terrile as testing space shuttle by spell checking what it writes on the bumper sticker.
And...
My lack of faith has come from "using" Windows longtime
"I'm more worried about a good word processor. I looked into the OpenOffice windows client, and it simply doesn't meet my needs."
I agree, until MS Word can't make linked text frames, with tables that go trough few pages (with self maintained styled headers) and cross calculate beetwen them, and in the same time change graphs, pages overlayed with transparent pictures, oh yes and print to PDF. I agree, I don't need him. This wasn't begging for help, or dismaying a problem so I don't need an explanations. Second reason is that word processor is not what I need much (need other tools much more), but I need it in some manners very intensively
But since you're probably used to work in some different way, I won't persuade you to use it. Simply, I don't care what you're using.
Re:Typical insane linux zealot delusions (Score:2)
Awww... what's the matter? Couldn't get linux installed like all your l33t friends? Made you feel stupid didn't it? You thought you knew a lot about computers and it turns out you just know a lot about Microsoft products.
Step off, lightweight.
Re:This is why linux is doomed to FAIL (Score:1)
What bridge have you been living under? I wasn't aware that there was *another* video game, exclusive to Windows, called Quake 3 [tuxgames.com]? Fancy that!
If you're going to attempt to insult us Linux using folk, you might as well do us all a favour and do it right.
-Colin
Re:Raster (Score:1)
Re:damn it! (Score:2)
That's what they said. You probably forgot to configure the "Slashdot DTD" or Schema for preprocessing slashdot news