X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/5b1176df5257cd16350fb4da5a6d6157c58a0a0f..4ed794e2803ef9812dbc7ae938a8e17b3b9714c1:/apps/workbench/app/views/work_unit/_component_detail.html.erb diff --git a/apps/workbench/app/views/work_unit/_component_detail.html.erb b/apps/workbench/app/views/work_unit/_component_detail.html.erb deleted file mode 100644 index ba9d3cee7b..0000000000 --- a/apps/workbench/app/views/work_unit/_component_detail.html.erb +++ /dev/null @@ -1,116 +0,0 @@ -
-
-
- <% if current_obj.uuid.nil? %> - No <%= current_obj.title %> has been submitted yet. - <% else %> - - <% keys = [:uuid, :modified_by_user_uuid, :created_at, :started_at, :finished_at, :container_uuid, :priority] %> - <% keys << :outputs if @object.uuid == current_obj.uuid %> - <% keys.each do |k| %> - <% val = current_obj.send(k) if current_obj.respond_to?(k) %> - <% has_val = val %> - <% has_val = val.andand.any? if k == :outputs %> - <% if has_val %> - - - - - <% end %> - <% end %> -
- <%= k.to_s %>: - - <% if k == :uuid %> - <%= link_to_arvados_object_if_readable(val, val, link_text: val) %> - <% elsif k.to_s.end_with? 'uuid' %> - <%= link_to_arvados_object_if_readable(val, val, friendly_name: true) %> - <% elsif k.to_s.end_with? '_at' %> - <%= render_localized_date(val) %> - <% elsif k == :outputs and val.any? %> - <% if val.size == 1 %> - <%= link_to_arvados_object_if_readable(val[0], 'Output data not available', friendly_name: true) %> - <% else %> - <%= render partial: 'work_unit/show_outputs', locals: {id: current_obj.uuid, outputs: val, align:""} %> - <% end %> - <% else %> - <%= val %> - <% end %> -
- <% end %> -
-
- - <% # link to repo tree/file only if the repo is readable - # and the commit is a sha1... - repo = - (/^[0-9a-f]{40}$/ =~ current_obj.script_version and - Repository.where(name: current_obj.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, - :command, :cwd, :environment, :mounts, :output_path].each do |k| %> - <% val = current_obj.send(k) if current_obj.respond_to?(k) %> - <% if val %> - - - - - <% end %> - <% end %> - <% if current_obj.runtime_constraints.andand[:docker_image] and current_obj.docker_image %> - - - - - - - - - <% elsif current_obj.docker_image %> - - - - - <% end %> -
- <%= k.to_s %>: - - <% if repo and k == :repository %> - <%= link_to val, show_repository_tree_path(id: repo.uuid, commit: current_obj.script_version, path: '/') %> - <% elsif repo and k == :script %> - <%= link_to val, show_repository_blob_path(id: repo.uuid, commit: current_obj.script_version, path: 'crunch_scripts/'+current_obj.script) %> - <% elsif repo and k == :script_version %> - <%= link_to val, show_repository_commit_path(id: repo.uuid, commit: current_obj.script_version) %> - <% else %> - <%= val %> - <% end %> -
- docker_image: - - <%= current_obj.runtime_constraints[:docker_image] %> -
- docker_image_locator: - - <%= link_to_arvados_object_if_readable(current_obj.docker_image, - current_obj.docker_image, friendly_name: true) %> -
- docker_image_locator: - - <%= link_to_arvados_object_if_readable(current_obj.docker_image, - current_obj.docker_image, friendly_name: true) %> -
-
-
- - <% if current_obj.parameters and !current_obj.parameters.empty? %> -
-
-

script_parameters:

-
<%= JSON.pretty_generate(current_obj.parameters) rescue nil %>
-
-
- <% end %> -