[ARVADOS] updated: 4ea6cda50c7fcd3d30ac01e8a421cc68cd4ea23d

git at public.curoverse.com git at public.curoverse.com
Tue Sep 23 13:51:43 EDT 2014


Summary of changes:
 apps/workbench/app/assets/stylesheets/application.css.scss     |  6 +++++-
 .../workbench/app/views/projects/_compute_node_status.html.erb |  8 ++++----
 .../app/views/projects/_compute_node_summary.html.erb          | 10 +++-------
 3 files changed, 12 insertions(+), 12 deletions(-)

       via  4ea6cda50c7fcd3d30ac01e8a421cc68cd4ea23d (commit)
      from  5ef678825d7b436526489e9158a916b605814133 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 4ea6cda50c7fcd3d30ac01e8a421cc68cd4ea23d
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date:   Tue Sep 23 13:50:52 2014 -0400

    3605: Remove total nodes from compute summary table.

diff --git a/apps/workbench/app/assets/stylesheets/application.css.scss b/apps/workbench/app/assets/stylesheets/application.css.scss
index d3abe4f..eeb0545 100644
--- a/apps/workbench/app/assets/stylesheets/application.css.scss
+++ b/apps/workbench/app/assets/stylesheets/application.css.scss
@@ -260,4 +260,8 @@ span.editable-textile {
 
 #page-wrapper > div > h2 {
   margin-top: 0px;
-}
\ No newline at end of file
+}
+
+.compute-summary-numbers td {
+  font-size: 150%;
+}
diff --git a/apps/workbench/app/views/projects/_compute_node_status.html.erb b/apps/workbench/app/views/projects/_compute_node_status.html.erb
index 693a8ae..9a26b3f 100644
--- a/apps/workbench/app/views/projects/_compute_node_status.html.erb
+++ b/apps/workbench/app/views/projects/_compute_node_status.html.erb
@@ -4,10 +4,10 @@
 
 <% queue.each do |j| %>
   <div class="row">
-    <div class="col-md-4">
+    <div class="col-md-3 text-overflow-ellipsis">
       <%= link_to_if_arvados_object j, friendly_name: true %>
     </div>
-    <div class="col-md-3">
+    <div class="col-md-4">
       <%= render_localized_date(j[:created_at]) %>
     </div>
     <div class="col-md-3">
@@ -19,10 +19,10 @@
   </div>
 <% end %>
   <div class="row">
-    <div class="col-md-4">
+    <div class="col-md-3">
       <b>Job</b>
     </div>
-    <div class="col-md-3">
+    <div class="col-md-4">
       <b>Submitted</b>
     </div>
     <div class="col-md-3">
diff --git a/apps/workbench/app/views/projects/_compute_node_summary.html.erb b/apps/workbench/app/views/projects/_compute_node_summary.html.erb
index 9a58d09..7d6a4fb 100644
--- a/apps/workbench/app/views/projects/_compute_node_summary.html.erb
+++ b/apps/workbench/app/views/projects/_compute_node_summary.html.erb
@@ -4,20 +4,16 @@
         <col width="25%">
         <col width="25%">
         <col width="25%">
-        <col width="25%">
-
       </colgroup>
       <tr>
         <td><%= Job.queue_size %></td>
-        <td><%= nodes.select {|n| n.crunch_worker_state.in? ["busy", "idle"] }.size %></td>
         <td><%= nodes.select {|n| n.crunch_worker_state == "busy" }.size %></td>
         <td><%= nodes.select {|n| n.crunch_worker_state == "idle" }.size %></td>
       </tr>
       <tr>
-        <th>Queue</th>
-        <th>Nodes</th>
-        <th>Busy</th>
-        <th>Idle</th>
+        <th>Queued jobs</th>
+        <th>Busy nodes</th>
+        <th>Idle nodes</th>
       </tr>
     </table>
 </div>

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list