Commit ce7854168d8560d37670e806c1dd613a660b9bda
1 parent
13e0824e
Exists in
master
Mudanças no layout de OGC.htm
Showing
2 changed files
with
5 additions
and
4 deletions
Show diff stats
ogc.htm
... | ... | @@ -172,7 +172,7 @@ A:hover { |
172 | 172 | if (tema === undefined) { |
173 | 173 | tema = botao.title; |
174 | 174 | } |
175 | - ins = "<H1>Endereço do web service:</H1>"; | |
175 | + ins = "<H1>Endereços de acesso:</H1>"; | |
176 | 176 | var re = new RegExp(".htm", "g"); |
177 | 177 | var servico = window.location.href.replace(re, '.php?'); |
178 | 178 | //remove variaveis adicionais, se houver |
... | ... | @@ -187,9 +187,10 @@ A:hover { |
187 | 187 | } |
188 | 188 | |
189 | 189 | servico += s; |
190 | - servico += s; | |
191 | - ins += "<p><a href='" + servico + "' target='_blank' >" + servico + "</a>"; | |
190 | + ins += "<p>Webservice com todas as camadas: <a href='" + servico + "' target='_blank' >" + servico + "</a>"; | |
191 | + ins += "<p>Webservice dessa camada: <a href='" + servico + "tema=" + tema + "&' target='_blank' >" + servico + "tema=" + tema + "&</a>"; | |
192 | 192 | ins += "<p>Link para essa página: <a href='"+ window.location.href.split("?")[0] + "?temaOgc=" + tema + "'>"+ window.location.href.split("?")[0] + "?temaOgc=" + tema + "</a>"; |
193 | + | |
193 | 194 | ins += "<p>Bookmark: <span id=bm ></span>"; |
194 | 195 | ins += |
195 | 196 | "<p><iframe src='http://www.facebook.com/plugins/like.php?href=" + servico | ... | ... |
pacotes/phpflickr/phpFlickr.php
... | ... | @@ -44,7 +44,7 @@ ini_set('include_path', ini_get('include_path') . $path_delimiter . dirname(__FI |
44 | 44 | class phpFlickr { |
45 | 45 | var $api_key; |
46 | 46 | var $secret; |
47 | - var $REST = 'http://api.flickr.com/services/rest/'; | |
47 | + var $REST = 'https://api.flickr.com/services/rest/'; | |
48 | 48 | var $Upload = 'http://api.flickr.com/services/upload/'; |
49 | 49 | var $Replace = 'http://api.flickr.com/services/replace/'; |
50 | 50 | var $req; | ... | ... |