-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage_compatible.xml
188 lines (174 loc) · 14.5 KB
/
package_compatible.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<package version="2.1" xmlns="http://pear.php.net/dtd/package-2.1" 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.1 http://pear.php.net/dtd/package-2.1.xsd">
<name>Pyrus_SimpleChannelFrontend</name>
<channel>pyrus.net</channel>
<summary>A simple PEAR channel frontend that does not require a database.
</summary>
<description>
This package provides a simple frontend to a PEAR channel by directly using
the PEAR channel files.
To use, place the Pyrus_SimpleChannelFrontend .phar in the root of your
channel server as `index.php`, and add an `.htaccess` file with the following:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>
For a more customized interface, you can create a `config.inc.php` file, or
install the package and use the files in the `www_dir` as a starting point for
a fully customized PEAR channel. The pear2.php.net uses this method for a
custom frontend.
Pyrus_SimpleChannelFrontend can also be used as a viewer for remote PEAR
channels. See the `config.sample.php` file for an example of how to do this.
</description>
<lead>
<name>Brett Bieber</name>
<user>saltybeagle</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2012-07-20</date>
<time>14:48:57</time>
<version>
<release>0.3.0</release>
<api>0.2.0</api>
</version>
<stability>
<release>alpha</release>
<api>alpha</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">New BSD License</license>
<notes>So glad to announce this release! Many features built for pear2.php.net were
backported so all PEAR channels can benefit. In particular, speed improvements,
release file browsing, and better error handling.
As usual you can grab the new [SCS .phar](http://pear2.php.net/get/PEAR2_SimpleChannelServer-0.3.0.phar),
drop it in your PEAR channel's document root as `index.php` and you're off to
the races.
You can also create a `config.inc.php` file for browsing a remote channel.
See the details for more info!
Sweet Sexy Additions:
* Release file browsing support backported from pear2.php.net
* SimpleChannelFrontend can now be used as a viewer for remote PEAR channels
* Output caching support for speeding up channels
* New "partial" output format for AJAX, XHR support
* Pretty error pages, and better error handling
Bugfixes:
* Remove reference to missing JS file
PEAR2_SimpleChannelFrontend API release notes for version 0.2.0:
Most of the static methods have been removed. See the sample config file for
instructions on how to set up your local channel.</notes>
<contents>
<dir name="/">
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/Main.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/LatestReleases.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/UnregisteredViewException.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Support.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Search.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/ReleaseFileBrowser.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageRelease.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageList.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageFileInfo.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Package.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/News.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main-partial.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/LatestReleases.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/InstallInstructions.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Category.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Categories.tpl.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/sample.htaccess"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/js/js/highlight.pack.js"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/index.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/images/css/images/header.png"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/text.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/scf.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/reset.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/highlight-idea.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/file-browser.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/all.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/960.css"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/config.sample.php"/>
<file role="www" name="www/pyrus.net/Pyrus_SimpleChannelFrontend/config.inc.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/UnregisteredViewException.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/TemplateMapper.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Support.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Search.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Router.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/ReleaseFileBrowser/FilteredIterator.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/ReleaseFileBrowser.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/PackageRelease.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/PackageList.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Package.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/News.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Main.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/LatestReleases.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Internet.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Exception.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Category.php"/>
<file role="php" name="php/Pyrus/SimpleChannelFrontend/Categories.php"/>
</dir>
</contents>
<dependencies>
<required>
<php>
<min>5.2.0</min>
</php>
<pearinstaller>
<min>1.4.8</min>
</pearinstaller>
</required>
</dependencies>
<phprelease>
<filelist>
<install name="php/Pyrus/SimpleChannelFrontend/Categories.php" as="Pyrus/SimpleChannelFrontend/Categories.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Category.php" as="Pyrus/SimpleChannelFrontend/Category.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Exception.php" as="Pyrus/SimpleChannelFrontend/Exception.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Internet.php" as="Pyrus/SimpleChannelFrontend/Internet.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/LatestReleases.php" as="Pyrus/SimpleChannelFrontend/LatestReleases.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Main.php" as="Pyrus/SimpleChannelFrontend/Main.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/News.php" as="Pyrus/SimpleChannelFrontend/News.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Package.php" as="Pyrus/SimpleChannelFrontend/Package.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/PackageList.php" as="Pyrus/SimpleChannelFrontend/PackageList.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/PackageRelease.php" as="Pyrus/SimpleChannelFrontend/PackageRelease.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/ReleaseFileBrowser.php" as="Pyrus/SimpleChannelFrontend/ReleaseFileBrowser.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/ReleaseFileBrowser/FilteredIterator.php" as="Pyrus/SimpleChannelFrontend/ReleaseFileBrowser/FilteredIterator.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Router.php" as="Pyrus/SimpleChannelFrontend/Router.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Search.php" as="Pyrus/SimpleChannelFrontend/Search.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/Support.php" as="Pyrus/SimpleChannelFrontend/Support.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/TemplateMapper.php" as="Pyrus/SimpleChannelFrontend/TemplateMapper.php"/>
<install name="php/Pyrus/SimpleChannelFrontend/UnregisteredViewException.php" as="Pyrus/SimpleChannelFrontend/UnregisteredViewException.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/config.inc.php" as="Pyrus_SimpleChannelFrontend/config.inc.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/config.sample.php" as="Pyrus_SimpleChannelFrontend/config.sample.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/960.css" as="Pyrus_SimpleChannelFrontend/css/css/960.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/all.css" as="Pyrus_SimpleChannelFrontend/css/css/all.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/file-browser.css" as="Pyrus_SimpleChannelFrontend/css/css/file-browser.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/highlight-idea.css" as="Pyrus_SimpleChannelFrontend/css/css/highlight-idea.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/reset.css" as="Pyrus_SimpleChannelFrontend/css/css/reset.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/scf.css" as="Pyrus_SimpleChannelFrontend/css/css/scf.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/css/text.css" as="Pyrus_SimpleChannelFrontend/css/css/text.css"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/css/images/css/images/header.png" as="Pyrus_SimpleChannelFrontend/css/images/css/images/header.png"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/index.php" as="Pyrus_SimpleChannelFrontend/index.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/js/js/highlight.pack.js" as="Pyrus_SimpleChannelFrontend/js/js/highlight.pack.js"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/sample.htaccess" as="Pyrus_SimpleChannelFrontend/sample.htaccess"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Categories.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Categories.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Category.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Category.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/InstallInstructions.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/InstallInstructions.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/LatestReleases.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/LatestReleases.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main-partial.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main-partial.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Main.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/News.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/News.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Package.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Package.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageFileInfo.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageFileInfo.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageList.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageList.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageRelease.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/PackageRelease.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/ReleaseFileBrowser.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/ReleaseFileBrowser.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Search.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Search.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/Support.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/Support.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/html/templates/html/UnregisteredViewException.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/html/templates/html/UnregisteredViewException.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/LatestReleases.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/LatestReleases.tpl.php"/>
<install name="www/pyrus.net/Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/Main.tpl.php" as="Pyrus_SimpleChannelFrontend/templates/rss/templates/rss/Main.tpl.php"/>
</filelist>
</phprelease>
</package>