Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 9efdcfa

Browse files
committed
Docs: Link to hsblog endpoint in server.
1 parent 22e8a49 commit 9efdcfa

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -347,9 +347,10 @@
347347
# This config value contains the locations and names of other projects that should be linked to in this documentation.
348348
intersphinx_mapping = {
349349
"RunestoneServer": (
350-
"https://runestoneserver.readthedocs.io/en/latest/",
351-
None,
352-
# An optional local file location -- useful when updating both Sphinx builds before the updates are pushed to the server.
353-
##"F:/Runestone/web2py/applications/runestone/_build/objects.inv",
350+
"https://runestoneserver.readthedocs.io/en/latest/", (
351+
None,
352+
# An optional local file location -- useful when updating both Sphinx builds before the updates are pushed to the server.
353+
##"C:/Users/bjones/Documents/git/web2py/applications/runestone/_build/objects.inv",
354+
)
354355
)
355356
}

runestone/common/js/runestonebase.js

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
/**
2-
* Runestone Base Class
3-
* All runestone components should inherit from RunestoneBase
1+
/* ********************************
2+
* |docname| - Runestone Base Class
3+
* ********************************
4+
* All runestone components should inherit from RunestoneBase. In addition all runestone components should do the following things:
45
*
5-
* In addition all runestone components should do the following things:
6-
* 1. Ensure that they are wrapped in a div with the class runestone
7-
* 2. Write their source AND their generated html to the database if the database is configured
8-
* 3. properly save and restore their answers using the checkServer mechanism in this base class.
9-
* Each component must provide an implementation of
10-
* - checkLocalStorage
11-
* - setLocalStorage
12-
* - restoreAnswers
13-
* disableInteraction
6+
* 1. Ensure that they are wrapped in a div with the class runestone
7+
* 2. Write their source AND their generated html to the database if the database is configured
8+
* 3. Properly save and restore their answers using the checkServer mechanism in this base class. Each component must provide an implementation of:
149
*
15-
* 4. provide a Selenium based unit test
10+
* - checkLocalStorage
11+
* - setLocalStorage
12+
* - restoreAnswers
13+
* - disableInteraction
1614
*
17-
**/
15+
* 4. provide a Selenium based unit test
16+
*/
1817

1918
import { pageProgressTracker } from "./bookfuncs.js";
2019
//import "./../styles/runestone-custom-sphinx-bootstrap.css";

0 commit comments

Comments
 (0)