beanstalkd_view 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,6 +4,8 @@ a {
4
4
 
5
5
  h1 {
6
6
  margin-bottom: 10px;
7
+ word-wrap: break-word;
8
+ overflow: hidden;
7
9
  }
8
10
 
9
11
  h3 {
@@ -1,3 +1,3 @@
1
1
  module BeanstalkdView
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
3
3
  end
@@ -11,7 +11,7 @@
11
11
  <tbody>
12
12
  <% @connections.each do |connection| %>
13
13
  <tr>
14
- <td><%= connection.address %></a></td>
14
+ <td><%= connection.address %></td>
15
15
  </tr>
16
16
  <% end %>
17
17
  </tbody>
@@ -285,7 +285,7 @@
285
285
  <input id="form_job_priority" type="text" class="span3" placeholder="Priority, e.g. 65536" name="priority">
286
286
  <input id="form_job_delay" type="text" class="span3" placeholder="Delay, e.g. 0" name="delay">
287
287
  <input id="form_job_ttr" type="text" class="span3" placeholder="TTR, e.g. 120" name="ttr">
288
- <label class="control-label" for="textarea">Job Body JSON Hash, e.g. {} or {"id": 1, "name": "Bob"}</label>
288
+ <label class="control-label" for="form_job_body">Job Body JSON Hash, e.g. {} or {"id": 1, "name": "Bob"}</label>
289
289
  <textarea id="form_job_body" class="input-xlarge" name="body" rows="3"></textarea>
290
290
  <br/>
291
291
  <a id="add_job_btn" href="#" class="btn">Add Job</a>
@@ -96,11 +96,11 @@
96
96
 
97
97
  <h3>Clear Tube</h3>
98
98
  <form id="clear_form" class="well form-inline" name="clear_form" action="<%= u("/clear") %>" method="POST">
99
- <input id="form_tube_name" type="hidden" name="tube" value="<%= @tube.name %>">
100
- <input id="form_url_base" type="hidden" name="url_base" value="<%= u("/") %>">
101
- <select name="state"class="span3">
102
- <option value="buried"/>Buried</option>
103
- <option value="ready"/>Ready</option>
99
+ <input type="hidden" name="tube" value="<%= @tube.name %>">
100
+ <input type="hidden" name="url_base" value="<%= u("/") %>">
101
+ <select name="state" class="span3">
102
+ <option value="buried">Buried</option>
103
+ <option value="ready">Ready</option>
104
104
  <option value="delayed">Delayed</option>
105
105
  </select>
106
106
  <button type="submit" class="btn">Clear</button>