-
Notifications
You must be signed in to change notification settings - Fork 305
Expand file tree
/
Copy pathmain.html
More file actions
353 lines (295 loc) · 14.1 KB
/
main.html
File metadata and controls
353 lines (295 loc) · 14.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<<<<<<< HEAD
{% extends 'base/one_column.html' %}
{% comment %}
# This file is part of OpenHatch.
# Copyright (C) 2010 Jack Grigg
# Copyright (C) 2011 Josh Schreuder
# Copyright (C) 2010 OpenHatch, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
{% endcomment %}
{% block body_id %}missions_index{% endblock %}
{% block title %}
Open source training missions
{% endblock title %}
{% block pagetop %}
<h3 class="up-top"><img alt='Training Missions' id='training-missions' alt='Training Missions' src='/static/images/training-missions.png' /></h3>
{% endblock pagetop %}
{% block main %}
<div class="module">
<div class="module-body">
<h2>About the training missions</h2>
<p>Some video games have a “training level” where you can get shot
at without dying. These training missions are a place to learn
open source contribution skills without getting burned.</p>
<p>A training mission shuns “manuals” and long, boring blobs
of text. Instead it says, “Here’s a short, concrete task to
perform. Interact with this web-based robot here, and it will tell
you if you succeeded.”</p>
<h2>Get to know about: "The Shell"</h2>
<p>These missions teach you about how to use the command line tool called the "shell" and few basic commands which will help you in other missions.
</p>
<div class="submodule-container">
{% with fully_completed_missions.shell as mission_completed %}
{% with "Using the shell" as mission_title %}
{% with "Learn how to use the shell and play with commands." as mission_description %}
{% with "/missions/shell/about" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Before the missions: Prepare your command line</h2>
<p>Contributing to free, open source software frequently
requires using a text-based command line. Our training
missions are written with that in mind. A command line
is available on Windows, Mac OS, Linux, and other systems,
and we can show you how to launch it and play around in it.</p>
<p>If you're not sure how to use a command prompt to run programs
like tar, diff, and git on Windows, you can get started with
"Prepare your command line" below. We have not written our own
instructions for other platforms yet, but you can try these
external resources for <a href="https://help.ubuntu.com/community/UsingTheTerminal">Ubuntu</a>
and <a href="http://mac.tutsplus.com/tutorials/terminal/navigating-the-terminal-a-gentle-introduction/">Mac OS</a>.</p>
{% with "Windows" as mission_title %}
{% with 'Get "Git Bash" and GNU tools on Windows.' as mission_description %}
{% with "/missions/windows-setup" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
<h2>Get to know the tech used within open source</h2>
<p>These missions give you a tour of command-line tools you may
run into when contributing to free software.</p>
<div class="submodule-container">
{% with fully_completed_missions.tar as mission_completed %}
{% with "Using tar" as mission_title %}
{% with "Learn how to work with tar archives." as mission_description %}
{% with "/missions/tar" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% with fully_completed_missions.diffpatch as mission_completed %}
{% with "Using diff and patch" as mission_title %}
{% with "Learn how to use diff and patch to submit changes to a project or apply others' changes." as mission_description %}
{% with "/missions/diffpatch" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Practice contributing to a project</h2>
<p>These missions let you practice sharing a patch with a maintainer.</p>
<div class="submodule-container">
{% with fully_completed_missions.svn as mission_completed %}
{% with "Using Subversion" as mission_title %}
{% with "Learn how to interact with projects that use the Subversion version control system." as mission_description %}
{% with "/missions/svn" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% with fully_completed_missions.git as mission_completed %}
{% with "Using git" as mission_title %}
{% with "Learn how to interact with projects that use the Git version control system." as mission_description %}
{% with "/missions/git" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Setup your Python environment</h2>
<p>These missions teach you how to install Python packages and create
virtual environments.</p>
<div class="submodule-container">
{% with fully_completed_missions.pipvirtualenv as mission_completed %}
{% with "Using pip and virtualenv" as mission_title %}
{% with "Learn how to install Python packages and how to work with virtual environments." as mission_description %}
{% with "/missions/pipvirtualenv" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Where they came from, and where they're going</h2>
<p>You can read about
<a href="https://openhatch.org/blog/2010/the-thinking-behind-the-training-missions/">vision behind the training missions</a> on the OpenHatch blog.
They were initially built as a
<a href="https://openhatch.org/blog/2010/google-summer-of-code-project-training-missions/">Google Summer of Code</a> project.
</p>
<p>Now, our community of volunteers takes care of creating more missions and fixing bugs in them. We could use feedback, and if you want to jump in to help, we'd love to have you!
<a href="http://openhatch.org/contact/">Get in touch with us</a> and let us know what you think (or how you want to help out!). If you get stuck, <a href="http://openhatch.org/wiki/Mission_help">read our tips</a>.
</p>
{% endwith %}
{% endwith %}
</div>
</div>
{% endblock main %}
=======
{% extends 'base/one_column.html' %}
{% comment %}
# This file is part of OpenHatch.
# Copyright (C) 2010 Jack Grigg
# Copyright (C) 2011 Josh Schreuder
# Copyright (C) 2010 OpenHatch, Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
{% endcomment %}
{% block body_id %}missions_index{% endblock %}
{% block title %}
Open source training missions
{% endblock title %}
{% block pagetop %}
<h3 class="up-top"><img alt='Training Missions' id='training-missions' alt='Training Missions' src='/static/images/training-missions.png' /></h3>
{% endblock pagetop %}
{% block main %}
<div class="module">
<div class="module-body">
<h2>About the training missions</h2>
<p>Some video games have a “training level” where you can get shot
at without dying. These training missions are a place to learn
open source contribution skills without getting burned.</p>
<p>A training mission shuns “manuals” and long, boring blobs
of text. Instead it says, “Here’s a short, concrete task to
perform. Interact with this web-based robot here, and it will tell
you if you succeeded.”</p>
<h2>Get to know about: "The Shell"</h2>
<p>These missions teach you about how to use the command line tool called the "shell" and few basic commands which will help you in other missions.
</p>
<div class="submodule-container">
{% with fully_completed_missions.shell as mission_completed %}
{% with "Using the shell" as mission_title %}
{% with "Learn how to use the shell and play with commands." as mission_description %}
{% with "/missions/shell/about" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Before the missions: Prepare your command line</h2>
<p>Contributing to free, open source software frequently
requires using a text-based command line. Our training
missions are written with that in mind. A command line
is available on Windows, Mac OS, Linux, and other systems,
and we can show you how to launch it and play around in it.</p>
<p>If you're not sure how to use a command prompt to run programs
like tar, diff, and git on Windows, you can get started with
"Prepare your command line" below. We have not written our own
instructions for other platforms yet, but you can try these
external resources for <a href="https://help.ubuntu.com/community/UsingTheTerminal">Ubuntu</a>
and <a href="http://mac.tutsplus.com/tutorials/terminal/navigating-the-terminal-a-gentle-introduction/">Mac OS</a>.</p>
{% with "Windows" as mission_title %}
{% with 'Get "Git Bash" and GNU tools on Windows.' as mission_description %}
{% with "/missions/windows-setup" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
<h2>Get to know the tech used within open source</h2>
<p>These missions give you a tour of command-line tools you may
run into when contributing to free software.</p>
<div class="submodule-container">
{% with fully_completed_missions.tar as mission_completed %}
{% with "Using tar" as mission_title %}
{% with "Learn how to work with tar archives." as mission_description %}
{% with "/missions/tar" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% with fully_completed_missions.diffpatch as mission_completed %}
{% with "Using diff and patch" as mission_title %}
{% with "Learn how to use diff and patch to submit changes to a project or apply others' changes." as mission_description %}
{% with "/missions/diffpatch" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Practice contributing to a project</h2>
<p>These missions let you practice sharing a patch with a maintainer.</p>
<div class="submodule-container">
{% with fully_completed_missions.svn as mission_completed %}
{% with "Using Subversion" as mission_title %}
{% with "Learn how to interact with projects that use the Subversion version control system." as mission_description %}
{% with "/missions/svn" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
{% with fully_completed_missions.git as mission_completed %}
{% with "Using git" as mission_title %}
{% with "Learn how to interact with projects that use the Git version control system." as mission_description %}
{% with "/missions/git" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Setup your Python environment</h2>
<p>These missions teach you how to install Python packages and create
virtual environments.</p>
<div class="submodule-container">
{% with fully_completed_missions.pipvirtualenv as mission_completed %}
{% with "Using pip and virtualenv" as mission_title %}
{% with "Learn how to install Python packages and how to work with virtual environments." as mission_description %}
{% with "/missions/pipvirtualenv" as mission_link %}
{% include 'missions/mission_card.html' %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endwith %}
<div class="clearer"> </div>
</div>
<h2>Where they came from, and where they're going</h2>
<p>You can read about
<a href="https://openhatch.org/blog/2010/the-thinking-behind-the-training-missions/">vision behind the training missions</a> on the OpenHatch blog.
They were initially built as a
<a href="https://openhatch.org/blog/2010/google-summer-of-code-project-training-missions/">Google Summer of Code</a> project.
</p>
<p>Now, our community of volunteers takes care of creating more missions and fixing bugs in them. We could use feedback, and if you want to jump in to help, we'd love to have you!
<a href="http://openhatch.org/contact/">Get in touch with us</a> and let us know what you think (or how you want to help out!). If you get stuck, <a href="http://openhatch.org/wiki/Mission_help">read our tips</a>.
</p>
{% endwith %}
{% endwith %}
</div>
</div>
{% endblock main %}
>>>>>>> 4de104ebe166152940d25d4c7230807f3c0f2e31