/[projects]/dao/DaoAdresseService/WebContent/WEB-INF/web.xml
ViewVC logotype

Diff of /dao/DaoAdresseService/WebContent/WEB-INF/web.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2274 by torben, Fri Feb 13 11:48:23 2015 UTC revision 2384 by torben, Thu Feb 26 13:11:45 2015 UTC
# Line 785  standard deployment descriptor. Line 785  standard deployment descriptor.
785      <res-type>javax.sql.DataSource</res-type>      <res-type>javax.sql.DataSource</res-type>
786      <res-auth>Container</res-auth>      <res-auth>Container</res-auth>
787    </resource-ref>    </resource-ref>
788      <filter>
789        <filter-name>SetCharacterEncoding</filter-name>
790        <filter-class>org.apache.catalina.filters.SetCharacterEncodingFilter</filter-class>
791        <init-param>
792          <param-name>encoding</param-name>
793          <param-value>UTF-8</param-value>
794        </init-param>
795      </filter>
796      <filter-mapping>
797        <filter-name>SetCharacterEncoding</filter-name>
798        <url-pattern>/*</url-pattern>
799      </filter-mapping>
800      <context-param>
801        <description>Bool: use google geocoding to help with streetnames</description>
802        <param-name>useGoogle</param-name>
803        <param-value>true</param-value>
804      </context-param>
805      <context-param>
806        <description>Bool: use OSM geocoding to help with streetnames</description>
807        <param-name>useOpenStreetMaps</param-name>
808        <param-value>true</param-value>
809      </context-param>
810      <context-param>
811        <description>Int: Timeout for HTTPRequest (ms)</description>
812        <param-name>osmTimeout</param-name>
813        <param-value>750</param-value>
814      </context-param>
815      <context-param>
816        <description>String: Base for nominatim URL</description>
817        <param-name>nominatimBase</param-name>
818        <param-value>http://nominatim.openstreetmap.org</param-value>
819      </context-param>
820  </web-app>  </web-app>

Legend:
Removed from v.2274  
changed lines
  Added in v.2384

  ViewVC Help
Powered by ViewVC 1.1.20