TeX and CSS tweaks.

Sync with latest Instiki Trunk
(Updates Rails to 1.2.2)
This commit is contained in:
Jacques Distler 2007-02-09 02:04:31 -06:00
parent 0ac586ee25
commit c358389f25
443 changed files with 24218 additions and 9823 deletions

View file

@ -4,7 +4,7 @@ namespace :tmp do
desc "Creates tmp directories for sessions, cache, and sockets"
task :create do
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets ))
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids ))
end
namespace :sessions do
@ -27,4 +27,11 @@ namespace :tmp do
FileUtils.rm(Dir['tmp/sockets/[^.]*'])
end
end
namespace :pids do
desc "Clears all files in tmp/pids"
task :clear do
FileUtils.rm(Dir['tmp/pids/[^.]*'])
end
end
end