diff --git a/FEATURES/65756 b/FEATURES/65756
new file mode 100644
index 0000000000000000000000000000000000000000..2e79110befd943156282c44d611d916e834f971c
--- /dev/null
+++ b/FEATURES/65756
@@ -0,0 +1,11 @@
+        '65756' =>
+            ['Label' => $this->_('Connecteur Omeka'),
+             'Desc' => $this->_('%s est un logiciel de gestion de bibliothèque numérique. Le connecteur apporte SSO et aspiration du catalogue',
+	     	    '<a href="https://omeka.org/">Omeka</a>'),
+             'Image' => 'http://wiki.bokeh-library-portal.org/images/8/85/Omeka.png',
+             'Video' => '',
+             'Category' => '',
+             'Right' => function($feature_description, $user) {return true;},
+             'Wiki' => 'http://wiki.bokeh-library-portal.org/index.php/Omeka',
+             'Test' => '',
+             'Date' => '2017-11-10'],
\ No newline at end of file
diff --git a/VERSIONS_WIP/65756 b/VERSIONS_WIP/65756
new file mode 100644
index 0000000000000000000000000000000000000000..509976845721cf4e0dbca5581cddcd6454dd4543
--- /dev/null
+++ b/VERSIONS_WIP/65756
@@ -0,0 +1 @@
+ - ticket #65756 : ajout du connecteur bibliothèque numérique Omeka
\ No newline at end of file
diff --git a/library/Class/DigitalResource/Service.php b/library/Class/DigitalResource/Service.php
index f777a1e024db6c80ce743ef456b24f9ef3a0469d..6c620c786d649febb211f71be05ba45959222145 100644
--- a/library/Class/DigitalResource/Service.php
+++ b/library/Class/DigitalResource/Service.php
@@ -40,6 +40,5 @@ class Class_DigitalResource_Service extends Class_WebService_BibNumerique_Abstra
   public function getName() {
     return $this->_config->getName();
   }
-
 }
 ?>
\ No newline at end of file
diff --git a/library/Class/WebService/BibNumerique/AbstractOAI.php b/library/Class/WebService/BibNumerique/AbstractOAI.php
index 7d3bd61bd0a69b94d8b1157180d3a32af8974eb0..32da7498e1028de59032c07a9503692110a8a632 100644
--- a/library/Class/WebService/BibNumerique/AbstractOAI.php
+++ b/library/Class/WebService/BibNumerique/AbstractOAI.php
@@ -42,7 +42,7 @@ abstract class Class_WebService_BibNumerique_AbstractOAI extends Class_WebServic
 
   protected function _logRun() {
     Class_WebService_HarvestLog::newInstance(['end_date' => $this->getCurrentDate(),
-                                              'type_doc' => $this->getTypeDoc()])->save();
+                                              'type_doc' => $this->getDocType()])->save();
     return $this;
   }
 
@@ -59,7 +59,7 @@ abstract class Class_WebService_BibNumerique_AbstractOAI extends Class_WebServic
 
 
   protected function _addFromTo($params) {
-    $harvest_log = Class_WebService_HarvestLog::findFirstBy(['type_doc' => $this->getTypeDoc(),
+    $harvest_log = Class_WebService_HarvestLog::findFirstBy(['type_doc' => $this->getDocType(),
                                                              'order' => 'end_date desc']);
     return $this->_isTotal($harvest_log)
       ? $params
@@ -74,7 +74,7 @@ abstract class Class_WebService_BibNumerique_AbstractOAI extends Class_WebServic
     if($this->_is_total)
       return true;
 
-    return $this->_is_total = 0 >= Class_Album::countBy(['type_doc_id' => $this->getTypeDoc()]);
+    return $this->_is_total = 0 >= Class_Album::countBy(['type_doc_id' => $this->getDocType()]);
   }
 
 
@@ -89,12 +89,12 @@ abstract class Class_WebService_BibNumerique_AbstractOAI extends Class_WebServic
 
 
   public function getName() {
-    return Class_TypeDoc::getLabelFor($this->getTypeDoc());
+    return Class_TypeDoc::getLabelFor($this->getDocType());
   }
 
 
   protected function hasHarvestLog() {
-    return 0 < Class_WebService_HarvestLog::countBy(['type_doc' => $this->getTypeDoc()]);
+    return 0 < Class_WebService_HarvestLog::countBy(['type_doc' => $this->getDocType()]);
   }
 
 
@@ -106,7 +106,7 @@ abstract class Class_WebService_BibNumerique_AbstractOAI extends Class_WebServic
   protected function _deleteNonHarvested() {}
 
 
-  abstract protected function getTypeDoc();
+  abstract protected function getDocType();
 
 
   abstract protected function getUrlOrigine();
diff --git a/library/Class/WebService/BibNumerique/CiteDeLaMusique.php b/library/Class/WebService/BibNumerique/CiteDeLaMusique.php
index de36dc0b9062f00669656d5c112e9a35931c4819..42c80339fb9d3895c925bdc09674d95f47a44df4 100644
--- a/library/Class/WebService/BibNumerique/CiteDeLaMusique.php
+++ b/library/Class/WebService/BibNumerique/CiteDeLaMusique.php
@@ -68,7 +68,7 @@ class Class_WebService_BibNumerique_CiteDeLaMusique
   }
 
 
-  protected function getTypeDoc() {
+  protected function getDocType() {
     return Class_TypeDoc::CITEDELAMUSIQUE;
   }
 
diff --git a/library/Class/WebService/BibNumerique/Cyberlibris.php b/library/Class/WebService/BibNumerique/Cyberlibris.php
index 38577fb49788f4043884be40f3ce08ee933f4b64..96b300f3a3d660f483fc6ba40dc782729a9b5e82 100644
--- a/library/Class/WebService/BibNumerique/Cyberlibris.php
+++ b/library/Class/WebService/BibNumerique/Cyberlibris.php
@@ -43,7 +43,7 @@ class Class_WebService_BibNumerique_Cyberlibris extends Class_WebService_BibNume
   }
 
 
-  protected function getTypeDoc() {
+  protected function getDocType() {
     return Class_TypeDoc::CYBERLIBRIS;
   }
 
diff --git a/library/Class/WebService/BibNumerique/OneDTouch.php b/library/Class/WebService/BibNumerique/OneDTouch.php
index 1e5cae14620a0ae059c0c58049312c799806ae3e..9f22b846db632bc245617f43b88d9e8de9b82f82 100644
--- a/library/Class/WebService/BibNumerique/OneDTouch.php
+++ b/library/Class/WebService/BibNumerique/OneDTouch.php
@@ -39,7 +39,7 @@ class Class_WebService_BibNumerique_OneDTouch extends Class_WebService_BibNumeri
   }
 
 
-  protected function getTypeDoc() {
+  protected function getDocType() {
     return Class_TypeDoc::ONEDTOUCH;
   }
 
diff --git a/library/Class/WebService/OAI.php b/library/Class/WebService/OAI.php
index 893567223569a8ef3596501b49ca7f69b00cc16b..35e070caff379ca65dd9939b2e994ea916009a08 100644
--- a/library/Class/WebService/OAI.php
+++ b/library/Class/WebService/OAI.php
@@ -18,43 +18,40 @@
  * along with BOKEH; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
  */
-//////////////////////////////////////////////////////////////////////////////////////////
-// OPAC3 - Interrogation dépôts Open Archives Initiative
-//
-// Voir l'exploreur: http://re.cs.uct.ac.za/
-// Lister toutes les ensembles de Gallica: http://oai.bnf.fr/oai2/OAIHandler?verb=ListSets
-// Lister toutes les notices de l'ensemble gallica:5:54 : http://oai.bnf.fr/oai2/OAIHandler?verb=ListRecords&metadataPrefix=oai_dc&set=gallica:5:54
-// Outil Repository Explorer, très utile: http://re.cs.uct.ac.za/
-//////////////////////////////////////////////////////////////////////////////////////////
-
-/* Permet d'aller chercher les données depuis un entrepôt OAI
- * Utilisation:
+
+/**
+ * OAI PMH client
+ * Example:
  * $oai_service = new Class_WebService_OAI()
  * $oai_service->setOAIHandler('http://oai.bnf.fr/oai2/OAIHandler');
- * $oai_service->getSets()   //retourne les sets sous forme de tableau associatifs
- * $oai_service->getRecords('gallica'); //les 100 premiers records du set gallica
- * while ($oai_service->hasNextRecords())  //prends les enregistrements suivants
- *     $oai->service->getNextRecords();    // tant qu'il y en a
+ * $oai_service->getSets()
+ * $oai_service->getRecords('gallica');
+ * while ($oai_service->hasNextRecords())
+ *     $oai->service->getNextRecords();
  */
 
 class Class_WebService_OAI extends Class_WebService_Abstract {
-  const Verb = 'verb';
-  const MetadataPrefix = 'metadataPrefix';
-  const Set = 'set';
-  const ResumptionToken = 'resumptionToken';
-  const ListSets = 'ListSets';
-  const ListRecords = 'ListRecords';
+  const
+    Verb = 'verb',
+    MetadataPrefix = 'metadataPrefix',
+    Set = 'set',
+    ResumptionToken = 'resumptionToken',
+    ListSets = 'ListSets',
+    ListRecords = 'ListRecords';
+
 
+  protected
+    $_web_client,
+    $_numeric_resource_class = 'Class_WebService_BibNumerique_Numilog_LivreNumerique',
+    $_listRecordsResumptionToken,
+    $_oai_handler,
+    $_metadata_prefix = 'oai_dc',
+    $_first_page = true,
+    $_logger;
 
-  protected $web_client;
-  protected $numeric_resource_class = 'Class_WebService_BibNumerique_Numilog_LivreNumerique';
-  protected $_listRecordsResumptionToken;
-  protected $metadata_prefix = 'oai_dc';
-  protected $_first_page = true;
-  protected $_logger;
 
   public static function baseURL() {
-    return 'http://' . $_SERVER['SERVER_NAME'] . BASE_URL . '/opac/oai/request';
+    return Class_Url::siteUrl() . '/opac/oai/request';
   }
 
 
@@ -64,32 +61,32 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
 
 
   public function setOAIHandler($oai_handler) {
-    $this->oai_handler = $oai_handler;
+    $this->_oai_handler = $oai_handler;
     return $this;
   }
 
 
   public function setWebClient($client) {
-    $this->web_client = $client;
+    $this->_web_client = $client;
     return $this;
   }
 
 
   public function getWebClient() {
-    if (!isset($this->web_client))
+    if (!isset($this->_web_client))
       $this->setWebClient(static::getHttpClient());
-    return $this->web_client;
+    return $this->_web_client;
   }
 
 
   public function setNumericResourceClass($classname) {
-    $this->numeric_resource_class = $classname;
+    $this->_numeric_resource_class = $classname;
     return $this;
   }
 
 
   public function getNumericResourceClass() {
-    return $this->numeric_resource_class;
+    return $this->_numeric_resource_class;
   }
 
 
@@ -102,10 +99,10 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
     unset($parameters[static::Verb]);
     $parameters = array_merge([static::Verb => $verb],
                               $parameters);
-    $separator = (false !== strpos($this->oai_handler, '?'))
+    $separator = (false !== strpos($this->_oai_handler, '?'))
       ? '&'
       : '?';
-    $url = $this->oai_handler . $separator . http_build_query($parameters);
+    $url = $this->_oai_handler . $separator . http_build_query($parameters);
     $response = $this->getContent($url);
     $this->_log($url, $response);
 
@@ -175,7 +172,7 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
     if (!$this->isFirstPage())
       return $this->getNextNumericResources();
 
-    $params = array_merge([static::MetadataPrefix => $this->metadata_prefix], $params);
+    $params = array_merge([static::MetadataPrefix => $this->_metadata_prefix], $params);
     $this->_first_page = false;
     $xml_data = $this->oaiAsks(static::ListRecords, $params);
 
@@ -189,7 +186,7 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
 
 
   public function getRecords($params = []) {
-    $params = array_merge([static::MetadataPrefix => $this->metadata_prefix], $params);
+    $params = array_merge([static::MetadataPrefix => $this->_metadata_prefix], $params);
     $xml_data = $this->oaiAsks(static::ListRecords, $params);
 
     return $this->parseListRecordsXML($xml_data);
@@ -212,7 +209,7 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
 
 
   public function getNewRessourceNumerique() {
-    return new $this->numeric_resource_class;
+    return new $this->_numeric_resource_class;
   }
 
 
@@ -271,7 +268,7 @@ class Class_WebService_OAI extends Class_WebService_Abstract {
 
 
   public function setMetadataPrefix($metadata_prefix) {
-    $this->metadata_prefix = $metadata_prefix;
+    $this->_metadata_prefix = $metadata_prefix;
     return $this;
   }
 
diff --git a/library/digital_resources/Omeka/Config.php b/library/digital_resources/Omeka/Config.php
new file mode 100644
index 0000000000000000000000000000000000000000..7bb8af512685f24f9c7c36e525e8cabb175181cb
--- /dev/null
+++ b/library/digital_resources/Omeka/Config.php
@@ -0,0 +1,67 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class Omeka_Config extends Class_DigitalResource_Config {
+  public function getConfig() {
+    return ['Introduction' => $this->_('Omeka, logiciel de gestion de bibliothèque numérique'),
+            'DocTypeLabel' => $this->_('Ressource numérique Omeka'),
+            'PermissionLabel' => $this->_('Bibliothèque numérique: accéder aux ressources Omeka'),
+            'AdminVars' => ['OAI_URL' => Class_AdminVar_Meta::newDefault($this->_('Activer le connecteur bibliothèque numérique "Omeka"'))->bePrivate(),
+            ],
+
+            'SsoAction' => true,
+            'Harvesting' => true,
+
+            'HelpLink' => 'http://wiki.bokeh-library-portal.org/index.php/Omeka',
+            'Url' => 'https://omeka.org',
+            'Icon' => 'http://wiki.bokeh-library-portal.org/images/8/85/Omeka.png',
+
+            'MenuLabel' => $this->_('Lien vers les ressources Omeka'),
+            'ModuleMenu' => $this->withNameSpace('ModuleMenu'),
+            'Batch' => $this->withNameSpace('Batch'),
+            'Service' => $this->withNameSpace('Service'),
+            'NotAllowedMessage' => $this->_('Vous devez être abonné pour accéder à cette ressource.'),
+    ];
+  }
+
+
+  public function isEnabled() {
+    return (new ZendAfi_Validate_Url())->isValid($this->getOAIUrl());
+  }
+
+
+  public function getOAIUrl() {
+    return $this->getAdminVar('OAI_URL');
+  }
+
+
+  public function getSsoUrl($user) {
+    return '';
+  }
+
+
+  public function newOAIClient() {
+    return (new Class_WebService_OAI())
+      ->setOAIHandler($this->getOAIUrl())
+      ->setNumericResourceClass('Omeka_Service_Resource');
+  }
+}
\ No newline at end of file
diff --git a/library/digital_resources/Omeka/Service.php b/library/digital_resources/Omeka/Service.php
new file mode 100644
index 0000000000000000000000000000000000000000..e187862f535c700cb5b8fd7043df988a4cfef096
--- /dev/null
+++ b/library/digital_resources/Omeka/Service.php
@@ -0,0 +1,51 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class Omeka_Service extends Class_WebService_BibNumerique_AbstractOAI {
+  protected $_config;
+
+  public function __construct($config) {
+    $this->_config = $config;
+    $this->_oaiws = $config->newOAIClient();
+  }
+
+
+  protected function getDocType() {
+    return $this->_config->getDocType();
+  }
+
+
+  protected function getUrlOrigine() {
+    return $this->_config->getOAIUrl();
+  }
+
+
+  public function isEnabled() {
+    return $this->_config->isEnabled();
+  }
+
+
+  public function getName() {
+    return $this->_config->getName();
+  }
+}
+?>
\ No newline at end of file
diff --git a/library/digital_resources/Omeka/Service/Resource.php b/library/digital_resources/Omeka/Service/Resource.php
new file mode 100644
index 0000000000000000000000000000000000000000..84f34037f34683284dfdf2dba72cbc0240aef064
--- /dev/null
+++ b/library/digital_resources/Omeka/Service/Resource.php
@@ -0,0 +1,26 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class Omeka_Service_Resource extends Class_WebService_BibNumerique_RessourceNumerique {
+
+}
+?>
\ No newline at end of file
diff --git a/library/digital_resources/Omeka/tests/OmekaTest.php b/library/digital_resources/Omeka/tests/OmekaTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..d6248543e8578d91474f070f0f2d5743c2a1d5a6
--- /dev/null
+++ b/library/digital_resources/Omeka/tests/OmekaTest.php
@@ -0,0 +1,65 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+class OmekaFixtures {
+  use Storm_Test_THelpers;
+
+  public function prepare() {
+    Class_AdminVar::set('Omeka_OAI_URL',
+                        'http://omeka-demo.biblibre.com/oai-pmh-repository');
+
+    $http_client = $this->mock()
+                        ->whenCalled('open_url')
+                        ->with('http://omeka-demo.biblibre.com/oai-pmh-repository?verb=ListRecords&metadataPrefix=oai_dc')
+                        ->answers(file_get_contents(__DIR__ . '/omeka_oai_page_1.xml'));
+    Omeka_Service::setDefaultHttpClient($http_client);
+
+    return new Omeka_Service(
+                             new Omeka_Config(
+                                              new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(),
+                                                                                'Omeka')));
+  }
+}
+
+
+
+
+class OmekaHarvestedTest extends AbstractControllerTestCase {
+  protected
+    $_storm_default_to_volatile = true,
+    $_alpes_record;
+
+
+  public function setUp() {
+    parent::setUp();
+    (new OmekaFixtures())->prepare()->harvest();
+
+    $this->_alpes_record = Class_Album::find(8);
+  }
+
+
+  /** @test */
+  public function alpesRecordTitleShouldBePlanDesAlpes() {
+    $this->assertEquals('Plan relief des Alpes françaises / modelé par Karl Schroeder, fils',
+                        $this->_alpes_record->getTitre());
+  }
+}
+?>
\ No newline at end of file
diff --git a/library/digital_resources/Omeka/tests/omeka_oai_page_1.xml b/library/digital_resources/Omeka/tests/omeka_oai_page_1.xml
new file mode 100644
index 0000000000000000000000000000000000000000..229f36bdd642824fa37e34b65193c142cca24738
--- /dev/null
+++ b/library/digital_resources/Omeka/tests/omeka_oai_page_1.xml
@@ -0,0 +1,220 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd">
+  <responseDate>2017-11-10T15:39:54Z</responseDate>
+  <request verb="ListRecords" metadataPrefix="oai_dc">http://omeka-demo.biblibre.com/oai-pmh-repository/request</request>
+  <ListRecords>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:4</identifier>
+        <datestamp>2017-09-25T09:39:09Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Nain de jardin</dc:title>
+          <dc:type>image fixe</dc:type>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/4</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/files/original/b53ccf92d3faf0ae3ca61289c74e56f0.jpg</dc:identifier>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:5</identifier>
+        <datestamp>2017-09-25T09:21:49Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Vase de pommes</dc:title>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/5</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/files/original/bf131241ad26f7eeea90ecda1875e175.jpg</dc:identifier>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:6</identifier>
+        <datestamp>2017-09-25T09:21:49Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Salle de cinéma</dc:title>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/6</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/files/original/eaf84e26d8d72883fffe049c1d5a6cad.jpg</dc:identifier>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:659</identifier>
+        <datestamp>2017-08-07T13:26:20Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Carte des pais reconquis et restitués par le Roy aux 3 ligues Grises, M. le Marquis de Caeuvres y ayant le Commande[ment] général de l'Armée de S.M. es annés 1625 et 1626. La Valtelline et les Contés de Bermie et Chavéne avaient esté laissés aux Grisons par le Rey François premier comme Duc de Milan en 1516 à cause des courts et aysés passages de l'Italie aux Alemaignes qui ont jadis servi aux conquestes des Romains...</dc:title>
+          <dc:creator>Tassin, Christophe. Auteur du texte</dc:creator>
+          <dc:subject>Allégories</dc:subject>
+          <dc:subject>Armoiries</dc:subject>
+          <dc:subject>Engadine (vallée)</dc:subject>
+          <dc:subject>Valtelline (vallée)</dc:subject>
+          <dc:subject>Chiavenna</dc:subject>
+          <dc:subject>Personnages</dc:subject>
+          <dc:description>Échelle(s) : Eschele de quatre heures de chemin [=Om. 075 ; 1:266 000 environ]</dc:description>
+          <dc:publisher>[s.n.][s.n.]</dc:publisher>
+          <dc:date>1626</dc:date>
+          <dc:type>model</dc:type>
+          <dc:type>maquette</dc:type>
+          <dc:type>image fixe</dc:type>
+          <dc:type>image</dc:type>
+          <dc:type>still image</dc:type>
+          <dc:format>2 flles en coul. ; 620 x 365, assemblées 620 x 730 [Vol. 171-172 (7)]</dc:format>
+          <dc:format>image/jpeg</dc:format>
+          <dc:format>Nombre total de vues :  1</dc:format>
+          <dc:identifier>http://gallica.bnf.fr/ark:/12148/btv1b53098514v</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/659</dc:identifier>
+          <dc:source>Bibliothèque nationale de France, département Cartes et plans, GE C-9189</dc:source>
+          <dc:language>fre</dc:language>
+          <dc:language>français</dc:language>
+          <dc:relation>Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb40665921d</dc:relation>
+          <dc:coverage>Suisse – Grisons</dc:coverage>
+          <dc:coverage>Italie – Lombardie</dc:coverage>
+          <dc:rights>domaine public</dc:rights>
+          <dc:rights>public domain</dc:rights>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:662</identifier>
+        <datestamp>2017-08-07T13:26:20Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Carte des pais reconquis et restitués par le Roy aux 3 Ligues Grises, M. le Marquis de Caeuvres y ayant le Commande[ment] général de l'Armée de S.M. es annés 1625 et 1626. La Valtelline et les Contés de Bermie et Chavéne avaient esté laissés aux Grisons par le Roy François Premier comme Duc de Milan en 1516 à cause des courts et aysés passages de l'Italie aux Alemaignes qui ent jadis servi aux conquestes des Romains...</dc:title>
+          <dc:creator>Tassin, Christophe. Cartographe</dc:creator>
+          <dc:subject>Allégories</dc:subject>
+          <dc:subject>Armoiries</dc:subject>
+          <dc:subject>Valteline, Affaire de la (162.)</dc:subject>
+          <dc:subject>Valteline, Vallée de la</dc:subject>
+          <dc:subject>Personnages</dc:subject>
+          <dc:description>Échelle(s) : Eschele de quatre heures de chemin [= Om.075 ; 1:266 000 ca]</dc:description>
+          <dc:publisher>[s.n.][s.n.]</dc:publisher>
+          <dc:date>1626</dc:date>
+          <dc:type>model</dc:type>
+          <dc:type>maquette</dc:type>
+          <dc:type>image fixe</dc:type>
+          <dc:type>image</dc:type>
+          <dc:type>still image</dc:type>
+          <dc:format>2 flles en coul. ; 62 x 38 cm, assemblées 62 x 73 cm, [Vol. 171-172 (7)]</dc:format>
+          <dc:format>image/jpeg</dc:format>
+          <dc:format>Nombre total de vues :  1</dc:format>
+          <dc:identifier>http://gallica.bnf.fr/ark:/12148/btv1b530292372</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/662</dc:identifier>
+          <dc:source>Bibliothèque nationale de France, département Cartes et plans, GE C-2190</dc:source>
+          <dc:language>fre</dc:language>
+          <dc:language>français</dc:language>
+          <dc:relation>Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb40665922r</dc:relation>
+          <dc:coverage>Suisse – Grisons</dc:coverage>
+          <dc:rights>domaine public</dc:rights>
+          <dc:rights>public domain</dc:rights>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:664</identifier>
+        <datestamp>2017-08-07T13:26:20Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Società Navigazione e Ferrovie pel Lago di Lugano. Ferrovie Menaggio-Porlezza-Ponte Tresa-Luina</dc:title>
+          <dc:creator>Orell-Füssli-Verlag. Auteur du texte</dc:creator>
+          <dc:subject>Lugano -- Région -- Relief</dc:subject>
+          <dc:publisher>Art. Anst. Orell Füssli (Zurich)</dc:publisher>
+          <dc:date>1885</dc:date>
+          <dc:type>model</dc:type>
+          <dc:type>maquette</dc:type>
+          <dc:type>image fixe</dc:type>
+          <dc:type>image</dc:type>
+          <dc:type>still image</dc:type>
+          <dc:format>1 flle : en coul. ; 34 x 21 cm</dc:format>
+          <dc:format>image/jpeg</dc:format>
+          <dc:format>Nombre total de vues :  1</dc:format>
+          <dc:identifier>http://gallica.bnf.fr/ark:/12148/btv1b84600066</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/664</dc:identifier>
+          <dc:source>Bibliothèque nationale de France, département Cartes et plans, GE D-9698</dc:source>
+          <dc:language>ita</dc:language>
+          <dc:language>italien</dc:language>
+          <dc:relation>Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb406967462</dc:relation>
+          <dc:coverage>Suisse – Tessin</dc:coverage>
+          <dc:rights>domaine public</dc:rights>
+          <dc:rights>public domain</dc:rights>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:666</identifier>
+        <datestamp>2017-08-07T13:26:19Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Berner Oberland</dc:title>
+          <dc:creator>Orell-Füssli-Verlag. Auteur du texte</dc:creator>
+          <dc:subject>Oberland Bernois (région naturelle) -- Relief</dc:subject>
+          <dc:description>Échelle(s) : 1:133 000 environ</dc:description>
+          <dc:publisher>Art. Institut Orell Füssli (Zürich)</dc:publisher>
+          <dc:date>1910</dc:date>
+          <dc:type>model</dc:type>
+          <dc:type>maquette</dc:type>
+          <dc:type>image fixe</dc:type>
+          <dc:type>image</dc:type>
+          <dc:type>still image</dc:type>
+          <dc:format>1 flle : en coul. ; 38 x 26 cm</dc:format>
+          <dc:format>image/jpeg</dc:format>
+          <dc:format>Nombre total de vues :  1</dc:format>
+          <dc:identifier>http://gallica.bnf.fr/ark:/12148/btv1b84601855</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/666</dc:identifier>
+          <dc:source>Bibliothèque nationale de France, département Cartes et plans, GE D-9882</dc:source>
+          <dc:language>ger</dc:language>
+          <dc:language>allemand</dc:language>
+          <dc:relation>Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb40705475w</dc:relation>
+          <dc:coverage>Suisse</dc:coverage>
+          <dc:rights>domaine public</dc:rights>
+          <dc:rights>public domain</dc:rights>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+    <record>
+      <header>
+        <identifier>oai:omeka-demo.biblibre.com:668</identifier>
+        <datestamp>2017-08-07T13:26:19Z</datestamp>
+      </header>
+      <metadata>
+        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
+          <dc:title>Plan relief des Alpes françaises / modelé par Karl Schroeder, fils</dc:title>
+          <dc:creator>Schroeder, Karl (18..-18..? ; imprimeur). Auteur du texte</dc:creator>
+          <dc:subject>Alpes françaises -- Relief</dc:subject>
+          <dc:description>Échelle(s) : [1:550 000 environ]</dc:description>
+          <dc:publisher>A. Davanne (Paris)</dc:publisher>
+          <dc:date>1862</dc:date>
+          <dc:type>model</dc:type>
+          <dc:type>maquette</dc:type>
+          <dc:type>image fixe</dc:type>
+          <dc:type>image</dc:type>
+          <dc:type>still image</dc:type>
+          <dc:format>1 flle photographiée collée sur carton ; 19 x 27 cm</dc:format>
+          <dc:format>image/jpeg</dc:format>
+          <dc:format>Nombre total de vues :  1</dc:format>
+          <dc:identifier>http://gallica.bnf.fr/ark:/12148/btv1b84909954</dc:identifier>
+          <dc:identifier>http://omeka-demo.biblibre.com/items/show/668</dc:identifier>
+          <dc:source>Bibliothèque nationale de France, département Cartes et plans, GE D-13533</dc:source>
+          <dc:language>fre</dc:language>
+          <dc:language>français</dc:language>
+          <dc:relation>Notice du catalogue : http://catalogue.bnf.fr/ark:/12148/cb40705751q</dc:relation>
+          <dc:rights>domaine public</dc:rights>
+          <dc:rights>public domain</dc:rights>
+        </oai_dc:dc>
+      </metadata>
+    </record>
+  </ListRecords>
+</OAI-PMH>