File: InkInfo.plist

package info (click to toggle)
gnustep-examples 1%3A1.2.0-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,988 kB
  • ctags: 268
  • sloc: objc: 14,381; makefile: 63; sh: 19
file content (40 lines) | stat: -rw-r--r-- 1,326 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  ApplicationName = "Ink";
  ApplicationDescription = "An Example of how to use NSTextView";
  ApplicationRelease = "0.1";
  Authors = ("Fred Kiefer <fredkiefer@gmx.de>");
  Copyright = "Copyright (c) 2000 Fred Kiefer <fredkiefer@gmx.de>";
  CopyrightDescription = "This program is released under the GNU General Public License"; 
  NSIcon = Ink_app;
  NSTypes = (
        {
             NSName = "rtf";
             NSHumanReadableName = "RTF Document";
             NSUnixExtensions = ("rtf");
             NSDOSExtensions = ("rtf");
	           NSMIMETypes = ("text/rtf");
	           NSIcon = FileIcon_rtf;
             NSRole = Editor;
             NSDocumentClass = Document;
        },
        {
             NSName = "rtfd";
             NSHumanReadableName = "RTFD Document";
             NSUnixExtensions = ("rtfd");
             NSDOSExtensions = ("rtfd");
	           NSIcon = FileIcon_rtf;
             NSRole = Editor;
             NSDocumentClass = Document;
        },
        {
             NSName = "text";
             NSHumanReadableName = "Text Document";
             NSUnixExtensions = ("txt");
             NSDOSExtensions = ("txt");
	           NSMIMETypes = ("text/plain");
             NSIcon = FileIcon_txt;
             NSRole = Editor;
             NSDocumentClass = Document;
        }
  );
}