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

Issue 20863002: Introduce boot.js: this finally makes it possible to load and run Todomvc (Closed)

Created:
7 years, 4 months ago by Siggi Cherem (dart-lang)
Modified:
7 years, 4 months ago
Reviewers:
Jennifer Messerly
CC:
reviews_dartlang.org, web-ui-dev+reviews_dartlang.org
Base URL:
git@github.com:dart-lang/web-ui.git@master
Visibility:
Public.

Description

Introduce boot.js: this finally makes it possible to load and run Todomvc without using a compiler.

Patch Set 1 #

Patch Set 2 : #

Total comments: 33

Patch Set 3 : review comments, fixed build.dart #

Total comments: 14

Patch Set 4 : #

Patch Set 5 : #

Total comments: 2

Patch Set 6 : #

Total comments: 9

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1614 lines, -852 lines) Patch
M build.dart View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M example/component/news/test/expected/news_index_test.html.txt View 1 2 3 1 chunk +26 lines, -5 lines 0 comments Download
M example/component/news/web/index.html View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M example/component/news/web/news-component.html View 1 2 3 4 5 6 1 chunk +10 lines, -0 lines 0 comments Download
M example/todomvc/test/expected/todomvc_listorder_test.html.txt View 1 2 3 6 chunks +356 lines, -16 lines 0 comments Download
M example/todomvc/test/expected/todomvc_mainpage2_test.html.txt View 1 2 3 4 chunks +178 lines, -8 lines 0 comments Download
M example/todomvc/test/expected/todomvc_mainpage_test.html.txt View 1 2 3 2 chunks +90 lines, -5 lines 0 comments Download
M example/todomvc/test/expected/todomvc_markdone_test.html.txt View 1 2 3 7 chunks +450 lines, -25 lines 0 comments Download
M example/todomvc/test/todomvc_listorder_test.html View 1 2 3 1 chunk +11 lines, -10 lines 0 comments Download
M example/todomvc/test/todomvc_mainpage2_test.html View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M example/todomvc/test/todomvc_markdone_test.html View 1 2 3 4 2 chunks +3 lines, -2 lines 0 comments Download
M example/todomvc/web/app.dart View 1 2 1 chunk +1 line, -1 line 0 comments Download
M example/todomvc/web/editable_label.dart View 1 2 3 4 5 6 3 chunks +17 lines, -7 lines 0 comments Download
M example/todomvc/web/index.html View 1 2 3 1 chunk +2 lines, -6 lines 0 comments Download
M example/todomvc/web/model.dart View 1 2 1 chunk +0 lines, -1 line 0 comments Download
M example/todomvc/web/router_options.dart View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M example/todomvc/web/todo_row.dart View 1 2 1 chunk +7 lines, -6 lines 0 comments Download
A lib/boot.js View 1 2 3 1 chunk +190 lines, -0 lines 0 comments Download
M lib/custom_element.dart View 1 2 3 1 chunk +0 lines, -686 lines 0 comments Download
M lib/event.dart View 1 2 3 1 chunk +1 line, -1 line 0 comments Download
M lib/observe.dart View 1 2 3 6 chunks +4 lines, -24 lines 0 comments Download
M lib/observe_html.dart View 1 2 1 chunk +1 line, -1 line 0 comments Download
M lib/polymer.dart View 1 2 3 4 5 6 1 chunk +122 lines, -1 line 0 comments Download
M lib/polymer_element.dart View 1 2 3 2 chunks +2 lines, -5 lines 0 comments Download
M lib/src/emitters.dart View 1 2 3 4 4 chunks +23 lines, -11 lines 0 comments Download
M lib/src/html_css_fixup.dart View 1 2 3 1 chunk +3 lines, -1 line 0 comments Download
M lib/src/observable_transform.dart View 1 2 3 4 5 6 3 chunks +55 lines, -0 lines 0 comments Download
M lib/testing/content_shell_test.dart View 1 2 3 3 chunks +28 lines, -23 lines 0 comments Download
M pubspec.yaml View 1 2 3 4 5 6 1 chunk +7 lines, -5 lines 0 comments Download
M test/data/unit/event_path_test.html View 1 2 3 3 chunks +20 lines, -0 lines 0 comments Download
M test/data/unit/events_test.html View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
Siggi Cherem (dart-lang)
I still need to fix up tests and fix the other samples, but here is ...
7 years, 4 months ago (2013-07-26 23:33:31 UTC) #1
Jennifer Messerly
this is lovely! https://chromiumcodereview.appspot.com/20863002/diff/3001/example/todomvc/web/editable_label.dart File example/todomvc/web/editable_label.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/3001/example/todomvc/web/editable_label.dart#newcode37 example/todomvc/web/editable_label.dart:37: notifyChange(new PropertyChangeRecord(const Symbol('editing'))); you shouldn't need ...
7 years, 4 months ago (2013-07-27 02:18:44 UTC) #2
Siggi Cherem (dart-lang)
Thanks John! PTAL. Here is a new version which declares the register-polymer-element using a meta ...
7 years, 4 months ago (2013-07-30 00:10:29 UTC) #3
Jennifer Messerly
https://chromiumcodereview.appspot.com/20863002/diff/12001/example/component/news/web/news-component.html File example/component/news/web/news-component.html (right): https://chromiumcodereview.appspot.com/20863002/diff/12001/example/component/news/web/news-component.html#newcode42 example/component/news/web/news-component.html:42: _init() { is _init still supported? https://chromiumcodereview.appspot.com/20863002/diff/12001/example/todomvc/web/index.html File example/todomvc/web/index.html ...
7 years, 4 months ago (2013-07-30 00:56:12 UTC) #4
Siggi Cherem (dart-lang)
Thanks John - ptal https://chromiumcodereview.appspot.com/20863002/diff/12001/example/component/news/web/news-component.html File example/component/news/web/news-component.html (right): https://chromiumcodereview.appspot.com/20863002/diff/12001/example/component/news/web/news-component.html#newcode42 example/component/news/web/news-component.html:42: _init() { On 2013/07/30 00:56:12, ...
7 years, 4 months ago (2013-07-30 23:32:03 UTC) #5
Jennifer Messerly
https://chromiumcodereview.appspot.com/20863002/diff/12001/lib/src/observable_transform.dart File lib/src/observable_transform.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/12001/lib/src/observable_transform.dart#newcode136 lib/src/observable_transform.dart:136: if (!declaresObservable) { On 2013/07/30 23:32:04, Siggi Cherem (dart-lang) ...
7 years, 4 months ago (2013-07-31 00:59:51 UTC) #6
Siggi Cherem (dart-lang)
thanks! https://chromiumcodereview.appspot.com/20863002/diff/12001/lib/src/observable_transform.dart File lib/src/observable_transform.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/12001/lib/src/observable_transform.dart#newcode136 lib/src/observable_transform.dart:136: if (!declaresObservable) { On 2013/07/31 00:59:51, John Messerly ...
7 years, 4 months ago (2013-07-31 01:39:17 UTC) #7
Jennifer Messerly
LGTM! https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart File lib/polymer.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart#newcode43 lib/polymer.dart:43: const init_polymer = const _InitPolymerAnnotation(); this should be ...
7 years, 4 months ago (2013-07-31 01:51:33 UTC) #8
Siggi Cherem (dart-lang)
all set, thanks! https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart File lib/polymer.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart#newcode43 lib/polymer.dart:43: const init_polymer = const _InitPolymerAnnotation(); On ...
7 years, 4 months ago (2013-07-31 02:17:28 UTC) #9
Jennifer Messerly
https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart File lib/polymer.dart (right): https://chromiumcodereview.appspot.com/20863002/diff/69001/lib/polymer.dart#newcode43 lib/polymer.dart:43: const init_polymer = const _InitPolymerAnnotation(); On 2013/07/31 02:17:29, Siggi ...
7 years, 4 months ago (2013-07-31 02:18:49 UTC) #10
Siggi Cherem (dart-lang)
7 years, 4 months ago (2013-07-31 02:19:04 UTC) #11
Message was sent while issue was closed.
commit submitted at
https://github.com/dart-lang/web-ui/commit/bad34509fa372bdfe648a71f8d136dc0f7...

Powered by Google App Engine
This is Rietveld 408576698