-
Notifications
You must be signed in to change notification settings - Fork 1
/
tweebox.html
executable file
·184 lines (126 loc) · 4.19 KB
/
tweebox.html
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
head 1.1;
access;
symbols;
locks; strict;
comment @# @;
1.1
date 2008.03.14.01.30.46; author klimas; state Exp;
branches;
next ;
desc
@@
1.1
log
@Initial revision
@
text
@<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Tweebox 1.2</title>
<style type="text/css">
@@import url("css/tweebox.css");
</style>
<!--[if lt IE 7]>
<style type="text/css">
img { display: none }
</style>
<![endif]-->
</head>
<script type="text/javascript" src="js/mootools.js"></script>
<script type="text/javascript" src="js/mooprompt.js"></script>
<script type="text/javascript" src="js/json.js"></script>
<script type="text/javascript" src="js/file.js"></script>
<script type="text/javascript" src="js/targets.js"></script>
<script type="text/javascript" src="js/project.js"></script>
<script type="text/javascript" src="js/projectlist.js"></script>
<script type="text/javascript" src="js/twee.js"></script>
<script type="text/javascript" src="js/interface.js"></script>
<body>
<h1><a href="javascript:void(0)" onclick="Interface.showDialog('about')">twee<big>box</big> 1.2</a></h1>
<div id="help">
<a href="http://gimcrackd.com/etc/doc/" target="_blank"><img src="img/help.png" /> Help</a>
</div> <!-- #help -->
<div id="projects" class="panel"></div>
<div id="content" class="panel shadowed">
<div class="column">
<div id="sourcesContent">
<fieldset>
<legend class="captioned" title="Source Files::These files will be compiled into your story.">
Source Files
</legend>
<div id="files" class="well"></div> <!-- #files -->
<p align="right">
<label for="chooser" title="Add a File::Click the Browse button to add a file to this project." class="captioned">Add a File</label> <span id="chooser"></span>
</p>
</fieldset>
</div> <!-- #sourcesContent -->
</div> <!-- .column -->
<div class="column">
<div id="destinationContent">
<fieldset>
<p>
<label title="Save Story As::Choose what folder you'd like to save your created story in, and what to name it. Your file name should end in .htm or .html." class="captioned">Save Story As</label><br />
<span id="destinations"></span>
</p>
</fieldset>
</div> <!-- #destinationContent -->
<div id="settingsContent">
<fieldset>
<p>
<label title="Story Format::Sets the kind of TiddlyWiki to create." class="left captioned">Story Format</label>
<select id="target" onchange="Interface.loadTarget()" class="well">
<option value="jonah">Jonah</option>
<option value="tw2">TiddlyWiki 2</option>
<option value="tw">TiddlyWiki 1.2</option>
</select>
</p>
<div id="targetInfo">
<img src="" id="targetPreview" />
<div id="targetDescription"></div>
</div> <!-- #targetInfo -->
</fieldset>
</div> <!-- #settingsContent -->
</div> <!-- .column -->
<p id="build">
<button onclick="Interface.compile()" id="buildButton">
<img src="img/build.png" width="32" height="32" alt="" />
Build
</button>
</p>
<div id="notify">
<p align="center">
Your story has been built.
</p>
<p align="center">
<button id="viewComplete">View</button>
</p>
</div>
</div> <!-- #content -->
<div id="dialogs">
<div id="about">
<h2>
twee<big>box</big> 1.2
</h2>
<p class="centered">
by <a href="http://gimcrackd.com/#Chris" target="_blank">Chris Klimas</a>
</p>
<p>
The Twee compiler and associated JavaScript files in this application are released under the <a href="http://www.gnu.org/copyleft/gpl.html" target="_blank">GNU Public License</a>. The files in the <b>targets</b> directory are derivative works of Jeremy Ruston's <a href="http://www.tiddlywiki.com/" target="_blank">TiddlyWiki project</a> and are used under the terms of its license.
</p>
<p>
This application also incorporates code from <a href="http://www.json.org/" target="_blank">JSON.org</a>, the <a href="http://www.mootools.net/" target="_blank">Mootools project</a>, and <a href="http://www.clanccc.co.uk/box/box.html">MooPrompt</a>, as well as icons from the <a href="http://tango.freedesktop.org/">Tango Desktop Project</a>. These are used under terms of their licenses.
</p>
<p class="centered">
Folks worth thanking:<br />
Conal Elliott<br />
Joel Haddock<br />
Adam Kucharczyk<br />
Mara Meijers<br />
Sean Woznicki
</p>
</div> <!-- #about -->
</div> <!-- #dialogs -->
</body>
</html>
@