Commit 92d815c5ec17bc8ee9aa233ff7fbc357bcb50403
1 parent
7cb61e22
Exists in
master
and in
7 other branches
--no commit message
Showing
4 changed files
with
21 additions
and
26 deletions
Show diff stats
admin/html/admin.css
1 | +.borda { | |
2 | + background-color: #4682b4; | |
3 | + text-align: left; | |
4 | + width: 100%; | |
5 | + padding: 5px; | |
6 | +} | |
7 | +.bordaSuperior { | |
8 | + height: 25px; | |
9 | + width: 100%; | |
10 | + text-align: left; | |
11 | + background-color: #4682b4; | |
12 | +} | |
1 | 13 | .yui-button#okcancel_checkboxOK button { |
2 | 14 | background: url(../../imagens/oxygen/16x16/document-save.png) 5% 50% no-repeat; |
3 | 15 | width: 80px; |
... | ... | @@ -236,13 +248,6 @@ select{ |
236 | 248 | padding: 15px |
237 | 249 | } |
238 | 250 | |
239 | -.bordaSuperior { | |
240 | - height: 25px; | |
241 | - width: 100%; | |
242 | - text-align: left; | |
243 | - background-color: #4682b4; | |
244 | -} | |
245 | - | |
246 | 251 | .fundoPonto { |
247 | 252 | background: url("../../imagens/fundo_ponto.jpg") repeat-x scroll left |
248 | 253 | transparent; | ... | ... |
datadownload.htm
... | ... | @@ -97,19 +97,14 @@ A:hover { |
97 | 97 | color: #4142ff; |
98 | 98 | } |
99 | 99 | |
100 | -.borda { | |
101 | - background-color: #4682b4; | |
102 | - padding: 5px 0px 5px 0px; | |
103 | - text-align: left; | |
104 | - width: 100%; | |
105 | -} | |
106 | 100 | </style> |
107 | 101 | </head> |
108 | 102 | <body class=" yui-skin-sam " style="background-color: white;"> |
109 | 103 | <div class="borda"> |
110 | 104 | <div id="bandeiras"></div> |
111 | 105 | <div style="text-align: center"> |
112 | - <a href="http://www.softwarepublico.gov.br" target="_blank" style="color: white;"> <b>Download</b> | |
106 | + <a href="http://www.softwarepublico.gov.br" target="_blank" style="color: white;"> | |
107 | + <b>Download</b> | |
113 | 108 | </a> |
114 | 109 | </div> |
115 | 110 | </div> | ... | ... |
ogc.htm
1 | -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
1 | +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> | |
2 | 2 | <html> |
3 | 3 | <head> |
4 | 4 | <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1"> |
5 | -<title>WMS</title> | |
6 | -<meta name="description" content="OGC"> | |
5 | +<title>Download de dados geográficos</title> | |
6 | +<meta name="description" content="Mapa interativo do MMA"> | |
7 | 7 | <meta name="keywords" content="WMS OGC mapa sig gis webmapping geo geoprocessamento interativo meio ambiente MMA cartografia geografia"> |
8 | 8 | <meta name="robots" content="index,follow"> |
9 | 9 | <script type="text/javascript" src="classesjs/i3geo.js"></script> |
10 | + | |
10 | 11 | <link rel="stylesheet" type="text/css" href="admin/html/admin.css"> |
11 | 12 | <style> |
12 | 13 | .ajuda_usuario { |
... | ... | @@ -33,7 +34,6 @@ P { |
33 | 34 | |
34 | 35 | #arvoreTemas { |
35 | 36 | width: 280px; |
36 | - background: white; | |
37 | 37 | } |
38 | 38 | |
39 | 39 | body { |
... | ... | @@ -42,7 +42,7 @@ body { |
42 | 42 | text-align: center; |
43 | 43 | font-size: 0.6cm; |
44 | 44 | font-family: Verdana, Arial, Helvetica, sans-serif; |
45 | - background: white; | |
45 | + background-color: white; | |
46 | 46 | margin: auto; |
47 | 47 | } |
48 | 48 | |
... | ... | @@ -97,14 +97,7 @@ A:hover { |
97 | 97 | color: #4142ff; |
98 | 98 | } |
99 | 99 | |
100 | -.borda { | |
101 | - background-color: #4682b4; | |
102 | - padding: 5px 0px 5px 0px; | |
103 | - text-align: left; | |
104 | - width: 100%; | |
105 | -} | |
106 | 100 | </style> |
107 | - | |
108 | 101 | </head> |
109 | 102 | <body class=" yui-skin-sam " style="background-color: white;"> |
110 | 103 | <div class="borda"> | ... | ... |
ogc.php
... | ... | @@ -878,6 +878,8 @@ if(strtolower($req->getValueByName("REQUEST")) == "getmap" && $req->getValueByNa |
878 | 878 | } |
879 | 879 | |
880 | 880 | if(strtolower($req->getValueByName("REQUEST")) == "getfeatureinfo" && $_GET["info_format"] == "application/json"){ |
881 | + //TODO verificar itens e itensdesc | |
882 | + //FIXME essa nao e a melhor forma de fazer o Json | |
881 | 883 | $req->setParameter("info_format","text/plain"); |
882 | 884 | $oMap->owsdispatch($req); |
883 | 885 | ms_iostripstdoutbuffercontentheaders(); | ... | ... |