From 8ad13318f74ed7ecedf7db864524ab8a7204365c Mon Sep 17 00:00:00 2001 From: ghan3 Date: Mon, 26 Dec 2016 11:19:34 -0800 Subject: [PATCH 1/7] Changed a type under Get to know about: "The Shell" from "called as" "called the" --- mysite/missions/__init__.py | 15 --------------- mysite/missions/templates/missions/main.html | 2 +- 2 files changed, 1 insertion(+), 16 deletions(-) delete mode 100644 mysite/missions/__init__.py diff --git a/mysite/missions/__init__.py b/mysite/missions/__init__.py deleted file mode 100644 index f4cf565816..0000000000 --- a/mysite/missions/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -# 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 . diff --git a/mysite/missions/templates/missions/main.html b/mysite/missions/templates/missions/main.html index bc7b3bf16d..e76a8fe883 100644 --- a/mysite/missions/templates/missions/main.html +++ b/mysite/missions/templates/missions/main.html @@ -44,7 +44,7 @@

About the training missions

Get to know about: "The Shell"

-

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. +

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.

From 0f548925bf249784af6f060308d23f3be302a3d3 Mon Sep 17 00:00:00 2001 From: greg-han Date: Mon, 26 Dec 2016 11:58:49 -0800 Subject: [PATCH 2/7] Add files via upload This is the typo error change for error #1798 --- main.html | 175 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 175 insertions(+) create mode 100644 main.html diff --git a/main.html b/main.html new file mode 100644 index 0000000000..b0cc2493fe --- /dev/null +++ b/main.html @@ -0,0 +1,175 @@ +{% 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 . +{% endcomment %} + +{% block body_id %}missions_index{% endblock %} + +{% block title %} +Open source training missions +{% endblock title %} + +{% block pagetop %} +

Training Missions

+{% endblock pagetop %} + +{% block main %} +
+
+

About the training missions

+

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.

+ +

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.”

+ +

Get to know about: "The Shell"

+ +

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. +

+ +
+ {% 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 %} + +
 
+
+ +

Before the missions: Prepare your command line

+ +

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.

+ +

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 Ubuntu + and Mac OS.

+ + {% 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 %} + +

Get to know the tech used within open source

+ +

These missions give you a tour of command-line tools you may + run into when contributing to free software.

+ +
+ {% 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 %} +
 
+
+ +

Practice contributing to a project

+ +

These missions let you practice sharing a patch with a maintainer.

+ +
+ {% 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 %} + +
 
+
+ +

Setup your Python environment

+ +

These missions teach you how to install Python packages and create + virtual environments.

+ +
+ {% 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 %} + +
 
+
+ +

Where they came from, and where they're going

+

You can read about + vision behind the training missions on the OpenHatch blog. + They were initially built as a + Google Summer of Code project. +

+ +

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! + Get in touch with us and let us know what you think (or how you want to help out!). If you get stuck, read our tips. +

+ {% endwith %} + {% endwith %} + +
+
+{% endblock main %} From 250725220081a5b1a33e8445f4a8f888db670f21 Mon Sep 17 00:00:00 2001 From: greg-han Date: Mon, 26 Dec 2016 11:59:46 -0800 Subject: [PATCH 3/7] Delete main.html --- main.html | 175 ------------------------------------------------------ 1 file changed, 175 deletions(-) delete mode 100644 main.html diff --git a/main.html b/main.html deleted file mode 100644 index b0cc2493fe..0000000000 --- a/main.html +++ /dev/null @@ -1,175 +0,0 @@ -{% 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 . -{% endcomment %} - -{% block body_id %}missions_index{% endblock %} - -{% block title %} -Open source training missions -{% endblock title %} - -{% block pagetop %} -

Training Missions

-{% endblock pagetop %} - -{% block main %} -
-
-

About the training missions

-

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.

- -

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.”

- -

Get to know about: "The Shell"

- -

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. -

- -
- {% 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 %} - -
 
-
- -

Before the missions: Prepare your command line

- -

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.

- -

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 Ubuntu - and Mac OS.

- - {% 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 %} - -

Get to know the tech used within open source

- -

These missions give you a tour of command-line tools you may - run into when contributing to free software.

- -
- {% 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 %} -
 
-
- -

Practice contributing to a project

- -

These missions let you practice sharing a patch with a maintainer.

- -
- {% 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 %} - -
 
-
- -

Setup your Python environment

- -

These missions teach you how to install Python packages and create - virtual environments.

- -
- {% 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 %} - -
 
-
- -

Where they came from, and where they're going

-

You can read about - vision behind the training missions on the OpenHatch blog. - They were initially built as a - Google Summer of Code project. -

- -

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! - Get in touch with us and let us know what you think (or how you want to help out!). If you get stuck, read our tips. -

- {% endwith %} - {% endwith %} - -
-
-{% endblock main %} From cce7071f283f365451fb3eda29159ed910683705 Mon Sep 17 00:00:00 2001 From: greg-han Date: Mon, 26 Dec 2016 12:01:00 -0800 Subject: [PATCH 4/7] Add files via upload Fixed Error # 1798 --- mysite/missions/templates/missions/main.html | 350 +++++++++---------- 1 file changed, 175 insertions(+), 175 deletions(-) diff --git a/mysite/missions/templates/missions/main.html b/mysite/missions/templates/missions/main.html index bc7b3bf16d..b0cc2493fe 100644 --- a/mysite/missions/templates/missions/main.html +++ b/mysite/missions/templates/missions/main.html @@ -1,175 +1,175 @@ -{% 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 . -{% endcomment %} - -{% block body_id %}missions_index{% endblock %} - -{% block title %} -Open source training missions -{% endblock title %} - -{% block pagetop %} -

Training Missions

-{% endblock pagetop %} - -{% block main %} -
-
-

About the training missions

-

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.

- -

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.”

- -

Get to know about: "The Shell"

- -

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. -

- -
- {% 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 %} - -
 
-
- -

Before the missions: Prepare your command line

- -

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.

- -

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 Ubuntu - and Mac OS.

- - {% 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 %} - -

Get to know the tech used within open source

- -

These missions give you a tour of command-line tools you may - run into when contributing to free software.

- -
- {% 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 %} -
 
-
- -

Practice contributing to a project

- -

These missions let you practice sharing a patch with a maintainer.

- -
- {% 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 %} - -
 
-
- -

Setup your Python environment

- -

These missions teach you how to install Python packages and create - virtual environments.

- -
- {% 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 %} - -
 
-
- -

Where they came from, and where they're going

-

You can read about - vision behind the training missions on the OpenHatch blog. - They were initially built as a - Google Summer of Code project. -

- -

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! - Get in touch with us and let us know what you think (or how you want to help out!). If you get stuck, read our tips. -

- {% endwith %} - {% endwith %} - -
-
-{% 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 . +{% endcomment %} + +{% block body_id %}missions_index{% endblock %} + +{% block title %} +Open source training missions +{% endblock title %} + +{% block pagetop %} +

Training Missions

+{% endblock pagetop %} + +{% block main %} +
+
+

About the training missions

+

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.

+ +

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.”

+ +

Get to know about: "The Shell"

+ +

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. +

+ +
+ {% 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 %} + +
 
+
+ +

Before the missions: Prepare your command line

+ +

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.

+ +

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 Ubuntu + and Mac OS.

+ + {% 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 %} + +

Get to know the tech used within open source

+ +

These missions give you a tour of command-line tools you may + run into when contributing to free software.

+ +
+ {% 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 %} +
 
+
+ +

Practice contributing to a project

+ +

These missions let you practice sharing a patch with a maintainer.

+ +
+ {% 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 %} + +
 
+
+ +

Setup your Python environment

+ +

These missions teach you how to install Python packages and create + virtual environments.

+ +
+ {% 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 %} + +
 
+
+ +

Where they came from, and where they're going

+

You can read about + vision behind the training missions on the OpenHatch blog. + They were initially built as a + Google Summer of Code project. +

+ +

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! + Get in touch with us and let us know what you think (or how you want to help out!). If you get stuck, read our tips. +

+ {% endwith %} + {% endwith %} + +
+
+{% endblock main %} From 0d3d4647ffd365169f6cda5c03934411afc55ecf Mon Sep 17 00:00:00 2001 From: ghan3 Date: Mon, 26 Dec 2016 12:47:45 -0800 Subject: [PATCH 5/7] initial commit --- initial | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 initial diff --git a/initial b/initial new file mode 100644 index 0000000000..e69de29bb2 From c911e367d0b3bbfe65f0a4f373e95d2965c19416 Mon Sep 17 00:00:00 2001 From: ghan3 Date: Tue, 27 Dec 2016 22:21:22 -0800 Subject: [PATCH 6/7] Should match with main repository now --- mysite/missions/__init__.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 mysite/missions/__init__.py diff --git a/mysite/missions/__init__.py b/mysite/missions/__init__.py new file mode 100644 index 0000000000..4c770282eb --- /dev/null +++ b/mysite/missions/__init__.py @@ -0,0 +1,15 @@ +# 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 . From 9d5b334e8f5e344e9ec5b19d32568937d65c59dd Mon Sep 17 00:00:00 2001 From: ghan3 Date: Wed, 4 Jan 2017 21:42:59 -0800 Subject: [PATCH 7/7] Changed the typo for error #1798:q --- mysite/missions/templates/missions/main.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysite/missions/templates/missions/main.html b/mysite/missions/templates/missions/main.html index bc7b3bf16d..e76a8fe883 100644 --- a/mysite/missions/templates/missions/main.html +++ b/mysite/missions/templates/missions/main.html @@ -44,7 +44,7 @@

About the training missions

Get to know about: "The Shell"

-

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. +

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.