File: plugin.xml.in

package info (click to toggle)
gnumeric 1.10.8-1squeeze5
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 90,968 kB
  • ctags: 23,303
  • sloc: ansic: 248,235; xml: 51,894; sh: 10,491; makefile: 2,822; perl: 2,466; yacc: 1,272; python: 205
file content (101 lines) | stat: -rw-r--r-- 3,548 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="Gnumeric_Excel">
	<information>
		<_name>MS Excel (tm)</_name>
		<_description>Imports/Exports MS Excel (tm) files</_description>
	</information>
	<loader type="Gnumeric_Builtin:module">
		<attribute name="module_file" value="excel"/>
	</loader>
	<services>
		<!-- IMPORT binary Office 2 -> 2003 -->
		<service type="file_opener" id="excel" priority="100" probe="TRUE">
			<information>
				<_description>MS Excel (tm) (*.xls)</_description>
			</information>
			<suffixes>
				<suffix>xls</suffix>
				<suffix>xlw</suffix>
				<suffix>xlt</suffix>
			</suffixes>
			<mime-types>
				<mime-type>application/vnd.ms-excel</mime-type>
				<mime-type>application/excel</mime-type>
				<mime-type>application/msexcel</mime-type>
				<mime-type>application/x-excel</mime-type>
				<mime-type>application/x-ms-excel</mime-type>
				<mime-type>application/x-msexcel</mime-type>
				<mime-type>application/x-xls</mime-type>
				<mime-type>application/xls</mime-type>
				<mime-type>application/x-dos_ms_excel</mime-type>
				<mime-type>zz-application/zz-winassoc-xls</mime-type>
			</mime-types>
		</service>

		<service type="file_saver" id="excel_biff8" file_extension="xls"
		         format_level="auto" overwrite_files="TRUE"
			 default_saver_priority="1"
			 mime_type="application/vnd.ms-excel">
			     <!-- change default_saver_priority="100"  to make
			     this the default.  For now use "1" to give it
			     higher priority than the other xls savers -->
			<information>
				<_description>MS Excel (tm) 97/2000/XP</_description>
			</information>
		</service>
		<service type="file_saver" id="excel_biff7" file_extension="xls"
		         format_level="auto" overwrite_files="TRUE"
			 mime_type="application/vnd.ms-excel">
			<information>
				<_description>MS Excel (tm) 5.0/95</_description>
			</information>
		</service>
		<service type="file_saver" id="excel_dsf" file_extension="xls"
		         format_level="auto" overwrite_files="TRUE"
			 mime_type="application/vnd.ms-excel">
			<information>
				<_description>MS Excel (tm) 97/2000/XP &amp; 5.0/95</_description>
			</information>
		</service>

		<!-- IMPORT partial format spreadsheetml from 2003  -->
		<service type="file_opener" id="excel_xml" priority="1" probe="TRUE">
			<information>
				<_description>MS Excel (tm) 2003 SpreadsheetML</_description>
			</information>
			<suffixes>
				<suffix>xml</suffix>
			</suffixes>
		</service>

		<!-- Office Open XML packages from Office 2007 -->
		<service type="file_opener" id="xlsx" priority="100" probe="TRUE">
			<information>
				<_description>MS Excel (tm) 2007</_description>
			</information>
			<suffixes>
				<suffix>xlsx</suffix>
				<suffix>xltx</suffix>
				<suffix>xlsb</suffix>
				<suffix>xlsm</suffix>
				<suffix>xltm</suffix>
			</suffixes>
<!--
			<mime-types>
				<mime-type>application/vnd.openxmlformats-officedocument.spreadsheetml.sheet</mime-type>
				<mime-type>application/vnd.openxmlformats-officedocument.spreadsheetml.template</mime-type>
				<mime-type>application/vnd.ms-excel.sheet.binary.macroEnabled.12</mime-type>
				<mime-type>application/vnd.ms-excel.sheet.macroEnabled.12</mime-type>
				<mime-type>application/vnd.ms-excel.template.macroEnabled.12</mime-type>
			<mime-types>
  -->
		</service>

		<service type="file_saver" id="xlsx" file_extension="xlsx"
		         format_level="auto" overwrite_files="TRUE">
			<information>
				<_description>MS Excel (tm) 2007</_description>
			</information>
		</service>
	</services>
</plugin>