annotate app/views/pastes/show.html.erb @ 103:a8768ad51926

Allows hash-based onload tab switch.
author Edho Arief <edho@myconan.net>
date Mon, 12 Nov 2012 11:28:11 +0700
parents 17f682a53b13
children 28518004899a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
98
58aa32120b54 Added paste id to title.
Edho Arief <edho@myconan.net>
parents: 90
diff changeset
1 <% provide :title, "Paste ##{@paste.id}" %>
90
d100218b96c9 Disables csrf for pastes/show.
Edho Arief <edho@myconan.net>
parents: 60
diff changeset
2 <% @skip_csrf = true %>
43
bc088ddb470f Added page header div for show.
Edho Arief <edho@myconan.net>
parents: 42
diff changeset
3 <div class="page-header">
98
58aa32120b54 Added paste id to title.
Edho Arief <edho@myconan.net>
parents: 90
diff changeset
4 <h1><%= content_for :title %></h1>
43
bc088ddb470f Added page header div for show.
Edho Arief <edho@myconan.net>
parents: 42
diff changeset
5 </div>
100
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
6
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
7 <div class="tabbable">
103
a8768ad51926 Allows hash-based onload tab switch.
Edho Arief <edho@myconan.net>
parents: 101
diff changeset
8 <ul id="paste-tabs" class="nav nav-tabs">
100
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
9 <li class="active"><%= link_to 'Plain', '#plain', :data => { :toggle => 'tab' } %></li>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
10 <li><%= link_to 'Highlight', '#highlight', :data => { :toggle => 'tab' } %></li>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
11 <li><%= link_to 'Markdown', '#markdown', :data => { :toggle => 'tab' } %></li>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
12 </ul>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
13 <div class="tab-content">
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
14 <div class="tab-pane active" id="plain">
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
15 <pre><%= @paste.paste %></pre>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
16 </div>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
17 <div class="tab-pane" id="highlight">
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
18 <pre class="prettyprint linenums"></pre>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
19 </div>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
20 <div class="tab-pane" id="markdown">
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
21 <div></div>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
22 </div>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
23 </div>
90b59418828a Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents: 98
diff changeset
24 </div>
2
42de15334db1 Added the pastes.
Edho Arief <edho@myconan.net>
parents:
diff changeset
25
101
17f682a53b13 Added horizontal line because I can.
Edho Arief <edho@myconan.net>
parents: 100
diff changeset
26 <hr />
41
ca7e3661cda0 Better styled show paste.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
27 <ul class="nav nav-pills">
ca7e3661cda0 Better styled show paste.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
28 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li>
ca7e3661cda0 Better styled show paste.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
29 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li>
ca7e3661cda0 Better styled show paste.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
30 <li><%= link_to 'More Paste', root_path %></li>
ca7e3661cda0 Better styled show paste.
Edho Arief <edho@myconan.net>
parents: 40
diff changeset
31 </ul>