myexperiment-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[myexperiment-hackers] [3623] branches/packs/app/views/packs/show.rhtml:


From: noreply
Subject: [myexperiment-hackers] [3623] branches/packs/app/views/packs/show.rhtml: Fixed markup issue with debug tabs
Date: Wed, 21 Aug 2013 13:39:02 +0000 (UTC)

Revision
3623
Author
dgc
Date
2013-08-21 13:39:02 +0000 (Wed, 21 Aug 2013)

Log Message

Fixed markup issue with debug tabs

Modified Paths

Diff

Modified: branches/packs/app/views/packs/show.rhtml (3622 => 3623)


--- branches/packs/app/views/packs/show.rhtml	2013-08-21 13:38:26 UTC (rev 3622)
+++ branches/packs/app/views/packs/show.rhtml	2013-08-21 13:39:02 UTC (rev 3623)
@@ -147,54 +147,76 @@
 
   <div id="tabsContainer" class="tabsContainer"></div>
     
-    <div class="tabContainer">
-      <div class="tabTitle">Structure</div>
-      <div class="tabContent">
-        <pre><%=h @pack.research_object.ore_structure.to_yaml -%></pre>
-      </div>
+  <div class="tabContainer">
+    <div class="tabTitle">Structure</div>
+    <div class="tabContent">
+      <pre><%=h @pack.research_object.ore_structure.to_yaml -%></pre>
     </div>
-    
-    <div class="tabContainer">
-      <div class="tabTitle">Resources</div>
-      <div class="tabContent">
-        <table class="simple">
+  </div>
+  
+  <div class="tabContainer">
+    <div class="tabTitle">ORE entries</div>
+    <div class="tabContent">
+      <table class="simple">
+        <tr>
+          <th>Path</th>
+          <th>Size</th>
+          <th>Content type</th>
+          <th>Annotations</th>
+        </tr>
+        <% @pack.research_object.resources.each do |resource| %>
+          <% ore_path = resource.ore_path %>
+          <% next unless ore_path %>
           <tr>
-            <th>Path</th>
-            <th>Size</th>
-            <th>Content type</th>
-            <th>Annotations</th>
+            <td><%= link_to(h(resource.path), pack_items_path(@pack) + "/" + ore_path) -%></td>
+            <td><%=h resource.size -%></td>
+            <td><%=h resource.content_type -%></td>
+            <td><%=h resource.annotations.count -%></td>
           </tr>
-          <% @pack.research_object.resources.each do |resource| %>
-            <tr>
-              <td><%=h resource.path -%></td>
-              <td><%=h resource.size -%></td>
-              <td><%=h resource.content_type -%></td>
-              <td><%=h resource.annotations.count -%></td>
-            </tr>
-          <% end %>
-        </table>
-      </div>
+        <% end %>
+      </table>
     </div>
+  </div>
+  
+  <div class="tabContainer">
+    <div class="tabTitle">Resources</div>
+    <div class="tabContent">
+      <table class="simple">
+        <tr>
+          <th>Path</th>
+          <th>Size</th>
+          <th>Content type</th>
+          <th>Annotations</th>
+        </tr>
+        <% @pack.research_object.resources.each do |resource| %>
+          <tr>
+            <td><%=h resource.path -%></td>
+            <td><%=h resource.size -%></td>
+            <td><%=h resource.content_type -%></td>
+            <td><%=h resource.annotations.count -%></td>
+          </tr>
+        <% end %>
+      </table>
+    </div>
+  </div>
 
-    <div class="tabContainer">
-      <div class="tabTitle">Statements</div>
-      <div class="tabContent">
+  <div class="tabContainer">
+    <div class="tabTitle">Statements</div>
+    <div class="tabContent">
 
-        <div>Number of statements in merged annotation graph: <%= @graph.count -%></div>
+      <div>Number of statements in merged annotation graph: <%= @graph.count -%></div>
 
-        <% @graph.each do |statement| %>
-          <div style="margin: 8px; box-shadow: 4px 4px 8px #ddd;">
-            <table class="simple" style="width: 100%">
-              <tr><td><%=h statement.subject -%></td></tr>
-              <tr><td><%=h statement.predicate -%></td></tr>
-              <tr><td><%=h statement.object -%></td></tr>
-            </table>
-          </div>
-        <% end %>
+      <% @graph.each do |statement| %>
+        <div style="margin: 8px; box-shadow: 4px 4px 8px #ddd;">
+          <table class="simple" style="width: 100%">
+            <tr><td><%=h statement.subject -%></td></tr>
+            <tr><td><%=h statement.predicate -%></td></tr>
+            <tr><td><%=h statement.object -%></td></tr>
+          </table>
+        </div>
+      <% end %>
 
-      </div>
     </div>
-
   </div>
 
 </div>

reply via email to

[Prev in Thread] Current Thread [Next in Thread]