This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mdb:MD_Metadata xmlns:mrc="http://standards.iso.org/iso/19115/-3/mrc/2.0" | |
xmlns:mda="http://standards.iso.org/iso/19115/-3/mda/1.0" | |
xmlns:mdq="http://standards.iso.org/iso/19157/-2/mdq/1.0" | |
xmlns:srv="http://standards.iso.org/iso/19115/-3/srv/2.1" | |
xmlns:mrd="http://standards.iso.org/iso/19115/-3/mrd/1.0" | |
xmlns:mds="http://standards.iso.org/iso/19115/-3/mds/2.0" | |
xmlns:mrl="http://standards.iso.org/iso/19115/-3/mrl/2.0" | |
xmlns:gml="http://www.opengis.net/gml/3.2" | |
xmlns:mri="http://standards.iso.org/iso/19115/-3/mri/1.0" | |
xmlns:cat="http://standards.iso.org/iso/19115/-3/cat/1.0" |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:fn="http://www.w3.org/2005/02/xpath-functions" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:gml="http://www.opengis.net/gml#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:xdt="http://www.w3.org/2005/02/xpath-datatypes" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | |
<skos:ConceptScheme rdf:about="https://www.geo2france.fr/catalogue/administrativeEntities"> | |
<dc:title>Territoires</dc:title> | |
<dc:description>Mots clés de type géographique pour Geo2france.</dc:description> | |
<dc:creator> | |
<foaf:Organization> | |
<foaf:name>pi-Geosolutions</foaf:name> | |
</foaf:Organization> | |
</dc:creator> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> | |
<Configure class="org.eclipse.jetty.webapp.WebAppContext"> | |
<New id="ds_geoserver" class="org.eclipse.jetty.plus.jndi.Resource"> | |
<Arg>jdbc/geoserver</Arg> | |
<Arg> | |
<New class="org.apache.commons.dbcp.BasicDataSource"> | |
<Set name="driverClassName">org.postgresql.Driver</Set> | |
<Set name="username">geoserver</Set> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/console/console.properties b/console/console.properties | |
index 77ecc84..f69c362 100644 | |
--- a/console/console.properties | |
+++ b/console/console.properties | |
@@ -42,6 +42,25 @@ | |
# default: see default.properties - uncomment to override | |
#ldapPort= | |
+# LDAP connection pool | |
+# Whether objects will be validated before being borrowed from the pool. If the object fails to validate, it will be dropped from the pool, and an attempt to borrow another will be made. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ISO-8859-1"?> | |
<StyledLayerDescriptor version="1.0.0" xsi:schemaLocation="http://www.opengis.net/sld StyledLayerDescriptor.xsd" | |
xmlns="http://www.opengis.net/sld" | |
xmlns:ogc="http://www.opengis.net/ogc" | |
xmlns:xlink="http://www.w3.org/1999/xlink" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<NamedLayer> | |
<Name></Name> | |
<UserStyle> | |
<Title>Contour DEM</Title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
volumes: | |
redmine_files: | |
postgresql_data: | |
services: | |
redmine: | |
image: redmine:4.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dn: cn=CADASTRE_CNIL1,ou=roles,dc=georchestra,dc=org | |
businessCategory: favorite | |
ou: 26 | |
description:: Q2FkYXN0cmUgOiBhY2PDqHMgYXV4IGluZm9zIHB1YmxpcXVlcyBzdXIgbGVzIHBh | |
cmNlbGxlcyArIHZpc2liaWxpdMOpIGRlcyBub21zIGRlIHByb3ByacOpdGFpcmVz | |
cn: CADASTRE_CNIL1 | |
objectClass: top | |
objectClass: groupOfMembers | |
member: uid=testadmin,ou=users,dc=georchestra,dc=org |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ldap3 import Connection, SUBTREE, MODIFY_DELETE | |
from ldap3.core.exceptions import LDAPException | |
LDAP_URI = 'ldap://localhost:3899' | |
BIND_WITH_CREDENTIALS = True | |
LDAP_BINDDN = 'cn=admin,dc=georchestra,dc=org' | |
LDAP_PASSWD = 'secret' | |
USERS_DN = 'ou=users,dc=georchestra,dc=org' | |
ROLES_DN = 'ou=roles,dc=georchestra,dc=org' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<gwcConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://geowebcache.org/schema/1.12.0 http://geowebcache.org/schema/1.12.0/geowebcache.xsd" xmlns="http://geowebcache.org/schema/1.12.0"> | |
<version>1.12.0</version> | |
<backendTimeout>120</backendTimeout> | |
<blobStores/> | |
<gridSets> | |
<gridSet> | |
<name>InspireCRS84Quad</name> | |
<description>Every layer offered by a INSPIRE WMTS should use the InspireCRS84Quad Matrix Set</description> | |
<srs> |
NewerOlder