| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 const _SITE_HEADER = ''' | 121 const _SITE_HEADER = ''' |
| 122 --- | 122 --- |
| 123 # WARNING: GENERATED FILE. DO NOT EDIT. | 123 # WARNING: GENERATED FILE. DO NOT EDIT. |
| 124 # | 124 # |
| 125 # This file was generated automatically from the polymer package. | 125 # This file was generated automatically from the polymer package. |
| 126 # To regenerate this file, from the top directory of the polymer package run: | 126 # To regenerate this file, from the top directory of the polymer package run: |
| 127 # | 127 # |
| 128 # dart tool/create_message_details_page.dart -s -o path_to_this_file | 128 # dart tool/create_message_details_page.dart -s -o path_to_this_file |
| 129 layout: default | 129 layout: default |
| 130 title: "Error messages" | 130 title: "Error Messages" |
| 131 subsite: "Polymer.dart" | 131 subsite: "Polymer.dart" |
| 132 description: "Details about error messages from polymer and related packages." | 132 description: "Details about error messages from polymer and related packages." |
| 133 --- | 133 --- |
| 134 | 134 |
| 135 # {{ page.title }} | 135 # {{ page.title }} |
| 136 | 136 |
| 137 <style> | 137 <style> |
| 138 h3 > a { | 138 h3 > a { |
| 139 display: none; | 139 display: none; |
| 140 } | 140 } |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 display: inline; | 254 display: inline; |
| 255 } | 255 } |
| 256 </style> | 256 </style> |
| 257 <body> | 257 <body> |
| 258 '''; | 258 '''; |
| 259 | 259 |
| 260 const _LOCAL_FOOTER = ''' | 260 const _LOCAL_FOOTER = ''' |
| 261 </body> | 261 </body> |
| 262 </html> | 262 </html> |
| 263 '''; | 263 '''; |
| OLD | NEW |