diff --git a/admin/admin.db b/admin/admin.db
index 972c6d7..6f8b099 100644
Binary files a/admin/admin.db and b/admin/admin.db differ
diff --git a/admin/html/admin.css b/admin/html/admin.css
index f035341..ae229b1 100644
--- a/admin/html/admin.css
+++ b/admin/html/admin.css
@@ -1,5 +1,5 @@
.letras{
- font-size: 0.5em;
+ font-size: 1em;
}
.paragrafo{
@@ -43,7 +43,7 @@ P {
}
P b{
text-align: left;
- font-size: 1.26em;
+ font-size: 0.9em;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
legend {
diff --git a/admin/html/estat_editor.html b/admin/html/estat_editor.html
index 08faa6f..e328d82 100644
--- a/admin/html/estat_editor.html
+++ b/admin/html/estat_editor.html
@@ -38,9 +38,9 @@ body {
-
+
Atenção: para poder editar o banco de dados, o usuário da conexão escolhida deve ter direitos de edição
- Apenas as tabelas e os dados existentes no esquema i3geo_metaestat podem ser editados
+ Apenas as tabelas e os dados existentes no esquema i3geo_metaestat podem ser editados
diff --git a/admin/js/estat_editor.js b/admin/js/estat_editor.js
index 37d2688..b97faf8 100644
--- a/admin/js/estat_editor.js
+++ b/admin/js/estat_editor.js
@@ -27,10 +27,10 @@ i3GEOadmin.editor = {
success:function(o){
try {
var dados = YAHOO.lang.JSON.parse(o.responseText),
- temp = "Escolha a conexão com o banco: ";
+ temp = "Escolha a conexão com o banco: ";
temp += "";
temp += core_comboObjeto(dados,"codigo_estat_conexao","bancodedados","","usuario");
- temp += " ";
+ temp += "
";
$i(i3GEOadmin.editor.conexao.onde).innerHTML = temp;
core_carregando("desativa");
}
@@ -50,10 +50,10 @@ i3GEOadmin.editor = {
success:function(o){
try {
var dados = YAHOO.lang.JSON.parse(o.responseText),
- temp = "Escolha um esquema: ";
+ temp = "Escolha um esquema: ";
temp += "";
temp += core_comboObjeto(dados,"esquema","esquema");
- temp += " ";
+ temp += "
";
$i(i3GEOadmin.editor.esquema.onde).innerHTML = temp+" ";
core_carregando("desativa");
$i(i3GEOadmin.editor.tabela.onde).innerHTML = "";
@@ -82,13 +82,13 @@ i3GEOadmin.editor = {
try {
var dados = YAHOO.lang.JSON.parse(o.responseText),
temp = "" +
- "
" +
+ "
" +
"
" +
- "Escolha uma tabela existente: " +
+ "Escolha uma tabela existente: " +
"";
temp += core_comboObjeto(dados,"tabela","tabela");
temp += " " +
- "
" +
+ "
" +
" " +
" " +
" " +
@@ -300,12 +300,12 @@ i3GEOadmin.editor = {
success:function(o){
try {
var dados = YAHOO.lang.JSON.parse(o.responseText),
- temp = "
Escolha uma coluna: ";
+ temp = "Escolha uma coluna: ";
temp += "";
temp += core_comboObjeto(dados,"","");
- temp += " ";
+ temp += "
";
temp += "" +
- " " +
+ "
" +
" ";
$i(i3GEOadmin.editor.coluna.onde).innerHTML = temp+"
";
new YAHOO.widget.Button(
diff --git a/admin/php/classe_metaestat.php b/admin/php/classe_metaestat.php
index e4a7189..8f77ed1 100755
--- a/admin/php/classe_metaestat.php
+++ b/admin/php/classe_metaestat.php
@@ -560,6 +560,7 @@ class Metaestat{
$vis = str_replace(" ",",",$vis);
$vis = str_replace(",,",",",$vis);
$sqlf = $meta["colunageo"]." from (select st_setsrid(".$colunageo.",".$srid.") as $colunageo,$vis,gid from ".$meta["esquemadb"].".".$meta["tabela"]." /*FW*//*FW*/) as foo using unique gid using srid=".$srid;
+ $sqlf = str_replace(",,",",",$sqlf);
$outlinecolor = str_replace(","," ",$outlinecolor);
$dados[] = "MAP";
$dados[] = 'SYMBOLSET "'.$this->locaplic.'/symbols/simbolosv6.sym"';
--
libgit2 0.21.2