Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: pkg/polymer/tool/create_message_details_page.dart

Issue 554813002: Prepare for 0.13.1 release (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/polymer/pubspec.yaml ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 ''';
OLDNEW
« no previous file with comments | « pkg/polymer/pubspec.yaml ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698