Commit 2e618135637ecb2f6a89d4e6886f9728ed7a31ae
--no commit message
Too many changes.
To preserve performance only 100 of 105 files displayed.
@@ -1007,7 +1007,9 @@ i3GEO.configura = { | @@ -1007,7 +1007,9 @@ i3GEO.configura = { | ||
1007 | titulo:$trad("d20t"), | 1007 | titulo:$trad("d20t"), |
1008 | funcaoonclick:function(){ | 1008 | funcaoonclick:function(){ |
1009 | var temp = function(){ | 1009 | var temp = function(){ |
1010 | - var url = (window.location.href.split("?")); | 1010 | + var url = window.location.href; |
1011 | + url = url.replace("#",""); | ||
1012 | + url = url.split("?"); | ||
1011 | window.location.href = url[0]+"?"+i3GEO.configura.sid; | 1013 | window.location.href = url[0]+"?"+i3GEO.configura.sid; |
1012 | }; | 1014 | }; |
1013 | i3GEO.php.reiniciaMapa(temp); | 1015 | i3GEO.php.reiniciaMapa(temp); |
@@ -47,19 +47,19 @@ Class: i3GEOF.carouseltemas | @@ -47,19 +47,19 @@ Class: i3GEOF.carouseltemas | ||
47 | i3GEOF.carouseltemas = { | 47 | i3GEOF.carouseltemas = { |
48 | /* | 48 | /* |
49 | Propriedade: numVisible | 49 | Propriedade: numVisible |
50 | - | 50 | + |
51 | Número de imagens visíveis | 51 | Número de imagens visíveis |
52 | */ | 52 | */ |
53 | numVisible: 3, | 53 | numVisible: 3, |
54 | /* | 54 | /* |
55 | Propriedade: incluiAmpliacao | 55 | Propriedade: incluiAmpliacao |
56 | - | 56 | + |
57 | Inclui ou não a imagem ampliada ao passar o mouse sobre a miniatura | 57 | Inclui ou não a imagem ampliada ao passar o mouse sobre a miniatura |
58 | */ | 58 | */ |
59 | incluiAmpliacao: true, | 59 | incluiAmpliacao: true, |
60 | /* | 60 | /* |
61 | Variavel: aguarde | 61 | Variavel: aguarde |
62 | - | 62 | + |
63 | Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela. | 63 | Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela. |
64 | */ | 64 | */ |
65 | aguarde: "", | 65 | aguarde: "", |
@@ -71,11 +71,11 @@ i3GEOF.carouseltemas = { | @@ -71,11 +71,11 @@ i3GEOF.carouseltemas = { | ||
71 | }, | 71 | }, |
72 | /* | 72 | /* |
73 | Function: iniciaDicionario | 73 | Function: iniciaDicionario |
74 | - | 74 | + |
75 | Carrega o dicionário e chama a função que inicia a ferramenta | 75 | Carrega o dicionário e chama a função que inicia a ferramenta |
76 | - | 76 | + |
77 | O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script | 77 | O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script |
78 | - */ | 78 | + */ |
79 | iniciaDicionario: function(){ | 79 | iniciaDicionario: function(){ |
80 | if(typeof(i3GEOF.carouseltemas.dicionario) === 'undefined'){ | 80 | if(typeof(i3GEOF.carouseltemas.dicionario) === 'undefined'){ |
81 | i3GEO.util.scriptTag( | 81 | i3GEO.util.scriptTag( |
@@ -87,14 +87,14 @@ i3GEOF.carouseltemas = { | @@ -87,14 +87,14 @@ i3GEOF.carouseltemas = { | ||
87 | else{ | 87 | else{ |
88 | i3GEOF.carouseltemas.iniciaJanelaFlutuante(); | 88 | i3GEOF.carouseltemas.iniciaJanelaFlutuante(); |
89 | } | 89 | } |
90 | - }, | 90 | + }, |
91 | /* | 91 | /* |
92 | Function: inicia | 92 | Function: inicia |
93 | - | 93 | + |
94 | Inicia a ferramenta. É chamado por criaJanelaFlutuante | 94 | Inicia a ferramenta. É chamado por criaJanelaFlutuante |
95 | - | 95 | + |
96 | Parametro: | 96 | Parametro: |
97 | - | 97 | + |
98 | iddiv {String} - id do div que receberá o conteudo HTML da ferramenta | 98 | iddiv {String} - id do div que receberá o conteudo HTML da ferramenta |
99 | */ | 99 | */ |
100 | inicia: function(iddiv){ | 100 | inicia: function(iddiv){ |
@@ -115,7 +115,7 @@ i3GEOF.carouseltemas = { | @@ -115,7 +115,7 @@ i3GEOF.carouseltemas = { | ||
115 | max; | 115 | max; |
116 | if(retorno.data == undefined) | 116 | if(retorno.data == undefined) |
117 | {return;} | 117 | {return;} |
118 | - ngrupos = retorno.data.length; | 118 | + ngrupos = retorno.data.length; |
119 | for(i=0;i<ngrupos;i++){ | 119 | for(i=0;i<ngrupos;i++){ |
120 | grupo = retorno.data[i]; | 120 | grupo = retorno.data[i]; |
121 | ntemasg = grupo.temas.length; | 121 | ntemasg = grupo.temas.length; |
@@ -148,17 +148,17 @@ i3GEOF.carouseltemas = { | @@ -148,17 +148,17 @@ i3GEOF.carouseltemas = { | ||
148 | carousel.render(); | 148 | carousel.render(); |
149 | carousel.show(); | 149 | carousel.show(); |
150 | }; | 150 | }; |
151 | - i3GEO.php.procurartemas(listaimg,""); | 151 | + i3GEO.php.procurartemas2(listaimg,""); |
152 | } | 152 | } |
153 | catch(erro){i3GEO.janela.tempoMsg(erro);} | 153 | catch(erro){i3GEO.janela.tempoMsg(erro);} |
154 | }, | 154 | }, |
155 | /* | 155 | /* |
156 | Function: html | 156 | Function: html |
157 | - | 157 | + |
158 | Gera o código html para apresentação das opções da ferramenta | 158 | Gera o código html para apresentação das opções da ferramenta |
159 | - | 159 | + |
160 | Retorno: | 160 | Retorno: |
161 | - | 161 | + |
162 | String com o código html | 162 | String com o código html |
163 | */ | 163 | */ |
164 | html:function(){ | 164 | html:function(){ |
@@ -169,9 +169,9 @@ i3GEOF.carouseltemas = { | @@ -169,9 +169,9 @@ i3GEOF.carouseltemas = { | ||
169 | }, | 169 | }, |
170 | /* | 170 | /* |
171 | Function: iniciaJanelaFlutuante | 171 | Function: iniciaJanelaFlutuante |
172 | - | 172 | + |
173 | Cria a janela flutuante para controle da ferramenta. | 173 | Cria a janela flutuante para controle da ferramenta. |
174 | - */ | 174 | + */ |
175 | iniciaJanelaFlutuante: function(){ | 175 | iniciaJanelaFlutuante: function(){ |
176 | var janela,divid,titulo,cabecalho,minimiza; | 176 | var janela,divid,titulo,cabecalho,minimiza; |
177 | cabecalho = function(){}; | 177 | cabecalho = function(){}; |
@@ -201,11 +201,11 @@ i3GEOF.carouseltemas = { | @@ -201,11 +201,11 @@ i3GEOF.carouseltemas = { | ||
201 | }, | 201 | }, |
202 | /* | 202 | /* |
203 | Function: insereTema | 203 | Function: insereTema |
204 | - | 204 | + |
205 | Insere no mapa o tema escolhido | 205 | Insere no mapa o tema escolhido |
206 | - | 206 | + |
207 | Veja: | 207 | Veja: |
208 | - | 208 | + |
209 | <adtema> | 209 | <adtema> |
210 | */ | 210 | */ |
211 | insereTema: function(codigotema){ | 211 | insereTema: function(codigotema){ |
@@ -222,7 +222,7 @@ i3GEOF.carouseltemas = { | @@ -222,7 +222,7 @@ i3GEOF.carouseltemas = { | ||
222 | }, | 222 | }, |
223 | /* | 223 | /* |
224 | Function: amplia | 224 | Function: amplia |
225 | - | 225 | + |
226 | Mostra a imagem ampliada | 226 | Mostra a imagem ampliada |
227 | */ | 227 | */ |
228 | amplia: function(imagem){ | 228 | amplia: function(imagem){ |
6.4 KB
675 Bytes
4.9 KB
618 Bytes
4.28 KB
582 Bytes
5.41 KB
634 Bytes
4.26 KB
578 Bytes
13 KB
1.6 KB
32.9 KB
2.63 KB
4.8 KB
605 Bytes
4.7 KB
10.4 KB
2.02 KB
11.3 KB
2 KB
10.1 KB
508 Bytes
21.1 KB
887 Bytes
8.13 KB
956 Bytes
8.44 KB
1009 Bytes
5.83 KB
1.01 KB
10.2 KB
608 Bytes
9.96 KB
956 Bytes
6.08 KB
729 Bytes
7.3 KB
877 Bytes
10.1 KB
1.09 KB
9.18 KB
1.13 KB
9.32 KB
1.34 KB
8.82 KB
1.36 KB
8.17 KB
1.07 KB
8.35 KB
1.27 KB
8.67 KB
878 Bytes
10.1 KB
1.29 KB
8.37 KB
1.14 KB
8.47 KB
1.1 KB
12.9 KB
1021 Bytes
8.16 KB
1.09 KB
11.2 KB
13.8 KB
1.43 KB
9.1 KB
1.16 KB
6.22 KB
1.09 KB
19.9 KB
2.11 KB
6.42 KB
756 Bytes
13.5 KB
1.87 KB
12.2 KB
678 Bytes
8.86 KB
1.15 KB
12.3 KB
1.17 KB
11.2 KB
1.68 KB
6.55 KB
952 Bytes
13.2 KB
1.85 KB
6.91 KB
718 Bytes
12 KB
2.02 KB
5.57 KB
545 Bytes
7.73 KB
1.96 KB
4.21 KB