| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 /// Simple script to generate a page summarizing all error messages produces by | 5 /// Simple script to generate a page summarizing all error messages produces by |
| 6 /// the polymer compiler code. The generated code will be placed directly under | 6 /// the polymer compiler code. The generated code will be placed directly under |
| 7 /// the `polymer/lib/src/generated` folder. This script should be invoked from | 7 /// the `polymer/lib/src/generated` folder. This script should be invoked from |
| 8 /// the root of the polymer package either by doing: | 8 /// the root of the polymer package either by doing: |
| 9 /// | 9 /// |
| 10 /// dart tool/create_message_details_page.dart | 10 /// dart tool/create_message_details_page.dart |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 # This file was generated automatically from the polymer package. | 124 # This file was generated automatically from the polymer package. |
| 125 # To regenerate this file, from the top directory of the polymer package run: | 125 # To regenerate this file, from the top directory of the polymer package run: |
| 126 # | 126 # |
| 127 # dart tool/create_message_details_page.dart -s -o path_to_this_file | 127 # dart tool/create_message_details_page.dart -s -o path_to_this_file |
| 128 layout: default | 128 layout: default |
| 129 title: "Error Messages" | 129 title: "Error Messages" |
| 130 subsite: "Polymer.dart" | 130 subsite: "Polymer.dart" |
| 131 description: "Details about error messages from polymer and related packages." | 131 description: "Details about error messages from polymer and related packages." |
| 132 --- | 132 --- |
| 133 | 133 |
| 134 {% include breadcrumbs.html %} |
| 135 |
| 134 # {{ page.title }} | 136 # {{ page.title }} |
| 135 | 137 |
| 136 <style> | 138 <style> |
| 137 h3 > a { | 139 h3 > a { |
| 138 display: none; | 140 display: none; |
| 139 } | 141 } |
| 140 | 142 |
| 141 h3:hover > a { | 143 h3:hover > a { |
| 142 display: inline; | 144 display: inline; |
| 143 } | 145 } |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 display: inline; | 270 display: inline; |
| 269 } | 271 } |
| 270 </style> | 272 </style> |
| 271 <body> | 273 <body> |
| 272 '''; | 274 '''; |
| 273 | 275 |
| 274 const _LOCAL_FOOTER = ''' | 276 const _LOCAL_FOOTER = ''' |
| 275 </body> | 277 </body> |
| 276 </html> | 278 </html> |
| 277 '''; | 279 '''; |
| OLD | NEW |