Skip to content

Commit cef9e6b

Browse files
committed
replaced by runr
1 parent 3c91fec commit cef9e6b

File tree

6 files changed

+12
-973
lines changed

6 files changed

+12
-973
lines changed

runic/defaults.js

Lines changed: 0 additions & 71 deletions
This file was deleted.

runic/help/index.html

Lines changed: 0 additions & 121 deletions
This file was deleted.

runic/index.html

Lines changed: 12 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -2,106 +2,23 @@
22
<html lang="en-gb">
33
<head>
44
<meta charset="UTF-8" />
5-
<title>Runic character app 25</title>
6-
7-
<link rel="stylesheet" href="../../shared/style/docs.css" />
8-
<link rel="stylesheet" href="../shared25/style.css" />
9-
<link rel="stylesheet" href="localstyle.css" />
10-
11-
<script src="defaults.js"> </script>
12-
<script src="/shared/fontdb/db.js"> </script>
13-
<script src="../../shared/scriptdb/runic.js"> </script>
14-
15-
<script src="../../shared/code/boilerplate.js"></script>
16-
<script src="../../shared/code/character_conversion.js"></script>
17-
<script src="../../shared/code/show_codepoints.js"></script>
18-
<script src="../../shared/fontlists/manage.js"></script>
19-
<script src="../../shared/code/scriptGroups.js"></script>
20-
<script src="../../shared/code/all-names.js"></script>
21-
<script src="../shared25/setup.js"> </script>
22-
<script src="../shared25/code.js"> </script>
23-
<script src="../shared25/latinregister.js"> </script>
24-
<script src="localcode.js"> </script>
25-
<script src="../shared25/pagetemplate.js"> </script>
26-
<script src="/scripts/linkdata/linkdb.js"></script>
27-
<script src="localtranscription.js"> </script>
28-
29-
<style id="dynamicUIFont"></style>
30-
<style id="dynamicUIFontSize"></style>
5+
<title>Character app redirect</title>
6+
<script>
7+
newlocation = 'runr'
8+
</script>
319
</head>
3210

3311
<body class="app">
34-
<div id="topBP"></div>
35-
<script>document.getElementById('topBP').innerHTML = setTop(defaults.title, defaults.sample)</script>
36-
37-
38-
39-
40-
41-
42-
43-
44-
45-
<div id="phonemelist" style="position:relative;">
46-
<div id="transcriptionPalette" class="transcript" style="display:none;"></div>
47-
</div>
48-
49-
50-
51-
<div id="chardata"><span id="charname">Type-assist (T) is on.</span></div>
52-
12+
<p>This app has been moved to <a id="redirect" href="xxxx">xxxx</a>.</p>
5313

54-
55-
<div id="tables" dir="ltr">
56-
57-
<div class="kbdWrapper"><div dir="ltr" id="keyboard" style="display: block;"></div></div>
58-
59-
<div id="alphabet" class="default">
60-
61-
<div class="spaceline">
62-
<span class="touch" title="Space" style="padding: 5px 140px;" dir="auto" onClick="add(' ');">SPACE</span>
63-
<span class="touch" title="Zero-width space" style="padding: 5px;" dir="auto" onClick="add('\u200B');">ZWSP</span>
64-
<span class="touch" title="Right-left override" style="padding: 5px;" dir="auto" onClick="add('\u202E');">RLO</span>
65-
<span class="touch" title="PDF" style="padding: 5px;" dir="auto" onClick="add('\u202C');">PDF</span>
66-
<span class="touch" title="Zero-width joiner" style="padding: 5px;" dir="auto" onClick="add('\u200D');">ZWJ</span>
67-
<span class="touch" title="Delete 1 character at end" style="padding: 5px 20px;" dir="auto" onClick="del();">DEL</span>
68-
<span class="touch delAll" title="Delete All" style="margin-right: 20px; margin-left:20px;" dir="auto" onClick="deleteAll();"></span>
69-
</div>
70-
71-
72-
73-
<div id="keyboardSwitch">
74-
<span id="elder" class="unshifted" dir="auto" onClick="if (this.className=='unshifted') {makeKeyboard (elderkbd, keyboardLCGuide); this.className='shifted'; unshiftAll('medieval younger anglosaxon latink')} ">Elder</span>
75-
<span id="younger" class="shifted" dir="auto" onClick="if (this.className=='unshifted') {makeKeyboard(keyboarddef, keyboardLCGuide); this.className='shifted'; unshiftAll('medieval elder anglosaxon latink')} ">Younger</span>
76-
<span id="medieval" class="unshifted" dir="auto" onClick="if (this.className=='unshifted') {makeKeyboard(medievalkbd, keyboardLCGuide); this.className='shifted'; unshiftAll('elder younger anglosaxon latink')} ">Medieval</span>
77-
<span id="anglosaxon" class="unshifted" dir="auto" onClick="if (this.className=='unshifted') {makeKeyboard(anglosaxonkbd, keyboardLCGuide); this.className='shifted'; unshiftAll('medieval younger elder latink')} ">Anglo-saxon</span>
78-
<span id="latink" class="unshifted" dir="auto" onClick="if (this.className=='unshifted') {makeKeyboard(latinkbd, keyboardLCGuide); this.className='shifted'; unshiftAll('medieval younger elder anglosaxon')} ">Latin</span>
79-
</div>
80-
</div>
81-
82-
83-
84-
85-
<div id="shapelist" style="display:none; text-align:center;">
86-
<div id="shapekeys">
87-
</div>
88-
</div>
89-
90-
<div id="extrashapes"></div>
91-
92-
93-
<div id="temp"></div>
94-
95-
96-
</div><!-- end of tables -->
97-
98-
99-
100-
101-
<div id="bottomBP"></div>
10214
<script>
103-
document.getElementById('bottomBP').innerHTML = getBottom()
104-
setUpValues()
15+
var hash = ''
16+
if (window.location.hash) hash = window.location.hash
17+
var parameters = ''
18+
if (window.location.search) hash = window.location.search
19+
20+
document.getElementById('redirect').textContent = 'https://r12a.github.io/pickers/'+newlocation+'/'
21+
document.getElementById('redirect').href ='../'+newlocation+'/' + parameters + hash
10522
</script>
10623
</body>
10724
</html>

0 commit comments

Comments
 (0)