Commit ee712409e0385611d080e9ee05d8927c3b7676f7
Exists in
master
and in
22 other branches
Merge branch 'master' into next
Showing
5 changed files
with
15 additions
and
5 deletions
Show diff stats
AUTHORS.md
... | ... | @@ -92,6 +92,7 @@ Daniel Alves + Rafael Manzo <rr.manzo@gmail.com> |
92 | 92 | Daniela Soares Feitosa <danielafeitosa@colivre.coop.br> |
93 | 93 | Daniel Bucher <daniel.bucher88@gmail.com> |
94 | 94 | Daniel Cunha <daniel@colivre.coop.br> |
95 | +daniel <dtygel@eita.org.br> | |
95 | 96 | David Carlos <ddavidcarlos1392@gmail.com> |
96 | 97 | diegoamc <diegoamc90@gmail.com> |
97 | 98 | Diego Araújo + Alessandro Palmeira <diegoamc90@gmail.com> |
... | ... | @@ -120,6 +121,7 @@ Diego Araujo + Rodrigo Souto + Rafael Manzo <rr.manzo@gmail.com> |
120 | 121 | Diego + Jefferson <diegoamc90@gmail.com> |
121 | 122 | Diego Martinez <diegoamc90@gmail.com> |
122 | 123 | Diego + Renan <renanteruoc@gmail.com> |
124 | +dtygel <dtygel@gmail.com> | |
123 | 125 | DylanGuedes <djmgguedes@gmail.com> |
124 | 126 | Eduardo Passos <eduardo@risa.localdomain.localhost> |
125 | 127 | Eduardo Passos <eduardosteps@gmail.com> |
... | ... | @@ -144,6 +146,7 @@ Italo Valcy <italo@dcc.ufba.br> |
144 | 146 | Jefferson Fernandes + Diego Araujo + Rafael Manzo <jeffs.fernandes@gmail.com> |
145 | 147 | Jefferson Fernandes + Joao M. M. da Silva <jeffs.fernandes@gmail.com> |
146 | 148 | Jefferson Fernandes + Joao M. M. Silva <jeffs.fernandes@gmail.com> |
149 | +Jérôme Jutteau <j.jutteau@gmail.com> | |
147 | 150 | João da Silva + Eduardo Morais + Rafael Manzo <rr.manzo@gmail.com> |
148 | 151 | João da Silva <jaodsilv@linux.ime.usp.br> |
149 | 152 | João Marco Maciel da Silva + Rafael Manzo + Renan Teruo <jaodsilv@linux.ime.usp.br> |
... | ... | @@ -247,8 +250,10 @@ Tallys Martins <tallysmartins@gmail.com> |
247 | 250 | Tallys Martins <tallysmartins@yahoo.com.br> |
248 | 251 | tallys <tallys@tallys> |
249 | 252 | tallys <tallys@tallys.(none)> |
253 | +Thiago Casotti <thiago.casotti@uol.com.br> | |
250 | 254 | Thiago Zoroastro <thiago.zoroastro@bol.com.br> |
251 | 255 | Tuux <tuxa@galaxie.eu.org> |
256 | +TWS <tablettws@gmail.com> | |
252 | 257 | Valessio Brito <contato@valessiobrito.com.br> |
253 | 258 | Valessio Brito <contato@valessiobrito.info> |
254 | 259 | Valessio Brito <valessio@gmail.com> | ... | ... |
debian/changelog
lib/noosfero/version.rb
lib/tasks/doc.rake
... | ... | @@ -12,9 +12,8 @@ namespace :noosfero do |
12 | 12 | end |
13 | 13 | end |
14 | 14 | task :unlink_plugins_textiles do |
15 | - root = Pathname.new(File.dirname(__FILE__) + '/../..').expand_path | |
16 | - rm_f Dir.glob(root.join('doc/noosfero/plugins/*.textile')) - | |
17 | - [root.join('doc/noosfero/plugins/index.textile')] | |
15 | + rm_f Dir.glob('doc/noosfero/plugins/*.textile') - | |
16 | + ['doc/noosfero/plugins/index.textile'] | |
18 | 17 | end |
19 | 18 | input = Dir.glob('doc/noosfero/**/*.textile') + plugins_textiles.map{|i| "doc/noosfero/plugins/#{File.basename(i)}"} |
20 | 19 | topics_xhtml = input.map { |item| item.sub('.textile', '.en.xhtml') }.uniq | ... | ... |
lib/tasks/error_messages.rake
... | ... | @@ -4,7 +4,7 @@ targets = [] |
4 | 4 | templates.each do |template| |
5 | 5 | target = template.gsub(/.erb$/, '') |
6 | 6 | targets << target |
7 | - file target => [:makemo, template] do | |
7 | + file target => [:makemo, template, :environment] do | |
8 | 8 | require 'erb' |
9 | 9 | erb = ERB.new(File.read(template)) |
10 | 10 | File.open(target, 'w') do |file| | ... | ... |