]> git.deb.at Git - deb/packages.git/blob - static/index.tmpl
Merge commit 'origin/master' into ubuntu-master
[deb/packages.git] / static / index.tmpl
1 [%- PROCESS 'html/head.tmpl' 
2         title_tag = "$organisation Packages Search"
3         page_title = "$organisation Packages Search"
4         keywords = "$organisation, Packages"
5         html_meta = '<meta name="verify-v1" content="Rg2bDR1kWPGd8k8v9NOgnmtUQHO6UaKX2glZWVDptok=">'
6 -%]
7 [%-
8     all_suites = [ 'dapper', 'dapper-updates', 'dapper-backports',
9                    'hardy', 'hardy-updates', 'hardy-backports',
10                    'intrepid', 'intrepid-updates', 'intrepid-backports',
11                    'jaunty', 'jaunty-updates', 'jaunty-backports',
12                    'karmic', ]
13     version_numbers = { dapper => '6.06LTS',
14                         hardy  => '8.04LTS',
15                         intrepid => '8.10',
16                         jaunty => '9.04',
17                       }
18     current_release = 'jaunty'
19     all_sections = [ 'main', 'multiverse', 'restricted', 'universe' ]
20     all_architectures = [ 'i386', 'amd64', 'powerpc' ]
21 -%]
22
23 <p>This site provides you with information about all the packages
24 available in the <a href="[% project_homepage %]">[% organisation %]</a>
25 Package archive.
26
27 <p><em>Please contact <a href="mailto:[% admin.mail %]">[% admin.name %]</a>
28 if you encounter any problems!</em></p>
29
30 <h2>Browse through the lists of packages:</h2>
31
32 <ul style="font-size:large">
33 [% FOREACH s IN all_suites %]
34 <li><a href="[% s %]/">[% s %]</a>
35 [% IF version_numbers.$s %]([% version_numbers.$s %])[% END %]</li>
36 [% END %]
37 </ul>
38
39 <p>There is also a list of <a href="[% all_suites.-1 %]/main/newpkg">packages
40 recently added to [% all_suites.-1 %]</a>.</p>
41
42 <p>Old releases can be found at <a href="http://old-releases.ubuntu.com/">old-releases.ubuntu.com</a></p>
43
44 <h2>Search</h2>
45
46 <h3>Search package directories</h3>
47
48 <form method="GET" action="/search">
49 <label for="kw">Keyword:</label>
50 <input type="text" size="30" name="keywords" id="kw">
51 <input type="submit" value="Search"> <input type="reset" value="Reset">
52 <br>
53 Search on:
54 <input type="radio" name="searchon" value="names" id="onlynames" checked="checked">
55 <label for="onlynames">Package names only</label>&nbsp;&nbsp;
56 <input type="radio" name="searchon" value="all" id="descs">
57 <label for="descs">Descriptions</label>
58
59 <input type="radio" name="searchon" value="sourcenames" id="src">
60 <label for="src">Source package names</label>
61 <br>
62 Only show exact matches:
63 <input type="checkbox" name="exact" value="1">
64 <br>
65 Distribution:
66 <select name="suite">
67 [% FOREACH s IN all_suites %]
68   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
69 [% END %]
70   <option value="all">any</option>
71 </select>
72 Section:
73 <select name="section">
74 [% FOREACH s IN all_sections %]
75   <option value="[% s %]">[% s %]</option>
76 [% END %]
77   <option value="all" selected="selected">any</option>
78 </select>
79 </form>
80 <p>There are shortcuts for some searches available:</p>
81 <ul>
82       <li><code>[% packages_homepage %]<var>name</var></code> for
83       the search on package names.</li>
84
85       <li><code>[% packages_homepage %]src:<var>name</var></code>
86       for the search on source package names.</li>
87 </ul>
88 <hr>
89
90 <h3><a name="search_contents">Search the contents of packages</a></h3>
91
92 <P>This search engine allows you to search the contents of [% organisation %]
93 distributions for any files (or just parts of file names) that are
94 part of packages.
95 You can also get a full list of files in a given package.
96 <br>
97 <form method="GET" action="/search">
98 <input type="hidden" name="searchon" value="contents">
99
100 <label for="keyword">Keyword:</label>
101 <input type="text" size="30" name="keywords" id="keyword"> &nbsp;
102
103 <input type="submit" value="Search">
104 &nbsp;<input type="reset" value="Reset">
105 <br>
106 Display:
107 <br>
108 <input type="radio" name="mode" value="exactfilename" id="exactfilename" checked="checked">
109   <label for="exactfilename">packages that contain files named like this</label>
110 <br>
111 <input type="radio" name="mode" value="" id="suffixpathname">
112   <label for="suffixpathname">packages that contain files whose names end with the keyword</label>
113 <br>
114 <input type="radio" name="mode" value="filename" id="filename">
115   <label for="filename">packages that contain files whose names contain the keyword</label>
116 <br>
117 <label for="distro">Distribution:</label>
118
119 <select name="suite" id="distro">
120 [% FOREACH s IN all_suites %]
121   <option value="[% s %]" [% 'selected="selected"' IF s == current_release %]>[% s %]</option>
122 [% END %]
123 </select>
124 <label for="architecture">Architecture:</label>
125 <select name="arch" id="architecture">
126 [% FOREACH a IN all_architectures %]
127   <option value="[% a %]">[% a %]</option>
128 [% END %]
129   <option value="any" selected="selected">any</option>
130 </select>
131 </form>
132
133 <hr>
134 <h2>News</h2>
135 <dl>
136 <dt>2009-04-24</dt>
137 <dd>Reflect jaunty release, add karmic, remove gutsy</dd>
138 <dt>2009-02-21</dt>
139 <dd>Remove feisty.</dd>
140 <dt>2008-11-03</dt>
141 <dd>Add jaunty.</dd>
142 <dt>2008-10-30</dt>
143 <dd>Reflect intrepid release.</dd>
144 <dt>2008-06-10</dt>
145 <dd>
146 <p>Removed edgy</p>
147 </dd>
148 <dt>2008-04-28</dt>
149 <dd>
150 <p>Added intrepid</p>
151 </dt>
152 <dt>2008-04-26</dt>
153 <dd>
154 <p>Adapted for hardy release. Removed the obsolete powerpc data for hardy. I'm currently evaluation if and how I should
155 include information about <tt>ports.ubuntu.com</tt> packages here. Since <tt>archive.ubuntu.com</tt> is currently unusable
156 I use <tt>nl.archive.ubuntu.com</tt> as source for the data until the situation normalizes again.</p>
157 </dd>
158 <dt>2008-02-21</dt>
159 <dd>
160 <p>The downtime today was caused by some yet undiagnosed kernel troubles after
161 a faulty hard disk was exchanged. Sorry for any inconvenience.
162 </dd>
163 <dt>2008-02-19</dt>
164 <dd>
165 <p>Switched packages.ubuntu.com to the newer codebase that also runs
166 on packages.debian.org. The two most important changes for users
167 are that most pages are now generated dynamically (which makes
168 for faster updates and more flexibility) and that the search
169 functions should be much faster now.
170 <p>Still waiting for a volunteer that optimizes the used stylesheets,
171 I myself have not much talent in this area...
172 </dd>
173 <dt>2007-10-21</dt>
174 <dd>
175 Add hardy.
176 </dd>
177 <dt>2007-10-18</dt>
178 <dd>
179 Change default release to gutsy.
180 </dd>
181 <dt>2007-07-28</dt>
182 <dd>
183 Drop old releases since they also got dropped from archive.ubuntu.com.
184 </dd>
185 <dt>2007-04-29</dt>
186 <dd>
187 Feisty is released. Pages updated accordingly.
188 </dd>
189 <dt>2006-11-20</dt>
190 <dd>
191 <ul>
192 <li>The hard drive of the server was replaced today after it began to act
193 up. Most stuff should be up and running again. I accidentally deleted the
194 info about new packages though, so that will be not reliable for the next
195 few days.
196 <li>Added edgy-backports to the homepage and the search forms
197 </ul>
198 </dd>
199 <dt>2006-10-29</dt>
200 <dd>
201 <ul>
202 <li>Add feisty. The changes for the edgy release were already done some days ago.
203 </ul>
204 </dd>
205 <dt>2006-10-18</dt>
206 <dd>
207 <ul>
208 <li>The "Bug reports" links now correctly point to Launchpad for all packages.
209 Thanks to all the people that reported this error to me.
210 <li>I added an <code>robots.txt</code> to ban some people trying to
211 mirror the site by means of <code>wget -r</code>. If forever reason
212 you need to mirror the site please contact me by mail so we can do
213 this by other means that won't stress the server as much.
214 </ul>
215 </dd>
216 <dt>2006-06-12</dt>
217 <dd>
218 Finally make dapper the default for searches and add edgy. Sorry for the delay.
219 </dd>
220 <dt>2006-01-17</dt>
221 <dd>
222 I hope everyone had a good start into the new year. Some small status
223 updates:
224 <ul>
225 <li>While looking at the log statistics I noticed that apparently
226 <code>packages.ubuntulinux.org</code> also points to my server
227 without me knowing. I fixed the apache configuration so that it now
228 knows about that and handles it correctly.</li>
229 <li>Linking to a CSS file on the official Ubuntu homepage
230 was a bad idea and the page had some glitches when it disappeared.
231 Most of the issues should be fixed by now.</li>
232 <li>Sorry for any performance issues with the site. My little server
233 is not always able to handle the many hits of this site (close to
234 2,000,000 per month). I guess I will have to search for another
235 hosting solution in the near future.</li>
236 </ul>
237 </dd>
238 <dt>2005-10-13</dt>
239 <dd>
240 Changed all defaults to point to breezy
241 </dd>
242 <dt>2005-09-28</dt>
243 <dd>
244 <ul>
245 <li>The contents files are updated again, so I removed any warnings
246 and added the appropriate links back</li>
247 <li>The "Check for bug reports" links now point to Launchpad for
248 universe/multiverse packages. Suggested by
249 <tt>j -at- bootlab -dot- org</tt>.
250 <li>Finally, I migrated to the "new" layout. Comments and Patches
251 about the remaining quirks welcome.
252 </ul>
253 </dd>
254 <dt>2005-09-25</dt>
255 <dd>
256 I've merged the new changelog to HTML conversion code from the Debian
257 branch. I still have no idea how to handle the requests to link Ubuntu
258 bugs to the Ubuntu BTS and Debian bugs to the Debian BTS. Suggestions
259 welcome.
260 </dd>
261 <dt>2005-08-30</dt>
262 <dd>
263 <ul>
264 <li>I've added a warning to this site about the outdated Contents
265 files in the Ubuntu archive which make the contents search completely
266 useless for anything after warty. I've actually no idea whom to ask
267 about this since I don't seem to be able to find out on the Ubuntu
268 web site who is ftp-master in Ubuntu?</li>
269 <li>You can now also browse the packages from
270 <a href="hoary-backports/">hoary-backports</a></li>
271 </ul>
272 </dd>
273 <dt>2005-06-10</dt>
274 <dd>
275 I have begun to work on integrating the current Ubuntu web design with
276 my pages. There are still some issues to work out but as a teaser I
277 already converted the front page. Feel free to mail me with comments
278 on how I could use the new layout better.
279 </dd>
280 <dt>2005-04-14</dt>
281 <dd>
282 hoary is released and now this fact is also beginning to show on this
283 page. Please report all errors you find with the new breezy pages.
284 </dd>
285 <dt>2005-04-06</dt>
286 <dd>
287 The transition should be completed by now and I've installed some
288 rewrite rules so that old URLs should also point to the new location.
289 The changelog extraction script is still running so there are still
290 some (more) broken links. Please report all other problems you might
291 encounter.
292 </dd>
293 <dt>2005-04-05</dt>
294 <dd>
295 From tomorrow on this site will be available at <a
296 href="http://packages.ubuntu.com/">packages.ubuntu.com</a>.
297 The necessary setup is done on both my side and on the side of the
298 ubuntu people but I will use the occasion for some configuration
299 clean-up and a full rebuild. Stay tuned <tt>;)</tt>
300 </dd>
301 <dt>2005-04-02</dt>
302 <dd>
303 <ul>
304 <li>On request of the MOTUs I've added links to the build logs for
305 hoary packages.</li>
306 <li>Also, the Portuguese LoCoTeam (hmm, Ubuntu teams have
307 all very l33t names ;) asked me
308 how to translate the pages. Here my answer:
309
310 <blockquote style="font-family: monospace">
311 <p>At http://cvs.infodrom.org/packages.debian.org/po/?cvsroot=debian.de
312 you can find some .pot files. Please translate them and send them back
313 to me (You may want to take a look at the translations available at
314 http://cvs.debian.org/webwml/portuguese/po/?cvsroot=webwml
315 especially for files like langs.pot). This will ensure that at least
316 the constant strings on all the pages are translated (Some of the
317 strings in these file are only needed on packages.debian.org)</p>
318
319 <p>The translations of package descriptions I took from the DDTP (Debian
320 Descriptions Translation Project) which seems to be rather inactive
321 lately. Unless this is fully revived or another similar project is
322 created there is little I can do on this front.</p>
323 </blockquote>
324 </li>
325 <li>Thanks to all people that provided me with positive feedback about
326 these pages.</li>
327 </ul>
328 </dd>
329 <dt>2005-03-02</dt>
330 <dd>I talked briefly with Daniel Silverstone of Canonical at
331 <a href="http:://www.fosdem.org">FOSDEM</a>. He said that Ubuntu
332 will get his own Packages page, but <q>It will be a while</q>.</dd>
333 <dt>2005-01-24</dt>
334 <dd>In the last two days there were several reboots of the server
335 needed (kernel upgrades, activation and testing of a new rescue
336 system). Sorry for any inconviences this caused.</dd>
337 <dt>2005-01-11</dt>
338 <dd>There are changelogs and copyright files available now. I also
339 added links to the Ubuntu bugzilla, but I'm not sure yet that they
340 work completly. Feedback welcome. (Changelogs and copyright files
341 may be missing for some packages since I can only mirror the
342 i386 and powerpc debs due to space constraints)</dd>
343 </dl>
344
345 [% PROCESS 'html/foot.tmpl'
346         langs.size = 0
347         copyright.years = '1997 - 2008' %]