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

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

Issue 35563005: Added landing pages for new samples (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: Tweak 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
OLDNEW
1 col1: 1 col1:
2 - 2 -
3 group_id: working_with_the_dom
4 heading: Working with the DOM 3 heading: Working with the DOM
5 examples: 4 examples:
6 - 5 -
7 title: Adding elements to the DOM 6 title: Adding elements to the DOM
8 explanation_url: /docs/tutorials/add-elements/ 7 explanation_url: /docs/tutorials/add-elements/
9 tryit_url: todo/ 8 tryit_url: todo/
10 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
11 - 10 -
12 title: Moving elements within the DOM tree 11 title: Moving elements within the DOM tree
13 explanation_url: /docs/tutorials/add-elements/#moving-elements 12 explanation_url: /docs/tutorials/add-elements/#moving-elements
14 tryit_url: anagram/ 13 tryit_url: anagram/
15 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
16 - 15 -
17 title: Removing elements from the DOM 16 title: Removing elements from the DOM
18 explanation_url: /docs/tutorials/remove-elements 17 explanation_url: /docs/tutorials/remove-elements
19 tryit_url: todo_with_delete/ 18 tryit_url: todo_with_delete/
20 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
21 - 20 -
22 group_id: polymer_dart
23 heading: polymer.dart 21 heading: polymer.dart
24 examples: 22 examples:
25 - 23 -
26 title: Defining a custom element 24 title: Defining a custom element
27 explanation_url: /docs/tutorials/polymer-intro 25 explanation_url: /docs/tutorials/polymer-intro
28 tryit_url: stopwatch/ 26 tryit_url: stopwatch/
29 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch 27 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch
30 - 28 -
31 title: Working with forms in Polymer 29 title: Working with forms in Polymer
32 explanation_url: /docs/tutorials/forms 30 explanation_url: /docs/tutorials/forms
33 tryit_url: slambook/ 31 tryit_url: slambook/
34 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/slambook 32 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/slambook
35 - 33 -
36 title: TodoMVC 34 title: TodoMVC
37 explanation_url: https://github.com/dart-lang/bleeding_edge/blob/master/ dart/samples/third_party/todomvc/README.md 35 explanation_url: https://github.com/dart-lang/bleeding_edge/blob/master/ dart/samples/third_party/todomvc/README.md
38 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/third_party/todomvc 36 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/third_party/todomvc
39 - 37 -
40 title: Building a CRUD app 38 title: Building a CRUD app
41 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/tracker 39 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/tracker
42 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/tracker 40 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/tracker
43 - 41 -
44 title: Replacing HTML elements with a custom element 42 title: Replacing HTML elements with a custom element
45 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/survey 43 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/survey
46 source_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
47
48 col2:
49 - 45 -
50 group_id: animation_and_graphics
51 heading: Animation and graphics
52 examples:
53 -
54 title: Working with RequestAnimationFrame
55 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/speed/animations
56 tryit_url: raf/
57 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/speed/animations
58 -
59 title: 2D solar system animation using Canvas
60 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar
61 tryit_url: solar/
62 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar
63 -
64 title: 3D solar system animation using WebGL
65 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar3d
66 tryit_url: solar3d/
67 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar3d
68 -
69 group_id: html5_persistence
70 heading: HTML5 persistence 46 heading: HTML5 persistence
71 examples: 47 examples:
72 - 48 -
73 title: Simple LocalStorage example 49 title: Simple LocalStorage example
74 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README 50 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README
75 tryit_url: localstorage/ 51 tryit_url: localstorage/
76 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics 52 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics
77 - 53 -
78 title: Simple todo app using IndexedDB 54 title: Simple todo app using IndexedDB
79 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb 55 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb
80 tryit_url: indexeddb_todo/ 56 tryit_url: indexeddb_todo/
81 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb 57 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb
82 - 58 -
83 title: Store and retrieve data using IndexedDB 59 title: Store and retrieve data using IndexedDB
84 explanation_url: /docs/tutorials/indexeddb/ 60 explanation_url: /docs/tutorials/indexeddb/
85 tryit_url: countdown/ 61 tryit_url: countdown/
86 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch 62 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch
87 - 63 -
88 title: Exploring the Filesystem APIs 64 title: Exploring the Filesystem APIs
89 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal 65 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal
90 tryit_url: filesystem/ 66 tryit_url: filesystem/
91 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem 67 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem
92 - 68 -
93 title: Emulating a terminal for working with the file system 69 title: Emulating a terminal for working with the file system
94 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal 70 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal
95 tryit_url: terminal/ 71 tryit_url: terminal/
96 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal 72 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal
97 73
74
75 col2:
76 -
77 heading: Animation and graphics
78 examples:
79 -
80 title: Working with requestAnimationFrame
81 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/speed/animations
82 tryit_url: raf/
83 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/speed/animations
84 -
85 title: 2D solar system animation using Canvas
86 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar
87 tryit_url: solar/
88 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar
89 -
90 title: 3D solar system animation using WebGL
91 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar3d
92 tryit_url: solar3d/
93 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar3d
94 -
95 title: Using image filters with canvas
96 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/canvas/imagefilters
97 tryit_url: imagefilters/
98 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/canvas/imagefilters
99 -
100 heading: HTML5 Drag and Drop
101 examples:
102 -
103 title: Basic Drag and Drop
104 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/dnd/basics
105 tryit_url: dnd/
106 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/dnd/basics
107 -
108 title: Drag and Drop files
109 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/dndfiles
110 tryit_url: dndfiles/
111 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/dndfiles
112 -
113 heading: WebSockets
114 examples:
115 -
116 title: Basic WebSockets example
117 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/websockets/basics/
118 tryit_url: websockets/
119 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/websockets/basics
120 -
121 heading: Files API
122 examples:
123 -
124 title: Using the Files API
125 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/dndfiles
126 tryit_url: dndfiles/
127 source_url: https://githubo.com/dart-lang/dart-samples/tree/master/web/h tml5/file/dndfiles
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698