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

Side by Side Diff: src/site/samples/samples.yaml

Issue 59753006: Added dart:js samples landing pages. (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Post lgtm tweaks Created 7 years, 1 month 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
« no previous file with comments | « src/site/samples/samples.css ('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 col1: 1 col1:
2 - 2 -
3 heading: Working with the DOM 3 heading: Working with the DOM
4 examples: 4 examples:
5 - 5 -
6 title: Adding elements to the DOM 6 title: Adding elements to the DOM
7 explanation_url: /docs/tutorials/add-elements/ 7 explanation_url: /docs/tutorials/add-elements/
8 tryit_url: todo/ 8 tryit_url: todo/
9 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/todo 9 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/todo
10 - 10 -
11 title: Moving elements within the DOM tree 11 title: Moving elements within the DOM tree
12 explanation_url: /docs/tutorials/add-elements/#moving-elements 12 explanation_url: /docs/tutorials/add-elements/#moving-elements
13 tryit_url: anagram/ 13 tryit_url: anagram/
14 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/anagram 14 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/anagram
15 - 15 -
16 title: Removing elements from the DOM 16 title: Removing elements from the DOM
17 explanation_url: /docs/tutorials/remove-elements 17 explanation_url: /docs/tutorials/remove-elements
18 tryit_url: todo_with_delete/ 18 tryit_url: todo_with_delete/
19 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/todo_with_delete 19 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/todo_with_delete
20 - 20 -
21 heading: Using JavaScript from Dart
22 examples:
23 -
24 title: Simple Google Maps example
25 explanation_url: https://code.google.com/p/dart/source/browse/branches/b leeding_edge/dart/samples/google_maps/README.md
26 tryit_url: google_maps/
27 source_url: https://code.google.com/p/dart/source/browse/branches/bleedi ng_edge/dart/samples/google_maps/
28 -
29 title: Using the Google Charts API
30 explanation_url: https://code.google.com/p/dart/source/browse/branches/b leeding_edge/dart/samples/gauge/README.md
31 tryit_url: gauge/
32 source_url: https://code.google.com/p/dart/source/browse/branches/bleedi ng_edge/dart/samples/gauge/
33 -
34 title: Fetching data using JSONP
35 explanation_url: https://code.google.com/p/dart/source/browse/branches/b leeding_edge/dart/samples/jsonp/README.md
36 tryit_url: jsonp/
37 source_url: https://code.google.com/p/dart/source/browse/branches/bleedi ng_edge/dart/samples/jsonp/
38 -
21 heading: polymer.dart 39 heading: polymer.dart
22 examples: 40 examples:
23 - 41 -
24 title: Defining a custom element 42 title: Defining a custom element
25 explanation_url: /docs/tutorials/polymer-intro 43 explanation_url: /docs/tutorials/polymer-intro
26 tryit_url: stopwatch/ 44 tryit_url: stopwatch/
27 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch 45 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch
28 - 46 -
29 title: Working with forms in Polymer 47 title: Working with forms in Polymer
30 explanation_url: /docs/tutorials/forms 48 explanation_url: /docs/tutorials/forms
31 tryit_url: slambook/ 49 tryit_url: slambook/
32 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/slambook 50 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/slambook
33 - 51 -
34 title: TodoMVC 52 title: TodoMVC
35 explanation_url: https://github.com/dart-lang/bleeding_edge/blob/master/ dart/samples/third_party/todomvc/README.md 53 explanation_url: https://code.google.com/p/dart/source/browse/branches/b leeding_edge/dart/samples/third_party/todomvc/README.md
36 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/third_party/todomvc 54 source_url: https://code.google.com/p/dart/source/browse/branches/bleedi ng_edge/dart/samples/third_party/todomvc/
37 - 55 -
38 title: Building a CRUD app 56 title: Building a CRUD app
39 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/tracker 57 explanation_url: https://code.google.com/p/dart/source/browse/branches/b leeding_edge/dart/samples/tracker/
40 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/tracker 58 source_url: https://code.google.com/p/dart/source/browse/branches/bleedi ng_edge/dart/samples/tracker/
41 -
42 title: Replacing HTML elements with a custom element
43 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/survey
44 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/survey
45 - 59 -
46 heading: HTML5 persistence 60 heading: HTML5 persistence
47 examples: 61 examples:
48 - 62 -
49 title: Simple LocalStorage example 63 title: Simple LocalStorage example
50 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README 64 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README
51 tryit_url: localstorage/ 65 tryit_url: localstorage/
52 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics 66 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics
53 - 67 -
54 title: Simple todo app using IndexedDB 68 title: Simple todo app using IndexedDB
55 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb 69 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb
56 tryit_url: indexeddb_todo/ 70 tryit_url: indexeddb_todo/
57 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb 71 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb
58 - 72 -
59 title: Store and retrieve data using IndexedDB 73 title: Store and retrieve data using IndexedDB
60 explanation_url: /docs/tutorials/indexeddb/ 74 explanation_url: /docs/tutorials/indexeddb/
61 tryit_url: countdown/ 75 tryit_url: countdown/
62 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch 76 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/count_down
63 - 77 -
64 title: Exploring the Filesystem APIs 78 title: Exploring the Filesystem APIs
65 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/filesystem 79 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/filesystem
66 tryit_url: filesystem/ 80 tryit_url: filesystem/
67 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem 81 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem
68 - 82 -
69 title: Emulating a terminal for working with the file system 83 title: Emulating a terminal for working with the file system
70 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal 84 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal
71 tryit_url: terminal/ 85 tryit_url: terminal/
72 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal 86 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 - 135 -
122 title: Using Application Cache 136 title: Using Application Cache
123 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/appcache/beginner/ 137 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/appcache/beginner/
124 tryit_url: appcache/ 138 tryit_url: appcache/
125 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/appcache/beginner 139 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/appcache/beginner
126 - 140 -
127 heading: Geolocation 141 heading: Geolocation
128 examples: 142 examples:
129 - 143 -
130 title: Basic geolocation example 144 title: Basic geolocation example
131 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/geolocation/trip-meter/ 145 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/geolocation/trip_meter/
132 tryit_url: geolocation/ 146 tryit_url: geolocation/
133 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/geolocation/trip-meter 147 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/geolocation/trip_meter
134 - 148 -
135 heading: Web Audio 149 heading: Web Audio
136 examples: 150 examples:
137 - 151 -
138 title: Getting started with Web Audio API 152 title: Getting started with Web Audio API
139 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/webaudio/intro/ 153 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/webaudio/intro/
140 tryit_url: webaudio/ 154 tryit_url: webaudio/
141 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/webaudio/intro 155 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/webaudio/intro
142 - 156 -
143 heading: Files API 157 heading: Files API
144 examples: 158 examples:
145 - 159 -
146 title: Using the Files API 160 title: Using the Files API
147 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/dndfiles 161 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/dndfiles
148 tryit_url: dndfiles/ 162 tryit_url: dndfiles/
149 source_url: https://githubo.com/dart-lang/dart-samples/tree/master/web/h tml5/file/dndfiles 163 source_url: https://githubo.com/dart-lang/dart-samples/tree/master/web/h tml5/file/dndfiles
OLDNEW
« no previous file with comments | « src/site/samples/samples.css ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698