Export Zipballs Include BlahTeX PNGs

It's as simple as recursing through the
files/ directory, when adding to the zipball.
This commit is contained in:
Jacques Distler 2010-01-24 22:54:35 -06:00
parent aea2c5099f
commit d3db9d1229

View file

@ -463,9 +463,8 @@ EOL
end
end
files = @web.files_path
Dir.foreach(files) do |f|
next if ['.', '..'].include?(f)
zip_out.add "files/#{f}", File.join(files, f)
Dir["#{files}/**/*"].each do |f|
zip_out.add "files#{f.sub(files.to_s,'')}", f
end
end
FileUtils.rm_rf(Dir[@wiki.storage_path.join(file_prefix + '*.zip').to_s])