annotate index.html @ 789:1ef815f5b9fa 2.0-beta2

Forced IEs to always use highest standard mode available
author Dustin Demuth <dustin@intevation.de>
date Wed, 13 May 2015 11:14:15 +0200
parents a4c358d08a0d
children d4eb8fb99b5e
rev   line source
788
a4c358d08a0d moved doctype declaration to the beginning of the file. Else IE9 will try to display the page in QUIRKS mode and it won't work.
Dustin Demuth <dustin@intevation.de>
parents: 780
diff changeset
1 <!DOCTYPE html>
474
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
2 <!--
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
3 Copyright (C) 2013 by Bundesamt fuer Strahlenschutz
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
4 Software engineering by Intevation GmbH
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
5
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
6 This file is Free Software under the GNU GPL (v>=3)
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
7 and comes with ABSOLUTELY NO WARRANTY! Check out
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
8 the documentation coming with IMIS-Labordaten-Application for details.
6f5a11dea7e2 Fixed HTML comment.
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 472
diff changeset
9 -->
0
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
10 <html>
789
1ef815f5b9fa Forced IEs to always use highest standard mode available
Dustin Demuth <dustin@intevation.de>
parents: 788
diff changeset
11 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
0
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
12 <head>
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
13 <title>Lada</title>
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
14 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
495
649bf1d08531 Use extjs dev with all classes and css from extjs resources for development.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 482
diff changeset
15 <link rel="stylesheet" type="text/css" href="extjs/resources/css/ext-all-gray.css">
552
4c5085396fe3 Added lada.css to index.html
Raimund Renkert <raimund.renkert@intevation.de>
parents: 512
diff changeset
16 <link rel="stylesheet" type="text/css" href="resources/css/lada.css">
605
c6994912a326 Added panel with OpenLayers map.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 552
diff changeset
17
c6994912a326 Added panel with OpenLayers map.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 552
diff changeset
18 <script type="text/javascript" src="resources/lib/OpenLayers/OpenLayers.js"></script>
724
876456ce0a01 Added new depencies: filesaver[1] and upload[2].
Raimund Renkert <raimund.renkert@intevation.de>
parents: 679
diff changeset
19 <script type="text/javascript" src="resources/lib/filesaver/FileSaver.js"></script>
876456ce0a01 Added new depencies: filesaver[1] and upload[2].
Raimund Renkert <raimund.renkert@intevation.de>
parents: 679
diff changeset
20 <script type="text/javascript" src="resources/lib/filesaver/Blob.js"></script>
780
b3e38a2a25c7 Added a Prototype to return the day of the year
Dustin Demuth <dustin@intevation.de>
parents: 724
diff changeset
21 <script type="text/javascript" src="resources/lib/Date.prototype.getDOY.js"></script>
421
f06a882ab776 Added compiler tags for sencha cmd compiler and made the DateTime lib compile.
Raimund Renkert <rrenkert@intevation.de>
parents: 410
diff changeset
22 <!-- <x-compile> -->
f06a882ab776 Added compiler tags for sencha cmd compiler and made the DateTime lib compile.
Raimund Renkert <rrenkert@intevation.de>
parents: 410
diff changeset
23 <!-- <x-bootstrap> -->
512
8818becb8cde Probe and Messung window are now maximizable and collapsible.
Raimund Renkert <raimund.renkert@intevation.de>
parents: 495
diff changeset
24 <script type="text/javascript" src="extjs/ext-all-debug.js"></script>
629
c58663165090 added ext-lang-de.js to index.html
Dustin Demuth <dustin@intevation.de>
parents: 605
diff changeset
25 <script type="text/javascript" src="extjs/locale/ext-lang-de.js"></script>
421
f06a882ab776 Added compiler tags for sencha cmd compiler and made the DateTime lib compile.
Raimund Renkert <rrenkert@intevation.de>
parents: 410
diff changeset
26 <!-- </x-bootstrap> -->
410
902aedf4d606 Changed order of the script loading
Torsten Irländer <torsten.irlaender@intevation.de>
parents: 409
diff changeset
27 <script type="text/javascript" src="app.js"></script>
421
f06a882ab776 Added compiler tags for sencha cmd compiler and made the DateTime lib compile.
Raimund Renkert <rrenkert@intevation.de>
parents: 410
diff changeset
28 <!-- </x-compile> -->
0
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
29 </head>
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
30 <body></body>
1e257ec56220 Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff changeset
31 </html>

http://lada.wald.intevation.org