annotate webapp/src/main/webapp/jquery/digilib-ann.html @ 1085:53c61e3e64c7

my annotation test file.
author robcast
date Thu, 31 May 2012 21:46:48 +0200
parents 1d3e8f853b9c
children 34f893492adb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1084
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
2 <html xmlns="http://www.w3.org/1999/xhtml">
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
3 <head>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
4 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
5 <meta name="viewport" content="initial-scale=1.0"/>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
6 <title>Digilib jQuery: fullscreen</title>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
7
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
8 <style type="text/css">
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
9 body {
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
10 background: silver;
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
11 }
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
12 </style>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
13
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
14 <script type="text/javascript" src="jquery.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
15 <script type="text/javascript" src="jquery.cookie.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
16 <script type="text/javascript" src="jquery.digilib.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
17 <script type="text/javascript" src="jquery.digilib.geometry.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
18 <script type="text/javascript" src="jquery.digilib.arrows.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
19 <script type="text/javascript" src="jquery.range.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
20 <link rel="stylesheet" type="text/css" href="jquery.range.css" />
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
21 <script type="text/javascript" src="jquery.digilib.buttons.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
22 <script type="text/javascript" src="jquery.digilib.dialogs.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
23 <script type="text/javascript" src="jquery.digilib.sliders.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
24 <script type="text/javascript" src="jquery.digilib.birdseye.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
25 <script type="text/javascript" src="jquery.digilib.marks.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
26 <script type="text/javascript" src="jquery.digilib.regions.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
27 <script type="text/javascript" src="jquery.digilib.annotations.js"></script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
28 <link rel="stylesheet" type="text/css" href="jquery.digilib.css" />
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
29
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
30 <script type="text/javascript">
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
31 $(document).ready(function(){
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
32 var opts = {
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
33 interactionMode : 'fullscreen',
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
34 showRegionNumbers : true,
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
35 // URL of annotation server
1085
53c61e3e64c7 my annotation test file.
robcast
parents: 1084
diff changeset
36 //'annotationServerUrl' : 'http://localhost:18080/AnnotationManager/annotator',
53c61e3e64c7 my annotation test file.
robcast
parents: 1084
diff changeset
37 'annotationServerUrl' : 'http://virtuoso.mpiwg-berlin.mpg.de:8080/AnnotationManager/annotator',
1084
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
38 // URL of authentication token server
1085
53c61e3e64c7 my annotation test file.
robcast
parents: 1084
diff changeset
39 'annotationTokenUrl' : 'http://r583-1.mpiwg-berlin.mpg.de:8080/test/annotator/token?user=anonymous',
1084
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
40 };
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
41 var $div = $('div#digilib');
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
42 $div.digilib(opts);
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
43 });
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
44
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
45 </script>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
46 </head>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
47
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
48 <body>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
49 <div id="digilib">
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
50 <p>digilib doesn't work! Please switch on Javascript or notify the server administrator!</p>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
51 <img src="http://digilib.berlios.de/images/digilib-logo-big.png" />
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
52 </div>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
53 </body>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
54 </html>
1d3e8f853b9c annotations basically working.
robcast
parents:
diff changeset
55