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

Side by Side Diff: src/site/docs/tutorials/web-ui/index.markdown

Issue 23619013: start talking about polymer.dart (Closed) Base URL: git@github.com:dart-lang/dartlang.org.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 --- 1 ---
2 layout: default 2 layout: default
3 title: "Get Started with Web UI" 3 title: "Get Started with Web UI"
4 description: "Web UI provides web components, templates, data binding, and encap sulation." 4 description: "Web UI provides web components, templates, data binding, and encap sulation."
5 has-permalinks: true 5 has-permalinks: true
6 tutorial: 6 tutorial:
7 id: get-started-web-ui 7 id: get-started-web-ui
8 next: templates/ 8 next: templates/
9 next-title: "Use Templates" 9 next-title: "Use Templates"
10 prev: shared-pkgs/ 10 prev: shared-pkgs/
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 <h1>{{page.title}}</h1> 50 <h1>{{page.title}}</h1>
51 <h3>Declaratively create dynamic user interfaces.</h3> 51 <h3>Declaratively create dynamic user interfaces.</h3>
52 </div> 52 </div>
53 53
54 <hr> 54 <hr>
55 55
56 <aside class="alert" style="background-color:Lavender;color:SlateBlue"> 56 <aside class="alert" style="background-color:Lavender;color:SlateBlue">
57 <font size="24"> 57 <font size="24">
58 <i class="icon-bullhorn"> </i> 58 <i class="icon-bullhorn"> </i>
59 </font> 59 </font>
60 60 Web UI is being upgraded to polymer.dart.
61 The Dart Web UI team recently 61 For more information about polymer.dart,
62 <a href="https://groups.google.com/a/dartlang.org/forum/#!topic/web-ui/6laXXxR tA7k" target="_blank">announced</a> 62 including tips on porting Web UI apps to polymer.dart
63 a port of the Polymer project: 63 and the current status of the project,
64 <a href="https://pub.dartlang.org/packages/polymer" target="_blank">polymer.da rt</a>. 64 check out the <a href="/polymer-dart/" target="_blank">polymer.dart</a>
65 65 home page.
66 We've converted most of the tutorial Web UI examples and compiled some 66 For polymer.dart versions of the tutorial's Web UI apps,
67 <a href="https://github.com/dart-lang/dart-tutorials-samples/blob/master/web/t o-polymer-notes.txt" target="_blank">notes</a> 67 check out the tutorial's
68 along the way. 68 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/"
69 Here is the source code for the polymer versions of the three examples from th is target: 69 target="_blank">code repo</a> on github.
mem 2013/09/04 17:39:55 again, what is the appropriate capitalization of p
70 <ul>
71 <li>
72 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/w eb/target06-polymer/littleben_element"
73 target="_blank">littleben_element</a>: version of littleben using a cus tom element
74 </li>
75 <li>
76 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/w eb/target06-polymer/littleben_model"
77 target="_blank">littleben_model</a>: version of littleben with a bound model
78 </li>
79 <li>
80 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/w eb/target06-polymer/shout"
81 target="_blank">shout</a>
82 </li>
83 <li>
84 <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/w eb/target06-polymer/stopwatch"
85 target="_blank">stopwatch</a>
86 </li>
87 </ul>
88 </aside> 70 </aside>
89 71
90 <hr> 72 <hr>
91 73
92 74
93 The 75 The
94 <a href="https://pub.dartlang.org/packages/web_ui" target="_blank">Web UI packag e</a> 76 <a href="https://pub.dartlang.org/packages/web_ui" target="_blank">Web UI packag e</a>
95 provides the tools and Dart code 77 provides the tools and Dart code
96 that implement data binding, web components, 78 that implement data binding, web components,
97 templates, and encapsulation. 79 templates, and encapsulation.
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 Sigmund Cherem's article, 547 Sigmund Cherem's article,
566 <a href="/articles/dart-web-components/">Web UI Package</a>, 548 <a href="/articles/dart-web-components/">Web UI Package</a>,
567 contains several interactive examples on the page 549 contains several interactive examples on the page
568 and the corresponding source code. 550 and the corresponding source code.
569 </li> 551 </li>
570 </ul> 552 </ul>
571 553
572 {% endcapture %} 554 {% endcapture %}
573 555
574 {% include tutorial.html %} 556 {% include tutorial.html %}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698