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

Unified Diff: pkg/polymer/lib/polymer.dart

Issue 23453034: Added library-level comments for polymer and polymer_expressions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge with master Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/README.md ('k') | pkg/polymer_expressions/README.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/lib/polymer.dart
diff --git a/pkg/polymer/lib/polymer.dart b/pkg/polymer/lib/polymer.dart
index 2e4dd0ebeec2529785a8920915c68f903bf4c527..e417fe561b27762c95ee81c53736d1e0f0173091 100644
--- a/pkg/polymer/lib/polymer.dart
+++ b/pkg/polymer/lib/polymer.dart
@@ -3,11 +3,39 @@
// BSD-style license that can be found in the LICENSE file.
/**
- * This library exports all of the commonly used functions and types for
- * building UI's.
+ * Custom HTML tags, data binding, and templates for building
+ * structured, encapsulated, client-side web apps.
*
- * See this article for more information:
- * <http://www.dartlang.org/articles/dart-web-components/>.
+ * Polymer.dart, the next evolution of Web UI,
+ * is an in-progress Dart port of the
+ * [Polymer project](http://www.polymer-project.org/).
+ * Polymer.dart compiles to JavaScript and runs across the modern web.
+ *
+ * To use polymer.dart in your application,
+ * first add a
+ * [dependency](http://pub.dartlang.org/doc/dependencies.html)
+ * to the app's pubspec.yaml file.
+ * Instead of using the open-ended `any` version specifier,
+ * we recommend using a range of version numbers, as in this example:
+ *
+ * dependencies:
+ * polymer: '>=0.7.1 <0.8'
+ *
+ * Then import the library into your application:
+ *
+ * import 'package:polymer/polymer.dart';
+ *
+ * ## Other resources
+ *
+ * * [Polymer.dart homepage](http://www.dartlang.org/polymer-dart/):
+ * Example code, project status, and
+ * information about how to get started using Polymer.dart in your apps.
+ *
+ * * [polymer.dart package](http://pub.dartlang.org/packages/polymer):
+ * More details, such as the current major release number.
+ *
+ * * [Upgrading to Polymer.dart](http://www.dartlang.org/polymer-dart/upgrading-to-polymer-from-web-ui.html):
+ * Tips for converting your apps from Web UI to Polymer.dart.
*/
library polymer;
« no previous file with comments | « pkg/polymer/README.md ('k') | pkg/polymer_expressions/README.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698