forked from pear/HTML_Page2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.xml
More file actions
238 lines (229 loc) · 7.76 KB
/
package.xml
File metadata and controls
238 lines (229 loc) · 7.76 KB
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>HTML_Page2</name>
<channel>pear.php.net</channel>
<summary>PEAR::HTML_Page2 is a base class for XHTML page generation.</summary>
<description>The PEAR::HTML_Page2 package provides a simple interface for generating an XHTML compliant page.
* supports virtually all HTML doctypes, from HTML 2.0 through XHTML 1.1 and XHTML Basic 1.0
plus preliminary support for XHTML 2.0
* namespace support
* global language declaration for the document
* line ending styles
* full META tag support
* support for stylesheet declaration in the head section
* support for script declaration in the head section
* support for linked stylesheets and scripts
* full support for header link tags
* body can be a string, object with toHtml or toString methods or an array (can be combined)
Ideas for use:
* Use to validate the output of a class for XHTML compliance
* Quick prototyping using PEAR packages is now a breeze</description>
<lead>
<name>Klaus Guenther</name>
<user>thesaur</user>
<email>klaus@capitalfocus.org</email>
<active>yes</active>
</lead>
<date>2015-12-09</date>
<time>22:38:12</time>
<version>
<release>0.6.5</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license>PHP License 3.0</license>
<notes>
QA release
* Added handling of html5 'defer' and 'async' attributes on 'script' tag with 'src' attribute.
* Incremental changes for PHP5+ support.
</notes>
<contents>
<dir baseinstalldir="/" name="/">
<file baseinstalldir="HTML" md5sum="30435bca7d07bdffeb57f3d8334d1566" name="examples/Page2_Complex.php" role="doc">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file baseinstalldir="HTML" md5sum="33bb94cad972c33bf0284512f93262aa" name="examples/Page2_Frameset.php" role="doc">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file baseinstalldir="HTML" md5sum="22923e752378af87227458d82cedefbb" name="examples/Page2_NoDoctype.php" role="doc">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file baseinstalldir="HTML" md5sum="585b2c8ad3dac28bf31a625eb54a0a20" name="examples/Page2_Simple.php" role="doc">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file baseinstalldir="/" md5sum="f1c0969e8b44eca92aa9c47a97b9410c" name="HTML/Page2.php" role="php" />
<file baseinstalldir="/" md5sum="a1e0fa98350bcc0df85391cec1c63375" name="HTML/Page2/Doctypes.php" role="php" />
<file baseinstalldir="/" md5sum="6514d6182bc4e0260fbd7597bfc9e17d" name="HTML/Page2/Frameset.php" role="php" />
<file baseinstalldir="/" md5sum="7e0174df3effce51a64bc2370cc09967" name="HTML/Page2/Namespaces.php" role="php" />
<file baseinstalldir="/" md5sum="b3334907675cc6ab09ee2e12d58880cf" name="HTML/Page2/Frameset/Frame.php" role="php" />
<file baseinstalldir="/" md5sum="287223e03903a590092979e82e1b44d8" name="README" role="data" />
<dir name="tests">
<file name="phpunit.xml" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
<file name="HTMLPage2GetBodyContentTest.php" role="test">
<tasks:replace from="@package_version@" to="version" type="package-info" />
</file>
</dir>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>4.3.0</min>
</php>
<pearinstaller>
<min>1.5.4</min>
</pearinstaller>
<package>
<name>HTML_Common</name>
<channel>pear.php.net</channel>
<min>1.2</min>
</package>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>0.5.0beta</release>
<api>0.5.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2003-06-07</date>
<license>PHP License 3.0</license>
<notes>
This release is completely XHTML compliant, and has some great features:
* Line ending style
* Full charset support
* Doctype definitions
* Namespace definitions
* Mime encoding declaration
* Global document language
* Full META tag support, including "http-equiv"
* Suport for stylesheet and script declarations in the head section
* Support for linked stylesheets and scripts (including CSS 2.0 media specific definitions)
* Can output directly to a file
Note: This release does not support framesets.
New features:
* HTML 4.0 doctype support
* #814 (Feature request: prependBodyContent)
* Full link tag support (including shortcut for adding favorites icon) (Jason Giangrande)
* addBodyContent now also takes an additional parameter
* Basic support for multiple script and style generation (#698)
Bugfixes (since HTML_Page 2.0.0.RC2)
* #800 (Output "Object" prior to HTML if doctype is unknown)
* #950 (fixes reiterative recursion when generating string)
* #951 (unset META tag was not possible; now use unsetMetaData)
* Fixed meta tag, title order for pre-XHTML compatibility
# major inline documentation update
</notes>
</release>
<release>
<version>
<release>0.6.0beta</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2009-01-30</date>
<license>PHP License 3.0</license>
<notes>
Frameset support(?)
Bug #1913 Notice error generated when array index not set thesaur
Bug #1969 $strHtml not initialized if not using frameset doctype variant thesaur
Bug #2054 4.3.3 Linux page content is copied unnecessarily iwarner
Bug #3259 Remove control-M's iwarner
Bug #8859 Win XP BASE tag iwarner
Request #15512 package2.0 xml doconnor
</notes>
</release>
<release>
<version>
<release>0.6.1beta</release>
<api>0.6.1beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-09-07</date>
<license>PHP License 3.0</license>
<notes>
Bug #16570 Doctype System Identifier should be 'w3' not 'w3c'. [kguest]
</notes>
</release>
<release>
<version>
<release>0.6.2</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2011-12-10</date>
<license>PHP License 3.0</license>
<notes>
Bug #12769: Omit CDATA for inline styles containing @import-rule [kguest]
</notes>
</release>
<release>
<version>
<release>0.6.3</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2012-04-10</date>
<license>PHP License 3.0</license>
<notes>
QA release
Request #3204 Adding Raw entries to the Header
</notes>
</release>
<release>
<version>
<release>0.6.4</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2015-10-21</date>
<license>PHP License 3.0</license>
<notes>
QA release
Request #20952 Add "getBodyContent()" method [kguest]
</notes>
</release>
<release>
<version>
<release>0.6.5</release>
<api>0.6.0beta</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2015-12-09</date>
<license>PHP License 3.0</license>
<notes>
QA release
* Added handling of html5 'defer' and 'async' attributes on 'script' tag with 'src' attribute.
* Incremental changes for PHP5+ support.
</notes>
</release>
</changelog>
</package>