Commit fd9e479a2c9620feb665db5068ca07a88f45295c
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
Merge branch 'master' into stable
Showing
4 changed files
with
4 additions
and
4 deletions
Show diff stats
app/helpers/application_helper.rb
| ... | ... | @@ -1380,7 +1380,7 @@ module ApplicationHelper |
| 1380 | 1380 | # are old things that do not support it we are keeping this hot spot. |
| 1381 | 1381 | html = @plugins.pipeline(:parse_content, html, source).first |
| 1382 | 1382 | end |
| 1383 | - html | |
| 1383 | + html.html_safe | |
| 1384 | 1384 | end |
| 1385 | 1385 | |
| 1386 | 1386 | def convert_macro(html, source) | ... | ... |
app/views/profile/_profile_scrap_reply_form.html.erb
| ... | ... | @@ -11,7 +11,7 @@ |
| 11 | 11 | :title => _('Leave your comment'), |
| 12 | 12 | :onfocus => ("if(this.value==this.title){this.value='';this.style.color='#000'};this.style.backgroundImage='url(" + profile_icon(current_person, :icon, false) + ")'" if logged_in?), |
| 13 | 13 | :onblur => ("if(this.value==''){this.value=this.title;this.style.color='#ccc'};this.style.backgroundImage='none'" if logged_in?), |
| 14 | - :value => _('Leave your comment'), %> | |
| 14 | + :value => _('Leave your comment') %> | |
| 15 | 15 | <%= hidden_field_tag 'scrap[scrap_id]', scrap.id %> |
| 16 | 16 | <%= hidden_field_tag 'receiver_id', scrap.sender.id %> |
| 17 | 17 | <% end %> | ... | ... |
lib/tasks/ci.rake
| ... | ... | @@ -7,7 +7,7 @@ namespace :ci do |
| 7 | 7 | from = ENV['PREV_HEAD'] || "origin/#{current_branch}" |
| 8 | 8 | to = ENV['HEAD'] || current_branch |
| 9 | 9 | changed_files = `git diff --name-only #{from}..#{to}`.split.select do |f| |
| 10 | - File.exist?(f) | |
| 10 | + File.exist?(f) && f.split(File::SEPARATOR).first != 'vendor' | |
| 11 | 11 | end |
| 12 | 12 | |
| 13 | 13 | changed_plugin_files = changed_files.select do |f| | ... | ... |
script/quick-start
| ... | ... | @@ -109,7 +109,7 @@ run 'rake noosfero:translations:compile >/dev/null 2>&1' |
| 109 | 109 | mkdir -p tmp/pids |
| 110 | 110 | |
| 111 | 111 | # use default gitignore rules |
| 112 | -ln -s gitignore.example .gitignore | |
| 112 | +ln -s gitignore.example .gitignore || true | |
| 113 | 113 | |
| 114 | 114 | # you can now start the server |
| 115 | 115 | say "I: Congratulations, you are ready to run Noosfero." | ... | ... |