-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·56 lines (42 loc) · 2.13 KB
/
index.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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta name="author" content="Ruven Pillay <[email protected]>"/>
<meta name="keywords" content="IIPImage Ajax Internet Imaging Protocol IIP Zooming Streaming High Resolution Mootools"/>
<meta name="description" content="IIPImage: High Resolution Remote Image Streaming Viewing"/>
<meta name="copyright" content="© 2003-2008 Ruven Pillay"/>
<meta http-Equiv="Cache-Control" Content="no-cache">
<meta http-Equiv="Pragma" Content="no-cache">
<meta http-Equiv="Expires" Content="0">
<link rel="stylesheet" type="text/css" media="all" href="css/iip.compressed.css" />
<link rel="shortcut icon" href="images/iip-favicon.png" />
<title>IIPMooViewer 1.1 :: IIPImage High Resolution Ajax Image Streaming Viewer</title>
<script type="text/javascript" src="javascript/mootools-1.2-core-compressed.js"></script>
<script type="text/javascript" src="javascript/mootools-1.2-more-compressed.js"></script>
<script type="text/javascript" src="javascript/iipmooviewer-1.1.js"></script>
<script type="text/javascript">
// The iipsrv server path (/fcgi-bin/iipsrv.fcgi by default)
var server = '/fcgi-bin/iipsrv.fcgi';
// The *full* image path on the server. This path does *not* need to be in the web
// server root directory. On Windows, use Unix style forward slash paths without
// the "c:" prefix
var images = '/home/iip-images/bluemarble.tif';
// Copyright or information message (optional)
var credit = '© Università degli studi di Roma - La Sapienza';
// Create our viewer object - note: must assign this to the 'iip' variable.
// See documentation for more details of options
iip = new IIP( "targetframe", {
image: images,
server: server,
zoom: 1,
render: 'random',
showNavButtons: false
});
</script>
</head>
<body>
<div style="width:98%;height:98%;margin-left:auto;margin-right:auto" id="targetframe"></div>
</body>
</html>