File: plugin.xml.in

package info (click to toggle)
gnumeric 1.12.44-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 112,672 kB
  • sloc: ansic: 293,830; xml: 56,297; perl: 6,093; sh: 4,527; makefile: 2,940; yacc: 1,341; python: 384
file content (116 lines) | stat: -rw-r--r-- 4,322 bytes parent folder | download | duplicates (3)
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?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&#8482; (*.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&#8482; 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&#8482; 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&#8482; 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&#8482; 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>ECMA 376 / Office Open XML [MS Excel&#8482; 2007/2010] (*.xlsx)</_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"
			 mime_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
			<information>
				<_description> ECMA 376 1st edition (2006); [MS Excel&#8482; 2007]</_description>
			</information>
		</service>

		<service type="file_saver" id="xlsx2" file_extension="xlsx"
		         format_level="auto" overwrite_files="TRUE"
			 mime_type="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
			<information>
				<_description>ISO/IEC 29500:2008 &amp; ECMA 376 2nd edition (2008); [MS Excel&#8482; 2010]</_description>
			</information>
		</service>
		<service type="file_opener" id="excel_enc" priority="200" probe="FALSE" 
			 encoding_dependent="TRUE">
			<information>
				<_description>MS Excel&#8482; (*.xls) requiring encoding specification</_description>
			</information>
		</service>
	</services>
</plugin>