Changeset 5813
- Timestamp:
- 12/31/06 19:28:28 (2 years ago)
- Files:
-
- branches/1-2-pre-release/actionpack/lib/action_controller/layout.rb (modified) (2 diffs)
- branches/1-2-pre-release/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb (modified) (1 diff)
- trunk/actionpack/lib/action_controller/layout.rb (modified) (2 diffs)
- trunk/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-pre-release/actionpack/lib/action_controller/layout.rb
r5765 r5813 28 28 # that the header and footer are only mentioned in one place, like this: 29 29 # 30 # <!-- The header part of this layout -->30 # // The header part of this layout 31 31 # <%= yield %> 32 # <!--The footer part of this layout -->32 # // The footer part of this layout --> 33 33 # 34 34 # And then you have content pages that look like this: … … 39 39 # like this: 40 40 # 41 # <!-- The header part of this layout -->41 # // The header part of this layout 42 42 # hello world 43 # <!--The footer part of this layout -->43 # // The footer part of this layout --> 44 44 # 45 45 # == Accessing shared variables branches/1-2-pre-release/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb
r4260 r5813 39 39 # } # </head> 40 40 # xm.body { # <body> 41 # xm.comment! "HI" # <!-- HI -->42 41 # xm.h1("Header") # <h1>Header</h1> 43 42 # xm.p("paragraph") # <p>paragraph</p> trunk/actionpack/lib/action_controller/layout.rb
r5746 r5813 28 28 # that the header and footer are only mentioned in one place, like this: 29 29 # 30 # <!-- The header part of this layout -->30 # // The header part of this layout 31 31 # <%= yield %> 32 # <!--The footer part of this layout -->32 # // The footer part of this layout --> 33 33 # 34 34 # And then you have content pages that look like this: … … 39 39 # like this: 40 40 # 41 # <!-- The header part of this layout -->41 # // The header part of this layout 42 42 # hello world 43 # <!--The footer part of this layout -->43 # // The footer part of this layout --> 44 44 # 45 45 # == Accessing shared variables trunk/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb
r4260 r5813 39 39 # } # </head> 40 40 # xm.body { # <body> 41 # xm.comment! "HI" # <!-- HI -->42 41 # xm.h1("Header") # <h1>Header</h1> 43 42 # xm.p("paragraph") # <p>paragraph</p>