~ubuntu-branches/debian/sid/phpmyadmin/sid

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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Simple interface for creating OASIS OpenDocument files.
 *
 * @package PhpMyAdmin
 */
if (! defined('PHPMYADMIN')) {
    exit;
}

/**
 * Load ZIP handler.
 */
require_once './libraries/zip.lib.php';

$GLOBALS['OpenDocumentNS']
    = 'xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" '
    . 'xmlns:text="urn:oasis:names:tc:opendocument:xmlns:text:1.0" '
    . 'xmlns:table="urn:oasis:names:tc:opendocument:xmlns:table:1.0" '
    . 'xmlns:style="urn:oasis:names:tc:opendocument:xmlns:style:1.0" '
    . 'xmlns:number="urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0" '
    . 'xmlns:fo="urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0" ';

/**
 * Minimalistic creator of OASIS OpenDocument
 *
 * @param string $mime desired MIME type
 * @param string $data document content
 *
 * @return string  OASIS OpenDocument data
 *
 * @access  public
 */
function PMA_createOpenDocument($mime, $data)
{
    $zipfile = new ZipFile();
    $zipfile -> addFile($mime, 'mimetype');
    $zipfile -> addFile($data, 'content.xml');
    $zipfile -> addFile(
        '<?xml version="1.0" encoding="UTF-8"?' . '>'
        . '<office:document-meta '
        . 'xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" '
        . 'xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" '
        . 'office:version="1.0">'
        . '<office:meta>'
        . '<meta:generator>phpMyAdmin ' . PMA_VERSION . '</meta:generator>'
        . '<meta:initial-creator>phpMyAdmin ' . PMA_VERSION
        . '</meta:initial-creator>'
        . '<meta:creation-date>' . strftime('%Y-%m-%dT%H:%M:%S')
        . '</meta:creation-date>'
        . '</office:meta>'
        . '</office:document-meta>',
        'meta.xml'
    );
    $zipfile -> addFile(
        '<?xml version="1.0" encoding="UTF-8"?' . '>'
        . '<office:document-styles ' . $GLOBALS['OpenDocumentNS']
        . 'office:version="1.0">'
        . '<office:font-face-decls>'
        . '<style:font-face style:name="Arial Unicode MS"'
        . ' svg:font-family="\'Arial Unicode MS\'" style:font-pitch="variable"/>'
        . '<style:font-face style:name="DejaVu Sans1"'
        . ' svg:font-family="\'DejaVu Sans\'" style:font-pitch="variable"/>'
        . '<style:font-face style:name="HG Mincho Light J"'
        . ' svg:font-family="\'HG Mincho Light J\'" style:font-pitch="variable"/>'
        . '<style:font-face style:name="DejaVu Serif"'
        . ' svg:font-family="\'DejaVu Serif\'" style:font-family-generic="roman"'
        . ' style:font-pitch="variable"/>'
        . '<style:font-face style:name="Thorndale"'
        . ' svg:font-family="Thorndale" style:font-family-generic="roman"'
        . ' style:font-pitch="variable"/>'
        . '<style:font-face style:name="DejaVu Sans"'
        . ' svg:font-family="\'DejaVu Sans\'" style:font-family-generic="swiss"'
        . ' style:font-pitch="variable"/>'
        . '</office:font-face-decls>'
        . '<office:styles>'
        . '<style:default-style style:family="paragraph">'
        . '<style:paragraph-properties fo:hyphenation-ladder-count="no-limit"'
        . ' style:text-autospace="ideograph-alpha" style:punctuation-wrap="hanging"'
        . ' style:line-break="strict" style:tab-stop-distance="0.4925in"'
        . ' style:writing-mode="page"/>'
        . '<style:text-properties style:use-window-font-color="true"'
        . ' style:font-name="DejaVu Serif" fo:font-size="12pt" fo:language="en"'
        . ' fo:country="US" style:font-name-asian="DejaVu Sans1"'
        . ' style:font-size-asian="12pt" style:language-asian="none"'
        . ' style:country-asian="none" style:font-name-complex="DejaVu Sans1"'
        . ' style:font-size-complex="12pt" style:language-complex="none"'
        . ' style:country-complex="none" fo:hyphenate="false"'
        . ' fo:hyphenation-remain-char-count="2"'
        . ' fo:hyphenation-push-char-count="2"/>'
        . '</style:default-style>'
        . '<style:style style:name="Standard" style:family="paragraph"'
        . ' style:class="text"/>'
        . '<style:style style:name="Text_body" style:display-name="Text body"'
        . ' style:family="paragraph" style:parent-style-name="Standard"'
        . ' style:class="text">'
        . '<style:paragraph-properties fo:margin-top="0in"'
        . ' fo:margin-bottom="0.0835in"/>'
        . '</style:style>'
        . '<style:style style:name="Heading" style:family="paragraph"'
        . ' style:parent-style-name="Standard" style:next-style-name="Text_body"'
        . ' style:class="text">'
        . '<style:paragraph-properties fo:margin-top="0.1665in"'
        . ' fo:margin-bottom="0.0835in" fo:keep-with-next="always"/>'
        . '<style:text-properties style:font-name="DejaVu Sans" fo:font-size="14pt"'
        . ' style:font-name-asian="DejaVu Sans1" style:font-size-asian="14pt"'
        . ' style:font-name-complex="DejaVu Sans1" style:font-size-complex="14pt"/>'
        . '</style:style>'
        . '<style:style style:name="Heading_1" style:display-name="Heading 1"'
        . ' style:family="paragraph" style:parent-style-name="Heading"'
        . ' style:next-style-name="Text_body" style:class="text"'
        . ' style:default-outline-level="1">'
        . '<style:text-properties style:font-name="Thorndale" fo:font-size="24pt"'
        . ' fo:font-weight="bold" style:font-name-asian="HG Mincho Light J"'
        . ' style:font-size-asian="24pt" style:font-weight-asian="bold"'
        . ' style:font-name-complex="Arial Unicode MS"'
        . ' style:font-size-complex="24pt" style:font-weight-complex="bold"/>'
        . '</style:style>'
        . '<style:style style:name="Heading_2" style:display-name="Heading 2"'
        . ' style:family="paragraph" style:parent-style-name="Heading"'
        . ' style:next-style-name="Text_body" style:class="text"'
        . ' style:default-outline-level="2">'
        . '<style:text-properties style:font-name="DejaVu Serif"'
        . ' fo:font-size="18pt" fo:font-weight="bold"'
        . ' style:font-name-asian="DejaVu Sans1" style:font-size-asian="18pt"'
        . ' style:font-weight-asian="bold" style:font-name-complex="DejaVu Sans1"'
        . ' style:font-size-complex="18pt" style:font-weight-complex="bold"/>'
        . '</style:style>'
        . '</office:styles>'
        . '<office:automatic-styles>'
        . '<style:page-layout style:name="pm1">'
        . '<style:page-layout-properties fo:page-width="8.2673in"'
        . ' fo:page-height="11.6925in" style:num-format="1"'
        . ' style:print-orientation="portrait" fo:margin-top="1in"'
        . ' fo:margin-bottom="1in" fo:margin-left="1.25in"'
        . ' fo:margin-right="1.25in" style:writing-mode="lr-tb"'
        . ' style:footnote-max-height="0in">'
        . '<style:footnote-sep style:width="0.0071in"'
        . ' style:distance-before-sep="0.0398in"'
        . ' style:distance-after-sep="0.0398in" style:adjustment="left"'
        . ' style:rel-width="25%" style:color="#000000"/>'
        . '</style:page-layout-properties>'
        . '<style:header-style/>'
        . '<style:footer-style/>'
        . '</style:page-layout>'
        . '</office:automatic-styles>'
        . '<office:master-styles>'
        . '<style:master-page style:name="Standard" style:page-layout-name="pm1"/>'
        . '</office:master-styles>'
        . '</office:document-styles>',
        'styles.xml'
    );
    $zipfile -> addFile(
        '<?xml version="1.0" encoding="UTF-8"?' . '>'
        . '<manifest:manifest'
        . ' xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0">'
        . '<manifest:file-entry manifest:media-type="' . $mime
        . '" manifest:full-path="/"/>'
        . '<manifest:file-entry manifest:media-type="text/xml"'
        . ' manifest:full-path="content.xml"/>'
        . '<manifest:file-entry manifest:media-type="text/xml"'
        . ' manifest:full-path="meta.xml"/>'
        . '<manifest:file-entry manifest:media-type="text/xml"'
        . ' manifest:full-path="styles.xml"/>'
        . '</manifest:manifest>',
        'META-INF/manifest.xml'
    );
    return $zipfile -> file();
}