Mercurial > lada > lada-client
annotate index.html @ 963:6a6f2c6fe8ee
More work done on StatusWerte and Statusstufe. A Messung will also open when the owner attribute is true. Stauswerte and StatusStufen are loaded at application startup. Statusgrid and Messunggrid now use these stores, which were registered at the store manager.
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 12 Nov 2015 12:13:31 +0100 |
parents | 9fc4afd21f7f |
children | 1df6b6210b42 |
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> |
912
9fc4afd21f7f
Reverted last commit.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
911
diff
changeset
|
19 <script type="text/javascript" src="resources/lib/FileSaver/FileSaver.js"></script> |
9fc4afd21f7f
Reverted last commit.
Raimund Renkert <raimund.renkert@intevation.de>
parents:
911
diff
changeset
|
20 <script type="text/javascript" src="resources/lib/Blob/Blob.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
|
21 <!-- <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
|
22 <!-- <x-bootstrap> --> |
889
81fc61545638
Moved Ext-Version from debug -> normal
Dustin Demuth <dustin@intevation.de>
parents:
883
diff
changeset
|
23 <script type="text/javascript" src="extjs/ext-all.js"></script> |
629
c58663165090
added ext-lang-de.js to index.html
Dustin Demuth <dustin@intevation.de>
parents:
605
diff
changeset
|
24 <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
|
25 <!-- </x-bootstrap> --> |
410
902aedf4d606
Changed order of the script loading
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
409
diff
changeset
|
26 <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
|
27 <!-- </x-compile> --> |
0
1e257ec56220
Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
28 </head> |
1e257ec56220
Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
29 <body></body> |
1e257ec56220
Initial commit
Torsten Irländer <torsten.irlaender@intevation.de>
parents:
diff
changeset
|
30 </html> |