X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/63cb5c235ccacdc1665a89560bc8c16fcbefd8d6..b92203411f6f6adaef1c2af62495830f13f4fa14:/apps/workbench/app/views/pipeline_instances/_running_component.html.erb diff --git a/apps/workbench/app/views/pipeline_instances/_running_component.html.erb b/apps/workbench/app/views/pipeline_instances/_running_component.html.erb index caa8377ad0..63075f7e66 100644 --- a/apps/workbench/app/views/pipeline_instances/_running_component.html.erb +++ b/apps/workbench/app/views/pipeline_instances/_running_component.html.erb @@ -4,9 +4,9 @@
<%# column offset 0 %> -
+

- + <%= pj[:name] %>

@@ -25,7 +25,8 @@ <% walltime = ((if current_job[:finished_at] then current_job[:finished_at] else Time.now() end) - current_job[:started_at]) %> <% cputime = tasks.map { |task| if task.started_at and task.job_uuid == current_job[:uuid] - (if task.finished_at then task.finished_at else Time.now() end) - task.started_at + finished_at = task.finished_at || current_job[:finished_at] || Time.now() + finished_at - task.started_at else 0 end @@ -39,14 +40,14 @@ <% if current_job[:state] == "Queued" %> <%# column offset 5 %>
- <% queuetime = Time.now - current_job[:created_at] %> + <% queuetime = Time.now - Time.parse(current_job[:created_at].to_s) %> Queued for <%= render_runtime(queuetime, true) %>. <% begin %> <% if current_job[:queue_position] == 0 %> This job is next in the queue to run. <% elsif current_job[:queue_position] == 1 %> There is 1 job in the queue ahead of this one. - <% else %> + <% elsif current_job[:queue_position] %> There are <%= current_job[:queue_position] %> jobs in the queue ahead of this one. <% end %> <% rescue %> @@ -66,19 +67,19 @@ <%# column offset 8 %>
<% if pj[:output_uuid] %> - <%= link_to_if_arvados_object pj[:output_uuid], friendly_name: true %> + <%= link_to_arvados_object_if_readable(pj[:output_uuid], 'Output data not available', friendly_name: true) %> <% elsif current_job[:output] %> - <%= link_to_if_arvados_object current_job[:output], link_text: "Output of #{pj[:name]}" %> + <%= link_to_arvados_object_if_readable(current_job[:output], 'Output data not available', link_text: "Output of #{pj[:name]}") %> <% else %> No output. <% end %>
<% end %> - <% if current_job[:state].in? ["Queued", "Running"] %> + <% if current_job[:state].in? ["Queued", "Running"] and @object.editable? %> <%# column offset 11 %>
- <%= form_tag "/jobs/#{current_job[:uuid]}/cancel", style: "display:inline; padding-left: 1em" do |f| %> + <%= form_tag "/jobs/#{current_job[:uuid]}/cancel", remote: true, style: "display:inline; padding-left: 1em" do |f| %> <%= hidden_field_tag :return_to, url_for(@object) %> <%= button_tag "Cancel", {class: 'btn btn-xs btn-danger', id: "cancel-job-button"} %> <% end %> @@ -96,6 +97,15 @@
+ <% # link to repo tree/file only if the repo is readable + # and the commit is a sha1... + repo = + (/^[0-9a-f]{40}$/ =~ current_component[:script_version] and + Repository.where(name: current_component[:repository]).first) + + # ...and the api server provides an http:// or https:// url + repo = nil unless repo.andand.http_fetch_url + %> <% [:script, :repository, :script_version, :supplied_script_version, :nondeterministic].each do |k| %> <% else %> @@ -148,9 +165,9 @@
@@ -104,6 +114,12 @@ <% if current_component[k].nil? %> (none) + <% elsif repo and k == :repository %> + <%= link_to current_component[k], show_repository_tree_path(id: repo.uuid, commit: current_component[:script_version], path: '/') %> + <% elsif repo and k == :script %> + <%= link_to current_component[k], show_repository_blob_path(id: repo.uuid, commit: current_component[:script_version], path: 'crunch_scripts/'+current_component[:script]) %> + <% elsif repo and k == :script_version %> + <%= link_to current_component[k], show_repository_commit_path(id: repo.uuid, commit: current_component[:script_version]) %> <% else %> <%= current_component[k] %> <% end %> @@ -124,7 +140,8 @@ docker_image_locator: - <%= link_to_if_arvados_object current_component[:docker_image_locator], friendly_name: true %> + <%= link_to_arvados_object_if_readable(current_component[:docker_image_locator], + current_component[:docker_image_locator], friendly_name: true) %>
<% if k == :uuid %> - <%= link_to_if_arvados_object current_component[k], link_text: current_component[k] %> + <%= link_to_arvados_object_if_readable(current_component[k], current_component[k], link_text: current_component[k]) %> <% elsif k.to_s.end_with? 'uuid' %> - <%= link_to_if_arvados_object current_component[k], friendly_name: true %> + <%= link_to_arvados_object_if_readable(current_component[k], current_component[k], friendly_name: true) %> <% elsif k.to_s.end_with? '_at' %> <%= render_localized_date(current_component[k]) %> <% else %>