_textile_media.rhtml
2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<div class='textile-editor-sidebar'>
<div class='textile-editor-sidebar-box'>
<p>
<strong><%= _('Textile markup quick reference') %></strong>
<%= link_to(_('(show)'), '#', :id => 'textile-quickref-show') %>
<%= link_to(_('(hide)'), '#', :id => 'textile-quickref-hide', :style => 'display: none') %>
</p>
<div id='textile-quickref' style='display: none;'>
<p><%= _('Simple formatting:') %> <code>_<%= _('italics') %>_</code> <code>*<%= _('bold') %>*</code>, <code>-<%= _('striked')%>-</code>.</p>
<p><%= _('Links:') %> <code>"Noosfero":http://noosfero.org/</code></p>
<p><%= _('Images:') %> <code>!http://example.com/image.png!</code></p>
<p><%= _('Bullet lists:') %></p>
<pre>* <%= _('first item') %>
* <%= _('second item') %></pre>
<p><%= _('Numbered lists:') %></p>
<pre># <%= _('first item') %>
# <%= _('second item') %></pre>
<p><%= _('See also a more complete <a href="%s">Textile Reference</a>') % 'http://redcloth.org/hobix.com/textile/' %></p>
</div>
</div>
<div class='textile-editor-sidebar-box'>
<p><strong>Media upload</strong></p>
<% @folders = profile.folders %>
<% form_tag({ :action => 'media_upload' }, :multipart => true) do |f| %>
<%= render :partial => 'upload_file_form', :locals => { :size => 30 } %>
<% end %>
<div id='media-upload-results' style='display: none'>
<ul>
</ul>
<p>
<em><%= _('Drag item names to the text to add their URL') %></em>
</p>
<p><%= link_to('#', _('Upload more files'), :id => 'media-upload-more-files') %></p>
</div>
</div>
<div class='textile-editor-sidebar-box'>
<p><strong>Media search</strong></p>
<% form_tag({ :action => 'search' }) do %>
<span class='formfield'>
<input name='q' type='text' id='media-search-query' style='width: 250px;'/>
</span>
<%= submit_button :search, _('Search'), :id => 'media-search-button' %>
<% end %>
</form>
<div id='media-search-results' style='display: none'>
<ul>
</ul>
<p>
<em><%= _('Drag item names to the text to add their URL') %></em>
</p>
</div>
</div>
</div>