Changeset 7644
- Timestamp:
- 09/27/07 05:04:02 (1 year ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/helpers.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r7640 r7644 1 1 *SVN* 2 3 * Avoid calling is_missing on LoadErrors. Closes #7460. [ntalbott] 2 4 3 5 * Move Railties' Dispatcher to ActionController::Dispatcher, introduce before_ and after_dispatch callbacks, and warm up to non-CGI requests. [Jeremy Kemper] trunk/actionpack/lib/action_controller/helpers.rb
r7438 r7644 174 174 require_dependency module_path 175 175 helper module_name.constantize 176 rescue LoadError=> e176 rescue MissingSourceFile => e 177 177 raise unless e.is_missing? module_path 178 178 logger.debug("#{name}: missing default helper path #{module_path}") if logger