public
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/rails/rails.git
Search Repo:
Fixed that Action View should always use the included Builder, never 
attempt to require the gem, to ensure compatibility

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1802 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Sun Jul 10 12:38:33 -0700 2005
commit  1c5d1ededb3ccaed4810b45b672f0a9e3ca52884
tree    8ab01cc3e2bfb52fb79fbac27c6a87d3143e7378
parent  c0f84b117ca08e7959062f17c216060d68d46b0c
...
1
2
 
 
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
 
 
 
 
 
 
 
 
 
21
22
23
...
1
2
3
4
5
6
7
8
 
 
 
 
 
 
 
9
10
11
12
13
14
 
15
16
17
18
19
20
21
22
23
24
25
26
27
0
@@ -1,23 +1,27 @@
0
 *SVN*
0
 
0
+* Fixed that Action View should always use the included Builder, never attempt to require the gem, to ensure compatibility
0
+
0
 * Added that nil options are not included in tags, so tag("p", :ignore => nil) now returns <p /> not <p ignore="" /> but that tag("p", :ignore => "") still includes it #1465 [michael@schuerig.de]
0
 
0
 * Fixed that UrlHelper#link_to_unless/link_to_if used html_escape on the name if no link was to be applied. This is unnecessary and breaks its use with images #1649 [joergd@pobox.com]
0
 
0
-* Added even more goodies to script.aculo.us #1677 [Thomas Fuchs]
0
- * Added capability to remove draggables/droppables and redeclare sortables in dragdrop.js (this makes it possible to call sortable_element on the same element more than once, e.g. in AJAX returns that modify the sortable element. all current sortable 'stuff' on the element will be discarded and the sortable will be rebuilt)
0
- * Always reset background color on Effect.Highlight; this make change backwards-compatibility, to be sure include style="background-color:(target-color)" on your elements or else elements will fall back to their CSS rules (which is a good thing in most circumstances)
0
- * Removed circular references from element to prevent memory leaks (still not completely gone in IE)
0
- * Changes to class extension in effects.js
0
- * Make Effect.Highlight restore any previously set background color when finishing (makes effect work with CSS classes that set a background color)
0
-
0
 * Improved error message for DoubleRenderError
0
 
0
 * Fixed routing to allow for testing of *path components #1650 [Nicholas Seckar]
0
 
0
 * Added :handle as an option to sortable_element to restrict the drag handle to a given class #1642 [thejohnny]
0
 
0
-* Added a bunch of script.aculo.us features: Effect.ScrollTo, to smoothly scroll the page to an element, better Firefox flickering handling on SlideUp/SlideDown, Removed a possible memory leak in IE with draggables, Added support for cancelling dragging my hitting ESC #1644 [Thomas Fuchs]
0
+* Added a bunch of script.aculo.us features #1644, #1677 [Thomas Fuchs]
0
+ * Effect.ScrollTo, to smoothly scroll the page to an element
0
+ * Better Firefox flickering handling on SlideUp/SlideDown
0
+ * Removed a possible memory leak in IE with draggables
0
+ * Added support for cancelling dragging my hitting ESC
0
+ * Added capability to remove draggables/droppables and redeclare sortables in dragdrop.js (this makes it possible to call sortable_element on the same element more than once, e.g. in AJAX returns that modify the sortable element. all current sortable 'stuff' on the element will be discarded and the sortable will be rebuilt)
0
+ * Always reset background color on Effect.Highlight; this make change backwards-compatibility, to be sure include style="background-color:(target-color)" on your elements or else elements will fall back to their CSS rules (which is a good thing in most circumstances)
0
+ * Removed circular references from element to prevent memory leaks (still not completely gone in IE)
0
+ * Changes to class extension in effects.js
0
+ * Make Effect.Highlight restore any previously set background color when finishing (makes effect work with CSS classes that set a background color)
0
 
0
 * Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]
0
 
...
21
22
23
24
25
26
27
28
29
30
31
 
 
32
33
34
...
21
22
23
 
 
 
 
 
 
 
 
24
25
26
27
28
0
@@ -21,14 +21,8 @@
0
 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0
 #++
0
 
0
-begin
0
- require 'rubygems'
0
- require 'builder'
0
-rescue LoadError
0
- # RubyGems is not available, use included Builder
0
- $:.unshift(File.dirname(__FILE__) + "/action_view/vendor")
0
- require 'action_view/vendor/builder'
0
-end
0
+$:.unshift(File.dirname(__FILE__) + "/action_view/vendor")
0
+require 'action_view/vendor/builder'
0
 
0
 require 'action_view/base'
0
 require 'action_view/partials'

Comments

    No one has commented yet.