ok, I found the problem.
in file typo\app\controllers\theme_controller.rb at line 36
--> dst = "/#{page_cache_directory}/#{type}/theme/#{file}"
works when its changed to this
--> dst = "#{page_cache_directory}/#{type}/theme/#{file}"
without the '/' before #{page_cache_directory}
this applies to Windows. I don't know how it will work with other files
systems.
the default is for page_cache_directory is 'RAILS_ROOT + "/public"' as
defined in
RubyOnRails/lib/ruby/gems/1.8/doc/actionpack-2.0.2/rdoc/classes/ActionController/Caching/Pages.html.
is this a bug or is there an environment variable to handle this?
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
Typo-list mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/typo-list