Gracias  Ingrid eso lo habia probado pero el problema<br>es que mi shape no esta en mayusculas todo <br>esta como San Benito, Mayusculas y minisculas<br><br>significa eso que deberia Transformar mis shapes a mayusculas?<br>
<br><br><br><div class="gmail_quote">On Fri, Aug 28, 2009 at 10:00 AM,  <span dir="ltr">&lt;<a href="mailto:mapbender_users-request@lists.osgeo.org">mapbender_users-request@lists.osgeo.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Send Mapbender_users mailing list submissions to<br>
        <a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.osgeo.org/mailman/listinfo/mapbender_users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapbender_users</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:mapbender_users-request@lists.osgeo.org">mapbender_users-request@lists.osgeo.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:mapbender_users-owner@lists.osgeo.org">mapbender_users-owner@lists.osgeo.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of Mapbender_users digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. CapsCase en mapbender (Walter Giron)<br>
   2. Re: Assign a shortcut icon to a gui (Thomas Baschetti)<br>
   3. Re: CapsCase en mapbender (Astrid Emde)<br>
   4. Re: Assign a shortcut icon to a gui (Christoph Baudson)<br>
   5. Re: Assign a shortcut icon to a gui (Thomas Baschetti)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Thu, 27 Aug 2009 13:42:17 -0600<br>
From: Walter Giron &lt;<a href="mailto:wgiron@gmail.com">wgiron@gmail.com</a>&gt;<br>
Subject: [Mapbender-users] CapsCase en mapbender<br>
To: <a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a>,  Cap?tulo Local de la comunidad<br>
        hispano-hablante        &lt;<a href="mailto:spanish@lists.osgeo.org">spanish@lists.osgeo.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:e5e8ab890908271242g283478f7lb72d61a5c1e7660b@mail.gmail.com">e5e8ab890908271242g283478f7lb72d61a5c1e7660b@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Saludos Cordiales<br>
tengo configurados 3 servicios WFS que me sirven como nomenclator<br>
en el sitio <a href="http://ide.segeplan.gob.gt" target="_blank">http://ide.segeplan.gob.gt</a><br>
<br>
pero dependen de como estan escritos en la base de datos es decir<br>
solo encuentra un poblado si tecleen SAN BENITO si escribo San Benito no lo<br>
encuentra<br>
porque en mi shape esta en mayusculas, que tengo que hacer para que<br>
mapbender busque<br>
sin importar el capscase conque este escrito<br>
<br>
gracias mil<br>
<br>
atte<br>
<br>
<br>
<br>
--<br>
Walter Girón<br>
Guatemala<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <a href="http://lists.osgeo.org/pipermail/mapbender_users/attachments/20090827/cdde38f9/attachment-0001.html" target="_blank">http://lists.osgeo.org/pipermail/mapbender_users/attachments/20090827/cdde38f9/attachment-0001.html</a><br>

<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Thu, 27 Aug 2009 22:44:33 +0200<br>
From: Thomas Baschetti &lt;<a href="mailto:info@thomas-baschetti.de">info@thomas-baschetti.de</a>&gt;<br>
Subject: Re: [Mapbender-users] Assign a shortcut icon to a gui<br>
To: Mapbender User List &lt;<a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4A96F031.507@thomas-baschetti.de">4A96F031.507@thomas-baschetti.de</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi,<br>
<br>
Frank Jäger schrieb:<br>
&gt; is ist possible to configure a mapbender-gui with a favicon-link?<br>
&gt;<br>
&gt; &lt;head&gt;<br>
&gt;  ...<br>
&gt;   &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/png&quot; href=&quot;img/favicon.png&quot;&gt;<br>
&gt;<br>
quick hack, assign a favicon as an element_var to element body:<br>
<br>
INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name,<br>
var_value, context, var_type) VALUES(&#39;gui&#39;, &#39;body&#39;, &#39;favicon&#39;,<br>
&#39;../img/favicon.png&#39;, &#39;ein icon&#39; ,&#39;image/png&#39;);<br>
<br>
and in frames/index.php right after<br>
right after the line<br>
&lt;title&gt;&lt;?php  echo  $gui_id;?&gt; - presented by Mapbender&lt;/title&gt;<br>
insert :<br>
<br>
<br>
&lt;?php<br>
$sql = &quot;SELECT * FROM gui_element_vars WHERE fkey_e_id = &#39;body&#39; AND<br>
fkey_gui_id = $1 and var_type=&#39;image/png&#39;&quot;;<br>
$v = array($gui_id);<br>
$t = array(&#39;s&#39;);<br>
$res = db_prep_query($sql,$v,$t);<br>
$cnt = 0;<br>
while($row = db_fetch_array($res)){<br>
echo &quot;&lt;link rel=\&quot;shortcut icon\&quot; type=\&quot;image/png\&quot;<br>
href=\&quot;&quot;.$row[&quot;var_value&quot;].&quot;\&quot;&gt;\n&quot;;<br>
}<br>
?&gt;<br>
<br>
<br>
not the nicest solution but should work.<br>
<br>
<br>
Ciao<br>
Thomas<br>
<br>
--<br>
<br>
Thomas Baschetti - Systemanalyse Geographische Informationssysteme<br>
Hakenstraße 8D<br>
49074 Osnabrück<br>
<br>
Tel: 0541 25 91 90 | mobil 01577 189 25 91<br>
E-Mail: <a href="mailto:info@thomas-baschetti.de">info@thomas-baschetti.de</a><br>
<a href="http://www.thomas-baschetti.de" target="_blank">www.thomas-baschetti.de</a><br>
Ust-IdNr.: DE264355072<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Fri, 28 Aug 2009 10:35:06 +0200<br>
From: Astrid Emde &lt;<a href="mailto:astrid.emde@wheregroup.com">astrid.emde@wheregroup.com</a>&gt;<br>
Subject: Re: [Mapbender-users] CapsCase en mapbender<br>
To: Mapbender User List &lt;<a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a>&gt;<br>
Cc: Cap?tulo Local de la comunidad hispano-ha , blante<br>
        &lt;<a href="mailto:spanish@lists.osgeo.org">spanish@lists.osgeo.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4A9796BA.3060301@wheregroup.com">4A9796BA.3060301@wheregroup.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-15; format=flowed<br>
<br>
Hola Giron,<br>
<br>
Walter Giron schrieb:<br>
&gt; Saludos Cordiales<br>
&gt; tengo configurados 3 servicios WFS que me sirven como nomenclator<br>
&gt; en el sitio <a href="http://ide.segeplan.gob.gt" target="_blank">http://ide.segeplan.gob.gt</a><br>
&gt;<br>
&gt; pero dependen de como estan escritos en la base de datos es decir<br>
&gt; solo encuentra un poblado si tecleen SAN BENITO si escribo San Benito no lo<br>
&gt; encuentra<br>
&gt; porque en mi shape esta en mayusculas, que tengo que hacer para que<br>
&gt; mapbender busque<br>
&gt;<br>
en Mapbender administration en el WFS configuration (edit WFS<br>
configuration) hay una posibilidat upper (activar checkbox en la columna<br>
upper).<br>
<br>
Activando este checkbox escribiendo &quot;San Benito&quot; va ser transformado en<br>
mayusculas. Como tu shapes son en mayusculas este solution tiene que<br>
funcionar.<br>
<br>
astrid<br>
<br>
&gt; sin importar el capscase conque este escrito<br>
&gt;<br>
&gt; gracias mil<br>
&gt;<br>
&gt; atte<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Mapbender_users mailing list<br>
&gt; <a href="mailto:Mapbender_users@lists.osgeo.org">Mapbender_users@lists.osgeo.org</a><br>
&gt; <a href="http://lists.osgeo.org/mailman/listinfo/mapbender_users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapbender_users</a><br>
&gt;<br>
<br>
<br>
--<br>
<br>
Mit freundlichen Grüßen<br>
<br>
Astrid Emde<br>
----------------------------------<br>
<br>
Aufwind durch Wissen!<br>
<br>
Qualifizierte OpenSource-Schulungen<br>
bei der www.foss-academy.eu<br>
<br>
----------------------------------<br>
<br>
 Astrid Emde<br>
 WhereGroup GmbH &amp; Co.KG<br>
 Siemensstraße 8<br>
 53121 Bonn<br>
 Germany<br>
<br>
 Fon: +49(0)228 90 90 38 - 19<br>
 Fax: +49(0)228 90 90 38 - 11<br>
<br>
 <a href="mailto:astrid.emde@wheregroup.com">astrid.emde@wheregroup.com</a><br>
 <a href="http://www.wheregroup.com" target="_blank">www.wheregroup.com</a><br>
<br>
 Amtsgericht Bonn, HRA 6788<br>
 -------------------------------<br>
 Komplementärin:<br>
 WhereGroup Verwaltungs GmbH<br>
 vertreten durch:<br>
 Arnulf Christl, Olaf Knopp, Peter Stamm<br>
 ---------------------------------------<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Fri, 28 Aug 2009 10:39:29 +0200<br>
From: Christoph Baudson &lt;<a href="mailto:christoph.baudson@wheregroup.com">christoph.baudson@wheregroup.com</a>&gt;<br>
Subject: Re: [Mapbender-users] Assign a shortcut icon to a gui<br>
To: Mapbender User List &lt;<a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4A9797C1.8000800@wheregroup.com">4A9797C1.8000800@wheregroup.com</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Thanks for your implementation. We should integrate this into trunk<br>
rightaway. See my comments inline.<br>
<br>
<br>
Thomas Baschetti schrieb:<br>
&gt; Hi,<br>
&gt;<br>
&gt; Frank Jäger schrieb:<br>
&gt;&gt; is ist possible to configure a mapbender-gui with a favicon-link?<br>
&gt;&gt;<br>
&gt;&gt; &lt;head&gt;<br>
&gt;&gt;  ...<br>
&gt;&gt;   &lt;link rel=&quot;shortcut icon&quot; type=&quot;image/png&quot; href=&quot;img/favicon.png&quot;&gt;<br>
&gt;&gt;<br>
&gt; quick hack, assign a favicon as an element_var to element body:<br>
&gt;<br>
&gt; INSERT INTO gui_element_vars(fkey_gui_id, fkey_e_id, var_name,<br>
&gt; var_value, context, var_type) VALUES(&#39;gui&#39;, &#39;body&#39;, &#39;favicon&#39;,<br>
&gt; &#39;../img/favicon.png&#39;, &#39;ein icon&#39; ,&#39;image/png&#39;);<br>
<br>
I suggest we change the var_type to &#39;php_var&#39;.<br>
<br>
&gt;<br>
&gt; and in frames/index.php right after<br>
&gt; right after the line<br>
&gt; &lt;title&gt;&lt;?php  echo  $gui_id;?&gt; - presented by Mapbender&lt;/title&gt;<br>
&gt; insert :<br>
&gt;<br>
&gt;<br>
&gt; &lt;?php<br>
&gt; $sql = &quot;SELECT * FROM gui_element_vars WHERE fkey_e_id = &#39;body&#39; AND<br>
&gt; fkey_gui_id = $1 and var_type=&#39;image/png&#39;&quot;;<br>
<br>
I suggest we change the WHERE clause to read var_name = &#39;favicon&#39;<br>
instead of var_type = &#39;image/png&#39;<br>
<br>
&gt; $v = array($gui_id);<br>
&gt; $t = array(&#39;s&#39;);<br>
&gt; $res = db_prep_query($sql,$v,$t);<br>
&gt; $cnt = 0;<br>
&gt; while($row = db_fetch_array($res)){<br>
&gt; echo &quot;&lt;link rel=\&quot;shortcut icon\&quot; type=\&quot;image/png\&quot;<br>
&gt; href=\&quot;&quot;.$row[&quot;var_value&quot;].&quot;\&quot;&gt;\n&quot;;<br>
&gt; }<br>
&gt; ?&gt;<br>
&gt;<br>
&gt;<br>
&gt; not the nicest solution but should work.<br>
<br>
We should commit this into trunk and add a short note at the element var<br>
description in the wiki<br>
<br>
<a href="http://www.mapbender.org/Body" target="_blank">http://www.mapbender.org/Body</a><br>
<br>
and maybe add an enhancement ticket so we have it in the changelog.<br>
<br>
If you don&#39;t find the time, Thomas, please let me know and I will attend<br>
to it.<br>
<br>
Thanks for your contribution<br>
<br>
Christoph<br>
<br>
&gt;<br>
&gt;<br>
&gt; Ciao<br>
&gt; Thomas<br>
&gt;<br>
<br>
<br>
--<br>
********************************************<br>
INTERGEO 2009<br>
22.-24. September 2009 in Karlsruhe<br>
Halle 1, Stand 1.417<br>
<a href="http://www.intergeo.de" target="_blank">www.intergeo.de</a><br>
********************************************<br>
<br>
_______________________________________<br>
<br>
W h e r e G r o u p GmbH &amp; Co. KG<br>
<br>
Siemensstraße 8<br>
53121 Bonn<br>
Germany<br>
<br>
Christoph Baudson<br>
Anwendungsentwickler<br>
<br>
Fon: +49 (0)228 / 90 90 38 - 15<br>
Fax: +49 (0)228 / 90 90 38 - 11<br>
<a href="mailto:christoph.baudson@wheregroup.com">christoph.baudson@wheregroup.com</a><br>
<a href="http://www.wheregroup.com" target="_blank">www.wheregroup.com</a><br>
Amtsgericht Bonn, HRA 6788<br>
_______________________________________<br>
<br>
Komplementärin:<br>
WhereGroup Verwaltungs GmbH<br>
vertreten durch:<br>
Olaf Knopp, Peter Stamm<br>
_______________________________________<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Fri, 28 Aug 2009 12:21:37 +0200<br>
From: Thomas Baschetti &lt;<a href="mailto:info@thomas-baschetti.de">info@thomas-baschetti.de</a>&gt;<br>
Subject: Re: [Mapbender-users] Assign a shortcut icon to a gui<br>
To: Mapbender User List &lt;<a href="mailto:mapbender_users@lists.osgeo.org">mapbender_users@lists.osgeo.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4A97AFB1.4020009@thomas-baschetti.de">4A97AFB1.4020009@thomas-baschetti.de</a>&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Christoph Baudson schrieb:<br>
&gt; [favicon..]<br>
&gt; If you don&#39;t find the time, Thomas, please let me know and I will<br>
&gt; attend to it.<br>
wait till monday and i&#39;ll do it, no problem<br>
(spend most of this weekend in trains and meetings...)<br>
<br>
Ciao<br>
Thomas<br>
<br>
--<br>
<br>
Thomas Baschetti - Systemanalyse Geographische Informationssysteme<br>
Hakenstraße 8D<br>
49074 Osnabrück<br>
<br>
Tel: 0541 25 91 90 | mobil 01577 189 25 91<br>
E-Mail: <a href="mailto:info@thomas-baschetti.de">info@thomas-baschetti.de</a><br>
<a href="http://www.thomas-baschetti.de" target="_blank">www.thomas-baschetti.de</a><br>
Ust-IdNr.: DE264355072<br>
<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
Mapbender_users mailing list<br>
<a href="mailto:Mapbender_users@lists.osgeo.org">Mapbender_users@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/mapbender_users" target="_blank">http://lists.osgeo.org/mailman/listinfo/mapbender_users</a><br>
<br>
<br>
End of Mapbender_users Digest, Vol 33, Issue 11<br>
***********************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>Walter Girón<br>4341-3225<br>