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

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: Added samples to be released to yaml file Created 7 years, 2 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 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
45 -
46 heading: HTML5 Drag and Drop
47 examples:
48 -
49 title: Basic Drag and Drop
50 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/dnd/basics
51 tryit_url: dnd/
52 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/dnd/basics
53 -
54 title: Drag and Drop files
55 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/dndfiles
56 tryit_url: dndfiles/
57 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/dndfiles
47 58
48 col2: 59 col2:
49 - 60 -
50 group_id: animation_and_graphics
51 heading: Animation and graphics 61 heading: Animation and graphics
52 examples: 62 examples:
53 - 63 -
54 title: Working with RequestAnimationFrame 64 title: Working with RequestAnimationFrame
55 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/speed/animations 65 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/speed/animations
56 tryit_url: raf/ 66 tryit_url: raf/
57 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/speed/animations 67 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/speed/animations
58 - 68 -
59 title: 2D solar system animation using Canvas 69 title: 2D solar system animation using Canvas
60 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar 70 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar
61 tryit_url: solar/ 71 tryit_url: solar/
62 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar 72 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar
63 - 73 -
64 title: 3D solar system animation using WebGL 74 title: 3D solar system animation using WebGL
65 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar3d 75 explanation_url: https://github.com/dart-lang/bleeding_edge/tree/master/ dart/samples/solar3d
66 tryit_url: solar3d/ 76 tryit_url: solar3d/
67 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar3d 77 source_url: https://github.com/dart-lang/bleeding_edge/tree/master/dart/ samples/solar3d
78 -
79 title: Using image filters with canvas
80 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/canvas/imagefilters
81 tryit_url: imagefilters/
82 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/canvas/imagefilters
68 - 83 -
69 group_id: html5_persistence 84 heading: Websockets
85 examples:
86 -
87 title: Basic websockets example
88 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/websockets/basics/README
89 tryit_url: websockets/
90 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/websockets/basics
91 -
70 heading: HTML5 persistence 92 heading: HTML5 persistence
71 examples: 93 examples:
72 - 94 -
73 title: Simple LocalStorage example 95 title: Simple LocalStorage example
74 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README 96 explanation_url: https://github.com/dart-lang/dart-samples/blob/master/w eb/html5/localstorage/basics/README
75 tryit_url: localstorage/ 97 tryit_url: localstorage/
76 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics 98 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/localstorage/basics
77 - 99 -
78 title: Simple todo app using IndexedDB 100 title: Simple todo app using IndexedDB
79 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb 101 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/indexeddb
80 tryit_url: indexeddb_todo/ 102 tryit_url: indexeddb_todo/
81 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb 103 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/indexeddb
82 - 104 -
83 title: Store and retrieve data using IndexedDB 105 title: Store and retrieve data using IndexedDB
84 explanation_url: /docs/tutorials/indexeddb/ 106 explanation_url: /docs/tutorials/indexeddb/
85 tryit_url: countdown/ 107 tryit_url: countdown/
86 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch 108 source_url: https://github.com/dart-lang/dart-tutorials-samples/tree/mas ter/web/stopwatch
87 - 109 -
88 title: Exploring the Filesystem APIs 110 title: Exploring the Filesystem APIs
89 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal 111 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal
90 tryit_url: filesystem/ 112 tryit_url: filesystem/
91 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem 113 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/filesystem
92 - 114 -
93 title: Emulating a terminal for working with the file system 115 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 116 explanation_url: https://github.com/dart-lang/dart-samples/tree/master/w eb/html5/file/terminal
95 tryit_url: terminal/ 117 tryit_url: terminal/
96 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal 118 source_url: https://github.com/dart-lang/dart-samples/tree/master/web/ht ml5/file/terminal
97 119
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698