Slashdot Mirror


RMS: Putting an End to Word Attachments

sombragris writes "I've spotted in NewsForge a very interesting editorial by none other than RMS himself on the subject of getting rid of those annoying MS Word attachment that people send. The essay is worth thinking and doubtless worth implementing." I've found that KWord and Abiword both did a fine job of reading Word files - it's the being able to Save As Word where things get messy.

7 of 1,022 comments (clear)

  1. Save a HTML by Godeke · · Score: 4, Informative

    When I heard that Word would support saving to HTML I was very happy. Then I saw the HTML that was output and was depressed again. Dreamweaver does have a neat feature - "clean up Word HTML" which makes them a little more acceptable, but it is a nightmare to edit in HTML anything that was generated in Word.

    It's a shame, as XHTML and CSS allows for very clean separation of content from presentation... maybe someday they will hit critical mass and it will be the accepted form of "rich" content presentation. But for now I have to slog through RTF, Word, Powerpoint (ugh) and Excel documents that are not converted cleanly to the office suites on Linux.

    --
    Sig under construction since 1998.
  2. Re:PDF? by BacOs · · Score: 4, Informative

    No - there're several specification documents freely available from Adobe:

    Scroll down to the File Format Specification section.

  3. RTF file with .doc extension by mbrubeck · · Score: 5, Informative

    In fact, I believe that if you rename an RTF file so that it has the .DOC extension, it will appear to Windows users to be a normal Word document. Opening it will launch Word, which handles the file without complaining. This can be a useful trick for sending to recipients who require .doc files. You shouldn't abuse it too much, because it will inconvenience non-Word users who can deal better with RTF than DOC.

  4. Resume in Word format by medcalf · · Score: 4, Informative

    I have this problem as well. I explain to the person that they can use Word's File->Open Web Page menu option, enter the URL for my resume, and it will be opened as a Word document. (I have my resume formatted completely into a table, which makes it look right on Word as well as the web.)

    If they are not willing to go that small distance for me, there is generally not going to be a good working relationship anyway.

    --
    -- Two men say they're Jesus. One of them must be wrong. - Dire Straits
  5. This actually worked... by Toddarooski · · Score: 5, Informative

    At my old job, our engineering department successfully lobbied for people to stop sending documents as Word attachments.

    Their explanation was a little simpler, which was basically, "Hi. Those of us with Unix machines don't have Word installed, so it's a major pain in the ass for us to read that document you just attached. Can you send it in a different format?" Personally, I wouldn't recommend using any of the examples in the article, as they all sound pretty self-righteous and would probably make an average recipient more likely to walk over and give the writer a massive wedgie than to change their email attachment behavior.

    The drawback, of course, is that the people who were sending Word attachments in the first place were still composing them in MS Word. And so you've either got to deal with the huge mess that is Word's "Save as HTML" or you lose all the pretty formatting (which does sometimes include important diagrams or tables) when it's saved as text. But I suppose it's a moral victory, if nothing else...

    --

    "Do you expect me to talk?" "No, Mr. Bond. I expect you to die!"

  6. Bah, convert it to PDF by Mr_Perl · · Score: 5, Informative

    Here's a perl kludge I use to convert doc on the fly into PDF and open in acrobat from kmail:

    #!/usr/bin/perl

    my $fn=shift;
    my $or=$fn;
    $fn=~s/.*\/(.*)\.doc$/$1/o;
    $fn=~s/ /_/g;
    $or =~ s/ /\\ /g;
    `antiword -p letter $or | ps2pdf - > $HOME/tmp/$fn.pdf `;

    exec("/usr/bin/acroread $HOME/tmp/$fn.pdf");

    It does require antiword which you can obtain from freshmeat.

    --

    My poetry site welcomes the unusual.
  7. RMS is incorrect by rabtech · · Score: 5, Informative

    "And because Microsoft changes the Word file format with each release, its users are locked into a system that compels them to buy each upgrade whether they want a change or not. "

    This statement is incorrect... Microsoft redefined the file format with Word 97 to make it extensible. SO the basic text, formatting, images, etc are all compatible between Word 97, 2000, and XP. I can save a Word file in WordXP and open it in Word 97 without any sort of conversion or downgrading... its just that the "extensions" not supported by Word 97 won't be displayed or might be displayed incorrectly.

    The differences between 97 and 2000 are especially small... we have about 85% of our users on Office 97 and they exchange documents both ways with our other users of Office 2000. Of course they don't do anything special with fileformats (remember: these users think their keyboard can 'get a virus') -- the Word 97 users can open the Word 2000 files without conversion.

    --
    Natural != (nontoxic || beneficial)