-
Notifications
You must be signed in to change notification settings - Fork 310
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed error #1798 #1800
Closed
Closed
Fixed error #1798 #1800
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
8ad1331
Changed a type under Get to know about: "The Shell" from "called as"
0f54892
Add files via upload
2507252
Delete main.html
cce7071
Add files via upload
0d3d464
initial commit
4de104e
Merge branch 'master' of https://github.com/greg-han/oh-mainline
5e73100
Merge branch 'master' of https://github.com/greg-han/oh-mainline
c911e36
Should match with main repository now
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# This file is part of OpenHatch. | ||
# Copyright (C) 2010 John Stumpo | ||
# | ||
# 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/>. | ||
# This file is part of OpenHatch. | ||
# Copyright (C) 2009 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/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
<<<<<<< HEAD | ||
{% extends 'base/one_column.html' %} | ||
{% comment %} | ||
# This file is part of OpenHatch. | ||
|
@@ -44,7 +45,7 @@ <h2>About the training missions</h2> | |
|
||
<h2>Get to know about: "The Shell"</h2> | ||
|
||
<p>These missions teach you about how to use the command line tool called as the "shell" and few basic commands which will help you in other missions. | ||
<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. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this is what you wanted to get in there. |
||
</p> | ||
|
||
<div class="submodule-container"> | ||
|
@@ -173,3 +174,180 @@ <h2>Where they came from, and where they're going</h2> | |
</div> | ||
</div> | ||
{% endblock main %} | ||
======= | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Merge conflict markers were committed! |
||
{% 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 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't think you meant to make this change.