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

Side by Side Diff: src/site/downloads.html

Issue 10700168: massive CL is massive (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: Created 8 years, 5 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
« no previous file with comments | « src/site/docs/technical-overview/index.html ('k') | src/site/humans.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 --- 1 ---
2 layout: default 2 layout: default
3 title: "Downloads & Source" 3 title: "Downloads & Source"
4 description: "Download Dart Editor, the Dart SDK, and Dartium. Also, get the sou rce code for the Dart project."
4 --- 5 ---
5 6
6 {% include platform-specific-text/_noscript.html %} 7 {% include platform-specific-text/_noscript.html %}
7 8
8 <h1> {{ page.title }} </h1> 9 <h1> {{ page.title }} </h1>
9 10
11 <p>
12 Choose your OS:
13 <input type="radio" name="osChoices" id="win">
14 <label class="os-choice" for="win">Windows</label>,
15
16 <input type="radio" name="osChoices" id="linux" checked="true">
17 <label class="os-choice" for="linux">Linux</label>, or
18
19 <input type="radio" name="osChoices" id="mac">
20 <label class="os-choice" for="mac">Mac</label>.
21 </p>
22
23
10 <section id="overview"> 24 <section id="overview">
11 25
12 <p> 26 <p>
13 Get everything you need when you download <b>Dart Editor</b>. 27 Get everything you need when you download Dart Editor.
14 <br> 28 Alternatively, download just the SDK or Dartium.
15 (<label>
16 <input type="radio" name="osChoices" id="win">
17 Windows</input></label>,
18 <label>
19 <input type="radio" name="osChoices" id="linux" checked="true">
20 Linux</input></label>, or
21 <label>
22 <input type="radio" name="osChoices" id="mac">
23 Mac</input></label>)
24 </p>
25 29
26 <p>
27 The Dart Editor download includes
28 the Dart <b>SDK</b> and a build of Chromium, nicknamed <b>Dartium</b>,
29 that includes the Dart virtual machine (VM).
30 Optionally, you can download the SDK and Dartium separately.
31 Finally, you can also download the source code for the <b>Dart project</b>.
32 </p> 30 </p>
33 31
34 </section> 32 </section>
35 33
36 34
37 <section id="editor"> 35 <section id="editor">
38 <h2> Dart Editor </h2> 36 <h2> Everything you need </h2>
39 37
40 <p> 38 <p>
41 With Dart Editor, 39 With Dart Editor,
42 you can write, build, and run 40 you can write, build, and run
43 web and server apps. 41 web and server apps.
44 The Dart Editor download includes the SDK and Dartium. 42 The Dart Editor download includes the SDK and Dartium.
45 Instructions for downloading, installing, and using Dart Editor are in 43 Instructions for downloading, installing, and using Dart Editor are in
46 <a href="/docs/editor/getting-started/">Getting Started with Dart Editor</a>. 44 <a href="/docs/editor/getting-started/">Getting Started with Dart Editor</a>.
47 </p> 45 </p>
48 46
49 {% include downloads/_dart-editor.html %} 47 {% include downloads/_dart-editor.html %}
50 48
51 </section> 49 </section>
52 50
53 51
54 <section id="sdk"> 52 <section id="sdk">
55 <h2> SDK </h2> 53 <h2> The stand-alone SDK </h2>
56 54
57 <p> 55 <p>
58 The SDK contains a Dart-to-JavaScript compiler (<em>dart2js</em>), 56 The SDK contains a Dart-to-JavaScript compiler (<em>dart2js</em>),
59 the Dart VM, and Dart libraries. 57 the Dart VM, and Dart libraries.
60 You can find instructions for downloading and using the SDK in 58 You can find instructions for downloading and using the SDK in
61 <a href="/docs/getting-started/sdk/">Getting Started with the SDK</a>. 59 <a href="/docs/getting-started/sdk/">Getting Started with the SDK</a>.
62 60
63 {% include downloads/_sdk.html %} 61 {% include downloads/_sdk.html %}
64 62
65 </section> 63 </section>
66 64
67 65
68 <section id="dartium"> 66 <section id="dartium">
69 <h2> Dartium </h2> 67 <h2> Chromium + embedded Dart VM </h2>
70 68
71 <p> 69 <p>
72 With this browser, 70 With this browser,
73 you can run and debug Dart scripts 71 you can run and debug Dart scripts
74 without first compiling them to JavaScript. 72 without first compiling them to JavaScript.
75 For instructions on downloading, installing, and launching Dartium, see 73 For instructions on downloading, installing, and launching Dartium, see
76 <a href="/dartium/">Chromium with the Dart VM</a>. 74 <a href="/dartium/">Chromium with the Dart VM</a>.
77 </p> 75 </p>
78 76
79 {% include downloads/_dartium.html %} 77 {% include downloads/_dartium.html %}
80 78
81 </section> 79 </section>
82 80
83 81
84 <section id="project"> 82 <section id="project">
85 <h2> Source code </h2> 83 <h2> Source code </h2>
86 84
87 <p> 85 <p>
88 You can download, browse, and contribute to the source code for the 86 You can download, browse, and contribute to the source code for the
89 <a href="http://dart.googlecode.com">Dart open-source project</a>. 87 <a href="http://dart.googlecode.com">Dart open-source project</a>.
90 </p> 88 </p>
91 89
92 <ul> 90 <ul>
93 <li> 91 <li>
94 <a href="http://code.google.com/p/dart/source/browse/">Browse</a> 92 <a href="http://code.google.com/p/dart/source/browse/">Browse</a>
95 the source 93 the source
96 </li> 94 </li>
97 <li> 95 <li>
98 <a href="http://code.google.com/p/dart/source/checkout">Check out</a> 96 <a href="http://code.google.com/p/dart/wiki/GettingTheSource?tm=4">Check o ut</a>
99 the source code straight from Subversion 97 the source code straight from Subversion
100 </li> 98 </li>
101 <li> 99 <li>
102 <a href="http://code.google.com/p/dart/wiki/Building#Building_everything">Bu ild</a> 100 <a href="http://code.google.com/p/dart/wiki/Building#Building_everything"> Build</a>
103 the source using the project build tools and scripts 101 the source using the project build tools and scripts
104 </a> 102 </a>
105 </li> 103 </li>
106 <li> 104 <li>
107 <a href="http://code.google.com/p/dart/wiki/Contributing">Contribute</a> 105 <a href="http://code.google.com/p/dart/wiki/Contributing">Contribute</a>
108 patches to the Dart project 106 patches to the Dart project
109 </li> 107 </li>
110 </ul> 108 </ul>
111 109
112 </section> 110 </section>
113 111
114 112
115 <script async src="/js/Switcher.dart.js"></script> 113 <script async src="/js/Switcher.dart.js"></script>
116 <script async src="/js/editor-downloads-analytics.js"></script> 114 <script async src="/js/editor-downloads-analytics.js"></script>
OLDNEW
« no previous file with comments | « src/site/docs/technical-overview/index.html ('k') | src/site/humans.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698