aboutsummaryrefslogtreecommitdiffstats
path: root/lib/md5.h
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-03-08 01:25:10 +0000
committerWilmer van der Gaast <wilmer@gaast.net>2010-03-08 01:25:10 +0000
commitb52e478f9cfea9c0319d3f0203b31e4b5d03f38b (patch)
treef8f1e17aebbd290e931d5d1708cb1b83493b974f /lib/md5.h
parentc32f492758759c04d8b6239a7862648c9d32c4d8 (diff)
Added &apos; HTML entity since we're sure getting that one a lot with
libpurple..
Diffstat (limited to 'lib/md5.h')
0 files changed, 0 insertions, 0 deletions
value='hotfix/0.19.0.7'>hotfix/0.19.0.7 Unnamed repository; edit this file 'description' to name the repository.MimesBrønn
aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/comment/preview.html.erb
blob: cd966e6a58f15bb056e41ba3e94e5f4827cbb6b2 (plain)
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
<% @title = _("Preview new annotation on '{{info_request_title}}'",:info_request_title=>h(@info_request.title)) %>

<%= form_for(@comment, :html => { :id => 'preview_form' }, :url => { :controller => "comment", :action => "new", :type => "request" } ) do |f| %>
    
    <h1><%= _('Now preview your annotation') %></h1>

    <%= render :partial => 'comment/single_comment', :locals => { :comment => @comment } %>

    <p>
        <%= _('Your name and annotation will appear in <strong>search engines</strong>.')%>
    </p>

    <p>
    <%= f.hidden_field(:body) %>
    <% if params[:subscribe_to_request] %>
        <%= hidden_field_tag(:subscribe_to_request, "1") %>
    <% end %>
    <%= hidden_field_tag(:submitted_comment, 1) %>
    <%= hidden_field_tag(:preview, 0 ) %>
    <%= submit_tag _("Re-edit this annotation"), :name => 'reedit' %>
    <%= submit_tag _("Post annotation"), :name => 'submit' %>
    </p>

<% end %>