forked from source-academy/sicp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhtmlContent.js
executable file
·269 lines (241 loc) · 11.7 KB
/
htmlContent.js
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
const shortTitleDefault = `SICP — JS`;
const longTitleDefault = `Structure and Interpretation of Computer Programs — Comparison Edition`;
let shortTitle = shortTitleDefault;
let longTitle = longTitleDefault;
let this_edition = `
<div class="title-text-EDITION">
<span class="title-text-EDITION">Mobile-friendly Web Edition</span>
</div>`;
let legend = `
<div class="title-text-ALSO">
<span class="title-text-ALSO">also available</span><BR/>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<a href="split">Comparison edition</a></span>
</div>`;
export const switchTitle = version => {
if (version == "js") {
shortTitle = shortTitleDefault;
longTitle = longTitleDefault;
this_edition = `
<div class="title-text-EDITION">
<span class="title-text-EDITION">Mobile-friendly Web Edition</span>
</div>`;
legend = `
<div class="title-text-ALSO">
<span class="title-text-ALSO">also available</span><BR/>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<a href="split">Comparison edition</a></span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<a href="sicpjs.zip">All programs zipped</a></span>
</div>`;
} else if (version == "split") {
shortTitle = `SICP — Scheme/JS`;
longTitle = `Structure and Interpretation of Computer Programs — Comparison Edition`;
this_edition = `
<div class="title-text-EDITION">
<span class="title-text-EDITION">Comparison Edition</span>
</div>`;
legend = `
<div class="title-text-ALSO">
<span class="title-text-ALSO">Color highlighting:</span><BR/>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:black">Unchanged █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:green">Scheme █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:blue">Javascript █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:grey">Explanation █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:red">Web-only █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<a href="https://sourceacademy.org/sicpjs">Interactive SICP JS</a></span>
</div>`;
} else if (version == "scheme") {
// scheme version of the web textbook has yet been developed
console.log("generate sicp scheme web textook");
}
};
// `\\\\`' is used to display double back-slash \\ in template literals
export const html_links_part1 = `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Global site tag (gtag.js) - Google Analytics - START -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-156801664-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-156801664-1');
</script>
<!-- Global site tag (gtag.js) - Google Analytics - END -->
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
`;
export const html_links_part2 = (writeTo, toIndexFolder, version) => {
writeTo.push(`
<meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="EMTEijVc2kiiKUH4nYH0lQG3pLPfMowQ/Stg//t6DCo0e5pWMQwamnTvIdmVZqY/MqSx2IYYE+2bpNV6UNSMwQ==" />
<!--<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
-->
<link href="https://fonts.googleapis.com/css?family=Inconsolata&display?swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Droid+Sans|Droid+Serif" rel="stylesheet">
<link rel="stylesheet" media="all" href="${toIndexFolder}assets/stylesheet.css" />
<link rel="shortcut icon" type="image/x-icon" href="${toIndexFolder}assets/sourcepower.ico" />
<!-- <link rel="shortcut icon" type="image/png" href="${toIndexFolder}images/lambda.png" /> -->
<!-- for support of progressive web app, see github README, DISABLED!
<link rel="manifest" href="${toIndexFolder}static/manifest.json">
-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script> -->
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/latest.js?config=TeX-AMS-MML_HTMLorMML-full">
</script>
<!-- <script type="text/javascript"
src="${toIndexFolder}MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML-full">
</script> -->
<script src="${toIndexFolder}assets/application.js"></script>
<!-- Rendering inline LaTeX -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\\\(","\\\\)"] ],
processEscapes: true,
jax: ["input/TeX","output/HTML-CSS"]
}
});
</script>
<!--<script src="/mathjax/MathJax.js?config=TeX-AMS_HTML-full.js" type="text/javascript"></script>-->
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.2/html5shiv.min.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<!-- support for progressive web app, see README, DISABLED
<script>
if ('serviceWorker' in navigator && !navigator.serviceWorker.controller) {
navigator.serviceWorker.register("../sw.js").then(function(reg) {
console.log("Service worker has been registered for scope: " + reg.scope);
});
}
</script>
-->
<nav class="navbar navbar-expand-sm navbar-dark bg-dark fixed-top justify-content-between">
<button id="btn" class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#nav-sidebar" aria-controls="nav-sidebar" aria-expanded="false" aria-label="Toggle navigation" title="navigation">
<span class="navbar-toggler-icon"></span>
</button>
<span class="toolt">Legend<span class="toolttext">
<div class="title-text-ALSO">
<span class="title-text-ALSO">Color highlighting:</span><BR/>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:black">Unchanged █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:green">Scheme █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:blue">Javascript █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:grey">Explanation █</span>
</span>
</div>
<div class="title-text-OTHEREDITIONS">
<span class="title-text-OTHEREDITIONS">
<span style="color:red">Web-only █</span>
</div>
</span></span>
<span class="navbar-brand-short"><a title="Go back to front page" href="${toIndexFolder}index.html" class="gray">${shortTitle}</a></span>
<span class="navbar-brand-long" ><a title="Go back to front page" href="${toIndexFolder}index.html" class="gray">${longTitle}</a></span>
</nav>
<div class="container scroll">
`);
};
export const indexPage = writeTo => {
writeTo.push(`
<TABLE class="tight">
<TD class="tight" width="70%" valign="top" align="right">
<img class="tight" src="./sicp.png"
height="auto" width="100%">
</TD>
<TD class="tight" width="30%" valign="top" align="left">
${this_edition}
<span style="vertical-align:-77%"/>
<BR/>
${legend}
</TD>
</TR>
</TABLE>
<div class="title-text-ATTRIBUTION">
<span class="title-text-AUTHOR">Harold Abelson and Gerald Jay Sussman<br/>with Julie Sussman</span>
<span class="title-text-TITLE">original authors</span>
</div>
<div class="title-text-ATTRIBUTION">
<span class="title-text-AUTHOR">Martin Henz and Tobias Wrigstad<br/>with Julie Sussman</span><span class="title-text-TITLE">adapters to JavaScript</span>
</div>
<div class="title-text-ATTRIBUTION">
<span class="title-text-AUTHOR">Chan Ger Hean, He Xinyue, Liu Hang, Feng Piaopiao, Jolyn Tan and Wang Qian</span><span class="title-text-TITLE">developers of Comparison Edition</span>
</div>
`);
};
export const beforeContentWrapper = `<div id='permalink-msg'>
<div class='screen'>
<div class='alert alert-success'>
<strong>Permalink copied!</strong>
</div>
</div>
</div>
<div class='chapter-content'>
`;
export const html_licences = `<div class="title-text-LICENCE">
<a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow"><img src="https://licensebuttons.net/l/by-sa/4.0/88x31.png" style="max-width:100%;"></a>
<p/>
The text of the original SICP 2nd edition is licensed by Harold Abelson and Gerald Jay Sussman under a <a href="http://creativecommons.org/licenses/by-sa/4.0/" rel="nofollow">Creative Commons Attribution-ShareAlike 4.0
International License</a> (CC BY-SA). The text of the JavaScript adaptation is licensed by Harold Abelson, Gerald Jay Sussman, Martin Henz, and Tobias Wrigstad, also under CC BY-SA. The figures in the JavaScript adaptation are derived from figures created by Andres Raba in 2015 and are licensed by Martin Henz and Tobias Wrigstad, also under CC BY-SA.
</div>
<div class="title-text-LICENCE">
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" rel="nofollow"><img src="https://camo.githubusercontent.com/46d38fe6087a9b9bdf7e45458901b818765b8391/68747470733a2f2f75706c6f61642e77696b696d656469612e6f72672f77696b6970656469612f636f6d6d6f6e732f7468756d622f372f37392f4c6963656e73655f69636f6e2d67706c2e7376672f353070782d4c6963656e73655f69636f6e2d67706c2e7376672e706e67" alt="GPL 3" data-canonical-src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/79/License_icon-gpl.svg/50px-License_icon-gpl.svg.png" style="max-width:100%;"></a>
<p/>
All Scheme programs in this work are licensed by Harold Abelson and Gerald Jay Sussman under the
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html" rel="nofollow">GNU General Public License Version 3</a> (GPLv3). All JavaScript programs in this work are licensed by Martin Henz and Tobias Wrigstad, also under GPLv3.
</div>
`;