gsf 3.0.9-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +55 -0
  3. data/lib/gsf/input.rb +26 -0
  4. data/lib/gsf/loader.rb +57 -0
  5. data/lib/gsf.rb +53 -0
  6. data/test/gsf-test-utils.rb +22 -0
  7. data/test/run-test.rb +46 -0
  8. data/test/test-input-stdio.rb +25 -0
  9. data/vendor/local/bin/gsf-office-thumbnailer.exe +0 -0
  10. data/vendor/local/bin/gsf-vba-dump.exe +0 -0
  11. data/vendor/local/bin/gsf.exe +0 -0
  12. data/vendor/local/bin/libgsf-1-114.dll +0 -0
  13. data/vendor/local/bin/libgsf-win32-1-114.dll +0 -0
  14. data/vendor/local/include/libgsf-1/gsf/gsf-blob.h +39 -0
  15. data/vendor/local/include/libgsf-1/gsf/gsf-clip-data.h +72 -0
  16. data/vendor/local/include/libgsf-1/gsf/gsf-doc-meta-data.h +66 -0
  17. data/vendor/local/include/libgsf-1/gsf/gsf-docprop-vector.h +47 -0
  18. data/vendor/local/include/libgsf-1/gsf/gsf-fwd.h +121 -0
  19. data/vendor/local/include/libgsf-1/gsf/gsf-impl-utils.h +156 -0
  20. data/vendor/local/include/libgsf-1/gsf/gsf-infile-impl.h +50 -0
  21. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msole.h +45 -0
  22. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msvba.h +49 -0
  23. data/vendor/local/include/libgsf-1/gsf/gsf-infile-stdio.h +43 -0
  24. data/vendor/local/include/libgsf-1/gsf/gsf-infile-tar.h +40 -0
  25. data/vendor/local/include/libgsf-1/gsf/gsf-infile-zip.h +43 -0
  26. data/vendor/local/include/libgsf-1/gsf/gsf-infile.h +46 -0
  27. data/vendor/local/include/libgsf-1/gsf/gsf-input-bzip.h +34 -0
  28. data/vendor/local/include/libgsf-1/gsf/gsf-input-gio.h +44 -0
  29. data/vendor/local/include/libgsf-1/gsf/gsf-input-gzip.h +43 -0
  30. data/vendor/local/include/libgsf-1/gsf/gsf-input-http.h +45 -0
  31. data/vendor/local/include/libgsf-1/gsf/gsf-input-impl.h +68 -0
  32. data/vendor/local/include/libgsf-1/gsf/gsf-input-iochannel.h +35 -0
  33. data/vendor/local/include/libgsf-1/gsf/gsf-input-memory.h +46 -0
  34. data/vendor/local/include/libgsf-1/gsf/gsf-input-proxy.h +46 -0
  35. data/vendor/local/include/libgsf-1/gsf/gsf-input-stdio.h +48 -0
  36. data/vendor/local/include/libgsf-1/gsf/gsf-input-textline.h +46 -0
  37. data/vendor/local/include/libgsf-1/gsf/gsf-input.h +69 -0
  38. data/vendor/local/include/libgsf-1/gsf/gsf-libxml.h +225 -0
  39. data/vendor/local/include/libgsf-1/gsf/gsf-meta-names.h +482 -0
  40. data/vendor/local/include/libgsf-1/gsf/gsf-msole-utils.h +70 -0
  41. data/vendor/local/include/libgsf-1/gsf/gsf-open-pkg-utils.h +95 -0
  42. data/vendor/local/include/libgsf-1/gsf/gsf-opendoc-utils.h +162 -0
  43. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-impl.h +46 -0
  44. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-msole.h +47 -0
  45. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-stdio.h +49 -0
  46. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-zip.h +61 -0
  47. data/vendor/local/include/libgsf-1/gsf/gsf-outfile.h +49 -0
  48. data/vendor/local/include/libgsf-1/gsf/gsf-output-bzip.h +43 -0
  49. data/vendor/local/include/libgsf-1/gsf/gsf-output-csv.h +84 -0
  50. data/vendor/local/include/libgsf-1/gsf/gsf-output-gio.h +44 -0
  51. data/vendor/local/include/libgsf-1/gsf/gsf-output-gzip.h +43 -0
  52. data/vendor/local/include/libgsf-1/gsf/gsf-output-iconv.h +47 -0
  53. data/vendor/local/include/libgsf-1/gsf/gsf-output-impl.h +37 -0
  54. data/vendor/local/include/libgsf-1/gsf/gsf-output-iochannel.h +43 -0
  55. data/vendor/local/include/libgsf-1/gsf/gsf-output-memory.h +44 -0
  56. data/vendor/local/include/libgsf-1/gsf/gsf-output-stdio.h +52 -0
  57. data/vendor/local/include/libgsf-1/gsf/gsf-output.h +99 -0
  58. data/vendor/local/include/libgsf-1/gsf/gsf-shared-memory.h +51 -0
  59. data/vendor/local/include/libgsf-1/gsf/gsf-structured-blob.h +45 -0
  60. data/vendor/local/include/libgsf-1/gsf/gsf-timestamp.h +70 -0
  61. data/vendor/local/include/libgsf-1/gsf/gsf-utils.h +340 -0
  62. data/vendor/local/include/libgsf-1/gsf/gsf.h +98 -0
  63. data/vendor/local/include/libgsf-1/gsf-win32/gsf-input-win32.h +41 -0
  64. data/vendor/local/include/libgsf-1/gsf-win32/gsf-output-win32.h +41 -0
  65. data/vendor/local/lib/libgsf-1.a +0 -0
  66. data/vendor/local/lib/libgsf-1.dll.a +0 -0
  67. data/vendor/local/lib/libgsf-1.la +41 -0
  68. data/vendor/local/lib/libgsf-win32-1.a +0 -0
  69. data/vendor/local/lib/libgsf-win32-1.dll.a +0 -0
  70. data/vendor/local/lib/libgsf-win32-1.la +41 -0
  71. data/vendor/local/lib/pkgconfig/libgsf-1.pc +11 -0
  72. data/vendor/local/lib/pkgconfig/libgsf-win32-1.pc +11 -0
  73. data/vendor/local/share/gtk-doc/html/gsf/annotation-glossary.html +56 -0
  74. data/vendor/local/share/gtk-doc/html/gsf/api.html +107 -0
  75. data/vendor/local/share/gtk-doc/html/gsf/dependencies.html +109 -0
  76. data/vendor/local/share/gtk-doc/html/gsf/gsf-Compression.html +369 -0
  77. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIO.html +307 -0
  78. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIOChannel.html +119 -0
  79. data/vendor/local/share/gtk-doc/html/gsf/gsf-Infile-reading-structed-files.html +397 -0
  80. data/vendor/local/share/gtk-doc/html/gsf/gsf-Input-from-unstructured-files.html +887 -0
  81. data/vendor/local/share/gtk-doc/html/gsf/gsf-MS-OLE2.html +894 -0
  82. data/vendor/local/share/gtk-doc/html/gsf/gsf-OASIS-Open-Document.html +398 -0
  83. data/vendor/local/share/gtk-doc/html/gsf/gsf-Outfile-writing-structed-files.html +237 -0
  84. data/vendor/local/share/gtk-doc/html/gsf/gsf-Output-to-unstructured-files.html +830 -0
  85. data/vendor/local/share/gtk-doc/html/gsf/gsf-Reading-and-Writing-from-local-files-and-directories.html +593 -0
  86. data/vendor/local/share/gtk-doc/html/gsf/gsf-Text.html +523 -0
  87. data/vendor/local/share/gtk-doc/html/gsf/gsf-XML-and-libxml.html +2032 -0
  88. data/vendor/local/share/gtk-doc/html/gsf/gsf-Zip.html +338 -0
  89. data/vendor/local/share/gtk-doc/html/gsf/gsf-blobs.html +56 -0
  90. data/vendor/local/share/gtk-doc/html/gsf/gsf-clip-data.html +444 -0
  91. data/vendor/local/share/gtk-doc/html/gsf/gsf-index.html +875 -0
  92. data/vendor/local/share/gtk-doc/html/gsf/gsf-memory.html +332 -0
  93. data/vendor/local/share/gtk-doc/html/gsf/gsf-metadata.html +1762 -0
  94. data/vendor/local/share/gtk-doc/html/gsf/gsf-users.html +73 -0
  95. data/vendor/local/share/gtk-doc/html/gsf/gsf-utils.html +2503 -0
  96. data/vendor/local/share/gtk-doc/html/gsf/gsf.devhelp2 +440 -0
  97. data/vendor/local/share/gtk-doc/html/gsf/history.html +45 -0
  98. data/vendor/local/share/gtk-doc/html/gsf/home.png +0 -0
  99. data/vendor/local/share/gtk-doc/html/gsf/index.html +98 -0
  100. data/vendor/local/share/gtk-doc/html/gsf/index.sgml +572 -0
  101. data/vendor/local/share/gtk-doc/html/gsf/intro.html +39 -0
  102. data/vendor/local/share/gtk-doc/html/gsf/io.html +38 -0
  103. data/vendor/local/share/gtk-doc/html/gsf/left-insensitive.png +0 -0
  104. data/vendor/local/share/gtk-doc/html/gsf/left.png +0 -0
  105. data/vendor/local/share/gtk-doc/html/gsf/misc.html +33 -0
  106. data/vendor/local/share/gtk-doc/html/gsf/parsers.html +59 -0
  107. data/vendor/local/share/gtk-doc/html/gsf/right-insensitive.png +0 -0
  108. data/vendor/local/share/gtk-doc/html/gsf/right.png +0 -0
  109. data/vendor/local/share/gtk-doc/html/gsf/sources.html +50 -0
  110. data/vendor/local/share/gtk-doc/html/gsf/style.css +461 -0
  111. data/vendor/local/share/gtk-doc/html/gsf/up-insensitive.png +0 -0
  112. data/vendor/local/share/gtk-doc/html/gsf/up.png +0 -0
  113. data/vendor/local/share/license/libgsf/AUTHORS +3 -0
  114. data/vendor/local/share/license/libgsf/COPYING +340 -0
  115. data/vendor/local/share/license/libgsf/COPYING.LIB +504 -0
  116. data/vendor/local/share/locale/as/LC_MESSAGES/libgsf.mo +0 -0
  117. data/vendor/local/share/locale/bs/LC_MESSAGES/libgsf.mo +0 -0
  118. data/vendor/local/share/locale/ca/LC_MESSAGES/libgsf.mo +0 -0
  119. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/libgsf.mo +0 -0
  120. data/vendor/local/share/locale/cs/LC_MESSAGES/libgsf.mo +0 -0
  121. data/vendor/local/share/locale/da/LC_MESSAGES/libgsf.mo +0 -0
  122. data/vendor/local/share/locale/de/LC_MESSAGES/libgsf.mo +0 -0
  123. data/vendor/local/share/locale/el/LC_MESSAGES/libgsf.mo +0 -0
  124. data/vendor/local/share/locale/en_GB/LC_MESSAGES/libgsf.mo +0 -0
  125. data/vendor/local/share/locale/eo/LC_MESSAGES/libgsf.mo +0 -0
  126. data/vendor/local/share/locale/es/LC_MESSAGES/libgsf.mo +0 -0
  127. data/vendor/local/share/locale/eu/LC_MESSAGES/libgsf.mo +0 -0
  128. data/vendor/local/share/locale/fi/LC_MESSAGES/libgsf.mo +0 -0
  129. data/vendor/local/share/locale/fr/LC_MESSAGES/libgsf.mo +0 -0
  130. data/vendor/local/share/locale/gl/LC_MESSAGES/libgsf.mo +0 -0
  131. data/vendor/local/share/locale/he/LC_MESSAGES/libgsf.mo +0 -0
  132. data/vendor/local/share/locale/hu/LC_MESSAGES/libgsf.mo +0 -0
  133. data/vendor/local/share/locale/id/LC_MESSAGES/libgsf.mo +0 -0
  134. data/vendor/local/share/locale/it/LC_MESSAGES/libgsf.mo +0 -0
  135. data/vendor/local/share/locale/ja/LC_MESSAGES/libgsf.mo +0 -0
  136. data/vendor/local/share/locale/ko/LC_MESSAGES/libgsf.mo +0 -0
  137. data/vendor/local/share/locale/lt/LC_MESSAGES/libgsf.mo +0 -0
  138. data/vendor/local/share/locale/lv/LC_MESSAGES/libgsf.mo +0 -0
  139. data/vendor/local/share/locale/ml/LC_MESSAGES/libgsf.mo +0 -0
  140. data/vendor/local/share/locale/nb/LC_MESSAGES/libgsf.mo +0 -0
  141. data/vendor/local/share/locale/nn/LC_MESSAGES/libgsf.mo +0 -0
  142. data/vendor/local/share/locale/oc/LC_MESSAGES/libgsf.mo +0 -0
  143. data/vendor/local/share/locale/pa/LC_MESSAGES/libgsf.mo +0 -0
  144. data/vendor/local/share/locale/pl/LC_MESSAGES/libgsf.mo +0 -0
  145. data/vendor/local/share/locale/pt/LC_MESSAGES/libgsf.mo +0 -0
  146. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/libgsf.mo +0 -0
  147. data/vendor/local/share/locale/ro/LC_MESSAGES/libgsf.mo +0 -0
  148. data/vendor/local/share/locale/ru/LC_MESSAGES/libgsf.mo +0 -0
  149. data/vendor/local/share/locale/sk/LC_MESSAGES/libgsf.mo +0 -0
  150. data/vendor/local/share/locale/sl/LC_MESSAGES/libgsf.mo +0 -0
  151. data/vendor/local/share/locale/sr/LC_MESSAGES/libgsf.mo +0 -0
  152. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/libgsf.mo +0 -0
  153. data/vendor/local/share/locale/sv/LC_MESSAGES/libgsf.mo +0 -0
  154. data/vendor/local/share/locale/ta/LC_MESSAGES/libgsf.mo +0 -0
  155. data/vendor/local/share/locale/tg/LC_MESSAGES/libgsf.mo +0 -0
  156. data/vendor/local/share/locale/th/LC_MESSAGES/libgsf.mo +0 -0
  157. data/vendor/local/share/locale/tr/LC_MESSAGES/libgsf.mo +0 -0
  158. data/vendor/local/share/locale/uk/LC_MESSAGES/libgsf.mo +0 -0
  159. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/libgsf.mo +0 -0
  160. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/libgsf.mo +0 -0
  161. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/libgsf.mo +0 -0
  162. data/vendor/local/share/man/man1/gsf-office-thumbnailer.1 +71 -0
  163. data/vendor/local/share/man/man1/gsf-vba-dump.1 +61 -0
  164. data/vendor/local/share/man/man1/gsf.1 +91 -0
  165. data/vendor/local/share/thumbnailers/gsf-office.thumbnailer +4 -0
  166. metadata +235 -0
@@ -0,0 +1,482 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-meta-names.h: a list of gsf-meta-names to "generically" represent
4
+ * all diversly available implementation-specific
5
+ * meta-names.
6
+ *
7
+ * Author: Veerapuram Varadhan (vvaradhan@novell.com)
8
+ * Jody Goldberg (jody@gnome.org)
9
+ *
10
+ * Copyright (C) 2004-2006 Novell, Inc
11
+ *
12
+ * This program is free software; you can redistribute it and/or
13
+ * modify it under the terms of version 2.1 of the GNU Lesser General Public
14
+ * License as published by the Free Software Foundation.
15
+ *
16
+ * This program is distributed in the hope that it will be useful,
17
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
18
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
+ * GNU General Public License for more details.
20
+ *
21
+ * You should have received a copy of the GNU Lesser General Public License
22
+ * along with this program; if not, write to the Free Software
23
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
24
+ * USA
25
+ */
26
+ #ifndef GSF_META_NAMES_H
27
+ #define GSF_META_NAMES_H
28
+
29
+ /* The namespace follow this classification:
30
+ * "dc:" - Dublin Core tags
31
+ * "gsf:" - Gnumeric only tags
32
+ * "meta:" - OpenDocument tags shared with Gnumeric
33
+ * "msole:" - OLE tags
34
+ */
35
+
36
+ /****** Namespace - dc: ******/
37
+
38
+ /**
39
+ * GSF_META_NAME_CREATOR:
40
+ *
41
+ * (String) An entity primarily responsible for making the content of the
42
+ * resource typically a person, organization, or service.
43
+ *
44
+ * 1.14.0 Moved from "gsf" to "dc".
45
+ */
46
+ #define GSF_META_NAME_CREATOR "dc:creator"
47
+
48
+ /**
49
+ * GSF_META_NAME_DATE_MODIFIED:
50
+ *
51
+ * (GsfTimestamp) The last time this document was saved.
52
+ *
53
+ * 1.14.0 Moved from dc:date-modified to dc:date.
54
+ */
55
+ #define GSF_META_NAME_DATE_MODIFIED "dc:date"
56
+
57
+ /**
58
+ * GSF_META_NAME_DESCRIPTION:
59
+ *
60
+ * (String) An account of the content of the resource.
61
+ */
62
+ #define GSF_META_NAME_DESCRIPTION "dc:description"
63
+
64
+ /**
65
+ * GSF_META_NAME_KEYWORDS:
66
+ *
67
+ * (GsfDocPropVector of String) Searchable, indexable keywords. Similar to PDF
68
+ * keywords or HTML's meta block.
69
+ */
70
+ #define GSF_META_NAME_KEYWORDS "dc:keywords"
71
+
72
+ /**
73
+ * GSF_META_NAME_LANGUAGE:
74
+ *
75
+ * (String) The locale language of the intellectual content of the resource
76
+ * (basically xx_YY form for us).
77
+ * 1.14.0 Clarified that this is unique from _NAME_CODEPAGE in msole
78
+ */
79
+ #define GSF_META_NAME_LANGUAGE "dc:language"
80
+
81
+ /**
82
+ * GSF_META_NAME_CODEPAGE:
83
+ *
84
+ * (UnsignedShort) The MS codepage to encode strings for metadata
85
+ * 1.14.0 Clarified that this is unique from _NAME_CODEPAGE in msole
86
+ */
87
+ #define GSF_META_NAME_CODEPAGE "msole:codepage"
88
+
89
+ /**
90
+ * GSF_META_NAME_SUBJECT:
91
+ *
92
+ * (String) The topic of the content of the resource,
93
+ * <emphasis>typically</emphasis> including keywords.
94
+ */
95
+ #define GSF_META_NAME_SUBJECT "dc:subject"
96
+
97
+ /**
98
+ * GSF_META_NAME_TITLE:
99
+ *
100
+ * (String) A formal name given to the resource.
101
+ */
102
+ #define GSF_META_NAME_TITLE "dc:title"
103
+
104
+
105
+ /****** Namespace - gsf: ******/
106
+
107
+ /**
108
+ * GSF_META_NAME_BYTE_COUNT:
109
+ *
110
+ * (Integer) Count of bytes in the document.
111
+ */
112
+ #define GSF_META_NAME_BYTE_COUNT "gsf:byte-count"
113
+
114
+ /**
115
+ * GSF_META_NAME_CASE_SENSITIVE:
116
+ *
117
+ * (Unsigned Integer) Identifier representing the case-sensitiveness.
118
+ * <note>of what ?? why is it an integer ??</note>
119
+ */
120
+ #define GSF_META_NAME_CASE_SENSITIVE "gsf:case-sensitivity"
121
+
122
+ /**
123
+ * GSF_META_NAME_CATEGORY:
124
+ *
125
+ * (String) Category of the document. <note>example???</note>
126
+ */
127
+ #define GSF_META_NAME_CATEGORY "gsf:category"
128
+
129
+ /**
130
+ * GSF_META_NAME_CELL_COUNT:
131
+ *
132
+ * (Integer) Count of cells in the spread-sheet document, if appropriate.
133
+ */
134
+ #define GSF_META_NAME_CELL_COUNT "gsf:cell-count"
135
+
136
+ /**
137
+ * GSF_META_NAME_CHARACTER_COUNT:
138
+ *
139
+ * (Integer) Count of characters in the document.
140
+ *
141
+ * TODO See how to sync this with ODF's document-statistic
142
+ */
143
+ #define GSF_META_NAME_CHARACTER_COUNT "gsf:character-count"
144
+
145
+ /**
146
+ * GSF_META_NAME_DICTIONARY:
147
+ *
148
+ * (None) Reserved name (PID) for Dictionary
149
+ */
150
+ #define GSF_META_NAME_DICTIONARY "gsf:dictionary"
151
+
152
+ /**
153
+ * GSF_META_NAME_DOCUMENT_PARTS:
154
+ *
155
+ * (Vector of strings) Names of the 'interesting' parts of the document. In
156
+ * spreadsheets this is a list of the sheet names, and the named expressions.
157
+ * From MSOLE
158
+ */
159
+ #define GSF_META_NAME_DOCUMENT_PARTS "gsf:document-parts"
160
+
161
+ /**
162
+ * GSF_META_NAME_HEADING_PAIRS:
163
+ *
164
+ * (Vector of string value pairs stored in alternating elements) Store the
165
+ * counts of objects in the document as names 'worksheet' and count '4'
166
+ * From MSOLE
167
+ */
168
+ #define GSF_META_NAME_HEADING_PAIRS "gsf:heading-pairs"
169
+
170
+ /**
171
+ * GSF_META_NAME_HIDDEN_SLIDE_COUNT:
172
+ *
173
+ * (Integer) Count of hidden-slides in the presentation document.
174
+ */
175
+ #define GSF_META_NAME_HIDDEN_SLIDE_COUNT "gsf:hidden-slide-count"
176
+
177
+ /**
178
+ * GSF_META_NAME_IMAGE_COUNT:
179
+ *
180
+ * (Integer) Count of images in the document, if appropriate.
181
+ */
182
+ #define GSF_META_NAME_IMAGE_COUNT "gsf:image-count"
183
+
184
+ /**
185
+ * GSF_META_NAME_LAST_SAVED_BY:
186
+ *
187
+ * (String) The entity that made the last change to the document, typically a
188
+ * person, organization, or service.
189
+ */
190
+ #define GSF_META_NAME_LAST_SAVED_BY "gsf:last-saved-by"
191
+
192
+ /**
193
+ * GSF_META_NAME_LINKS_DIRTY:
194
+ *
195
+ * (Boolean) ???????
196
+ */
197
+ #define GSF_META_NAME_LINKS_DIRTY "gsf:links-dirty"
198
+
199
+ /**
200
+ * GSF_META_NAME_LOCALE_SYSTEM_DEFAULT:
201
+ *
202
+ * (Unsigned Integer) Identifier representing the default system locale.
203
+ */
204
+ #define GSF_META_NAME_LOCALE_SYSTEM_DEFAULT "gsf:default-locale"
205
+
206
+ /**
207
+ * GSF_META_NAME_MANAGER:
208
+ *
209
+ * (String) Name of the manager of "CREATOR" entity.
210
+ */
211
+ #define GSF_META_NAME_MANAGER "gsf:manager"
212
+
213
+ /**
214
+ * GSF_META_NAME_PRESENTATION_FORMAT:
215
+ *
216
+ * (String) Type of presentation, like "On-screen Show", "SlideView" etc.
217
+ */
218
+ #define GSF_META_NAME_PRESENTATION_FORMAT "gsf:presentation-format"
219
+
220
+ /**
221
+ * GSF_META_NAME_SCALE:
222
+ *
223
+ * (Boolean) ?????
224
+ */
225
+ #define GSF_META_NAME_SCALE "gsf:scale"
226
+
227
+ /**
228
+ * GSF_META_NAME_SECURITY:
229
+ *
230
+ * (Integer) Level of security.
231
+ *
232
+ * <informaltable frame="none" role="params">
233
+ * <tgroup cols="2">
234
+ * <thead>
235
+ * <row><entry align="left">Level</entry><entry>Value</entry></row>
236
+ * </thead>
237
+ * <tbody>
238
+ * <row><entry>None</entry><entry>0</entry></row>
239
+ * <row><entry>Password protected</entry><entry>1</entry></row>
240
+ * <row><entry>Read-only recommended</entry><entry>2</entry></row>
241
+ * <row><entry>Read-only enforced</entry><entry>3</entry></row>
242
+ * <row><entry>Locked for annotations</entry><entry>4</entry></row>
243
+ * </tbody></tgroup></informaltable>
244
+ */
245
+ #define GSF_META_NAME_SECURITY "gsf:security"
246
+
247
+ /**
248
+ * GSF_META_NAME_THUMBNAIL:
249
+ *
250
+ * (GsfClipData) Thumbnail data of the document, typically a
251
+ * preview image of the document.
252
+ */
253
+ #define GSF_META_NAME_THUMBNAIL "gsf:thumbnail"
254
+
255
+ /**
256
+ * GSF_META_NAME_LINE_COUNT:
257
+ *
258
+ * (Integer) Count of liness in the document.
259
+ */
260
+ #define GSF_META_NAME_LINE_COUNT "gsf:line-count"
261
+
262
+ /**
263
+ * GSF_META_NAME_MM_CLIP_COUNT:
264
+ *
265
+ * (Integer) Count of "multi-media" clips in the document.
266
+ */
267
+ #define GSF_META_NAME_MM_CLIP_COUNT "gsf:MM-clip-count"
268
+
269
+ /**
270
+ * GSF_META_NAME_NOTE_COUNT:
271
+ *
272
+ * (Integer) Count of "notes" in the document.
273
+ */
274
+ #define GSF_META_NAME_NOTE_COUNT "gsf:note-count"
275
+
276
+ /**
277
+ * GSF_META_NAME_OBJECT_COUNT:
278
+ *
279
+ * (Integer) Count of objects (OLE and other graphics) in the document, if
280
+ * appropriate.
281
+ */
282
+ #define GSF_META_NAME_OBJECT_COUNT "gsf:object-count"
283
+
284
+ /**
285
+ * GSF_META_NAME_PAGE_COUNT:
286
+ *
287
+ * (Integer) Count of pages in the document, if appropriate.
288
+ */
289
+ #define GSF_META_NAME_PAGE_COUNT "gsf:page-count"
290
+
291
+ /**
292
+ * GSF_META_NAME_PARAGRAPH_COUNT:
293
+ *
294
+ * (Integer) Count of paragraphs in the document, if appropriate.
295
+ */
296
+ #define GSF_META_NAME_PARAGRAPH_COUNT "gsf:paragraph-count"
297
+
298
+ /**
299
+ * GSF_META_NAME_SLIDE_COUNT:
300
+ *
301
+ * (Integer) Count of slides in the presentation document.
302
+ */
303
+ #define GSF_META_NAME_SLIDE_COUNT "gsf:slide-count"
304
+
305
+ /**
306
+ * GSF_META_NAME_SPREADSHEET_COUNT:
307
+ *
308
+ * (Integer) Count of pages in the document, if appropriate.
309
+ */
310
+ #define GSF_META_NAME_SPREADSHEET_COUNT "gsf:spreadsheet-count"
311
+
312
+ /**
313
+ * GSF_META_NAME_TABLE_COUNT:
314
+ *
315
+ * (Integer) Count of tables in the document, if appropriate.
316
+ */
317
+ #define GSF_META_NAME_TABLE_COUNT "gsf:table-count"
318
+
319
+ /**
320
+ * GSF_META_NAME_WORD_COUNT:
321
+ *
322
+ * (Integer) Count of words in the document.
323
+ */
324
+ #define GSF_META_NAME_WORD_COUNT "gsf:word-count"
325
+
326
+
327
+ /****** Namespace - msole: ******/
328
+
329
+ /**
330
+ * GSF_META_NAME_MSOLE_UNKNOWN_17:
331
+ *
332
+ * (Unknown) User-defined name
333
+ */
334
+ #define GSF_META_NAME_MSOLE_UNKNOWN_17 "msole:unknown-doc-17"
335
+
336
+ /**
337
+ * GSF_META_NAME_MSOLE_UNKNOWN_18:
338
+ *
339
+ * (Unknown) User-defined name
340
+ */
341
+ #define GSF_META_NAME_MSOLE_UNKNOWN_18 "msole:unknown-doc-18"
342
+
343
+ /**
344
+ * GSF_META_NAME_MSOLE_UNKNOWN_19:
345
+ *
346
+ * (Boolean) User-defined name
347
+ */
348
+ #define GSF_META_NAME_MSOLE_UNKNOWN_19 "msole:unknown-doc-19"
349
+
350
+ /**
351
+ * GSF_META_NAME_MSOLE_UNKNOWN_20:
352
+ *
353
+ * (Unknown) User-defined name
354
+ */
355
+ #define GSF_META_NAME_MSOLE_UNKNOWN_20 "msole:unknown-doc-20"
356
+
357
+ /**
358
+ * GSF_META_NAME_MSOLE_UNKNOWN_21:
359
+ *
360
+ * (Unknown) User-defined name
361
+ */
362
+ #define GSF_META_NAME_MSOLE_UNKNOWN_21 "msole:unknown-doc-21"
363
+
364
+ /**
365
+ * GSF_META_NAME_MSOLE_UNKNOWN_22:
366
+ *
367
+ * (Boolean) User-defined name
368
+ */
369
+ #define GSF_META_NAME_MSOLE_UNKNOWN_22 "msole:unknown-doc-22"
370
+
371
+ /**
372
+ * GSF_META_NAME_MSOLE_UNKNOWN_23:
373
+ *
374
+ * (i4) User-defined name
375
+ */
376
+ #define GSF_META_NAME_MSOLE_UNKNOWN_23 "msole:unknown-doc-23"
377
+
378
+
379
+ /****** Namespace - meta: ******/
380
+
381
+ /**
382
+ * GSF_META_NAME_DATE_CREATED:
383
+ *
384
+ * (Date as ISO String) A date associated with an event in the life cycle of
385
+ * the resource (creation/publication date).
386
+ * Moved from gsf:date-created to meta:creation-date. This way can be used correctly
387
+ * by OpenDocument and Gnumeric.
388
+ */
389
+ #define GSF_META_NAME_DATE_CREATED "meta:creation-date"
390
+
391
+ /**
392
+ * GSF_META_NAME_EDITING_DURATION:
393
+ *
394
+ * (Date as ISO String) The total-time taken until the last modification.
395
+ * Moved from "gsf" to "meta". This way can be used correctly by OpenDocument
396
+ * and Gnumeric.
397
+ */
398
+ #define GSF_META_NAME_EDITING_DURATION "meta:editing-duration"
399
+
400
+ /**
401
+ * GSF_META_NAME_GENERATOR:
402
+ *
403
+ * (String) The application that generated this document. AbiWord, Gnumeric,
404
+ * etc...
405
+ *
406
+ * 1.14.0 Moved from "gsf" to "meta".
407
+ */
408
+ #define GSF_META_NAME_GENERATOR "meta:generator"
409
+
410
+ /**
411
+ * GSF_META_NAME_KEYWORD:
412
+ *
413
+ * (String) Searchable, indexable keywords. Similar to PDF keywords or HTML's
414
+ * meta block.
415
+ */
416
+ #define GSF_META_NAME_KEYWORD "meta:keyword"
417
+
418
+ /**
419
+ * GSF_META_NAME_INITIAL_CREATOR:
420
+ *
421
+ * (String) Specifies the name of the person who created the document
422
+ * initially.
423
+ * 1.14.0 Moved from "gsf" to "meta".
424
+ */
425
+ #define GSF_META_NAME_INITIAL_CREATOR "meta:initial-creator"
426
+
427
+ /**
428
+ * GSF_META_NAME_COMPANY:
429
+ *
430
+ * (String) Name of the company/organization that the "CREATOR" entity is
431
+ * associated with.
432
+ *
433
+ * 1.14.1 Moved from "gsf:company" to "dc:publisher".
434
+ */
435
+ #define GSF_META_NAME_COMPANY "dc:publisher"
436
+
437
+ /**
438
+ * GSF_META_NAME_PRINT_DATE:
439
+ *
440
+ * (GsfTimestamp) Specifies the date and time when the document was last
441
+ * printed.
442
+ */
443
+ #define GSF_META_NAME_PRINT_DATE "meta:print-date"
444
+
445
+ /**
446
+ * GSF_META_NAME_LAST_PRINTED:
447
+ *
448
+ * (GSF_META_NAME_HEADING_PAIRS) The last time this document was printed.
449
+ *
450
+ * 1.14.0 Moved from "gsf" to "dc".
451
+ * 1.14.1 Moved back to "gsf" from "dc".
452
+ */
453
+ #define GSF_META_NAME_LAST_PRINTED "gsf:last-printed"
454
+
455
+ /**
456
+ * GSF_META_NAME_PRINTED_BY:
457
+ *
458
+ * (String) Specifies the name of the last person who printed the document.
459
+ *
460
+ * 1.14.0 Moved from "gsf" to "meta".
461
+ */
462
+ #define GSF_META_NAME_PRINTED_BY "meta:printed-by"
463
+
464
+ /**
465
+ * GSF_META_NAME_REVISION_COUNT:
466
+ *
467
+ * (Integer) Count of revision on the document, if appropriate.
468
+ * Moved from gsf:revision-count to meta:editing-cycles. This way can be used
469
+ * correctly by OpenDocument and Gnumeric.
470
+ */
471
+ #define GSF_META_NAME_REVISION_COUNT "meta:editing-cycles"
472
+
473
+ /**
474
+ * GSF_META_NAME_TEMPLATE:
475
+ *
476
+ * (String) The template file that is been used to generate this document.
477
+ *
478
+ * 1.14.0 Moved from "gsf" to "meta"
479
+ */
480
+ #define GSF_META_NAME_TEMPLATE "meta:template"
481
+
482
+ #endif /* GSF_META_NAMES_H */
@@ -0,0 +1,70 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-msole-utils.h: various tools for handling MS OLE files
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
6
+ *
7
+ * This program is free software; you can redistribute it and/or
8
+ * modify it under the terms of version 2.1 of the GNU Lesser General Public
9
+ * License as published by the Free Software Foundation.
10
+ *
11
+ * This program is distributed in the hope that it will be useful,
12
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ * GNU General Public License for more details.
15
+ *
16
+ * You should have received a copy of the GNU Lesser General Public License
17
+ * along with this program; if not, write to the Free Software
18
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
19
+ * USA
20
+ */
21
+
22
+ #ifndef GSF_MSOLE_UTILS_H
23
+ #define GSF_MSOLE_UTILS_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+
27
+ G_BEGIN_DECLS
28
+
29
+ GError *gsf_doc_meta_data_read_from_msole (GsfDocMetaData *accum,
30
+ GsfInput *in);
31
+ gboolean gsf_doc_meta_data_write_to_msole (GsfDocMetaData const *meta_data,
32
+ GsfOutput *out,
33
+ gboolean doc_not_component);
34
+
35
+ #ifndef GSF_DISABLE_DEPRECATED
36
+ GSF_DEPRECATED_FOR (gsf_doc_meta_data_read_from_msole)
37
+ GError *gsf_msole_metadata_read (GsfInput *in,
38
+ GsfDocMetaData *accum);
39
+ GSF_DEPRECATED_FOR (gsf_doc_meta_data_write_to_msole)
40
+ gboolean gsf_msole_metadata_write (GsfOutput *out,
41
+ GsfDocMetaData const *meta_data,
42
+ gboolean doc_not_component);
43
+ #endif
44
+
45
+ guint gsf_msole_lid_for_language (char const *lang);
46
+ guint gsf_msole_codepage_to_lid (int codepage);
47
+ int gsf_msole_lid_to_codepage (guint lid);
48
+ gchar *gsf_msole_lid_to_codepage_str (guint lid);
49
+ char const *gsf_msole_language_for_lid (guint lid);
50
+
51
+ int gsf_msole_iconv_win_codepage (void) ;
52
+ GIConv gsf_msole_iconv_open_for_import (int codepage) ;
53
+ GIConv gsf_msole_iconv_open_for_export (void) ;
54
+
55
+ GIConv gsf_msole_iconv_open_codepage_for_import (char const *to, int codepage);
56
+ GIConv gsf_msole_iconv_open_codepages_for_export (int codepage_to, char const *from);
57
+ GIConv gsf_msole_iconv_open_codepage_for_export (int codepage_to);
58
+
59
+ GByteArray *gsf_msole_inflate (GsfInput *input, gsf_off_t offset);
60
+
61
+ typedef struct GsfMSOleSortingKey_ GsfMSOleSortingKey;
62
+ GType gsf_msole_sorting_key_get_type (void);
63
+ GsfMSOleSortingKey *gsf_msole_sorting_key_new (const char *name);
64
+ void gsf_msole_sorting_key_free (GsfMSOleSortingKey *sk);
65
+ int gsf_msole_sorting_key_cmp (const GsfMSOleSortingKey *a,
66
+ const GsfMSOleSortingKey *b);
67
+
68
+ G_END_DECLS
69
+
70
+ #endif /* GSF_MSOLE_UTILS_H */
@@ -0,0 +1,95 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-open-pkg-utils.h: Utilities for handling Open Package zip files
4
+ * from MS Office 2007 or XPS.
5
+ *
6
+ * Copyright (C) 2006-2008 Jody Goldberg (jody@gnome.org)
7
+ *
8
+ * This program is free software; you can redistribute it and/or
9
+ * modify it under the terms of version 2.1 of the GNU Lesser General Public
10
+ * License as published by the Free Software Foundation.
11
+ *
12
+ * This program is distributed in the hope that it will be useful,
13
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ * GNU General Public License for more details.
16
+ *
17
+ * You should have received a copy of the GNU Lesser General Public License
18
+ * along with this program; if not, write to the Free Software
19
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
20
+ * USA
21
+ */
22
+
23
+ #ifndef GSF_OPEN_PKG_UTILS_H
24
+ #define GSF_OPEN_PKG_UTILS_H
25
+
26
+ #include <gsf/gsf-fwd.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ typedef struct _GsfOpenPkgRel GsfOpenPkgRel;
31
+ typedef struct _GsfOpenPkgRels GsfOpenPkgRels;
32
+ typedef void (*GsfOpenPkgIter)(GsfInput *opkg,
33
+ GsfOpenPkgRel const *rel,
34
+ gpointer user_data);
35
+
36
+ gboolean gsf_open_pkg_rel_is_extern (GsfOpenPkgRel const *rel);
37
+ char const *gsf_open_pkg_rel_get_target (GsfOpenPkgRel const *rel);
38
+ char const *gsf_open_pkg_rel_get_type (GsfOpenPkgRel const *rel);
39
+
40
+ GsfOpenPkgRel *gsf_open_pkg_lookup_rel_by_type (GsfInput *opkg, char const *type);
41
+ GsfOpenPkgRel *gsf_open_pkg_lookup_rel_by_id (GsfInput *opkg, char const *id);
42
+ void gsf_open_pkg_foreach_rel (GsfInput *opkg,
43
+ GsfOpenPkgIter func,
44
+ gpointer user_data);
45
+ GsfInput *gsf_open_pkg_open_rel (GsfInput *opkg, GsfOpenPkgRel const *rel,
46
+ GError **err);
47
+
48
+ GsfInput *gsf_open_pkg_open_rel_by_type (GsfInput *opkg, char const *type,
49
+ GError **err);
50
+ GsfInput *gsf_open_pkg_open_rel_by_id (GsfInput *opkg, char const *id,
51
+ GError **err);
52
+ GError *gsf_open_pkg_parse_rel_by_id (GsfXMLIn *xin, char const *id,
53
+ GsfXMLInNode const *dtd,
54
+ GsfXMLInNS const *ns);
55
+
56
+ /* DEPRECATED in 1.14.6 */
57
+ #ifndef GSF_DISABLE_DEPRECATED
58
+ GSF_DEPRECATED_FOR (gsf_open_pkg_open_rel_by_id)
59
+ GsfInput *gsf_open_pkg_get_rel_by_type (GsfInput *opkg, char const *type);
60
+ GSF_DEPRECATED_FOR (gsf_open_pkg_open_rel_by_id)
61
+ GsfInput *gsf_open_pkg_get_rel_by_id (GsfInput *opkg, char const *id);
62
+ #endif
63
+
64
+ typedef struct _GsfOutfileOpenPkg GsfOutfileOpenPkg;
65
+
66
+ #define GSF_OUTFILE_OPEN_PKG_TYPE (gsf_outfile_open_pkg_get_type ())
67
+ #define GSF_OUTFILE_OPEN_PKG(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_OUTFILE_OPEN_PKG_TYPE, GsfOutfileOpenPkg))
68
+ #define GSF_IS_OUTFILE_OPEN_PKG(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_OUTFILE_OPEN_PKG_TYPE))
69
+
70
+ GType gsf_outfile_open_pkg_get_type (void) G_GNUC_CONST;
71
+ /* void gsf_outfile_open_pkg_register_type (GTypeModule *module); glib dynamic types are not thread safe */
72
+
73
+ GsfOutfile *gsf_outfile_open_pkg_new (GsfOutfile *sink);
74
+ void gsf_outfile_open_pkg_set_sink (GsfOutfileOpenPkg *open_pkg,
75
+ GsfOutput *sink);
76
+ void gsf_outfile_open_pkg_set_content_type (GsfOutfileOpenPkg *open_pkg,
77
+ char const *content_type);
78
+
79
+ char const *gsf_outfile_open_pkg_relate (GsfOutfileOpenPkg *child,
80
+ GsfOutfileOpenPkg *parent,
81
+ char const *type);
82
+ GsfOutput *gsf_outfile_open_pkg_add_rel (GsfOutfile *dir,
83
+ char const *name,
84
+ char const *content_type,
85
+ GsfOutfile *parent,
86
+ char const *type);
87
+ char const *gsf_outfile_open_pkg_add_extern_rel (GsfOutfileOpenPkg *parent,
88
+ char const *target,
89
+ char const *content_type);
90
+
91
+ gint gsf_open_pkg_error_id (void);
92
+
93
+ G_END_DECLS
94
+
95
+ #endif /* GSF_OPEN_PKG_UTILS_H */