annotate bitten/templates/bitten_admin_configs.html @ 563:a5a7e19399b5

Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
author dfraser
date Mon, 11 May 2009 15:15:24 +0000
parents a7c795920c4a
children 1caaefd76375
rev   line source
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
1 <!DOCTYPE html
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
5 xmlns:xi="http://www.w3.org/2001/XInclude"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
6 xmlns:py="http://genshi.edgewall.org/">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
7 <xi:include href="admin.html" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
8 <head>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
9 <title>Manage Build Configurations</title>
563
a5a7e19399b5 Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
dfraser
parents: 503
diff changeset
10 <script type="text/javascript">
a5a7e19399b5 Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
dfraser
parents: 503
diff changeset
11 jQuery(document).ready(function($) {
a5a7e19399b5 Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
dfraser
parents: 503
diff changeset
12 $("input[name='path']").suggest("${href.diff()}");
a5a7e19399b5 Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
dfraser
parents: 503
diff changeset
13 });
a5a7e19399b5 Autocomplete path names in configuration using trac's autocompletion code (supports trac 0.11 and 0.12) (Emannuel Blot) - fixes #363
dfraser
parents: 503
diff changeset
14 </script>
503
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
15 </head>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
16 <body>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
17 <h2>Manage Build Configurations</h2>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
18 <py:choose><form py:when="config" class="mod"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
19 id="modconfig" method="post" action="">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
20 <table class="form" summary=""><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
21 <td class="name"><label>Name:<br />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
22 <input type="text" name="name"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
23 value="$config.name" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
24 </label></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
25 <td class="label"><label>Label (for display):<br />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
26 <input type="text" name="label" size="32"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
27 value="$config.label" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
28 </label></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
29 </tr><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
30 <td colspan="2"><fieldset class="iefix">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
31 <label for="description">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
32 Description (you may use
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
33 <a tabindex="42"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
34 href="${href.wiki('WikiFormatting')}">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
35 WikiFormatting</a> here):
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
36 </label>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
37 <p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
38 <textarea id="description" name="description"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
39 class="wikitext" rows="3" cols="65">$config.description</textarea>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
40 </p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
41 <script type="text/javascript" src="${chrome.htdocs_location}js/wikitoolbar.js"></script>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
42 </fieldset></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
43 </tr><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
44 <td colspan="2"><fieldset class="iefix">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
45 <label for="recipe">Recipe:</label>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
46 <p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
47 <textarea id="recipe" name="recipe" rows="8" cols="78">$config.recipe</textarea>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
48 </p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
49 </fieldset></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
50 </tr></table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
51 <fieldset id="repos">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
52 <legend>Repository Mapping</legend>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
53 <table class="form" summary=""><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
54 <th><label for="path">Path:</label></th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
55 <td colspan="3"><input id="path" type="text" name="path"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
56 size="48" value="$config.path" /></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
57 </tr><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
58 <th><label for="min_rev">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
59 Oldest revision:
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
60 </label></th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
61 <td><input id="min_rev" type="text" name="min_rev" size="8"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
62 value="$config.min_rev" /></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
63 <th><label for="max_rev">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
64 Youngest revision:
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
65 </label></th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
66 <td><input id="max_rev" type="text" name="max_rev" size="8"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
67 value="$config.max_rev" /></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
68 </tr></table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
69 </fieldset>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
70 <div class="buttons">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
71 <input type="submit" name="cancel"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
72 value="Cancel" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
73 <input type="submit" name="save" value="Save" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
74 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
75 <div class="platforms">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
76 <h3>Target Platforms</h3>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
77 <table class="listing" id="platformlist">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
78 <thead>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
79 <tr><th class="sel">&nbsp;</th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
80 <th>Name</th><th>Rules</th></tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
81 </thead>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
82 <tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
83 <tr py:if="not config.platforms">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
84 <td colspan="3"><em>(No Platforms)</em></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
85 </tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
86 <tr py:for="platform in config.platforms">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
87 <td class="sel">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
88 <input type="checkbox" name="sel"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
89 value="$platform.id" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
90 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
91 <td class="name"><a href="$platform.href">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
92 $platform.name
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
93 </a></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
94 <td class="rules">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
95 <ul py:if="len(platform.rules)">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
96 <li py:for="rule in platform.rules">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
97 <code>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
98 <strong>$rule.property</strong> ~=
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
99 $rule.pattern
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
100 </code>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
101 </li>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
102 </ul>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
103 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
104 </tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
105 </tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
106 </table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
107 <div class="buttons">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
108 <input type="submit" name="new"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
109 value="Add platform" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
110 <input type="submit" name="remove"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
111 value="Delete selected platforms" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
112 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
113 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
114 </form>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
115
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
116 <form py:when="platform" class="mod" id="modplatform"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
117 method="post" action="">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
118 <div class="field"><label>Target Platform:
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
119 <input type="text" name="name"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
120 value="$platform.name" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
121 </label></div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
122 <fieldset>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
123 <legend>Rules</legend>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
124 <table><thead><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
125 <th>Property name</th><th>Match pattern</th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
126 </tr></thead><tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
127 <tr py:for="idx, rule in enumerate(platform.rules)">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
128 <td><input type="text" name="property_${idx}"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
129 value="$rule.property" /></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
130 <td><input type="text" name="pattern_${idx}"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
131 value="$rule.pattern" /></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
132 <td><input type="submit"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
133 name="add_rule_${idx}" value="+" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
134 <input type="submit" name="rm_rule_${idx}"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
135 value="-" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
136 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
137 </tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
138 </tbody></table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
139 </fieldset>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
140 <p class="help">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
141 The property name can be any of a set of standard
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
142 default properties, or custom properties defined
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
143 in slave configuration files. The default
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
144 properties are:
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
145 </p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
146 <dl class="help">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
147 <dt><code>os</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
148 <dd>The name of the operating system (for example
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
149 "Darwin")</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
150 <dt><code>family</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
151 <dd>The type of operating system (for example
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
152 "posix" or "nt")</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
153 <dt><code>version</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
154 <dd>The operating system version (for example
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
155 "8.10.1)</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
156 <dt><code>machine</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
157 <dd>The hardware architecture (for example "i386"</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
158 <dt><code>processor</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
159 <dd>The CPU model (for example "i386", this may be
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
160 empty or the same as for <code>machine</code>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
161 </dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
162 <dt><code>name</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
163 <dd>The name of the slave</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
164 <dt><code>ipnr</code>:</dt>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
165 <dd>The IP address of the slave</dd>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
166 </dl>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
167 <p class="help">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
168 The match pattern is a regular expression.
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
169 </p>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
170 <div class="buttons">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
171 <form method="get" action=""><div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
172 <input type="hidden"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
173 name="${platform.exists and 'edit'
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
174 or 'new'}" value="" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
175 <input type="hidden" name="platform"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
176 value="$platform.id" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
177 <input type="submit" name="cancel"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
178 value="Cancel" /><py:choose>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
179 <input py:when="platform.exists" type="submit"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
180 name="save" value="Save" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
181 <input py:otherwise="" type="submit"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
182 name="add" value="Add" /></py:choose>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
183 </div></form>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
184 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
185 </form>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
186
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
187 <py:otherwise><form class="addnew" id="addcomp"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
188 method="post" action=""><fieldset>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
189 <legend>Add Configuration:</legend>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
190 <table summary=""><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
191 <td class="name"><div
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
192 class="field"><label>Name:<br />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
193 <input type="text" name="name" size="12" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
194 </label></div></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
195 <td class="label"><div
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
196 class="field"><label>Label:<br />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
197 <input type="text" name="label" size="22" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
198 </label></div></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
199 </tr><tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
200 <td class="path" colspan="2"><div class="field">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
201 <label>Path:<br />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
202 <input type="text" name="path" size="32" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
203 </label>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
204 </div></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
205 </tr></table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
206 <div class="buttons">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
207 <input type="submit" name="add" value="Add" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
208 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
209 </fieldset></form>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
210
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
211 <form method="post" action="">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
212 <table class="listing" id="configlist">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
213 <thead>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
214 <tr><th class="sel">&nbsp;</th><th>Name</th>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
215 <th>Path</th><th>Active</th></tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
216 </thead><tbody>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
217 <tr py:if="not configs">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
218 <td colspan="4"><em>(No Build Configurations)</em></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
219 </tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
220 <tr py:for="config in configs">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
221 <td class="sel">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
222 <input type="checkbox" name="sel"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
223 value="$config.name" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
224 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
225 <td class="name">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
226 <a href="$config.href">$config.label</a>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
227 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
228 <td class="path"><code>$config.path</code></td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
229 <td class="active">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
230 <input type="checkbox" name="active"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
231 value="$config.name"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
232 checked="${config.active and 'checked'
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
233 or None}" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
234 </td>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
235 </tr>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
236 </tbody></table>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
237 <div class="buttons">
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
238 <input type="submit" name="remove"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
239 value="Remove selected items" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
240 <input type="submit" name="apply"
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
241 value="Apply changes" />
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
242 </div>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
243 </form></py:otherwise></py:choose>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
244 </body>
a7c795920c4a Merging trac-0.11 branch to trunk. This revision is equivalent to [571].
wbell
parents:
diff changeset
245 </html>
Copyright (C) 2012-2017 Edgewall Software