Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Lesson Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
prace-lessons
Lesson Template
Commits
9057aef1
Unverified
Commit
9057aef1
authored
6 years ago
by
Maxim Belkin
Browse files
Options
Downloads
Patches
Plain Diff
_extras/figures.md: sync up with upstream
Signed-off-by:
Maxim Belkin
<
maxim.belkin@gmail.com
>
parent
a9bb67d6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
_extras/figures.md
+37
-7
37 additions, 7 deletions
_extras/figures.md
with
37 additions
and
7 deletions
_extras/figures.md
+
37
−
7
View file @
9057aef1
---
title
:
Figures
---
{% include base_path.html %}
<script>
window.onload = function() {
var lesson_episodes = [
{% for episode in site.episodes %}
"{{ episode.url}}"{% unless forloop.last %},{% endunless %}
"{{ 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.appendChild(htmlDocArticle.getElementsByTagName("h1")[0]);
for (let image of htmlDocArticle.getElementsByTagName("img")) {
article_here.appendChild(image);
var article_here = document.getElementById(this.episode);
var images = htmlDocArticle.getElementsByTagName("img");
if (images.length > 0) {
var h1text = htmlDocArticle.getElementsByTagName("h1")[0].innerHTML;
var htitle = document.createElement('h2');
htitle.innerHTML = h1text;
article_here.appendChild(htitle);
var image_num = 0;
for (let image of images) {
image_num++;
var title = document.createElement('p');
title.innerHTML = "<strong>Figure " + image_num + ".</strong> " + image.alt;
article_here.appendChild(title);
article_here.appendChild(image.cloneNode(false));
if (image_num < images.length) {
var hr = document.createElement('hr');
article_here.appendChild(hr);
}
}
}
}
}
episode_url = "{{
page.root
}}" + lesson_episodes[i];
episode_url = "{{
relative_root_path
}}" + lesson_episodes[i];
xmlHttp[i].open("GET", episode_url);
xmlHttp[i].send(null);
}
...
...
@@ -34,5 +62,7 @@ title: Figures
Create anchor for each one of the episodes.
{% endcomment %}
{% for episode in site.episodes %}
<article
id=
"{{ episode.url }}"
></article>
<article
id=
"{{ episode.url }}"
class=
"figures"
></article>
{% endfor %}
{% include links.md %}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment