aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/fixtures
Commit message (Collapse)AuthorAgeFilesLines
* fix issue #11605Kassio Borges2013-08-246-5/+0
|
* Fix typo in view nameCarlos Antonio da Silva2013-04-031-0/+0
| | | | Introduced in 2c22376fe04b89e8f34620139720b85a85ce3428
* Use 1.8 hash style in test viewsCarlos Antonio da Silva2013-04-032-2/+2
| | | | Introduced in 2c22376fe04b89e8f34620139720b85a85ce3428
* Common behavior with adding formats to lookup_context for TemplateRenderer ↵Dmitry Vorotilin2013-04-027-0/+7
| | | | and PartialRenderer
* Backport #5808Mack Earnhardt2013-03-241-0/+2
| | | | | | df36c5f - Fix assert_template assertion with :layout option 4bd05a7 - Fix assert_template :layout => nil assertion 0d19a08 - Improve assert_template layout checking
* Fixes issue where duplicate assets can be required with sprockets.jejacks0n2013-01-102-0/+2
| | | | | - addresses the problem by calling flatten on asset array before calling uniq. - adds note to CHANGELOG.
* Revert "Merge pull request #7659 from HugoLnx/template_error_no_matches_rebased"Rafael Mendonça França2012-10-311-1/+0
| | | | | | | | | | | | | This reverts commit 7d17cd2cbfc086f5aa9dd636e1207eb130150428. Conflicts: actionpack/CHANGELOG.md Reason: This added a regression since people were relying on this buggy behavior. This will introduce back #3849 but we will be backward compatible in stable release. Fixes #8068.
* Merge pull request #7659 from HugoLnx/template_error_no_matches_rebasedRafael Mendonça França2012-09-301-0/+1
| | | | | | | REBASED: fixing assert_template bug when template matches expected, but not ends with Conflicts: actionpack/CHANGELOG.md actionpack/lib/action_controller/test_case.rb
* Merge pull request #6752 from steveklabnik/fix_5680Rafael Mendonça França2012-06-161-0/+3
| | | | Respect absolute paths in compute_source_path.
* Fix asset tags for files with more than one dotPiotr Sarnacki2012-06-072-0/+0
| | | | | | | | | | | | | | | After the fix done in 39f9f02a, there are cases that will not work correctly. If you have file with "2 extensions", like foo.min.js and you reference the file without extension, like: javascript_include_tag "foo.min" it will fail because sprockets finds foo.min.js with foo.min argument. This commit fixes this case and will get the right file even when referrencing it without extension. (closes #6598)
* Assets: don't add extension if other given and file existsSergey Nartimov2012-05-211-0/+0
| | | | | | | | | | | | | | We should lookup if asset without appended extension exists. When sprockets are disabled the asset tag helpers incorporate this logic. When sprockets are enabled we should have the same logic. For example, we have style.ext file in app/assets/stylesheets and we use stylesheet_link_tag in the layout. In this case we should have /assets/style.ext instead of /assets/style.ext.css in the output. Closes #6310
* If partial is rendered in controller, grab format from templatePiotr Sarnacki2012-03-271-0/+1
| | | | | | | | | Previously `rendered_format` was set only based on mime types passed in Accept header, which was wrong if first type from Accept was different than rendered partial. The fix is to simply move setting rendered_format to the place where template is available and grab format from the template. If it fails we can fallback to formats passed by Accept header.
* Add missing test for #5308Piotr Sarnacki2012-03-172-0/+2
|
* Fix #5440 - multiple render_to_string breaks partials formatsPiotr Sarnacki2012-03-174-0/+4
| | | | | | | | | This fixes situation where rendering template to string sets `rendered_format` to the format rendered there. This is ok to have consistent formats rendered in partials, but it breaks on next renders if format is explicitly set or on last render where default format does not necessarily need to be the format of first rendered template.
* format lookup for partials is derived from the format in which the template ↵Santiago Pastorino2012-02-221-0/+1
| | | | | | is being rendered Closes #5025 part 2
* Use the right format when a partial is missing.Santiago Pastorino2012-02-201-0/+1
| | | | Closes #5025
* Remove fixture files with Windows incompatible filenamesAndrew White2012-02-2012-12/+0
| | | | | | Windows doesn't allow `\ / : * ? " < > |` in filenames so create the fixture files at runtime and ignore the incompatible ones when running on Windows.
* Fix ActionDispatch::Static to serve files with unencoded PCHARAndrew White2012-02-1712-0/+12
| | | | | | | | | | | RFC 3986[1] allows sub-delim characters in path segments unencoded, however Rack::File requires them to be encoded so we use URI's unescape method to leave them alone and then escape them again. Also since the path gets passed to Dir[] we need to escape any glob characters in the path. [1]: http://www.ietf.org/rfc/rfc3986.txt
* Add font_path helper methodSantiago Pastorino2012-01-032-0/+0
|
* test helpers in erb using erblest2011-11-301-0/+3
|
* Deprecate set_sequence_name in favour of self.sequence_name=Jon Leighton2011-11-291-2/+2
|
* Deprecate set_table_name in favour of self.table_name= or defining your own ↵Jon Leighton2011-11-291-1/+1
| | | | method.
* fix label with block in erblest2011-11-271-0/+4
|
* Merge pull request #2219 from kommen/fix_fragment_caching_squashedSantiago Pastorino2011-10-131-0/+1
| | | | Fix fragment caching (squashed commits)
* added tests for render :file/:template and the :formats/:handlers/:locale ↵Nick Sutterer2011-09-232-0/+2
| | | | options.
* Deprecate passing the template handler in the template name.José Valim2011-09-221-1/+1
| | | | | | For example, calling hello.erb is now deprecated. Since Rails 3.0 passing the handler had no effect whatsover. This commit simply deprecates such cases so we can clean up the code in later releases.
* it is now possible to pass details options (:formats, :details, :locales, ↵Nick Sutterer2011-09-222-0/+2
| | | | ...) to #render, #find_template and friends. this doesn't change anything in global context.
* * is not allowed in windows file names. Closes #2574 #2847Santiago Pastorino2011-09-041-0/+0
|
* Properly escape glob characters.Aaron Patterson2011-08-161-0/+1
|
* Added view template invalid name check, along with tests. No merges in commit.huskins2011-07-131-0/+1
|
* Add tests for alternate asset prefix/environmentSam Pohlenz2011-07-011-0/+1
|
* Make sure respond_with with :js tries to render a template in all casesJosé Valim2011-06-301-0/+1
|
* Allow multiple sources in Sprockets helpersGuillermo Iguaran2011-06-052-0/+0
|
* removed deprecated methods, and related tests, from ActionPackJosh Kalderimis2011-05-241-3/+0
|
* Add debug_asset supportJoshua Peek2011-05-222-0/+2
|
* All assets, including images, audio, and video, now uses the asset pipeline ↵David Heinemeier Hansson2011-04-191-0/+0
| | | | when its on
* content_for should work with provide.José Valim2011-04-164-0/+13
|
* removes the RJS template handlerXavier Noria2011-04-137-12/+0
|
* removes support for render :updateXavier Noria2011-04-135-11/+0
|
* Merge branch 'master' into sprocketsJoshua Peek2011-04-122-0/+2
|\
| * pass respond_with options to controller render when using a template for api ↵Josh Kalderimis2011-03-311-0/+1
| | | | | | | | | | | | navigation Signed-off-by: José Valim <jose.valim@gmail.com>
| * only try to display an api template in responders if the request is a get or ↵Josh Kalderimis2011-03-311-0/+1
| | | | | | | | | | | | there are no errors Signed-off-by: José Valim <jose.valim@gmail.com>
* | Merge branch 'master' into sprocketsJoshua Peek2011-03-302-0/+2
|\|
| * Add a failing test case for an implicit action with a before filter.Manfred Stienstra2011-03-232-0/+2
| | | | | | | | Signed-off-by: Andrew White <andyw@pixeltrix.co.uk>
* | Seperate asset directoriesJoshua Peek2011-03-296-0/+0
| |
* | Tests for SprocketsHelperJoshua Peek2011-03-296-0/+0
|/
* [action_view] added custom patterns to template resolverChris Kowalik2011-03-203-0/+3
|
* Add a test for 'render :layout'Anton Astashov2011-02-031-0/+4
| | | | | | | | | To make sure it will show block contents if it is placed after 'render :partial' [#5557 state:resolved] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
* Recreate symlink in layouts for testsPiotr Sarnacki2010-12-311-0/+1
|
* ActionController::Base.helpers.sanitize ignores case in protocolTimothy N. Tsvetkov2010-12-301-1/+0
| | | | | | [#6044 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>