-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
84451e6
commit 77c33fe
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
layout: page | ||
title: "Contributor Code of Conduct" | ||
--- | ||
As contributors and maintainers of this project, | ||
we pledge to follow the [Carpentry Code of Conduct][coc]. | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior | ||
may be reported by following our [reporting guidelines][coc-reporting]. | ||
|
||
{% include links.md %} |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
--- | ||
<script> | ||
window.onload = function() { | ||
var lesson_episodes = [ | ||
{% for episode in site.episodes %} | ||
"{{ episode.url}}"{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
]; | ||
var xmlHttp = []; /* Required since we are going to query every episode. */ | ||
for (i=0; i < lesson_episodes.length; i++) { | ||
xmlHttp[i] = new XMLHttpRequest(); | ||
xmlHttp[i].episode = lesson_episodes[i]; /* To enable use this later. */ | ||
xmlHttp[i].onreadystatechange = function() { | ||
if (this.readyState == 4 && this.status == 200) { | ||
var article_here = document.getElementById(this.episode); | ||
var parser = new DOMParser(); | ||
var htmlDoc = parser.parseFromString(this.responseText,"text/html"); | ||
var htmlDocArticle = htmlDoc.getElementsByTagName("article")[0]; | ||
article_here.innerHTML = htmlDocArticle.innerHTML; | ||
} | ||
} | ||
episode_url = "{{ page.root }}" + lesson_episodes[i]; | ||
xmlHttp[i].open("GET", episode_url); | ||
xmlHttp[i].send(null); | ||
} | ||
} | ||
</script> | ||
{% comment %} | ||
Create anchor for each one of the episodes. | ||
{% endcomment %} | ||
{% for episode in site.episodes %} | ||
<article id="{{ episode.url }}"></article> | ||
{% endfor %} |