Mercurial > hg > STI-GWT
annotate war/Sti.html @ 89:3700846b8590 trimmed_data tip
bug: removed leading / in url
author | Sebastian Kruse <skruse@mpiwg-berlin.mpg.de> |
---|---|
date | Fri, 15 Mar 2013 12:53:55 +0100 |
parents | 5b049141a26e |
children |
rev | line source |
---|---|
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
1 <!doctype html> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
2 <!-- The DOCTYPE declaration above will set the --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
3 <!-- browser's rendering engine into --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
4 <!-- "Standards Mode". Replacing this declaration --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
5 <!-- with a "Quirks Mode" doctype may lead to some --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
6 <!-- differences in layout. --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
7 |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
8 <html> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
9 <head> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
10 <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
11 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
12 |
6
7bf904a68ce7
- fixed xml creation bug
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
4
diff
changeset
|
13 <title>DARIAH GeoBrowser – e4D Spatio-Temporal Interface</title> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
14 |
67
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
15 <script src="scripts/jQuery/jquery-1.5.1.js"></script> |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
16 <script> |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
17 $.fn.cleanWhitespace = function() { |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
18 textNodes = this.contents().filter( |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
19 function() { return (this.nodeType == 3 && !/\S/.test(this.nodeValue)); }) |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
20 .remove(); |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
21 return this; |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
22 }; |
5b049141a26e
add whitespace removal function to jquery prototype
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
63
diff
changeset
|
23 </script> |
4
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
24 <script type="text/javascript" language="javascript" src="sti/sti.nocache.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
25 <script src="scripts/blockUI/FullscreenWindow.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
26 <script src="scripts/Timeplot/timeplot-complete.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
27 <link type="text/css" rel="stylesheet" href="Sti.css"> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
28 <link type="text/css" rel="stylesheet" href="scripts/OpenLayers/theme/default/style.css"> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
29 |
4
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
30 <script src="scripts/sti/timeplot-modify.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
31 <script src="scripts/sti/properties.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
32 <script src="scripts/sti/STIProps.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
33 <script src="scripts/sliderCombined.js"></script> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
34 |
4
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
35 <!--[if IE]><script type="text/javascript" src="scripts/libs/lib/excanvas.js"></script><![endif]--> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
36 |
4
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
37 <script src="scripts/sti/STIMap.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
38 <script src="scripts/sti/STITimeplot.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
39 <script src="scripts/sti/STITutorial.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
40 <script src="scripts/sti/STICore.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
41 <script src="scripts/sti/DataObject.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
42 <script src="scripts/sti/DataSet.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
43 <script src="scripts/sti/ExtendedDataSource.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
44 <script src="scripts/sti/ExtendedSimileTimeDate.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
45 <script src="scripts/sti/PointObject.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
46 <script src="scripts/sti/clustering.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
47 <script src="scripts/sti/kruskal.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
48 <script src='http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1'></script> |
34
5ef409e34638
Bump GMaps API to version 3
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
20
diff
changeset
|
49 <script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script> |
4
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
50 <script src="scripts/OpenLayers/OpenLayers.js"></script> |
517a6422d1bd
done all the GeoBrowser changes
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
3
diff
changeset
|
51 <script src="scripts/ucsv/ucsv-1.1.0-min.js"></script> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
52 </head> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
53 |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
54 <!-- --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
55 <!-- The body can have arbitrary html, or --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
56 <!-- you can leave the body empty if you want --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
57 <!-- to create a completely dynamic UI. --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
58 <!-- --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
59 <body> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
60 |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
61 <!-- RECOMMENDED if your web app will not function without JavaScript enabled --> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
62 <noscript> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
63 <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif"> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
64 Your web browser must have JavaScript enabled |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
65 in order for this application to display correctly. |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
66 </div> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
67 </noscript> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
68 |
36
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
69 <table> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
70 |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
71 <tr> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
72 <td valign="top"> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
73 <div id="mainContainer"> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
74 </div> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
75 </td> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
76 |
63
5c883f5d270a
move table a bit down to line it up with the map widget
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
56
diff
changeset
|
77 <td valign="top" width="100%" style="position: relative; top: 74px;"> |
36
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
78 <div id="tableWindow" class="tableWindow"> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
79 </div> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
80 </td> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
81 </tr> |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
82 |
cfe8045c4610
moved the data-table out of the mainContainer again
Sebastian Kruse <skruse@mpiwg-berlin.mpg.de>
parents:
34
diff
changeset
|
83 </table> |
3
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
84 </body> |
cf06b77a8bbd
Committed branch of the e4D repos sti-gwt branch 16384.
StefanFunk <StefanFunk@f2b5be40-def6-11e0-8a09-b3c1cc336c6b>
parents:
diff
changeset
|
85 </html> |