This repository was archived by the owner on Jun 7, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 222
Expand file tree
/
Copy path__init__.py
More file actions
168 lines (142 loc) · 4.97 KB
/
__init__.py
File metadata and controls
168 lines (142 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
from .activecode import *
from .animation import *
from .assess import *
from .blockly import *
from .codelens import *
from .clickableArea import *
from .datafile import *
from .disqus import *
from .dragndrop import *
from .fitb import *
from .matrixeq import *
from .meta import *
from .parsons import *
from .poll import *
from .reveal import *
from .shortanswer import *
from .showeval import *
from .tabbedStuff import *
from .usageAssignment import *
from .video import *
from .webgldemo import *
import os, sys, socket
def runestone_static_dirs():
basedir = os.path.dirname(__file__)
module_paths = [
x for x in os.listdir(basedir) if os.path.isdir(os.path.join(basedir, x))
]
module_static_js = [
"%s/js" % os.path.join(basedir, x)
for x in module_paths
if os.path.exists("%s/js" % os.path.join(basedir, x))
]
module_static_css = [
"%s/css" % os.path.join(basedir, x)
for x in module_paths
if os.path.exists("%s/css" % os.path.join(basedir, x))
]
module_static_image = [
"%s/images" % os.path.join(basedir, x)
for x in module_paths
if os.path.exists("%s/images" % os.path.join(basedir, x))
]
module_static_bootstrap = [
"%s/bootstrap" % os.path.join(basedir, x)
for x in module_paths
if os.path.exists("%s/bootstrap" % os.path.join(basedir, x))
]
return (
module_static_js
+ module_static_css
+ module_static_image
+ module_static_bootstrap
+ [os.path.join(basedir, "common/project_template/_static")]
)
def runestone_extensions():
basedir = os.path.dirname(__file__)
module_paths = [
x for x in os.listdir(basedir) if os.path.isdir(os.path.join(basedir, x))
]
modules = [
"runestone.{}".format(x)
for x in module_paths
if os.path.exists("{}/__init__.py".format(os.path.join(basedir, x)))
]
# Place ``runestone.common`` first, so it can run init code needed by all other modules. This assumes that the first module in the list is run first. An alternative to this to guarantee this ordering is to call ``app.setup_extension('runestone.common')`` in every extension.
modules.insert(0, modules.pop(modules.index('runestone.common')))
# ``runestone.updateConfig`` is reserved for testing and will only be included if ``test`` is the second to last element of tha path
if 'test' != os.path.split(os.getcwd())[-1]:
modules.remove('runestone.updateConfig')
modules.insert(0, modules.pop(modules.index("runestone.common")))
return modules
def get_master_url():
if socket.gethostname() in ["runestone-deploy", "rsbuilder"]:
master_url = "https://runestone.academy"
elif "RUNESTONE_HOST" in os.environ:
port = os.environ.get("RUNESTONE_PORT", 80)
secure = os.environ.get("RUNESTONE_PROTOCOL", "http")
master_url = "{}://{}:{}".format(secure, os.environ["RUNESTONE_HOST"], port)
else:
master_url = "http://127.0.0.1:8000"
return master_url
from paver.easy import task, cmdopts, sh
from sphinxcontrib import paverutils
@task
@cmdopts(
[
("all", "a", "rebuild everything"),
("outputdir=", "o", "output static files here"),
("masterurl=", "u", "override the default master url"),
("masterapp=", "p", "override the default master app"),
]
)
def build(options):
if "all" in options.build:
options["force_all"] = True
options["freshenv"] = True
try:
bi = sh("git describe --long", capture=True)[:-1]
bnum = bi.split("-")[0]
options.build.template_args["build_info"] = bnum
except:
bi = "unknown-0-0"
options.build.template_args["build_info"] = "unknown"
with open("build_info", "w") as bif:
bif.write(bi)
bif.write("\n")
if "outputdir" in options.build:
options.build.outdir = options.build.outputdir
if "masterurl" in options.build:
options.build.template_args["course_url"] = options.build.masterurl
if "masterapp" in options.build:
options.build.template_args["appname"] = options.build.masterapp
print("Building into ", options.build.outdir)
rc = paverutils.run_sphinx(options, "build")
if rc == 0 or rc is None:
print("Done, build successful")
else:
print("Error in building code {}".format(rc))
return rc
cmap = {
"activecode": ActiveCode,
"mchoice": MChoice,
"fillintheblank": FillInTheBlank,
"timed": TimedDirective,
"qnum": QuestionNumber,
"codelens": Codelens,
"clickablearea": ClickableArea,
"datafile": DataFile,
"disqus": DisqusDirective,
"dragndrop": DragNDrop,
"parsonsprob": ParsonsProblem,
"poll": Poll,
"reveal": RevealDirective,
"shortanswer": JournalDirective,
"showeval": ShowEval,
"tabbed": TabbedStuffDirective,
"tab": TabDirective,
"video": Video,
"youtube": Youtube,
"vimeo": Vimeo,
"usageassignment": usageAssignment,
}