Changeset 2584 for build-queue/developers
- Timestamp:
- 12/03/07 11:46:55 (5 years ago)
- File:
-
- 1 edited
-
build-queue/developers/index.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
build-queue/developers/index.php
r2543 r2584 1 <? include('../data.php');?> 2 <? include('../package.php'); 1 <? 2 include('../data.php'); 3 include('../package.php'); 3 4 4 5 if(isset($_POST['sb'])) … … 11 12 echo "<h2>Data has been <span style='color:orange'>Saved</span>.</h2"; 12 13 } 13 14 14 ?> 15 15 <html> 16 <head> 17 <title>Parsix Build Queue System</title> 18 <link rel="icon" href="http://parsix.org/html/themes/parsix/images/icon.png" type="image/png" /> 19 <link rel="shortcut icon" href="http://parsix.org/html/themes/parsix/images/favicon.ico" /> 20 <link rel="stylesheet" href="themes/parsix/style/styleNN.css" type="text/css" /> 21 <style type="text/css"> 22 @import url("themes/parsix/style/style.css"); 23 </style> 24 </head> 16 25 <form method="post" > 17 26 <table border="0"> 18 27 <tr> 19 <th style="text-align:left"> 20 Choose Developer name 21 22 23 </th> 24 28 <th style="text-align:left">Choose Developer Name:</th> 25 29 <td> 26 30 <select name="devel"> 27 <?28 foreach($devels_names as $user=>$real_name):29 echo "<option value=\"$user\" >$real_name</option>\n";30 endforeach;31 ?>31 <? 32 foreach($devels_names as $user=>$real_name): 33 echo "<option value=\"$user\" >$real_name</option>\n"; 34 endforeach; 35 ?> 32 36 </select> 33 34 37 </td> 35 38 </tr> 36 39 <tr> 37 <th style="text-align:left"> 38 Type source package name 39 </th> 40 <th style="text-align:left">Type source package name:</th> 40 41 <th> 41 42 <input type="text" size="40" name="package" /> (e.g gedit,control-center etc.) … … 44 45 45 46 <tr> 46 <th style="text-align:left"> 47 Choose Distribution name 48 49 50 </th> 51 47 <th style="text-align:left">Choose Distribution name:</th> 52 48 <td> 53 49 <select name="distro"> 54 <?55 foreach($dists_names as $name):56 echo "<option value=\"$name\" >$name</option>\n";57 endforeach;58 ?>50 <? 51 foreach($dists_names as $name): 52 echo "<option value=\"$name\" >$name</option>\n"; 53 endforeach; 54 ?> 59 55 </select> 60 61 56 </td> 62 57 </tr> … … 70 65 <input type="hidden" name="sb" value="1" /> 71 66 </form> 67 </html>
Note: See TracChangeset
for help on using the changeset viewer.


