Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 5813

Show
Ignore:
Timestamp:
12/31/06 19:28:28 (2 years ago)
Author:
david
Message:

Make RDoc not spew errors on install because of HTML comments in code comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1-2-pre-release/actionpack/lib/action_controller/layout.rb

    r5765 r5813  
    2828    # that the header and footer are only mentioned in one place, like this: 
    2929    # 
    30     #   <!-- The header part of this layout --> 
     30    #   // The header part of this layout 
    3131    #   <%= yield %> 
    32     #   <!-- The footer part of this layout --> 
     32    #   // The footer part of this layout --> 
    3333    # 
    3434    # And then you have content pages that look like this: 
     
    3939    # like this: 
    4040    # 
    41     #   <!-- The header part of this layout --> 
     41    #   // The header part of this layout 
    4242    #   hello world 
    43     #   <!-- The footer part of this layout --> 
     43    #   // The footer part of this layout --> 
    4444    # 
    4545    # == Accessing shared variables 
  • branches/1-2-pre-release/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb

    r4260 r5813  
    3939  #     }                            #   </head> 
    4040  #     xm.body {                    #   <body> 
    41   #       xm.comment! "HI"           #     <!-- HI --> 
    4241  #       xm.h1("Header")            #     <h1>Header</h1> 
    4342  #       xm.p("paragraph")          #     <p>paragraph</p> 
  • trunk/actionpack/lib/action_controller/layout.rb

    r5746 r5813  
    2828    # that the header and footer are only mentioned in one place, like this: 
    2929    # 
    30     #   <!-- The header part of this layout --> 
     30    #   // The header part of this layout 
    3131    #   <%= yield %> 
    32     #   <!-- The footer part of this layout --> 
     32    #   // The footer part of this layout --> 
    3333    # 
    3434    # And then you have content pages that look like this: 
     
    3939    # like this: 
    4040    # 
    41     #   <!-- The header part of this layout --> 
     41    #   // The header part of this layout 
    4242    #   hello world 
    43     #   <!-- The footer part of this layout --> 
     43    #   // The footer part of this layout --> 
    4444    # 
    4545    # == Accessing shared variables 
  • trunk/activesupport/lib/active_support/vendor/builder/xmlmarkup.rb

    r4260 r5813  
    3939  #     }                            #   </head> 
    4040  #     xm.body {                    #   <body> 
    41   #       xm.comment! "HI"           #     <!-- HI --> 
    4241  #       xm.h1("Header")            #     <h1>Header</h1> 
    4342  #       xm.p("paragraph")          #     <p>paragraph</p>