Mercurial > zeropaste
annotate app/views/pastes/show.html.erb @ 222:9bc35555d3e3
Use external jquery instead of rails' builtin
Saves bandwidth and (hopefully) improves speed.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sun, 12 May 2013 12:38:03 +0900 |
parents | 22c4b5f90e24 |
children | e413246bb589 |
rev | line source |
---|---|
98 | 1 <% provide :title, "Paste ##{@paste.id}" %> |
190 | 2 |
3 <% if flash[:error] %> | |
4 <div class="alert alert-error"> | |
5 <%= flash[:error] %> | |
6 </div> | |
7 <% end %> | |
8 | |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
9 <div class="page-header"> |
98 | 10 <h1><%= content_for :title %></h1> |
43
bc088ddb470f
Added page header div for show.
Edho Arief <edho@myconan.net>
parents:
42
diff
changeset
|
11 </div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
12 |
179
b1aa7865bc7f
Added paste id data to markup.
Edho Arief <edho@myconan.net>
parents:
150
diff
changeset
|
13 <div id="paste-show" class="tabbable" data-id="<%= @paste.id %>"> |
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
14 <div class="btn-toolbar"> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
15 <div id="paste-mode" class="btn-group" data-toggle="buttons-radio"> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
16 <%= link_to 'Plain', '#pl', :data => { :toggle => 'tab' }, :class => 'btn active' %> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
17 <%= link_to 'Highlight', '#hl', :data => { :toggle => 'tab' }, :class => 'btn' %> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
18 <%= link_to 'Markdown', '#md', :data => { :toggle => 'tab' }, :class => 'btn' %> |
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
19 </div> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
20 <div class="btn-group" id="paste-resize"> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
21 <a class="btn dropdown-toggle" data-toggle="dropdown" data-base="Width: :size:" href="#"> |
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
22 Width: auto |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
23 <span class="caret"></span> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
24 </a> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
25 <ul class="dropdown-menu"> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
26 <li><a href="#">auto</a></li> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
27 <li><a href="#">560px</a></li> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
28 <li><a href="#">760px</a></li> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
29 <li><a href="#">960px</a></li> |
125
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
30 </ul> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
31 </div> |
64f73525503b
Use button toolbar instead of nav.
Edho Arief <edho@myconan.net>
parents:
115
diff
changeset
|
32 </div> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
33 <div id="paste" class="tab-content"> |
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
34 <div class="tab-pane active" id="pl"> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
35 <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
|
36 </div> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
37 <div class="tab-pane" id="hl"> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
38 <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
|
39 </div> |
214
22c4b5f90e24
Massive javascript and html refactor. Also, ie9
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
40 <div class="tab-pane" id="md"> |
105 | 41 <div class="well"></div> |
100
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
42 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
43 </div> |
90b59418828a
Three times more fun with tabs (added plain and markdown tab).
Edho Arief <edho@myconan.net>
parents:
98
diff
changeset
|
44 </div> |
2 | 45 |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
46 <div class="input-append"> |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
47 <%= form_for @paste, :method => :delete do |f| %> |
190 | 48 <%= f.text_field :key, :value => nil, :placeholder => 'Deletion key', :autofocus => !flash[:error].blank? %> |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
49 <%= f.submit 'Delete this paste', :class => 'btn btn-danger' %> |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
50 <% end %> |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
51 </div> |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
179
diff
changeset
|
52 |
107 | 53 <div> |
54 <ul class="nav nav-pills"> | |
55 <li><%= link_to 'Raw', paste_path(@paste, :txt) %></li> | |
56 <li><%= link_to 'New paste based on this', root_path(:base => @paste.id) %></li> | |
57 <li><%= link_to 'More Paste', root_path %></li> | |
58 </ul> | |
59 </div> |