8784: Fix test for latest firefox.
[arvados.git] / apps / workbench / app / views / application / _show_text_with_locators.html.erb
1 <%# The locators in the given text are expected to be of the form JSON_KEEP_LOCATOR_REGEXP %>
2
3 <% data_height = data_height || 100 %>
4   <div style="max-height:<%=data_height%>px; overflow:auto;">
5     <% text_data.each_line do |l| %>
6       <% text_part = l %>
7       <% match = keep_locator_in_json l %>
8
9       <%
10         if match
11           text_part = match[1]
12           rindex = match[2].rindex('"'); match2 = match[2][0..rindex-1]
13           quote_char = '"'
14
15           pdh_readable = object_readable(match2)
16           file_link = ''
17           if pdh_readable and match[4].size > 0
18             link_params = {controller: 'collections', action: 'show_file', uuid: match[3], file: match[4][1..-1]}
19             preview_allowed = preview_allowed_for(match[4])
20             if preview_allowed
21               file_link = link_to(raw(match[4]), link_params.merge(disposition: 'inline'))
22             else
23               file_link = link_to(raw(match[4]), link_params.merge(disposition: 'attachment'))
24             end
25           end
26         end
27       %>
28
29       <span style="white-space: pre-wrap; margin: none;"><%= text_part %><% if match %><% if pdh_readable then %><%= link_to_arvados_object_if_readable(match[3], match[3], friendly_name: true) %><%= file_link%><% else %><%= match2%><% end %><%=quote_char+match[5]%><br/><% end %></span>
30     <% end %>
31   </div>