Merge branch 'org.openembedded.dev' of git@git.openembedded.net:openembedded into...
[vuplus_openembedded] / contrib / feed-browser / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
3     <head>
4         <title>Feed browser</title>
5         <meta http-equiv="Content-Style-Type" content="text/css" />
6         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7         <style type="text/css" media="all">@import "css/feed.css";</style>
8         <script language="javascript" type="text/javascript" src="scripts/js/repo.js"></script>
9     </head>
10     <body onLoad=" qs(); getLetter(); getSection();">
11                 <div id="right">
12                         <div id="searchletter"</div>
13                         <form name="pkg_query" onsubmit="javascript:pkgQuery();return false"">
14                                 <fieldset>
15                                         <label for="name">Package name</label>
16                                         <input id="pkgsearch" type="text" name="pkgsearch" value="" />
17                                         <select name="arch">
18                                            <option value="" selected="selected">all architectures</option>
19                                            <option value="all">no arch</option>
20 <?php
21
22 foreach($archs_list as $architecture)
23 {
24     echo "<option value='{$architecture['p_arch']}'";
25
26     if($architecture['p_arch'] == $arch)
27     {
28         echo ' selected="selected"';
29     }
30     echo ">{$architecture['p_arch']}</option>";
31 }
32
33 ?>
34
35
36                                         </select>
37                                         <input type="submit" value="Search" />
38                                 </fieldset>
39                         </form>
40                         <div id="opkgoutput"><?php echo $ipkgoutput; ?></div>
41                 </div>
42                 <div id="left">
43                         <h1>Sections list</h1>
44                         <div id="sectionslist"></div>
45                 </div>
46     </body>
47 </html>