lars
committed
on 29 Mar 04
Changed footer from ID to class, because it appears multiple times
openacs-4/.../acs-developer-support/lib/footer.adp (+3 -3)
1 1 <if @show_p@ true>
2 2   <if @comments:rowcount@ gt 0>
3       <div id="developer-support-footer">
  3     <div class="developer-support-footer">
4 4       <multiple name="comments">
5 5         <b>Comment:</b> <pre style="display: inline;">@comments.text@</pre><br />
6 6       </multiple>
7 7     </div>
8 8   </if>
9 9   <if @user_switching_p@ true>
10 10     <form action="@set_user_url@">
11 11       @export_vars;noquote@
12         <div id="developer-support-footer">
  12       <div class="developer-support-footer">
13 13         Real user: @real_user_name@ (@real_user_email@) [user_id #@real_user_id@]<br />
14 14         <if @real_user_id@ ne @fake_user_id@>     
15 15           Faked user: @fake_user_name@ <if @fake_user_email@ not nil>(@fake_user_email@)</if> [user_id #@fake_user_id@] <a href="@unfake_url@">(Unfake)</a><br />
16 16         </if>
17 17         <else>
18 18           Faked user: <i>Not faking.</i><br />
19 19         </else>
20 20         Change faked user: <select name="user_id">
21 21           <multiple name="users">
22 22             <option value="@users.user_id@" <if @users.selected_p@>selected</if>>@users.name@ <if @users.email@ not nil>(@users.email@)</if></option>
23 23           </multiple>
24 24         </select>
25 25         <input type="submit" value="Go">
26 26       </div>
27 27     </form>
28 28   </if>
29 29   <if @profiling:rowcount@ gt 0>
30       <div id="developer-support-footer">
  30     <div class="developer-support-footer">
31 31       <h3>Profiling Information</h3>
32 32       <table>
33 33         <tr>
34 34           <th>Tag</th>
35 35           <th># Iterations</th>
36 36           <th>Total time </th>
37 37           <th>Avg. time per iteration</th>
38 38         </tr>
39 39         <multiple name="profiling">
40 40           <tr>
41 41             <td>@profiling.tag@</td>
42 42             <td align="right">@profiling.num_iterations@</td>
43 43             <td align="right">@profiling.total_ms@ ms</td>
44 44             <td align="right">@profiling.ms_per_iteration@ ms</td>
45 45           </tr>
46 46         </multiple>
47 47       </table>
48 48     </div>
49 49   </if>
50 50 </if>