-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmhtml.py
executable file
·28 lines (25 loc) · 1.21 KB
/
mhtml.py
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
# HTML static content constants for Matisse
header = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\
<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\">\n\
<head>\n\
<link rel=\"stylesheet\" title=\"Standard\" href=\"styles.css\" type=\"text/css\" media=\"screen\" />\n\
<script language=\"JavaScript\" type=\"text/javascript\" src=\"contentflow.js\" load=\"black\"></script>\n\
<script tyle=\"text/javascript\">\n\
var cf = new ContentFlow(\'contentFlow\', {reflectionColor: \"#000000\"});\n\
</script>\n\
</head>\n"
body_start = "<body bgcolor=\"Black\">\n\
<div class=\"maincontent\">\n\
<!-- ===== Cover Flow ===== -->\n\
<div id=\"contentFlow\" class=\"ContentFlow\">\n\
<!-- should be place before flow so that contained images will be loaded first -->\n\
<div class=\"loadIndicator\"><div class=\"indicator\"></div></div>\n\
<div class=\"flow\">\n"
body_end = "\t</div>\n\
<div class=\"globalCaption\"></div>\n\
<div class=\"scrollbar\">\n\
<div class=\"slider\"><div class=\"position\"></div></div>\n\
</div>\n\
</div>\n\
</body>\n\
</html>"