| OLD | NEW |
| 1 --- | 1 --- |
| 2 layout: default | 2 layout: default |
| 3 title: "Web UI Specification" | 3 title: "Web UI Specification" |
| 4 rel: | 4 rel: |
| 5 author: siggi-cherem | 5 author: siggi-cherem |
| 6 description: "A detailed reference guide of how to use Web UI for declarative mo
dern web apps." | 6 description: "A detailed reference guide of how to use Web UI for declarative mo
dern web apps." |
| 7 has-permalinks: true | 7 has-permalinks: true |
| 8 --- | 8 --- |
| 9 {% comment %} | 9 {% comment %} |
| 10 | 10 |
| 11 See README comment in index.markdown for explanations on {{'{{'}}, \{\% raw \%\} | 11 See README comment in index.markdown for explanations on {{'{{'}}, \{\% raw \%\} |
| 12 and \{\% codesample \%\}. | 12 and \{\% codesample \%\}. |
| 13 | 13 |
| 14 {% endcomment %} | 14 {% endcomment %} |
| 15 | 15 |
| 16 # {{ page.title }} | 16 # {{ page.title }} |
| 17 {: .no_toc} | 17 {: .no_toc} |
| 18 | 18 |
| 19 <aside class="alert alert-danger" markdown="1"> |
| 20 <strong>Web UI is now Polymer.dart.</strong> |
| 21 Web UI has evolved to |
| 22 [Polymer.dart](/polymer-dart/), which provides many fixes and improvements. |
| 23 We encourage Web UI users to upgrade to Polymer.dart. |
| 24 The information on this page apply only to Web UI, which is now deprecated. |
| 25 </aside> |
| 26 |
| 19 _Written by Sigmund Cherem<br /> | 27 _Written by Sigmund Cherem<br /> |
| 20 November 2012 (Updated February 2013)_ | 28 November 2012 (Updated February 2013)_ |
| 21 | 29 |
| 22 The Web UI package (Web UI for short) provides web components and templating to | 30 The Web UI package (Web UI for short) provides web components and templating to |
| 23 help you write web applications at scale. This article contains a detailed | 31 help you write web applications at scale. This article contains a detailed |
| 24 specification of Web UI's features. For a quick reference table of | 32 specification of Web UI's features. For a quick reference table of |
| 25 these features, please refer to our [summary article](summary.html); for a | 33 these features, please refer to our [summary article](summary.html); for a |
| 26 high-level introduction and examples, see our | 34 high-level introduction and examples, see our |
| 27 [explainer article](/articles/web-ui/). | 35 [explainer article](/articles/web-ui/). |
| 28 | 36 |
| (...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1158 [dart-scope-rules]: http://www.dartlang.org/docs/spec/latest/dart-language-speci
fication.html#h.jb82efuudrc5 | 1166 [dart-scope-rules]: http://www.dartlang.org/docs/spec/latest/dart-language-speci
fication.html#h.jb82efuudrc5 |
| 1159 [project]: https://github.com/dart-lang/web-ui/ | 1167 [project]: https://github.com/dart-lang/web-ui/ |
| 1160 [mdv]: http://code.google.com/p/mdv/ | 1168 [mdv]: http://code.google.com/p/mdv/ |
| 1161 [sd]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html | 1169 [sd]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.html |
| 1162 [shadow-el]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.
html#shadow-element | 1170 [shadow-el]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/spec/shadow/index.
html#shadow-element |
| 1163 [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html | 1171 [wc]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.html |
| 1164 [wcappendix]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.h
tml#appendix-b-html-elements | 1172 [wcappendix]: http://dvcs.w3.org/hg/webcomponents/raw-file/tip/explainer/index.h
tml#appendix-b-html-elements |
| 1165 [tostring]: http://api.dartlang.org/docs/bleeding_edge/dart_core/Object.html#toS
tring | 1173 [tostring]: http://api.dartlang.org/docs/bleeding_edge/dart_core/Object.html#toS
tring |
| 1166 [safehtml]: https://github.com/dart-lang/web-ui/blob/master/lib/safe_html.dart | 1174 [safehtml]: https://github.com/dart-lang/web-ui/blob/master/lib/safe_html.dart |
| 1167 [elemevents]: http://api.dartlang.org/docs/releases/latest/dart_html/Element.htm
l | 1175 [elemevents]: http://api.dartlang.org/docs/releases/latest/dart_html/Element.htm
l |
| OLD | NEW |