Ask a Question related to UNIX Programming, Design and Development.
-
Marc Rochkind #1
Re: Is This an "rtf" or "csv" File?
On Thu, 07 Aug 2003 02:42:21 GMT, Terry <a@b.c> wrote:
How can it be both?>
> My application creates a file that is both an rtf (Rich Text Format) file
> and a csv (Comma Separated Values) file.
Will tell you later...>
> What should the file extension be? .rtf or .csv?
The Rockies won/lost record may be the best in years, but they've still got>
> Any opinions will be appreciated.
a long way to go.
You're welcome!>
> Thank you.
--Marc
Marc Rochkind Guest
-
Proj cannot run on LCDS 2.6 ES due to "Unable to resolveresource bundle "datamanagement" for locale "en_US"
hi, all, We have developped an application on Flex Build 3 (run successfully), but failed when we try to deploy it on Tomcat with LCDS 2.5 ES... -
how to get a file from the "Testing Server" / "remote view"
if I want to get a particular file from the "Testing Sever" or "remote view" in my extension, how can i do so? Thanks a lot!!! -
CFINPUT type="radio" w/ "value" requires "label"
On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'... -
"Start" "Program" "Menu" list is empty
For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your... -
How to make the "search text" feature work with non "txt" file
On Fri, 27 Jun 2003 07:19:23 -0700, "Juergen" <anhorn@bktel.com> wrote: See MVP Doug Knox' comments and fix here:... -
Rich Teer #2
Re: Is This an "rtf" or "csv" File?
On Thu, 7 Aug 2003, Terry wrote:
How can it be both?> My application creates a file that is both an rtf (Rich Text Format) file
> and a csv (Comma Separated Values) file.
It doesn't matter. UNIX doesn't do silly things like> What should the file extension be? .rtf or .csv?
interpret the meanings of file extensions (unlike certain
poor excuses for operating systems that come from Redmond).
You can call them .myfunkyformat for all UNIX cares.
--
Rich Teer, SCNA, SCSA
President,
Rite Online Inc.
Voice: +1 (250) 979-1638
URL: [url]http://www.rite-online.net[/url]
Rich Teer Guest
-
Marc Rochkind #3
Re: Is This an "rtf" or "csv" File?
On Thu, 07 Aug 2003 03:32:58 GMT, Rich Teer <rich.teer@rite-group.com>
wrote:
[snip]
If by "UNIX" you mean the kernel, I suppose that's right. But, there's lots>
> It doesn't matter. UNIX doesn't do silly things like
> interpret the meanings of file extensions (unlike certain
> poor excuses for operating systems that come from Redmond).
> You can call them .myfunkyformat for all UNIX cares.
>
of stuff above the kernel level that comes up a lot is this newsgroup. Like
compilers, web servers, makefiles, etc., all of which interpret the part of
the file name after the dot.
Suffixes (.c, .o, .y, .l, etc.) have been in "UNIX" since the earliest
days...
--Marc
Marc Rochkind Guest
-
those who know me have no need of my name #4
Re: Is This an "rtf" or "csv" File?
in comp.unix.programmer i read:
i do not believe this is possible, but ...>My application creates a file that is both an rtf (Rich Text Format) file
>and a csv (Comma Separated Values) file.
why does it matter? this is unix, we don't need no stinking extensions.>What should the file extension be? .rtf or .csv?
(not that file is likely to know what to make of it.)
--
a signature
those who know me have no need of my name Guest
-
Marc Rochkind #5
Re: Is This an "rtf" or "csv" File?
On 07 Aug 2003 05:26:34 GMT, those who know me have no need of my name
<not-a-real-address@usa.net> wrote:
[snip]
>
> why does it matter? this is unix, we don't need no stinking extensions.
> (not that file is likely to know what to make of it.)
>
I'm baffled by this comment, as well as a similar one from Rich Teer.
"Extensions" have been heavily used in UNIX for over 30 years!
--Marc
Marc Rochkind Guest
-
Måns Rullgård #6
Re: Is This an "rtf" or "csv" File?
Marc Rochkind <rochkind@basepath.com> writes:
True, but they are not used in the same way as in mswindows. Imagine>>> why does it matter? this is unix, we don't need no stinking extensions.
>> (not that file is likely to know what to make of it.)
>>
>
> I'm baffled by this comment, as well as a similar one from Rich
> Teer. "Extensions" have been heavily used in UNIX for over 30 years!
the confusion that resulted when someone at my university posted some
FrameMaker documents with filenames ending in .doc.
--
Måns Rullgård
[email]mru@users.sf.net[/email]
Måns Rullgård Guest
-
Marc Rochkind #7
Re: Is This an "rtf" or "csv" File?
On Thu, 07 Aug 2003 17:28:31 +0200, Måns Rullgård
<mru@users.sourceforge.net> wrote:
[snip]
>
> True, but they are not used in the same way as in mswindows. Imagine
> the confusion that resulted when someone at my university posted some
> FrameMaker documents with filenames ending in .doc.
>
I still don't follow! UNIX systems have upper-level application
environments (KDE, Mac OS X) that treat suffixes (or extensions) EXACTLY as
in Windows. For example, in KDE, if you double-click on a file, it attempts
to open it based on its suffix.
The confusion you refer to happens in UNIX, too.
(The Macintosh does it right. Every file can have a resource fork that is a
collection of attributes. UNIX does it wrong, and Windows copied the UNIX
approach!)
--Marc
Marc Rochkind Guest
-
Terry #8
Re: Is This an "rtf" or "csv" File?
Thanks Erik,
Now, what if it is a unicode text file containing comma separated values?
Would you argue that it should be .utx?
Thanks.
on 8/6/03 9:59 PM, Erik Max Francis wrote:
> Terry wrote:
>>>> You mean it can't be both? Its a csv file who's text encoding is rtf.
>> Put
>> another way, its an rtf file that contains comma separated values.
> In that case it's an .rtf file. If you wanted to be clever, you could
> call it a .csv.rtf.
>
> --
> Erik Max Francis && [email]max@alcyone.com[/email] && [url]http://www.alcyone.com/max/[/url]
> __ San Jose, CA, USA && 37 20 N 121 53 W && &tSftDotIotE
> / \ It's a man's world, and you men can have it.
> \__/ Katherine Anne PorterTerry Guest
-
Erik Max Francis #9
Re: Is This an "rtf" or "csv" File?
Terry wrote:
Probably .csv.> Now, what if it is a unicode text file containing comma separated
> values?
> Would you argue that it should be .utx?
Remember that filename extensions mean much less in Unix systems than
they do in other operating systems, like DOS/Windows. In Unix they're
more for convenience for _you_, and applications you use; they mean
nothing significant to the operating system itself.
Consequently, there's no special meaning to a Unix file ending in .txt
other than that it's probably a text file. Whether it's ASCII, Latin-1,
UTF-8, UTF-16, etc. is completely up to you and whatever applications
you want to use with it. Most applications are far more lenient with
file extensions on Unix than on, say, Windows, simply because they have
much less significant internal meaning on Unix. (Yes, of course they're
used on Unix, but they are not _mandated_ in the same way they are in
Windows.)
--
Erik Max Francis && [email]max@alcyone.com[/email] && [url]http://www.alcyone.com/max/[/url]
__ San Jose, CA, USA && 37 20 N 121 53 W && &tSftDotIotE
/ \ All I know is / I need you in my life
\__/ India Arie
Erik Max Francis Guest
-
Rich Teer #10
Re: Is This an "rtf" or "csv" File?
On Thu, 7 Aug 2003, Erik Max Francis wrote:
I think the OP should just use the generic ".dat" and be>> > values?
> > Would you argue that it should be .utx?
> Probably .csv.
done with it. :-)
--
Rich Teer, SCNA, SCSA
President,
Rite Online Inc.
Voice: +1 (250) 979-1638
URL: [url]http://www.rite-online.net[/url]
Rich Teer Guest
-
Russell Shaw #11
Re: Is This an "rtf" or "csv" File?
Marc Rochkind wrote:
These are only *applications*, *not* the OS.> On Thu, 07 Aug 2003 17:28:31 +0200, Måns Rullgård
> <mru@users.sourceforge.net> wrote:
>
> [snip]> I still don't follow! UNIX systems have upper-level application>>
>> True, but they are not used in the same way as in mswindows. Imagine
>> the confusion that resulted when someone at my university posted some
>> FrameMaker documents with filenames ending in .doc.
>>
> environments (KDE, Mac OS X)
No. The concept of extension interpretation is more tightly bound> that treat suffixes (or extensions) EXACTLY
> as in Windows.
to the operating system in windoze.
> For example, in KDE, if you double-click on a file, it
> attempts to open it based on its suffix.Russell Shaw Guest



Reply With Quote

