diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..1867e80 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,25 @@ +[run] +include = sickle* +parallel = True + +[report] +# Regexes for lines to exclude from consideration +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + + # Don't complain about missing debug-only code: + def __repr__ + if self\.debug + + # Don't complain if tests don't hit defensive assertion code: + raise AssertionError + raise NotImplementedError + + # Don't complain if non-runnable code isn't run: + if 0: + if False: + if __name__ == .__main__.: + +ignore_errors = True + diff --git a/.gitignore b/.gitignore index 9a3cf04..f3f5470 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,9 @@ -doc/_build +docs/_build *.pyc build/ dist/ +Sickle.egg-info/ sickle.egg-info/ +coverage.xml +.coverage* +.idea diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..88252a9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: python +python: + - "2.7" +install: "pip install ." +script: "nosetests" diff --git a/AUTHORS.rst b/AUTHORS.rst new file mode 100644 index 0000000..80a0962 --- /dev/null +++ b/AUTHORS.rst @@ -0,0 +1,9 @@ +Authors +======= + +- Mathias Loesch (original author) + +Contributors +------------ + +- Ben Meier diff --git a/CHANGES.rst b/CHANGES.rst index a302f1c..dbd4015 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,22 @@ Changelog ========= + +Version 0.4 +----------- + +May 31, 2015 + +- bug fix: resumptionToken parameter is exclusive +- added support for harvesting complete OAI-XML responses + + Version 0.3 ----------- -- added support for protected OAI interfaces (basic auth) +April 17, 2013 + +- added support for protected OAI interfaces (basic authentication) - made class mapping for OAI elements configurable - added options for HTTP timeout and max retries - added handling of HTTP 503 responses @@ -13,10 +25,13 @@ Version 0.3 Version 0.2 ----------- +February 26, 2013 + - OAI items are now represented as their own classes instead of XML elements - library raises OAI-specific exceptions - made lxml a required dependency + Version 0.1 ----------- diff --git a/README.rst b/README.rst index 581a1bf..4c4d11e 100644 --- a/README.rst +++ b/README.rst @@ -1,23 +1,35 @@ -Sickle: An OAI Client Library for Python -======================================== +Sickle: OAI-PMH for Humans +========================== +.. image:: https://pypip.in/v/Sickle/badge.png + :target: https://crate.io/packages/Sickle/ + :alt: Latest PyPI version -Sickle is lightweight `OAI-PMH `_ -client library written in Python. It has been designed for conveniently retrieving -data from OAI interfaces the Pythonic way:: +.. image:: https://pypip.in/d/Sickle/badge.png + :target: https://crate.io/packages/Sickle/ + :alt: Number of PyPI downloads +Sickle is a lightweight `OAI-PMH `_ +client library written in Python. It has been designed for conveniently retrieving data from +OAI interfaces the Pythonic way:: + + >>> from sickle import Sickle >>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2') >>> records = sickle.ListRecords(metadataPrefix='oai_dc') - -Most importantly, Sickle lets you iterate through OAI records without having to deal -with things like result batches or ``resumptionTokens`` yourself:: - >>> records.next() +Features +-------- + +- Easy harvesting of OAI-compliant interfaces +- Support for all six OAI verbs +- Convenient object representations of OAI items (records, headers, sets, ...) +- Automatic dictionary serialization of Dublin Core-encoded metadata payloads +- Option for ignoring deleted items Installation -============ +------------ :: @@ -29,8 +41,12 @@ Dependencies: * `lxml `_ -Links -===== +Documentation +------------- + +Documentation is available at `Read the Docs `_ + +Development +----------- -* `Documentation `_ -* `Sickle @ GitHub `_ \ No newline at end of file +* `Sickle @ GitHub `_ diff --git a/doc/tutorial.rst b/doc/tutorial.rst deleted file mode 100644 index 3f8e9bd..0000000 --- a/doc/tutorial.rst +++ /dev/null @@ -1,179 +0,0 @@ -======== -Tutorial -======== - -This section gives a brief overview on how to use Sickle for querying OAI -interfaces. - - -OAI-PMH Primer -============== - -This section gives a basic overview of -the `Open Archives Protocol for Metadata Harvesting (OAI-PMH) `_. -For more detailed information, please refer to the protocol specification. - -Glossary of Important OAI-PMH Concepts --------------------------------------- - -**Repository** - A *repository* is a server-side application that exposes metadata via OAI-PMH. -**Harvester** - OAI-PMH client applications like Sickle are called *harvesters*. -**record** - A *record* is the XML-encoded container for the metadata of a single publication item. - It consists of a *header* and a *metadata* section. -**header** - The record *header* contains a unique identifier and a datestamp. -**metadata** - The record *metadata* contains the publication metadata in a defined - metadata format. -**set** - A structure for grouping records for selective harvesting. -**harvesting** - The process of requesting records from the repository by the harvester. - -OAI Verbs ---------- - -OAI-PMH features six main API methods (so-called "OAI verbs") that can be issued by -harvesters. Some verbs can be combined with further arguments: - -``Identify`` - Returns information about the repository. Arguments: None. -``GetRecord`` - Returns a single record. Arguments: - - * ``identifier`` (the unique identifier of the record, *required*) - * ``metadataPrefix`` (the prefix identifying the metadata format, *required*) -``ListRecords`` - Returns the records in the repository in batches (possibly filtered by a timestamp or a ``set``). - Arguments: - - * ``metadataPrefix`` (the prefix identifying the metadata format, *required*) - * ``from`` (the earliest timestamp of the records, *optional*) - * ``until`` (the latest timestamp of the records, *optional*) - * ``set`` (a set for selective harvesting, *optional*) - * ``resumptionToken`` (used for getting the next result batch if the number of records returned by the previous request exceeds the repository's maximum batch size, *exclusive*) -``ListIdentifiers`` - *Like* ``ListRecords`` *but returns only the record headers.* -``ListSets`` - Returns the list of sets supported by this repository. - Arguments: None -``ListMetadataFormats`` - Returns the list of metadata formats supported by this repository. - Arguments: None - - -Metadata Formats ----------------- - -OAI interfaces may expose metadata records in multiple metadata formats. These -formats are identified by so-called "metadata prefixes". For instance, the -prefix ``oai_dc`` refers to the OAI-DC format, which by definition has to be -exposed by every valid OAI interface. OAI-DC is based on the 15 metadata -elements specified in the -`Dublin Core Metadata Element Set `_. - -.. note:: - - Sickle only supports the OAI-DC format out of the box. See section XXX for - how to extend Sickle for retrieving metadata in other formats. - - -Initialize an OAI Interface -=========================== - -To make a connection to an OAI interface, you need to import the Sickle object:: - - >>> from sickle import Sickle - -Next, you can initialize the connection by passing it the basic URL. In our -example, we use the OAI interface of the ELIS repository:: - - >>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2') - - -Issuing Requests -================ - -Now you are set to issue some requests. Sickle provides methods for each of -the six OAI verbs (ListRecords, GetRecord, Idenitfy, ListSets, ListMetadataFormats, -ListIdentifiers). Start with a ListRecords request:: - - >>> records = sickle.ListRecords(metadataPrefix='oai_dc') - -Note that all keyword arguments you provide to this function are passed to the OAI interface -as HTTP parameters. Therefore our example request results in ``verb=ListRecords&metadataPrefix=oai_dc``. -Consequently, we can add additional parameters, like ``set`` for example:: - - >>> records = sickle.ListRecords(metadataPrefix='oai_dc', set='driver') - - -Using the ``from`` Parameter -============================ - -If you need to perform selective harvesting by date using the ``from`` parameter, you -will run into problems though, since ``from`` is a reserved word in Python:: - - >>> records = sickle.ListRecords(metadataPrefix='oai_dc', from="2012-12-12") - File "", line 1 - records = sickle.ListRecords(metadataPrefix='oai_dc', from="2012-12-12") - ^ - SyntaxError: invalid syntax - -Fortunately, you can circumvent this problem by using a dictionary together with -the ``**`` operator:: - - >>> records = sickle.ListRecords( - ... **{'metadataPrefix': 'oai_dc', - ... 'from': '2012-12-12' - ... } - ... ) - - -Iterative Harvesting -==================== - -Sickle lets you conveniently iterate through resumption batches -without having to deal with ``resumptionTokens`` yourself:: - - >>> records = sickle.ListRecords(metadataPrefix='oai_dc') - >>> records.next() - - -Note that this works with all requests that return more than one element. -These are: :meth:`~sickle.app.Sickle.ListRecords`, :meth:`~sickle.app.Sickle.ListIdentifiers`, -:meth:`~sickle.app.Sickle.ListSets`, and :meth:`~sickle.app.Sickle.ListMetadataFormats`. - -Iterating through the headers returned by ``ListIdentifiers``:: - - >>> headers = sickle.ListIdentifiers(metadataPrefix='oai_dc') - >>> headers.next() -
- -Or through the sets returned by ``ListSets``:: - - >>> sets = sickle.ListSets() - >>> sets.next() - - - -Getting a Single Record -======================= - -OAI-PMH allows you to get a single record by using the ``GetRecord`` verb. And so does Sickle: - - >>> sickle.GetRecord(identifier='oai:eprints.rclis.org:4088', - ... metadataPrefix='oai_dc') - - - -Ignoring Deleted Records -======================== - -The :meth:`~sickle.app.Sickle.ListRecords` and :meth:`~sickle.app.Sickle.ListIdentifiers` -methods take an optional parameter :attr:`ignore_deleted`. If it is set to :obj:`True`, -the returned :class:`~sickle.app.OAIIterator` will skip deleted records/headers:: - - >>> records = sickle.ListRecords(metadataPrefix='oai_dc', ignore_deleted=True) diff --git a/doc/Makefile b/docs/Makefile similarity index 100% rename from doc/Makefile rename to docs/Makefile diff --git a/doc/_themes/armstrong/LICENSE b/docs/_themes/armstrong/LICENSE similarity index 100% rename from doc/_themes/armstrong/LICENSE rename to docs/_themes/armstrong/LICENSE diff --git a/doc/_themes/armstrong/_theme.conf b/docs/_themes/armstrong/_theme.conf similarity index 100% rename from doc/_themes/armstrong/_theme.conf rename to docs/_themes/armstrong/_theme.conf diff --git a/doc/_themes/armstrong/layout.html b/docs/_themes/armstrong/layout.html similarity index 100% rename from doc/_themes/armstrong/layout.html rename to docs/_themes/armstrong/layout.html diff --git a/doc/_themes/armstrong/static/rtd.css_t b/docs/_themes/armstrong/static/rtd.css_t similarity index 100% rename from doc/_themes/armstrong/static/rtd.css_t rename to docs/_themes/armstrong/static/rtd.css_t diff --git a/doc/_themes/armstrong/theme.conf b/docs/_themes/armstrong/theme.conf similarity index 100% rename from doc/_themes/armstrong/theme.conf rename to docs/_themes/armstrong/theme.conf diff --git a/doc/api.rst b/docs/api.rst similarity index 90% rename from doc/api.rst rename to docs/api.rst index d78f319..7f29d48 100644 --- a/doc/api.rst +++ b/docs/api.rst @@ -18,15 +18,15 @@ The Sickle Client Working with OAI Responses ========================== -.. autoclass:: sickle.app.OAIResponse +.. autoclass:: sickle.response.OAIResponse :members: -Iterating through OAI Items -=========================== +Iterating over OAI Items +======================== -.. autoclass:: sickle.app.OAIIterator +.. autoclass:: sickle.iterator.OAIItemIterator :members: .. attribute oai_response @@ -56,18 +56,31 @@ Iterating through OAI Items +Iterating over OAI Responses +============================ + + +.. autoclass:: sickle.iterator.OAIResponseIterator + :members: + + + Classes for OAI Items ===================== The following classes represent OAI-specific items like records, headers, and sets. -All items feature the attributes :attr:`raw` and :attr:`xml` which contain their +All items feature the attributes :attr:`raw` and :attr:`xml` which contain their original XML representation as unicode and as parsed XML objects. +.. note:: + + Sickle's automatic mapping of XML to OAI objects only works for Dublin Core + encoded record data. Identify Object --------------- -The Identify object is generated from Identify responses and is returned by +The Identify object is generated from Identify responses and is returned by :meth:`sickle.app.Sickle.Identify`. It contains general information about the repository. @@ -77,7 +90,7 @@ the repository. .. note:: - As the attributes of this class are auto-generated from the Identify XML elements, + As the attributes of this class are auto-generated from the Identify XML elements, some of them may be missing for specific OAI interfaces. .. attribute:: adminEmail @@ -161,7 +174,7 @@ Record objects represent single OAI records. Header Object ------------- -Header objects represent OAI headers. +Header objects represent OAI headers. .. autoclass:: sickle.models.Header :members: diff --git a/doc/conf.py b/docs/conf.py similarity index 99% rename from doc/conf.py rename to docs/conf.py index 8a4d2fe..759da5a 100644 --- a/doc/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # built documents. # # The short X.Y version. -version = '0.3' +version = '0.4' # The full version, including alpha/beta/rc tags. release = version diff --git a/doc/credits.rst b/docs/credits.rst similarity index 56% rename from doc/credits.rst rename to docs/credits.rst index cd6f19c..86fba6e 100644 --- a/doc/credits.rst +++ b/docs/credits.rst @@ -2,7 +2,8 @@ Credits ======= -* `pyoai `_ provided valueable inspiration +* Inspired by the "for humans approach" of `requests `_ +* `pyoai `_ also provided valueable inspiration * Sickle logo: Free `Valentina typeface `_ by Pedro Arilla and `public domain image `_ diff --git a/doc/customizing.rst b/docs/customizing.rst similarity index 69% rename from doc/customizing.rst rename to docs/customizing.rst index a484aa8..3434842 100644 --- a/doc/customizing.rst +++ b/docs/customizing.rst @@ -1,15 +1,17 @@ -================================== -Harvesting Custom Metadata Formats -================================== +.. _customizing: -By default, Sickle's unpacking of the metadata into a Python -dictionary is taylored to work only with Dublin-Core-encoded metadata -payloads. Other formats most probably won't be unpacked correctly, +============================================= +Harvesting other Metadata Formats than OAI-DC +============================================= + +By default, Sickle's mapping of the record XML into Python +dictionaries is tailored to work only with Dublin-Core-encoded metadata +payloads. Other formats most probably won't be mapped correctly, especially if they are more hierarchically structured than Dublin Core. In case your want to harvest these more complex formats, you have to -write your own record model classes by subclassing the default +write your own record model class by subclassing the default implementation that unpacks the metadata XML:: from sickle.models import Record @@ -41,4 +43,4 @@ complete mapping to the :class:`~sickle.app.Sickle` object at instantiation:: # ... } - sickle = Sickle('http://...', class_mapping=my_mapping) \ No newline at end of file + sickle = Sickle('http://...', class_mapping=my_mapping) diff --git a/doc/development.rst b/docs/development.rst similarity index 50% rename from doc/development.rst rename to docs/development.rst index 4fddfcc..348c514 100644 --- a/doc/development.rst +++ b/docs/development.rst @@ -17,14 +17,3 @@ To run the tests, type: .. code-block:: text python setup.py nosetests - - -Since the tests should not rely on an external OAI server, static OAI responses -stored in files are used instead. To this end, a mock version of the -:meth:`sickle.app.Sickle.harvest` method is created that reads the stored -responses: - -.. autofunction:: sickle.tests.test_sickle.fake_harvest - - - diff --git a/doc/index.rst b/docs/index.rst similarity index 50% rename from doc/index.rst rename to docs/index.rst index 45bdb2c..f2bb790 100644 --- a/doc/index.rst +++ b/docs/index.rst @@ -1,46 +1,37 @@ -.. Sickle documentation master file, created by - sphinx-quickstart on Mon Feb 18 14:10:13 2013. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. +************************** +Sickle: OAI-PMH for Humans +************************** -======================================== -Sickle: An OAI Client Library for Python -======================================== - -Sickle is lightweight `OAI-PMH `_ -client library written in Python. It has been designed for conveniently retrieving -data from OAI interfaces the Pythonic way:: +Sickle is a lightweight `OAI-PMH `_ +client library written in Python. It has been designed for conveniently retrieving data from OAI interfaces the Pythonic way:: >>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2') >>> records = sickle.ListRecords(metadataPrefix='oai_dc') - -Most importantly, Sickle lets you iterate through OAI records without having to deal -with things like result batches or ``resumptionTokens`` yourself:: - >>> records.next() -Sickle maps the OAI records to Python objects:: +Sickle maps all important OAI items to Python objects:: - >>> record = records.next() >>> record.header
>>> record.header.identifier 'oai:eprints.rclis.org:4088' -The metadata payload is stored as a dictionary:: +Dublin-Core-encoded metadata payloads are easily accessible as dictionaries:: >>> record.metadata {'creator': ['Melloni, Marco'], 'date': ['2000'], 'description': [u'A web site for... + Important Links =============== * `Sickle @ PyPI `_ * `Sickle @ GitHub `_ + Table of Contents ================= @@ -49,6 +40,7 @@ Table of Contents installation tutorial + oaipmh api customizing development diff --git a/doc/installation.rst b/docs/installation.rst similarity index 100% rename from doc/installation.rst rename to docs/installation.rst diff --git a/docs/oaipmh.rst b/docs/oaipmh.rst new file mode 100644 index 0000000..b8f22d6 --- /dev/null +++ b/docs/oaipmh.rst @@ -0,0 +1,76 @@ +============== +OAI-PMH Primer +============== + +This section gives a basic overview of the +`Open Archives Protocol for Metadata Harvesting (OAI-PMH) `_. +For more detailed information, please refer to the protocol specification. + +Glossary of Important OAI-PMH Concepts +-------------------------------------- + +**Repository** + A *repository* is a server-side application that exposes metadata via OAI-PMH. +**Harvester** + OAI-PMH client applications like Sickle are called *harvesters*. +**record** + A *record* is the XML-encoded container for the metadata of a single publication item. + It consists of a *header* and a *metadata* section. +**header** + The record *header* contains a unique identifier and a datestamp. +**metadata** + The record *metadata* contains the publication metadata in a defined + metadata format. +**set** + A structure for grouping records for selective harvesting. +**harvesting** + The process of requesting records from the repository by the harvester. + +OAI Verbs +--------- + +OAI-PMH features six main API methods (so-called "OAI verbs") that can be issued by +harvesters. Some verbs can be combined with further arguments: + +``Identify`` + Returns information about the repository. Arguments: None. +``GetRecord`` + Returns a single record. Arguments: + + * ``identifier`` (the unique identifier of the record, *required*) + * ``metadataPrefix`` (the prefix identifying the metadata format, *required*) +``ListRecords`` + Returns the records in the repository in batches (possibly filtered by a timestamp or a ``set``). + Arguments: + + * ``metadataPrefix`` (the prefix identifying the metadata format, *required*) + * ``from`` (the earliest timestamp of the records, *optional*) + * ``until`` (the latest timestamp of the records, *optional*) + * ``set`` (a set for selective harvesting, *optional*) + * ``resumptionToken`` (used for getting the next result batch if the number of records returned by the previous request exceeds the repository's maximum batch size, *exclusive*) +``ListIdentifiers`` + *Like* ``ListRecords`` *but returns only the record headers.* +``ListSets`` + Returns the list of sets supported by this repository. + Arguments: None +``ListMetadataFormats`` + Returns the list of metadata formats supported by this repository. + Arguments: None + + +Metadata Formats +---------------- + +OAI interfaces may expose metadata records in multiple metadata formats. These +formats are identified by so-called "metadata prefixes". For instance, the +prefix ``oai_dc`` refers to the OAI-DC format, which by definition has to be +exposed by every valid OAI interface. OAI-DC is based on the 15 metadata +elements specified in the +`Dublin Core Metadata Element Set `_. + + +.. note:: + + Sickle only supports the OAI-DC format out of the box. See the section + on :ref:`customizing ` for information on how to extend + Sickle for retrieving metadata in other formats. diff --git a/doc/sickle_logo.pdf b/docs/sickle_logo.pdf similarity index 100% rename from doc/sickle_logo.pdf rename to docs/sickle_logo.pdf diff --git a/doc/sickle_logo.png b/docs/sickle_logo.png similarity index 100% rename from doc/sickle_logo.png rename to docs/sickle_logo.png diff --git a/docs/tutorial.rst b/docs/tutorial.rst new file mode 100644 index 0000000..cd91342 --- /dev/null +++ b/docs/tutorial.rst @@ -0,0 +1,133 @@ +======== +Tutorial +======== + +This section gives a brief overview on how to use Sickle for querying OAI +interfaces. + + +Initialize an OAI Interface +=========================== + +To make a connection to an OAI interface, you need to import the Sickle object:: + + >>> from sickle import Sickle + +Next, you can initialize the connection by passing it the basic URL. In our +example, we use the OAI interface of the ELIS repository:: + + >>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2') + + +Issuing Requests +================ + +Sickle provides methods for each of the six OAI verbs (ListRecords, GetRecord, +Idenitfy, ListSets, ListMetadataFormats, ListIdentifiers). Start with a +ListRecords request:: + + >>> records = sickle.ListRecords(metadataPrefix='oai_dc') + +Note that all keyword arguments you provide to this function are passed to the OAI interface +as HTTP parameters. Therefore the example request would send the parameters +``verb=ListRecords&metadataPrefix=oai_dc``. +We can add additional parameters, like, for example, an OAI ``set``:: + + >>> records = sickle.ListRecords(metadataPrefix='oai_dc', set='driver') + +Consecutive Harvesting +====================== + +Since most OAI verbs yield more than one element, their respective Sickle methods +return iterator objects which can be used to iterate over the records of a +repository:: + + >>> records = sickle.ListRecords(metadataPrefix='oai_dc') + >>> records.next() + + +Note that this works with all verbs that return more than one element. +These are: :meth:`~sickle.app.Sickle.ListRecords`, :meth:`~sickle.app.Sickle.ListIdentifiers`, +:meth:`~sickle.app.Sickle.ListSets`, and :meth:`~sickle.app.Sickle.ListMetadataFormats`. + +The following example shows how to iterate over the headers returned by ``ListIdentifiers``:: + + >>> headers = sickle.ListIdentifiers(metadataPrefix='oai_dc') + >>> headers.next() +
+ +Iterating over the the sets returned by ``ListSets`` works similarly:: + + >>> sets = sickle.ListSets() + >>> sets.next() + + + +Using the ``from`` Parameter +============================ + +If you need to perform selective harvesting by date using the ``from`` parameter, you +may face the problem that ``from`` is a reserved word in Python:: + + >>> records = sickle.ListRecords(metadataPrefix='oai_dc', from="2012-12-12") + File "", line 1 + records = sickle.ListRecords(metadataPrefix='oai_dc', from="2012-12-12") + ^ + SyntaxError: invalid syntax + +Fortunately, you can circumvent this problem by using a dictionary together with +the ``**`` operator:: + + >>> records = sickle.ListRecords( + ... **{'metadataPrefix': 'oai_dc', + ... 'from': '2012-12-12' + ... }) + + +Getting a Single Record +======================= + +OAI-PMH allows you to get a single record by using the ``GetRecord`` verb:: + + >>> sickle.GetRecord(identifier='oai:eprints.rclis.org:4088', + ... metadataPrefix='oai_dc') + + + +Harvesting OAI Items vs. OAI Responses +====================================== + +Sickle supports two harvesting modes that differ in the type of the returned +objects. The default mode returns OAI-specific *items* (records, headers etc.) +encoded as Python objects as seen earlier. If you want to save the whole XML +response returned by the server, you have to pass the +:class:`sickle.iterator.OAIResponseIterator` during the instantiation of the +:class:`~sickle.app.Sickle` object:: + + >>> sickle = Sickle('http://elis.da.ulcc.ac.uk/cgi/oai2', iterator=OAIResponseIterator) + >>> responses = Sickle.ListRecords(metadataPrefix='oai_dc') + >>> responses.next() + + +You could then save the returned responses to disk:: + + >>> with open('response.xml', 'w') as fp: + ... fp.write(responses.next().raw.encode('utf8')) + + + +Ignoring Deleted Records +======================== + +The :meth:`~sickle.app.Sickle.ListRecords` and :meth:`~sickle.app.Sickle.ListIdentifiers` +methods accept an optional parameter :attr:`ignore_deleted`. If set to :obj:`True`, +the returned :class:`~sickle.iterator.OAIItemIterator` will skip deleted records/headers:: + + >>> records = sickle.ListRecords(metadataPrefix='oai_dc', ignore_deleted=True) + +.. note:: + + This works only using the :class:`sickle.iterator.OAIItemIterator`. If you + use the :class:`sickle.iterator.OAIResponseIterator`, the resulting OAI + responses will still contain the deleted records. + diff --git a/setup.py b/setup.py index 755a73d..2539c34 100644 --- a/setup.py +++ b/setup.py @@ -1,25 +1,24 @@ # coding: utf-8 -from setuptools import setup, find_packages - +from setuptools import setup setup( name='Sickle', - version='0.3', + version='0.4', url='http://github.com/mloesch/sickle', license='BSD', author='Mathias Loesch', - author_email='mathias.loesch@uni-bielefeld.de', description='A lightweight OAI client library for Python', long_description=open('README.rst').read() + '\n\n' + open('CHANGES.rst').read(), packages=['sickle'], platforms='any', - setup_requires=['nose>=1.0'], + setup_requires=[ + 'nose>=1.0', + 'mock>=1.0.1'], install_requires=[ 'requests>=1.1.0', - 'lxml', - ], + 'lxml>=3.2.3'], classifiers=[ 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: BSD License', @@ -27,6 +26,7 @@ 'Programming Language :: Python :: 2.7', 'Topic :: Text Processing :: Markup :: XML', ], + test_suite = "sickle.tests", keywords="oai oai-pmh", zip_safe=False, ) diff --git a/sickle/__init__.py b/sickle/__init__.py index f188580..a5acb72 100644 --- a/sickle/__init__.py +++ b/sickle/__init__.py @@ -3,12 +3,12 @@ sickle ~~~~~~ - An OAI-PHM client. + OAI-PMH for Humans. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ -__version__ = '0.3' +__version__ = '0.4' - -from .app import Sickle, OAIResponse +from .app import Sickle +from sickle.response import OAIResponse diff --git a/sickle/app.py b/sickle/app.py index a067cc3..353d001 100644 --- a/sickle/app.py +++ b/sickle/app.py @@ -1,32 +1,30 @@ # coding: utf-8 """ - Sickle - ~~~~~~ + sickle.app + ~~~~~~~~~~ An OAI-PMH client. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ - +import inspect import time -import requests -from lxml import etree +import logging -from .models import Set, Record, Header, MetadataFormat, Identify -import oaiexceptions +import requests -import logging +from .models import (Set, Record, Header, MetadataFormat, + Identify) +from sickle.response import OAIResponse +from sickle.iterator import BaseOAIIterator, OAIItemIterator -# Logging logger = logging.getLogger(__name__) -logger.setLevel(logging.DEBUG) OAI_NAMESPACE = '{http://www.openarchives.org/OAI/%s/}' -XMLParser = etree.XMLParser(remove_blank_text=True, recover=True) # Map OAI verbs to class representations -DEFAULT_CLASS_MAPPING = { +DEFAULT_CLASS_MAP = { 'GetRecord': Record, 'ListRecords': Record, 'ListIdentifiers': Header, @@ -35,16 +33,6 @@ 'Identify': Identify, } -# Map OAI verbs to the XML elements -VERBS_ELEMENTS = { - 'GetRecord': 'record', - 'ListRecords': 'record', - 'ListIdentifiers': 'header', - 'ListSets': 'set', - 'ListMetadataFormats': 'metadataFormat', - 'Identify': 'Identify', -} - class Sickle(object): """Client for harvesting OAI interfaces. @@ -62,6 +50,8 @@ class Sickle(object): :type http_method: str :param protocol_version: The OAI protocol version. :type protocol_version: str + :param iterator: The type of the returned iterator + (default: :class:`sickle.iterator.OAIItemIterator`) :param max_retries: Number of retries if HTTP request fails. :type max_retries: int :param timeout: Timeout for HTTP requests. @@ -75,8 +65,11 @@ class Sickle(object): for accessing protected OAI interfaces. :type auth: tuple """ + def __init__(self, endpoint, http_method='GET', protocol_version='2.0', - max_retries=5, timeout=None, class_mapping=None, auth=None): + iterator=OAIItemIterator, max_retries=5, timeout=None, + class_mapping=None, + auth=None): self.endpoint = endpoint if http_method not in ['GET', 'POST']: raise ValueError("Invalid HTTP method: %s! Must be GET or POST.") @@ -85,35 +78,39 @@ def __init__(self, endpoint, http_method='GET', protocol_version='2.0', "Invalid protocol version: %s! Must be 1.0 or 2.0.") self.http_method = http_method self.protocol_version = protocol_version + if inspect.isclass(iterator) and issubclass(iterator, BaseOAIIterator): + self.iterator = iterator + else: + raise TypeError( + "Argument 'iterator' must be subclass of %s" % BaseOAIIterator.__name__) self.max_retries = max_retries self.timeout = timeout self.oai_namespace = OAI_NAMESPACE % self.protocol_version - if class_mapping is None: - self.class_mapping = DEFAULT_CLASS_MAPPING - else: - self.class_mapping = class_mapping + self.class_mapping = class_mapping or DEFAULT_CLASS_MAP self.auth = auth - self.last_response = None - def harvest(self, **kwargs): + def harvest(self, **kwargs): # pragma: no cover """Make HTTP requests to the OAI server. - :param kwargs: The OAI HTTP arguments. - :rtype: :class:`sickle.app.OAIResponse` + :param kwargs: OAI HTTP parameters. + :rtype: :class:`sickle.OAIResponse` """ for _ in xrange(self.max_retries): if self.http_method == 'GET': http_response = requests.get(self.endpoint, params=kwargs, - timeout=self.timeout, auth=self.auth) + timeout=self.timeout, + auth=self.auth) else: http_response = requests.post(self.endpoint, data=kwargs, - timeout=self.timeout, auth=self.auth) + timeout=self.timeout, + auth=self.auth) if http_response.status_code == 503: try: retry_after = int(http_response.headers.get('retry-after')) except TypeError: retry_after = 20 - print "Waiting %d seconds ... " % retry_after + logger.info( + "HTTP 503! Retrying after %d seconds..." % retry_after) time.sleep(retry_after) else: http_response.raise_for_status() @@ -123,37 +120,34 @@ def ListRecords(self, ignore_deleted=False, **kwargs): """Issue a ListRecords request. :param ignore_deleted: If set to :obj:`True`, the resulting - :class:`sickle.app.OAIIterator` will skip records - flagged as deleted. - :rtype: :class:`sickle.app.OAIIterator` + iterator will skip records flagged as deleted. + :rtype: :class:`sickle.iterator.BaseOAIIterator` """ params = kwargs params.update({'verb': 'ListRecords'}) - self.last_response = self.harvest(**params) - return OAIIterator(self.last_response, self, ignore_deleted=ignore_deleted) + # noinspection PyCallingNonCallable + return self.iterator(self, params, ignore_deleted=ignore_deleted) def ListIdentifiers(self, ignore_deleted=False, **kwargs): """Issue a ListIdentifiers request. :param ignore_deleted: If set to :obj:`True`, the resulting - :class:`sickle.app.OAIIterator` will skip records - flagged as deleted. - :rtype: :class:`sickle.app.OAIIterator` + iterator will skip records flagged as deleted. + :rtype: :class:`sickle.iterator.BaseOAIIterator` """ params = kwargs params.update({'verb': 'ListIdentifiers'}) - self.last_response = self.harvest(**params) - return OAIIterator(self.last_response, self, ignore_deleted=ignore_deleted) + return self.iterator(self, + params, ignore_deleted=ignore_deleted) def ListSets(self, **kwargs): """Issue a ListSets request. - :rtype: :class:`sickle.app.OAIIterator` + :rtype: :class:`sickle.iterator.BaseOAIIterator` """ params = kwargs params.update({'verb': 'ListSets'}) - self.last_response = self.harvest(**params) - return OAIIterator(self.last_response, self) + return self.iterator(self, params) def Identify(self): """Issue an Identify request. @@ -161,139 +155,20 @@ def Identify(self): :rtype: :class:`sickle.models.Identify` """ params = {'verb': 'Identify'} - self.last_response = self.harvest(**params) - return Identify(self.last_response) + return Identify(self.harvest(**params)) def GetRecord(self, **kwargs): - """Issue a ListSets request. - - :rtype: :class:`sickle.models.Record` - """ + """Issue a ListSets request.""" params = kwargs params.update({'verb': 'GetRecord'}) - self.last_response = self.harvest(**params) - # GetRecord is treated as a special case of ListRecords: - # by creating an OAIIterator and returning the first and - # only record. - return OAIIterator(self.last_response, self).next() + record = self.iterator(self, params).next() + return record def ListMetadataFormats(self, **kwargs): """Issue a ListMetadataFormats request. - :rtype: :class:`sickle.app.OAIIterator` + :rtype: :class:`sickle.iterator.BaseOAIIterator` """ params = kwargs params.update({'verb': 'ListMetadataFormats'}) - self.last_response = self.harvest(**params) - return OAIIterator(self.last_response, self) - - -class OAIResponse(object): - """A response from an OAI server. - - Provides access to the returned data on different abstraction - levels. - - :param response: The original HTTP response. - :param params: The OAI parameters for the request. - :type params: dict - """ - def __init__(self, http_response, params): - self.params = params - self.http_response = http_response - - @property - def raw(self): - """The server's response as unicode.""" - return self.http_response.text - - @property - def xml(self): - """The server's response as parsed XML.""" - return etree.XML(self.http_response.text.encode("utf8"), parser=XMLParser) - - def __repr__(self): - return '' % self.params.get('verb') - - -class OAIIterator(object): - """Iterator over OAI records/identifiers/sets transparently aggregated via - OAI-PMH. - - Can be used to conveniently iterate through the records of a repository. - - :param oai_response: The first OAI response. - :type oai_response: :class:`sickle.app.OAIResponse` - :param sickle: The Sickle object that issued the first request. - :type sickle: :class:`sickle.app.Sickle` - :param ignore_deleted: Flag for whether to ignore deleted records. - :type ignore_deleted: bool - """ - def __init__(self, oai_response, sickle, ignore_deleted=False): - self.oai_response = oai_response - self.sickle = sickle - self.verb = self.oai_response.params.get("verb") - # Determine on what element to iterate (records, headers, or sets) - self.element = VERBS_ELEMENTS[self.verb] - # Get the reflection class for the elements returned by this verb - self.mapper = self.sickle.class_mapping[self.verb] - error = self.oai_response.xml.find( - './/' + self.sickle.oai_namespace + 'error') - if error is not None: - code = error.attrib.get('code', 'UNKNOWN') - description = error.text or '' - try: - raise getattr( - oaiexceptions, code[0].upper() + code[1:])(description) - except AttributeError: - raise oaiexceptions.OAIError(description) - - self._items = self.oai_response.xml.iterfind( - './/' + self.sickle.oai_namespace + self.element) - self.resumption_token = self._get_resumption_token() - self.ignore_deleted = ignore_deleted - - def __iter__(self): - return self - - def __repr__(self): - return '' % self.verb - - def _get_resumption_token(self): - """Extract and store the resumptionToken from the last response.""" - resumption_token = self.oai_response.xml.find( - './/' + self.sickle.oai_namespace + 'resumptionToken') - if resumption_token is None: - return None - else: - return resumption_token.text - - def _next_response(self): - """Get the next response from the OAI server.""" - self.oai_response = self.sickle.harvest(verb=self.verb, - resumptionToken=self.resumption_token) - logger.debug('Getting next response (resumptionToken: %s' % - self.resumption_token) - self.resumption_token = self._get_resumption_token() - self._items = self.oai_response.xml.iterfind( - './/' + self.sickle.oai_namespace + self.element) - - def next(self): - """Return the next record/header/set.""" - try: - while True: - mapped = self.mapper(self._items.next()) - if self.ignore_deleted: - if mapped.deleted: - continue - return mapped - except StopIteration: - if self.resumption_token is None: - raise StopIteration - else: - self._next_response() - while True: - mapped = self.mapper(self._items.next()) - if self.ignore_deleted and mapped.deleted: - continue - return mapped + return self.iterator(self, params) diff --git a/sickle/iterator.py b/sickle/iterator.py new file mode 100644 index 0000000..054dcc4 --- /dev/null +++ b/sickle/iterator.py @@ -0,0 +1,150 @@ +# coding: utf-8 +""" + sickle.iterator + ~~~~~~~~~~~~~~~ + + Collects classes for iterating over OAI responses + + :copyright: Copyright 2015 Mathias Loesch +""" + +from sickle import oaiexceptions +from sickle.models import ResumptionToken + + +# Map OAI verbs to the XML elements +VERBS_ELEMENTS = { + 'GetRecord': 'record', + 'ListRecords': 'record', + 'ListIdentifiers': 'header', + 'ListSets': 'set', + 'ListMetadataFormats': 'metadataFormat', + 'Identify': 'Identify', +} + + +class BaseOAIIterator(object): + """Iterator over OAI records/identifiers/sets transparently aggregated via + OAI-PMH. + + Can be used to conveniently iterate through the records of a repository. + + :param sickle: The Sickle object that issued the first request. + :type sickle: :class:`sickle.app.Sickle` + :param params: The OAI arguments. + :type params: dict + :param ignore_deleted: Flag for whether to ignore deleted records. + :type ignore_deleted: bool + """ + + def __init__(self, sickle, params, ignore_deleted=False): + self.sickle = sickle + self.params = params + self.ignore_deleted = ignore_deleted + self.verb = self.params.get('verb') + self.resumption_token = None + self._next_response() + + def __iter__(self): + return self + + def __repr__(self): + return '<%s %s>' % (self.__class__.__name__, self.verb) + + def _get_resumption_token(self): + """Extract and store the resumptionToken from the last response.""" + resumption_token_element = self.oai_response.xml.find( + './/' + self.sickle.oai_namespace + 'resumptionToken') + if resumption_token_element is None: + return None + token = resumption_token_element.text + cursor = resumption_token_element.attrib.get('cursor', None) + complete_list_size = resumption_token_element.attrib.get( + 'completeListSize', None) + expiration_date = resumption_token_element.attrib.get( + 'expirationDate', None) + resumption_token = ResumptionToken( + token=token, cursor=cursor, + complete_list_size=complete_list_size, + expiration_date=expiration_date + ) + return resumption_token + + def _next_response(self): + """Get the next response from the OAI server.""" + params = self.params + if self.resumption_token: + params = { + 'resumptionToken': self.resumption_token.token, + 'verb': self.verb + } + self.oai_response = self.sickle.harvest(**params) + error = self.oai_response.xml.find( + './/' + self.sickle.oai_namespace + 'error') + if error is not None: + code = error.attrib.get('code', 'UNKNOWN') + description = error.text or '' + try: + raise getattr( + oaiexceptions, code[0].upper() + code[1:])(description) + except AttributeError: + raise oaiexceptions.OAIError(description) + self.resumption_token = self._get_resumption_token() + + def next(self): + """Must be implemented by subclasses.""" + raise NotImplementedError + + +class OAIResponseIterator(BaseOAIIterator): + """Iterator over OAI responses.""" + + def next(self): + """Return the next response.""" + while True: + if self.oai_response: + response = self.oai_response + self.oai_response = None + return response + elif self.resumption_token: + self._next_response() + else: + raise StopIteration + + +class OAIItemIterator(BaseOAIIterator): + """Iterator over OAI records/identifiers/sets transparently aggregated via + OAI-PMH. + + Can be used to conveniently iterate through the records of a repository. + + :param sickle: The Sickle object that issued the first request. + :type sickle: :class:`sickle.app.Sickle` + :param params: The OAI arguments. + :type params: dict + :param ignore_deleted: Flag for whether to ignore deleted records. + :type ignore_deleted: bool + """ + + def __init__(self, sickle, params, ignore_deleted=False): + self.mapper = sickle.class_mapping[params.get('verb')] + self.element = VERBS_ELEMENTS[params.get('verb')] + super(OAIItemIterator, self).__init__(sickle, params, ignore_deleted) + + def _next_response(self): + super(OAIItemIterator, self)._next_response() + self._items = self.oai_response.xml.iterfind( + './/' + self.sickle.oai_namespace + self.element) + + def next(self): + """Return the next record/header/set.""" + while True: + for item in self._items: + mapped = self.mapper(item) + if self.ignore_deleted and mapped.deleted: + continue + return mapped + if self.resumption_token: + self._next_response() + else: + raise StopIteration diff --git a/sickle/models.py b/sickle/models.py index 0109e77..922ae8b 100644 --- a/sickle/models.py +++ b/sickle/models.py @@ -1,17 +1,32 @@ # coding: utf-8 """ - models - ~~~~~~ + sickle.models + ~~~~~~~~~~~~~ Collects classes for OAI-specific entities. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ from lxml import etree + from .utils import get_namespace, xml_to_dict +class ResumptionToken(object): + """Represents a resumption token.""" + + def __init__(self, token='', cursor='', complete_list_size='', + expiration_date=''): + self.token = token + self.cursor = cursor + self.complete_list_size = complete_list_size + self.expiration_date = expiration_date + + def __repr__(self): + return '' % self.token + + class OAIItem(object): """A generic OAI item. @@ -19,6 +34,7 @@ class OAIItem(object): :param strip_ns: Flag for whether to remove the namespaces from the element names in the dictionary representation. """ + def __init__(self, xml, strip_ns=True): super(OAIItem, self).__init__() @@ -43,11 +59,12 @@ class Identify(OAIItem): """Represents an Identify container. This object differs from the other entities in that is has to be created - from a :class:`sickle.app.OAIResponse` instead of an XML element. + from a :class:`sickle.response.OAIResponse` instead of an XML element. :param identify_response: The response for an Identify request. - :type identify_response: :class:`sickle.app.OAIResponse` + :type identify_response: :class:`sickle.OAIResponse` """ + def __init__(self, identify_response): super(Identify, self).__init__(identify_response.xml, strip_ns=True) self.xml = self.xml.find('.//' + self._oai_namespace + 'Identify') @@ -66,7 +83,9 @@ class Header(OAIItem): """Represents an OAI Header. :param header_element: The XML element 'header'. + :type header_element: :class:`lxml.etree._Element """ + def __init__(self, header_element): super(Header, self).__init__(header_element, strip_ns=True) self.deleted = self.xml.attrib.get('status') == 'deleted' @@ -95,9 +114,11 @@ class Record(OAIItem): """Represents an OAI record. :param record_element: The XML element 'record'. + :type record_element: :class:`lxml.etree._Element` :param strip_ns: Flag for whether to remove the namespaces from the element names. """ + def __init__(self, record_element, strip_ns=True): super(Record, self).__init__(record_element, strip_ns=strip_ns) self.header = Header(self.xml.find( @@ -126,7 +147,9 @@ class Set(OAIItem): """Represents an OAI set. :param set_element: The XML element 'set'. + :type set_element: :class:`lxml.etree._Element """ + def __init__(self, set_element): super(Set, self).__init__(set_element, strip_ns=True) self._set_dict = xml_to_dict(self.xml, strip_ns=True) @@ -134,7 +157,7 @@ def __init__(self, set_element): setattr(self, k.replace('-', '_'), v[0]) def __repr__(self): - return u''.encode("utf8") % self.setName + return u''.encode('utf8') % self.setName def __iter__(self): return self._set_dict.iteritems() @@ -144,7 +167,9 @@ class MetadataFormat(OAIItem): """Represents an OAI MetadataFormat. :param mdf_element: The XML element 'metadataFormat'. + :type mdf_element: :class:`lxml.etree._Element """ + def __init__(self, mdf_element): super(MetadataFormat, self).__init__(mdf_element, strip_ns=True) #: The prefix of this format. @@ -153,7 +178,7 @@ def __init__(self, mdf_element): setattr(self, k.replace('-', '_'), v[0]) def __repr__(self): - return u''.encode("utf8") % self.metadataPrefix + return u''.encode('utf8') % self.metadataPrefix def __iter__(self): return self._mdf_dict.iteritems() diff --git a/sickle/oaiexceptions.py b/sickle/oaiexceptions.py index 05ddd7b..2a42a13 100644 --- a/sickle/oaiexceptions.py +++ b/sickle/oaiexceptions.py @@ -1,45 +1,78 @@ # coding: utf-8 """ - exceptions - ~~~~~~~~~~ + sickle.oaiexceptions + ~~~~~~~~~~~~~~~~~~~~ OAI errors. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ class BadArgument(Exception): + """ + The request includes illegal arguments, is missing required arguments, + includes a repeated argument, or values for arguments have an illegal + syntax. + """ pass class BadVerb(Exception): + """ + Value of the verb argument is not a legal OAI-PMH verb, the verb argument + is missing, or the verb argument is repeated. + """ pass class BadResumptionToken(Exception): + """ + The value of the resumptionToken argument is invalid or expired. + """ pass class CannotDisseminateFormat(Exception): + """ + The metadata format identified by the value given for the metadataPrefix + argument is not supported by the item or by the repository. + """ pass class IdDoesNotExist(Exception): + """ + The value of the identifier argument is unknown or illegal in this + repository. + """ pass class NoSetHierarchy(Exception): + """ + The repository does not support sets. + """ pass class NoMetadataFormat(Exception): + """ + There are no metadata formats available for the specified item. + """ pass class NoRecordsMatch(Exception): + """ + The combination of the values of the from, until, set and metadataPrefix + arguments results in an empty list. + """ pass class OAIError(Exception): + """ + Context specific OAI errors not covered by the classes above. + """ pass diff --git a/sickle/response.py b/sickle/response.py new file mode 100644 index 0000000..211d1ac --- /dev/null +++ b/sickle/response.py @@ -0,0 +1,41 @@ +# coding: utf-8 +""" + sickle.response + ~~~~~~~~~~~~~~~ + + :copyright: Copyright 2015 Mathias Loesch +""" + +from lxml import etree + +XMLParser = etree.XMLParser(remove_blank_text=True, recover=True) + + +class OAIResponse(object): + """A response from an OAI server. + + Provides access to the returned data on different abstraction + levels. + + :param http_response: The original HTTP response. + :param params: The OAI parameters for the request. + :type params: dict + """ + + def __init__(self, http_response, params): + self.params = params + self.http_response = http_response + + @property + def raw(self): + """The server's response as unicode.""" + return self.http_response.text + + @property + def xml(self): + """The server's response as parsed XML.""" + return etree.XML(self.http_response.text.encode("utf8"), + parser=XMLParser) + + def __repr__(self): + return '' % self.params.get('verb') diff --git a/sickle/tests/__init__.py b/sickle/tests/__init__.py index ec1b0e9..26c3954 100644 --- a/sickle/tests/__init__.py +++ b/sickle/tests/__init__.py @@ -5,5 +5,5 @@ Tests for sickle. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ diff --git a/sickle/tests/xml/GetRecord.xml b/sickle/tests/sample_data/GetRecord.xml similarity index 68% rename from sickle/tests/xml/GetRecord.xml rename to sickle/tests/sample_data/GetRecord.xml index b7ac797..1f8adb2 100644 --- a/sickle/tests/xml/GetRecord.xml +++ b/sickle/tests/sample_data/GetRecord.xml @@ -1,7 +1,10 @@ - + 2013-02-27T10:07:54Z - http://test.example.com/oai + + http://test.example.com/oai +
@@ -9,7 +12,10 @@ 2011-09-05T12:51:52Z
- + Sample Title http://test.example.com/publication/1996652 John Doe diff --git a/sickle/tests/sample_data/Identify.xml b/sickle/tests/sample_data/Identify.xml new file mode 100644 index 0000000..6705319 --- /dev/null +++ b/sickle/tests/sample_data/Identify.xml @@ -0,0 +1,25 @@ + + + 2013-02-27T10:01:15Z + http://test.example.com/oai + + A Test Repository + http://test.example.com/oai + 2.0 + john.doe@example.com + 1970-01-01T00:00:00Z + persistent + YYYY-MM-DD + + + oai + test.example.com + : + oai:test.example.com:2342 + + + + \ No newline at end of file diff --git a/sickle/tests/sample_data/ListIdentifiers.xml b/sickle/tests/sample_data/ListIdentifiers.xml new file mode 100644 index 0000000..7fe5ceb --- /dev/null +++ b/sickle/tests/sample_data/ListIdentifiers.xml @@ -0,0 +1,17 @@ + + + 2013-02-27T09:57:16Z + http://test.example.com/oai + +
+ oai:test.example.com::1585310 + 2011-07-18T16:31:00Z +
+
+ oai:test.example.com::1585576 + 2011-08-10T16:22:00Z +
+ ListIdentifiers2.xml +
+
\ No newline at end of file diff --git a/sickle/tests/sample_data/ListIdentifiers2.xml b/sickle/tests/sample_data/ListIdentifiers2.xml new file mode 100644 index 0000000..85d2e7f --- /dev/null +++ b/sickle/tests/sample_data/ListIdentifiers2.xml @@ -0,0 +1,16 @@ + + + 2013-02-27T09:57:16Z + http://test.example.com/oai + +
+ oai:test.example.com::1585310 + 2011-07-18T16:31:00Z +
+
+ oai:test.example.com::1585576 + 2011-08-10T16:22:00Z +
+
+
\ No newline at end of file diff --git a/sickle/tests/xml/ListMetadataFormats.xml b/sickle/tests/sample_data/ListMetadataFormats.xml similarity index 90% rename from sickle/tests/xml/ListMetadataFormats.xml rename to sickle/tests/sample_data/ListMetadataFormats.xml index 4b5c7b1..2067621 100644 --- a/sickle/tests/xml/ListMetadataFormats.xml +++ b/sickle/tests/sample_data/ListMetadataFormats.xml @@ -1,5 +1,6 @@ - + 2013-02-27T09:55:11Z http://test.example.com/oai diff --git a/sickle/tests/sample_data/ListRecords.xml b/sickle/tests/sample_data/ListRecords.xml new file mode 100644 index 0000000..25eea70 --- /dev/null +++ b/sickle/tests/sample_data/ListRecords.xml @@ -0,0 +1,51 @@ + + + 2013-02-27T09:10:56Z + http://test.example.com/oai + + +
+ oai:test.example.com:1585310 + 2011-07-18T16:31:00Z +
+
+ +
+ oai:test.example.com:1585322 + 2011-01-10T10:19:23Z +
+ + + Sample Title + http://test.example.com/publication/1585322 + John Doe + John Doe + John Doe + John Doe + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + eiusmod + tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse + cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non + proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + + eng + Sample Source(?s) + + Sample Publisher + + 2010 + info:eu-repo/semantics/article + doc-type:article + text + + +
+ ListRecords2.xml +
+
\ No newline at end of file diff --git a/sickle/tests/sample_data/ListRecords2.xml b/sickle/tests/sample_data/ListRecords2.xml new file mode 100644 index 0000000..a68d54a --- /dev/null +++ b/sickle/tests/sample_data/ListRecords2.xml @@ -0,0 +1,52 @@ + + + 2013-02-27T09:10:56Z + http://test.example.com/oai + + +
+ oai:test.example.com:1585310 + 2011-07-18T16:31:00Z +
+
+ +
+ oai:test.example.com:1585322 + 2011-01-10T10:19:23Z +
+ + + Sample Title + http://test.example.com/publication/1585322 + John Doe + John Doe + John Doe + John Doe + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + eiusmod + tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse + cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non + proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + + eng + Sample Source(?s) + + Sample Publisher + + 2010 + info:eu-repo/semantics/article + doc-type:article + text + + +
+ + ListRecords3.xml +
+
\ No newline at end of file diff --git a/sickle/tests/sample_data/ListRecords3.xml b/sickle/tests/sample_data/ListRecords3.xml new file mode 100644 index 0000000..7d036c5 --- /dev/null +++ b/sickle/tests/sample_data/ListRecords3.xml @@ -0,0 +1,51 @@ + + + 2013-02-27T09:10:56Z + http://test.example.com/oai + + +
+ oai:test.example.com:1585310 + 2011-07-18T16:31:00Z +
+
+ +
+ oai:test.example.com:1585322 + 2011-01-10T10:19:23Z +
+ + + Sample Title + http://test.example.com/publication/1585322 + John Doe + John Doe + John Doe + John Doe + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + eiusmod + tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse + cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non + proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + + eng + Sample Source(?s) + + Sample Publisher + + 2010 + info:eu-repo/semantics/article + doc-type:article + text + + +
+ ListRecords4.xml +
+
\ No newline at end of file diff --git a/sickle/tests/sample_data/ListRecords4.xml b/sickle/tests/sample_data/ListRecords4.xml new file mode 100644 index 0000000..d178ed3 --- /dev/null +++ b/sickle/tests/sample_data/ListRecords4.xml @@ -0,0 +1,50 @@ + + + 2013-02-27T09:10:56Z + http://test.example.com/oai + + +
+ oai:test.example.com:1585310 + 2011-07-18T16:31:00Z +
+
+ +
+ oai:test.example.com:1585322 + 2011-01-10T10:19:23Z +
+ + + Sample Title + http://test.example.com/publication/1585322 + John Doe + John Doe + John Doe + John Doe + Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do + eiusmod + tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, + quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo + consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse + cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non + proident, sunt in culpa qui officia deserunt mollit anim id est laborum. + + eng + Sample Source(?s) + + Sample Publisher + + 2010 + info:eu-repo/semantics/article + doc-type:article + text + + +
+
+
\ No newline at end of file diff --git a/sickle/tests/sample_data/ListRecordsBroken.xml b/sickle/tests/sample_data/ListRecordsBroken.xml new file mode 100644 index 0000000..2f66fd3 --- /dev/null +++ b/sickle/tests/sample_data/ListRecordsBroken.xml @@ -0,0 +1 @@ +broken xml \ No newline at end of file diff --git a/sickle/tests/sample_data/ListSets.xml b/sickle/tests/sample_data/ListSets.xml new file mode 100644 index 0000000..42137a0 --- /dev/null +++ b/sickle/tests/sample_data/ListSets.xml @@ -0,0 +1,532 @@ + + + 2013-02-27T09:52:00Z + http://test.example.com/oai + + + bi + All BI publications (already published) + + + bookChapterFtxt + Book Chapter with fulltext + + + bookEditor + Book: Editor + + + bookEditorFtxt + Book: Editor with fulltext + + + bookFtxt + Book + + + caseStudy + Case Study + + + caseStudyFtxt + Case Study with fulltext + + + conferenceAbstracFtxt + Conference Abstract with fulltext + + + conferenceAbstract + Conference Abstract + + + conferenceEditor + Conference: Editor + + + conferenceEditorFtxt + Conference: Editor with fulltext + + + conferenceFtxt + Conference Proceeding/Paper with fulltext + + + ddc:000 + Generalities, knowledge, the book + + + ddc:004 + Data processing, computer science, computer systems + + + ddc:010 + Bibliographies + + + ddc:020 + Library and information sciences + + + ddc:030 + Encyclopedias and books of facts + + + ddc:050 + Magazines, journals and serials + + + ddc:060 + Associations, organizations, and museum science + + + ddc:070 + News media, journalism and publishing + + + ddc:080 + General collections + + + ddc:090 + Manuscripts and rare books + + + ddc:100 + Philosophy + + + ddc:130 + Parapsychology and occultism + + + ddc:150 + Psychology + + + ddc:200 + Religion, Philosophy and theory of religion + + + ddc:220 + Bible + + + ddc:230 + Christianity and Christian theology + + + ddc:290 + Comparative religion and other religions + + + ddc:300 + Social sciences, sociology and anthropology + + + ddc:310 + Statistics + + + ddc:320 + Political science + + + ddc:330 + Economics + + + ddc:340 + Law + + + ddc:350 + Public administration + + + ddc:355 + Military science + + + ddc:360 + Social problems and social services + + + ddc:370 + Education + + + ddc:380 + Commerce, communications, transportation + + + ddc:390 + Customs, etiquette, folklore + + + ddc:400 + Language, linguistics + + + ddc:420 + English and Old English languages + + + ddc:430 + German language + + + ddc:439 + Other Germanic languages + + + ddc:440 + French and related languages + + + ddc:450 + Italian, Romanian and related languages + + + ddc:460 + Spanish and Portuguese languages + + + ddc:470 + Latin and Italic languages + + + ddc:480 + Classical and modern Greek languages + + + ddc:490 + Other languages + + + ddc:500 + Science + + + ddc:510 + Mathematics + + + ddc:520 + Astronomy and allied sciences + + + ddc:530 + Physics + + + ddc:540 + Chemistry and allied sciences + + + ddc:550 + Earth sciences and geology + + + ddc:560 + Fossils and prehistoric life + + + ddc:570 + Life sciences, biology + + + ddc:580 + Plants (Botany) + + + ddc:590 + Animals (Zoology) + + + ddc:600 + Technology (Applied sciences) + + + ddc:610 + Medicine and health + + + ddc:620 + Engineering + + + ddc:630 + Agriculture and related technologies (including veterinary medicine) + + + ddc:640 + Home and family management + + + ddc:650 + Management and public relations + + + ddc:660 + Chemical engineering + + + ddc:670 + Manufacturing + + + ddc:690 + Building and construction + + + ddc:700 + Arts + + + ddc:710 + Landscaping and area planning + + + ddc:720 + Architecture + + + ddc:730 + Sculpture, numismatics, ceramics, and metalwork + + + ddc:740 + Drawing and decorative arts + + + ddc:741.5 + Cartoons, caricatures + + + ddc:750 + Painting + + + ddc:760 + Graphic arts, prints + + + ddc:770 + Photography and computer art + + + ddc:780 + Music + + + ddc:790 + Recreational and performing arts + + + ddc:791 + Public performances + + + ddc:792 + Stage presentations + + + ddc:793 + Indoor games and amusements + + + ddc:796 + Athletic and outdoor sports and games + + + ddc:800 + Literature, rhetoric, and criticism + + + ddc:810 + American literature in English + + + ddc:820 + English and Old English literatures + + + ddc:830 + German literature + + + ddc:839 + Other Germanic literatures + + + ddc:840 + French and related literatures + + + ddc:850 + Italian, Romanian and related literatures + + + ddc:860 + Spanish and Portuguese literatures + + + ddc:870 + Latin and Italic literatures + + + ddc:880 + Classical and modern Greek literatures + + + ddc:890 + Literatures of other languages + + + ddc:900 + History + + + ddc:910 + Geography and travel + + + ddc:914.3 + Geography of and travel in Germany + + + ddc:920 + Biography, genealogy, and insignia + + + ddc:930 + History of ancient world (to ca. 499), archaeology + + + ddc:940 + History of Europe + + + ddc:943 + History of Germany + + + ddc:950 + History of Asia + + + ddc:960 + History of Africa + + + ddc:970 + History of North America + + + ddc:980 + History of South America + + + ddc:990 + History of other areas + + + dissertationFtxt + Dissertation with fulltext + + + doc-type:article + Article + + + doc-type:book + Book + + + doc-type:bookPart + BookPart + + + doc-type:conferenceObject + ConferenceObject + + + doc-type:doctoralThesis + DoctoralThesis + + + doc-type:preprint + Preprint + + + doc-type:report + Report + + + doc-type:review + Review + + + doc-type:workingPaper + Working Paper + + + driver + All documents with fulltext + + + ec_fundedresources + EC funded (OpenAire) + + + journalArticleFtxt + Journal Article with fulltext + + + licentiateThesis + Licentiate Thesis + + + licentiateThesisFtxt + Licentiate Thesis with fulltext + + + newspaperArticle + Newspaper Article + + + newspaperArticleFtxt + Newspaper Article with fulltext + + + open_access + All documents with fulltext + + + preprintFtxt + Preprint with fulltext + + + reportFtxt + Report with fulltext + + + reviewFtxt + Book Review with fulltext + + + translation + Translation + + + translationFtxt + Translation with fulltext + + + workingPaperFtxt + Working Paper with fulltext + + + \ No newline at end of file diff --git a/sickle/tests/sample_data/badArgument.xml b/sickle/tests/sample_data/badArgument.xml new file mode 100644 index 0000000..5882844 --- /dev/null +++ b/sickle/tests/sample_data/badArgument.xml @@ -0,0 +1,13 @@ + + + 2002-06-01T19:20:30Z + + http://memory.loc.gov/cgi-bin/oai + + + \ No newline at end of file diff --git a/sickle/tests/sample_data/badResumptionToken.xml b/sickle/tests/sample_data/badResumptionToken.xml new file mode 100644 index 0000000..ad870c1 --- /dev/null +++ b/sickle/tests/sample_data/badResumptionToken.xml @@ -0,0 +1,11 @@ + + + 2001-06-01T19:20:30Z + + http://purl.org/alcme/etdcat/servlet/OAIHandler + + This resumptionToken is invalid + \ No newline at end of file diff --git a/sickle/tests/sample_data/cannotDisseminateFormat.xml b/sickle/tests/sample_data/cannotDisseminateFormat.xml new file mode 100644 index 0000000..b4913cb --- /dev/null +++ b/sickle/tests/sample_data/cannotDisseminateFormat.xml @@ -0,0 +1,11 @@ + + + 2002-02-08T08:55:46Z + http://arXiv.org/oai1 + + + \ No newline at end of file diff --git a/sickle/tests/sample_data/idDoesNotExist.xml b/sickle/tests/sample_data/idDoesNotExist.xml new file mode 100644 index 0000000..cbd9068 --- /dev/null +++ b/sickle/tests/sample_data/idDoesNotExist.xml @@ -0,0 +1,15 @@ + + + 2002-06-08T15:19:13Z + + http://memory.loc.gov/cgi-bin/oai + + oai:lcoa1.loc.gov:loc.rbc/rbpe.00000111 has the + structure of a valid LOC identifier, but it maps to no known + item + + \ No newline at end of file diff --git a/sickle/tests/sample_data/noRecordsMatch.xml b/sickle/tests/sample_data/noRecordsMatch.xml new file mode 100644 index 0000000..5ee5d24 --- /dev/null +++ b/sickle/tests/sample_data/noRecordsMatch.xml @@ -0,0 +1,13 @@ + + + 2002-02-08T14:27:19Z + + http://www.perseus.tufts.edu/cgi-bin/pdataprov + + + diff --git a/sickle/tests/sample_data/noSetHierarchy.xml b/sickle/tests/sample_data/noSetHierarchy.xml new file mode 100644 index 0000000..53cc116 --- /dev/null +++ b/sickle/tests/sample_data/noSetHierarchy.xml @@ -0,0 +1,13 @@ + + + 2001-06-01T19:20:30Z + + http://purl.org/alcme/etdcat/servlet/OAIHandler + + This repository does not + support sets + + \ No newline at end of file diff --git a/sickle/tests/sample_data/undefinedError.xml b/sickle/tests/sample_data/undefinedError.xml new file mode 100644 index 0000000..618cfdd --- /dev/null +++ b/sickle/tests/sample_data/undefinedError.xml @@ -0,0 +1,13 @@ + + + 2002-06-01T19:20:30Z + + http://memory.loc.gov/cgi-bin/oai + + + \ No newline at end of file diff --git a/sickle/tests/test_harvesting.py b/sickle/tests/test_harvesting.py new file mode 100644 index 0000000..4f6933f --- /dev/null +++ b/sickle/tests/test_harvesting.py @@ -0,0 +1,187 @@ +# coding: utf-8 +""" + sickle.tests.test_harvesting + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: Copyright 2015 Mathias Loesch +""" +import os +import unittest + +from lxml import etree +from nose.tools import raises +import mock + +from sickle import Sickle +from sickle.response import OAIResponse +from sickle.iterator import OAIResponseIterator +from sickle.oaiexceptions import BadArgument, CannotDisseminateFormat, \ + IdDoesNotExist, NoSetHierarchy, BadResumptionToken, NoRecordsMatch, OAIError + +this_dir, this_filename = os.path.split(__file__) + + +class MockResponse(object): + """Mimics the response object returned by HTTP requests.""" + + def __init__(self, text): + # request's response object carry an attribute 'text' which contains + # the server's response data encoded as unicode. + self.text = text + + +def fake_harvest(*args, **kwargs): + """Read test data from files instead of from an OAI interface. + + The data is read from the ``xml`` directory by using the provided + :attr:`verb` as file name. The following returns an OAIResponse created + from the file ``ListRecords.xml``:: + + fake_harvest(verb='ListRecords', metadataPrefix='oai_dc') + + The file names for consecutive resumption responses are expected in the + resumptionToken parameter:: + + fake_harvest(verb='ListRecords', resumptionToken='ListRecords2.xml') + + The parameter :attr:`error` can be used to invoke a specific OAI error + response. For instance, the following returns a ``badArgument`` error + response:: + + fake_harvest(verb='ListRecords', error='badArgument') + + :param kwargs: OAI arguments that would normally be passed to + :meth:`sickle.app.Sickle.harvest`. + :rtype: :class:`sickle.response.OAIResponse`. + """ + verb = kwargs.get('verb') + resumption_token = kwargs.get('resumptionToken') + error = kwargs.get('error') + if resumption_token is not None: + filename = resumption_token + elif error is not None: + filename = '%s.xml' % error + else: + filename = '%s.xml' % verb + response = MockResponse(open( + os.path.join(this_dir, 'sample_data', filename), 'r').read().decode( + 'utf8')) + + return OAIResponse(response, kwargs) + + +class TestCase(unittest.TestCase): + def setUp(self): + mock.patch('sickle.app.Sickle.harvest', fake_harvest).start() + self.sickle = Sickle('http://localhost') + + def test_OAIResponse(self): + response = self.sickle.harvest(verb='ListRecords', + metadataPrefix='oai_dc') + self.assertIsInstance(response.xml, etree._Element) + self.assertIsInstance(response.raw, basestring) + + def test_broken_XML(self): + response = self.sickle.harvest( + verb='ListRecords', resumptionToken='ListRecordsBroken.xml') + self.assertEqual(response.xml, None) + self.assertIsInstance(response.raw, basestring) + + def test_ListRecords(self): + records = self.sickle.ListRecords(metadataPrefix='oai_dc') + assert len([r for r in records]) == 8 + + def test_ListRecords_ignore_deleted(self): + records = self.sickle.ListRecords(metadataPrefix='oai_dc', + ignore_deleted=True) + num_records = len([r for r in records]) + assert num_records == 4 + + def test_ListSets(self): + set_iterator = self.sickle.ListSets() + sets = [s for s in set_iterator] + self.assertEqual(131, len(sets)) + dict(sets[0]) + + def test_ListMetadataFormats(self): + mdf_iterator = self.sickle.ListMetadataFormats() + mdfs = [mdf for mdf in mdf_iterator] + self.assertEqual(5, len(mdfs)) + dict(mdfs[0]) + + def test_ListIdentifiers(self): + records = self.sickle.ListIdentifiers(metadataPrefix='oai_dc') + assert len([r for r in records]) == 4 + + def test_ListIdentifiers_ignore_deleted(self): + records = self.sickle.ListIdentifiers( + metadataPrefix='oai_dc', ignore_deleted=True) + # There are 2 deleted headers in the test data + num_records = len([r for r in records]) + assert num_records == 2 + + def test_Identify(self): + identify = self.sickle.Identify() + assert hasattr(identify, 'repositoryName') + assert hasattr(identify, 'baseURL') + assert hasattr(identify, 'adminEmail') + assert hasattr(identify, 'earliestDatestamp') + assert hasattr(identify, 'deletedRecord') + assert hasattr(identify, 'granularity') + assert hasattr(identify, 'description') + assert hasattr(identify, 'oai_identifier') + assert hasattr(identify, 'sampleIdentifier') + dict(identify) + + def test_GetRecord(self): + oai_id = 'oai:test.example.com:1996652' + record = self.sickle.GetRecord(identifier=oai_id) + assert record.header.identifier == oai_id + assert oai_id in record.raw + self.assertIsInstance(record.xml, etree._Element) + str(record) + unicode(record) + dict(record.header) + assert dict(record) == record.metadata + + # Test OAI-specific exceptions + + @raises(BadArgument) + def test_badArgument(self): + self.sickle.ListRecords(metadataPrefix='oai_dc', + error='badArgument') + + @raises(CannotDisseminateFormat) + def test_cannotDisseminateFormat(self): + self.sickle.ListRecords( + metadataPrefix='oai_dc', error='cannotDisseminateFormat') + + @raises(IdDoesNotExist) + def test_idDoesNotExist(self): + self.sickle.GetRecord( + metadataPrefix='oai_dc', error='idDoesNotExist') + + @raises(NoSetHierarchy) + def test_noSetHierarchy(self): + self.sickle.ListSets( + metadataPrefix='oai_dc', error='noSetHierarchy') + + @raises(BadResumptionToken) + def test_badResumptionToken(self): + self.sickle.ListRecords( + metadataPrefix='oai_dc', error='badResumptionToken') + + @raises(NoRecordsMatch) + def test_noRecordsMatch(self): + self.sickle.ListRecords( + metadataPrefix='oai_dc', error='noRecordsMatch') + + @raises(OAIError) + def test_undefined_OAI_error_XML(self): + self.sickle.ListRecords( + metadataPrefix='oai_dc', error='undefinedError') + + def test_OAIResponseIterator(self): + sickle = Sickle('fake_url', iterator=OAIResponseIterator) + records = [r for r in sickle.ListRecords(metadataPrefix='oai_dc')] + assert len(records) == 4 diff --git a/sickle/tests/test_sickle.py b/sickle/tests/test_sickle.py index 2a3e341..b55c7aa 100644 --- a/sickle/tests/test_sickle.py +++ b/sickle/tests/test_sickle.py @@ -1,173 +1,29 @@ # coding: utf-8 +""" + sickle.tests.test_sickle + ~~~~~~~~~~~~~~~~~~~~~~~~ + :copyright: Copyright 2015 Mathias Loesch +""" import os +import unittest -from sickle import Sickle, OAIResponse -from sickle.oaiexceptions import BadArgument, CannotDisseminateFormat,\ - IdDoesNotExist, NoSetHierarchy, BadResumptionToken, NoRecordsMatch -from nose.tools import assert_raises, assert_true, raises - -import logging - -# Logging -logger = logging.getLogger(__name__) -logger.setLevel(logging.INFO) - -formatter = logging.Formatter("%(asctime)s %(levelname)s: %(message)s", - "%d.%m.%Y %H:%M:%S") - -handler = logging.StreamHandler() -handler.setLevel(logging.INFO) -handler.setFormatter(formatter) -logger.addHandler(handler) +from nose.tools import raises +from sickle import Sickle this_dir, this_filename = os.path.split(__file__) -# Create a Sickle OAI-PMH client. It doesn't need a resolvable -# OAI endpoint for testing since we are reading the responses -# from files. -sickle = Sickle('fake_url') - - -class FakeResponse(object): - """Mimics the response object returned by HTTP requests.""" - def __init__(self, text): - # request's response object carry an attribute 'text' which contains - # the server's response data encoded as unicode. - self.text = text - - -def fake_harvest(**kwargs): - """Read test data from files instead of from an OAI interface. - - The data is read from the ``xml`` directory by using the provided - :attr:`verb` as file name. The following returns an OAIResponse created - from the file ``ListRecords.xml``:: - - fake_harvest(verb='ListRecords', metadataPrefix='oai_dc') - - The file names for consecutive resumption responses are expected in the - resumptionToken parameter:: - - fake_harvest(verb='ListRecords', resumptionToken='ListRecords2.xml') - - The parameter :attr:`error` can be used to invoke a specific OAI error - response. For instance, the following returns a ``badArgument`` error - response:: - - fake_harvest(verb='ListRecords', error='badArgument') - - :param kwargs: OAI arguments that would normally be passed to - :meth:`sickle.app.Sickle.harvest`. - :rtype: :class:`sickle.app.OAIResponse`. - """ - verb = kwargs.get('verb') - resumption_token = kwargs.get('resumptionToken') - error = kwargs.get('error') - if resumption_token is not None: - filename = resumption_token - elif error is not None: - filename = '%s.xml' % error - else: - filename = '%s.xml' % verb - response = FakeResponse(open( - os.path.join(this_dir, 'xml', filename), 'r').read().decode('utf8')) - - return OAIResponse(response, kwargs) - -# Monkey patch the Sickle client object with the mock harvesting method -sickle.harvest = fake_harvest - - -def test_ListRecords(): - records = sickle.ListRecords(metadataPrefix='oai_dc') - assert len([r for r in records]) == 400 - - -def test_ListRecords_ignore_deleted(): - records = sickle.ListRecords(metadataPrefix='oai_dc', ignore_deleted=True) - # There are twelve deleted records in the test data - num_records = len([r for r in records]) - assert num_records == 388 - - -def test_ListSets(): - sets = sickle.ListSets() - num_sets = len([s for s in sets]) - assert num_sets == 131 - - -def test_ListMetadataFormats(): - mdfs = sickle.ListMetadataFormats() - num_mdfs = len([mdf for mdf in mdfs]) - assert num_mdfs == 5 - - -def test_ListIdentifiers(): - records = sickle.ListIdentifiers(metadataPrefix='oai_dc') - assert len([r for r in records]) == 400 - - -def test_ListIdentifiers_ignore_deleted(): - records = sickle.ListIdentifiers( - metadataPrefix='oai_dc', ignore_deleted=True) - # There are ten deleted headers in the test data - num_records = len([r for r in records]) - assert num_records == 390 - - -def test_Identify(): - identify = sickle.Identify() - assert hasattr(identify, 'repositoryName') - assert hasattr(identify, 'baseURL') - assert hasattr(identify, 'adminEmail') - assert hasattr(identify, 'earliestDatestamp') - assert hasattr(identify, 'deletedRecord') - assert hasattr(identify, 'granularity') - assert hasattr(identify, 'description') - assert hasattr(identify, 'oai_identifier') - assert hasattr(identify, 'sampleIdentifier') - - -def test_GetRecord(): - oai_id = 'oai:test.example.com:1996652' - record = sickle.GetRecord(identifier=oai_id) - assert record.header.identifier == oai_id - - -# Test OAI-specific exceptions - -@raises(BadArgument) -def test_badArgument(): - records = sickle.ListRecords(metadataPrefix='oai_dc', error='badArgument') - - -@raises(CannotDisseminateFormat) -def test_cannotDisseminateFormat(): - records = sickle.ListRecords( - metadataPrefix='oai_dc', error='cannotDisseminateFormat') - - -@raises(IdDoesNotExist) -def test_idDoesNotExist(): - records = sickle.GetRecord( - metadataPrefix='oai_dc', error='idDoesNotExist') - - -@raises(NoSetHierarchy) -def test_idDoesNotExist(): - records = sickle.ListSets( - metadataPrefix='oai_dc', error='noSetHierarchy') - -@raises(BadResumptionToken) -def test_badResumptionToken(): - records = sickle.ListRecords( - metadataPrefix='oai_dc', error='badResumptionToken') +class TestCase(unittest.TestCase): + @raises(ValueError) + def test_invalid_http_method(self): + Sickle("http://localhost", http_method="DELETE") + @raises(ValueError) + def test_wrong_protocol_version(self): + Sickle("http://localhost", protocol_version="3.0") -@raises(NoRecordsMatch) -def test_noRecordsMatch(): - records = sickle.ListRecords( - metadataPrefix='oai_dc', error='noRecordsMatch') + @raises(TypeError) + def test_invalid_iterator(self): + Sickle("http://localhost", iterator=None) diff --git a/sickle/tests/test_util.py b/sickle/tests/test_util.py new file mode 100644 index 0000000..e7f3996 --- /dev/null +++ b/sickle/tests/test_util.py @@ -0,0 +1,28 @@ +# coding: utf-8 +""" + sickle.tests.test_util + ~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: Copyright 2015 Mathias Loesch +""" +from unittest import TestCase + +from lxml import etree + +from sickle.utils import xml_to_dict + + +class TestUtils(TestCase): + def test_xml_to_dict(self): + xml = """\ + + One + Two + Three + Four + +""" + + self.assertEqual(xml_to_dict(etree.XML(xml)), + dict(a=['One'], b=['Two'], c=['Three', 'Four'], + d=[None])) diff --git a/sickle/tests/xml/Identify.xml b/sickle/tests/xml/Identify.xml deleted file mode 100644 index ebbddd4..0000000 --- a/sickle/tests/xml/Identify.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - 2013-02-27T10:01:15Z - http://test.example.com/oai - - A Test Repository - http://test.example.com/oai - 2.0 - john.doe@example.com - 1970-01-01T00:00:00Z - persistent - YYYY-MM-DD - - - oai - test.example.com - : - oai:test.example.com:2342 - - - - \ No newline at end of file diff --git a/sickle/tests/xml/ListIdentifiers.xml b/sickle/tests/xml/ListIdentifiers.xml deleted file mode 100644 index c595993..0000000 --- a/sickle/tests/xml/ListIdentifiers.xml +++ /dev/null @@ -1,808 +0,0 @@ - - - 2013-02-27T09:57:16Z - http://test.example.com/oai - -
- oai:test.example.com::1585310 - 2011-07-18T16:31:00Z -
-
- oai:test.example.com::1585315 - 2012-11-13T12:09:38Z -
-
- oai:test.example.com::1585322 - 2011-01-10T10:19:23Z -
-
- oai:test.example.com::1585328 - 2011-03-01T16:04:04Z -
-
- oai:test.example.com::1585333 - 2010-12-16T09:26:40Z -
-
- oai:test.example.com::1585347 - 2011-11-25T15:31:13Z -
-
- oai:test.example.com::1585352 - 2011-09-07T17:36:26Z -
-
- oai:test.example.com::1585358 - 2011-12-09T15:53:41Z -
-
- oai:test.example.com::1585379 - 2012-02-14T12:01:43Z -
-
- oai:test.example.com::1585384 - 2013-02-25T10:42:30Z -
-
- oai:test.example.com::1585399 - 2012-01-24T19:09:59Z -
-
- oai:test.example.com::1585404 - 2011-11-01T22:58:05Z -
-
- oai:test.example.com::1585408 - 2011-11-28T14:16:39Z -
-
- oai:test.example.com::1585412 - 2011-09-07T18:14:23Z -
-
- oai:test.example.com::1585416 - 2011-01-04T17:07:58Z -
-
- oai:test.example.com::1585424 - 2011-12-09T17:23:07Z -
-
- oai:test.example.com::1585430 - 2011-11-24T13:06:52Z -
-
- oai:test.example.com::1585442 - 2011-11-23T11:37:24Z -
-
- oai:test.example.com::1585448 - 2011-01-17T14:39:43Z -
-
- oai:test.example.com::1585453 - 2011-10-11T12:08:04Z -
-
- oai:test.example.com::1585462 - 2011-05-02T10:47:21Z -
-
- oai:test.example.com::1585467 - 2012-07-09T11:04:41Z -
-
- oai:test.example.com::1585484 - 2011-11-25T15:32:23Z -
-
- oai:test.example.com::1585491 - 2011-11-25T15:29:52Z -
-
- oai:test.example.com::1585496 - 2011-06-08T12:58:18Z -
-
- oai:test.example.com::1585503 - 2011-12-15T14:49:50Z -
-
- oai:test.example.com::1585507 - 2011-12-16T13:05:11Z -
-
- oai:test.example.com::1585521 - 2010-11-08T14:06:25Z -
-
- oai:test.example.com::1585529 - 2010-11-04T10:11:56Z -
-
- oai:test.example.com::1585540 - 2013-02-13T15:22:00Z -
-
- oai:test.example.com::1585552 - 2010-12-14T15:55:27Z -
-
- oai:test.example.com::1585560 - 2012-02-23T09:26:28Z -
-
- oai:test.example.com::1585576 - 2011-08-10T16:22:00Z -
-
- oai:test.example.com::1585611 - 2012-03-09T13:56:49Z -
-
- oai:test.example.com::1585617 - 2012-01-24T19:11:08Z -
-
- oai:test.example.com::1585623 - 2010-12-23T15:34:21Z -
-
- oai:test.example.com::1585635 - 2011-10-10T15:09:18Z -
-
- oai:test.example.com::1585645 - 2012-07-09T16:50:56Z -
-
- oai:test.example.com::1585672 - 2011-09-28T16:11:17Z -
-
- oai:test.example.com::1585682 - 2011-02-11T16:50:53Z -
-
- oai:test.example.com::1585704 - 2011-01-05T16:55:42Z -
-
- oai:test.example.com::1585710 - 2011-09-28T16:11:57Z -
-
- oai:test.example.com::1585716 - 2011-01-05T14:38:01Z -
-
- oai:test.example.com::1585724 - 2011-08-24T12:16:56Z -
-
- oai:test.example.com::1585731 - 2012-02-07T17:46:37Z -
-
- oai:test.example.com::1585750 - 2011-01-17T14:38:25Z -
-
- oai:test.example.com::1585757 - 2012-07-09T13:53:43Z -
-
- oai:test.example.com::1585768 - 2013-01-29T18:46:23Z -
-
- oai:test.example.com::1585782 - 2012-06-10T23:47:26Z -
-
- oai:test.example.com::1585817 - 2010-12-03T10:16:01Z -
-
- oai:test.example.com::1585830 - 2011-01-06T15:22:49Z -
-
- oai:test.example.com::1585840 - 2011-12-22T13:21:37Z -
-
- oai:test.example.com::1585846 - 2011-12-09T17:22:09Z -
-
- oai:test.example.com::1585850 - 2013-01-10T07:20:53Z -
-
- oai:test.example.com::1585855 - 2011-03-25T11:54:01Z -
-
- oai:test.example.com::1585878 - 2011-12-02T14:03:49Z -
-
- oai:test.example.com::1585886 - 2011-02-11T16:52:20Z -
-
- oai:test.example.com::1585914 - 2010-11-08T11:11:04Z -
-
- oai:test.example.com::1585918 - 2012-02-03T11:17:44Z -
-
- oai:test.example.com::1585939 - 2012-10-22T18:01:40Z -
-
- oai:test.example.com::1585956 - 2012-02-03T11:15:51Z -
-
- oai:test.example.com::1585969 - 2010-12-14T15:57:40Z -
-
- oai:test.example.com::1585980 - 2011-09-28T13:53:57Z -
-
- oai:test.example.com::1585987 - 2012-08-22T10:05:17Z -
-
- oai:test.example.com::1586009 - 2012-08-19T13:35:54Z -
-
- oai:test.example.com::1586024 - 2010-11-03T15:17:34Z -
-
- oai:test.example.com::1586036 - 2012-02-03T11:14:51Z -
-
- oai:test.example.com::1586060 - 2011-12-09T13:12:10Z -
-
- oai:test.example.com::1586087 - 2010-11-18T10:37:22Z -
-
- oai:test.example.com::1586095 - 2011-12-09T15:52:12Z -
-
- oai:test.example.com::1586105 - 2011-09-28T16:12:23Z -
-
- oai:test.example.com::1586113 - 2010-12-20T13:16:33Z -
-
- oai:test.example.com::1586120 - 2010-12-16T10:16:16Z -
-
- oai:test.example.com::1586126 - 2012-08-06T12:09:18Z -
-
- oai:test.example.com::1586137 - 2010-12-17T16:14:54Z -
-
- oai:test.example.com::1586139 - 2011-12-07T00:25:03Z -
-
- oai:test.example.com::1586145 - 2010-12-14T15:55:25Z -
-
- oai:test.example.com::1586150 - 2011-09-27T13:14:39Z -
-
- oai:test.example.com::1586154 - 2011-09-29T08:43:11Z -
-
- oai:test.example.com::1586162 - 2011-11-22T16:26:50Z -
-
- oai:test.example.com::1586169 - 2011-01-10T10:41:13Z -
-
- oai:test.example.com::1586186 - 2011-09-28T16:12:51Z -
-
- oai:test.example.com::1586197 - 2011-02-11T16:53:08Z -
-
- oai:test.example.com::1586213 - 2011-01-10T17:17:52Z -
-
- oai:test.example.com::1586232 - 2012-07-06T14:11:34Z -
-
- oai:test.example.com::1586248 - 2011-12-22T13:17:12Z -
-
- oai:test.example.com::1586256 - 2011-11-16T13:14:55Z -
-
- oai:test.example.com::1586267 - 2010-12-16T17:33:53Z -
-
- oai:test.example.com::1586279 - 2011-01-10T15:45:40Z -
-
- oai:test.example.com::1586284 - 2011-01-10T19:33:50Z -
-
- oai:test.example.com::1586290 - 2011-09-30T10:06:50Z -
-
- oai:test.example.com::1586302 - 2011-02-24T14:32:51Z -
-
- oai:test.example.com::1586306 - 2011-12-22T13:21:17Z -
-
- oai:test.example.com::1586311 - 2010-11-03T13:13:16Z -
-
- oai:test.example.com::1586335 - 2011-02-11T16:55:16Z -
-
- oai:test.example.com::1586418 - 2011-05-02T10:46:54Z -
-
- oai:test.example.com::1586423 - 2011-11-22T12:26:50Z -
-
- oai:test.example.com::1586428 - 2010-12-20T11:56:13Z -
-
- oai:test.example.com::1586440 - 2011-01-06T15:04:39Z -
-
- oai:test.example.com::1586444 - 2011-07-04T11:03:07Z -
-
- oai:test.example.com::1586449 - 2011-12-09T15:57:55Z -
-
- oai:test.example.com::1586460 - 2011-02-14T18:32:24Z -
-
- oai:test.example.com::1586480 - 2011-05-31T11:58:29Z -
-
- oai:test.example.com::1586483 - 2011-05-31T11:58:56Z -
-
- oai:test.example.com::1586501 - 2011-03-16T11:03:15Z -
-
- oai:test.example.com::1586515 - 2011-08-17T16:41:07Z -
-
- oai:test.example.com::1586527 - 2012-03-30T13:56:16Z -
-
- oai:test.example.com::1586533 - 2012-11-15T17:26:15Z -
-
- oai:test.example.com::1586539 - 2012-11-15T17:26:55Z -
-
- oai:test.example.com::1586544 - 2011-12-08T14:33:12Z -
-
- oai:test.example.com::1586550 - 2010-12-14T15:57:41Z -
-
- oai:test.example.com::1586561 - 2012-07-09T10:40:11Z -
-
- oai:test.example.com::1586569 - 2011-10-04T14:48:27Z -
-
- oai:test.example.com::1586577 - 2011-12-09T15:41:52Z -
-
- oai:test.example.com::1586584 - 2011-05-10T15:50:20Z -
-
- oai:test.example.com::1586601 - 2010-12-23T10:11:18Z -
-
- oai:test.example.com::1586618 - 2010-11-03T22:08:40Z -
-
- oai:test.example.com::1586626 - 2010-12-22T14:09:41Z -
-
- oai:test.example.com::1586629 - 2011-12-09T15:22:30Z -
-
- oai:test.example.com::1586647 - 2010-12-20T11:43:18Z -
-
- oai:test.example.com::1586669 - 2012-02-23T15:52:58Z -
-
- oai:test.example.com::1586681 - 2013-01-03T11:12:41Z -
-
- oai:test.example.com::1586697 - 2010-12-17T15:18:42Z -
-
- oai:test.example.com::1586719 - 2010-12-20T09:49:37Z -
-
- oai:test.example.com::1586726 - 2011-01-10T16:00:28Z -
-
- oai:test.example.com::1586732 - 2012-02-23T15:56:51Z -
-
- oai:test.example.com::1586736 - 2012-08-23T09:25:39Z -
-
- oai:test.example.com::1586740 - 2010-11-18T10:37:41Z -
-
- oai:test.example.com::1586756 - 2010-11-18T10:36:28Z -
-
- oai:test.example.com::1586779 - 2010-12-17T15:18:42Z -
-
- oai:test.example.com::1586782 - 2011-08-31T07:20:43Z -
-
- oai:test.example.com::1586785 - 2012-08-19T13:39:58Z -
-
- oai:test.example.com::1586815 - 2011-06-01T13:23:05Z -
-
- oai:test.example.com::1586821 - 2010-12-14T15:57:42Z -
-
- oai:test.example.com::1586833 - 2011-04-21T18:08:37Z -
-
- oai:test.example.com::1586838 - 2010-12-20T11:57:53Z -
-
- oai:test.example.com::1586844 - 2011-11-22T16:38:49Z -
-
- oai:test.example.com::1586848 - 2011-06-15T16:24:44Z -
-
- oai:test.example.com::1586855 - 2010-12-16T17:17:52Z -
-
- oai:test.example.com::1586869 - 2011-01-12T16:02:44Z -
-
- oai:test.example.com::1586876 - 2010-12-14T15:57:44Z -
-
- oai:test.example.com::1586893 - 2011-12-22T13:55:18Z -
-
- oai:test.example.com::1586921 - 2011-08-17T16:46:16Z -
-
- oai:test.example.com::1586928 - 2011-12-09T13:15:32Z -
-
- oai:test.example.com::1586934 - 2011-01-10T17:17:52Z -
-
- oai:test.example.com::1586942 - 2011-12-02T11:09:19Z -
-
- oai:test.example.com::1586951 - 2010-11-03T11:40:02Z -
-
- oai:test.example.com::1586963 - 2012-02-20T09:50:14Z -
-
- oai:test.example.com::1586967 - 2011-03-10T10:37:43Z -
-
- oai:test.example.com::1586975 - 2011-08-22T21:57:19Z -
-
- oai:test.example.com::1586979 - 2012-08-06T13:11:36Z -
-
- oai:test.example.com::1586986 - 2010-12-14T14:53:00Z -
-
- oai:test.example.com::1587003 - 2011-09-28T16:13:24Z -
-
- oai:test.example.com::1587011 - 2012-03-27T12:24:40Z -
-
- oai:test.example.com::1587023 - 2010-12-08T18:55:27Z -
-
- oai:test.example.com::1587033 - 2011-12-02T14:00:44Z -
-
- oai:test.example.com::1587040 - 2011-09-30T15:15:01Z -
-
- oai:test.example.com::1587052 - 2011-09-26T14:24:00Z -
-
- oai:test.example.com::1587058 - 2011-11-22T15:02:12Z -
-
- oai:test.example.com::1587066 - 2011-11-24T13:52:25Z -
-
- oai:test.example.com::1587078 - 2012-08-19T13:42:45Z -
-
- oai:test.example.com::1587082 - 2010-11-18T10:39:41Z -
-
- oai:test.example.com::1587090 - 2011-09-15T17:04:27Z -
-
- oai:test.example.com::1587102 - 2011-01-20T17:25:09Z -
-
- oai:test.example.com::1587114 - 2011-01-10T16:09:55Z -
-
- oai:test.example.com::1587121 - 2012-04-03T17:03:32Z -
-
- oai:test.example.com::1587124 - 2010-12-17T17:08:08Z -
-
- oai:test.example.com::1587130 - 2011-09-30T10:06:12Z -
-
- oai:test.example.com::1587134 - 2012-07-06T13:04:32Z -
-
- oai:test.example.com::1587141 - 2012-07-06T14:22:40Z -
-
- oai:test.example.com::1587158 - 2013-01-16T09:09:37Z -
-
- oai:test.example.com::1587163 - 2010-11-04T14:56:46Z -
-
- oai:test.example.com::1587180 - 2010-12-17T16:14:54Z -
-
- oai:test.example.com::1587197 - 2011-03-17T12:15:24Z -
-
- oai:test.example.com::1587199 - 2011-12-16T13:05:11Z -
-
- oai:test.example.com::1587212 - 2012-01-23T15:52:41Z -
-
- oai:test.example.com::1587216 - 2011-08-24T12:16:56Z -
-
- oai:test.example.com::1587223 - 2011-01-05T16:55:42Z -
-
- oai:test.example.com::1587226 - 2011-01-05T16:55:42Z -
-
- oai:test.example.com::1587233 - 2011-11-23T11:49:23Z -
-
- oai:test.example.com::1587251 - 2011-02-17T11:36:45Z -
-
- oai:test.example.com::1587254 - 2011-01-05T16:55:42Z -
-
- oai:test.example.com::1587283 - 2012-01-24T19:10:27Z -
-
- oai:test.example.com::1587298 - 2012-02-23T15:52:05Z -
-
- oai:test.example.com::1587304 - 2012-05-29T12:05:12Z -
-
- oai:test.example.com::1587311 - 2011-12-22T13:17:35Z -
-
- oai:test.example.com::1587317 - 2012-07-09T09:37:50Z -
-
- oai:test.example.com::1587324 - 2011-05-10T15:33:16Z -
-
- oai:test.example.com::1587328 - 2011-12-22T13:19:18Z -
-
- oai:test.example.com::1587331 - 2010-12-23T14:12:02Z -
-
- oai:test.example.com::1587337 - 2011-12-01T17:03:44Z -
-
- oai:test.example.com::1587349 - 2011-12-22T13:55:37Z -
-
- oai:test.example.com::1587353 - 2010-12-22T14:09:41Z -
-
- oai:test.example.com::1587365 - 2011-09-28T16:14:23Z -
-
- oai:test.example.com::1587375 - 2011-09-09T15:29:56Z -
-
- oai:test.example.com::1587398 - 2011-01-10T15:33:59Z -
-
- oai:test.example.com::1587404 - 2012-01-24T19:10:53Z -
-
- oai:test.example.com::1587409 - 2012-01-24T19:12:46Z -
-
- oai:test.example.com::1587414 - 2011-01-04T17:51:38Z -
-
- oai:test.example.com::1587426 - 2011-01-04T18:27:23Z -
- ListIdentifiers2.xml -
-
\ No newline at end of file diff --git a/sickle/tests/xml/ListIdentifiers2.xml b/sickle/tests/xml/ListIdentifiers2.xml deleted file mode 100644 index 942d92b..0000000 --- a/sickle/tests/xml/ListIdentifiers2.xml +++ /dev/null @@ -1,807 +0,0 @@ - - - 2013-02-27T09:57:46Z - http://test.example.com/oai - -
- oai:test.example.com:1587443 - 2012-02-24T14:08:34Z -
-
- oai:test.example.com:1587458 - 2010-11-18T10:36:38Z -
-
- oai:test.example.com:1587464 - 2012-02-07T17:45:06Z -
-
- oai:test.example.com:1587474 - 2010-12-14T15:57:39Z -
-
- oai:test.example.com:1587491 - 2011-05-02T12:24:12Z -
-
- oai:test.example.com:1587496 - 2011-10-06T16:00:53Z -
-
- oai:test.example.com:1587502 - 2011-01-04T18:29:21Z -
-
- oai:test.example.com:1587508 - 2011-07-04T17:12:33Z -
-
- oai:test.example.com:1587512 - 2011-10-10T15:09:18Z -
-
- oai:test.example.com:1587524 - 2010-12-20T13:20:21Z -
-
- oai:test.example.com:1587531 - 2012-02-07T10:41:08Z -
-
- oai:test.example.com:1587551 - 2011-12-02T11:05:14Z -
-
- oai:test.example.com:1587560 - 2011-05-31T11:56:07Z -
-
- oai:test.example.com:1587576 - 2010-12-14T15:57:45Z -
-
- oai:test.example.com:1587584 - 2013-01-16T09:10:33Z -
-
- oai:test.example.com:1587590 - 2012-02-24T14:17:26Z -
-
- oai:test.example.com:1587614 - 2011-12-15T22:09:47Z -
-
- oai:test.example.com:1587623 - 2011-08-10T14:00:13Z -
-
- oai:test.example.com:1587637 - 2012-08-22T14:15:24Z -
-
- oai:test.example.com:1587641 - 2011-12-15T14:49:16Z -
-
- oai:test.example.com:1587650 - 2011-01-10T11:12:39Z -
-
- oai:test.example.com:1587657 - 2011-01-04T17:51:38Z -
-
- oai:test.example.com:1587661 - 2010-12-08T18:55:27Z -
-
- oai:test.example.com:1587668 - 2010-12-02T11:27:26Z -
-
- oai:test.example.com:1587674 - 2011-09-30T10:05:47Z -
-
- oai:test.example.com:1587689 - 2011-01-17T15:24:47Z -
-
- oai:test.example.com:1587695 - 2011-01-10T11:12:39Z -
-
- oai:test.example.com:1587698 - 2011-12-16T12:20:32Z -
-
- oai:test.example.com:1587702 - 2011-01-04T12:03:29Z -
-
- oai:test.example.com:1587707 - 2010-12-14T15:57:55Z -
-
- oai:test.example.com:1587713 - 2010-12-10T09:40:44Z -
-
- oai:test.example.com:1587726 - 2010-12-02T11:42:05Z -
-
- oai:test.example.com:1587736 - 2012-01-24T18:57:09Z -
-
- oai:test.example.com:1587750 - 2012-01-26T09:38:18Z -
-
- oai:test.example.com:1587760 - 2012-02-24T14:15:07Z -
-
- oai:test.example.com:1587766 - 2012-11-26T15:05:39Z -
-
- oai:test.example.com:1587776 - 2010-12-14T15:57:43Z -
-
- oai:test.example.com:1587782 - 2011-01-26T09:36:27Z -
-
- oai:test.example.com:1587786 - 2011-09-02T13:47:45Z -
-
- oai:test.example.com:1587793 - 2012-03-14T12:16:50Z -
-
- oai:test.example.com:1587805 - 2012-03-09T14:46:30Z -
-
- oai:test.example.com:1587814 - 2011-01-10T16:06:51Z -
-
- oai:test.example.com:1587836 - 2011-01-17T14:53:57Z -
-
- oai:test.example.com:1587840 - 2011-09-30T16:35:51Z -
-
- oai:test.example.com:1587850 - 2012-01-25T19:00:17Z -
-
- oai:test.example.com:1587864 - 2010-12-05T12:28:34Z -
-
- oai:test.example.com:1587866 - 2011-09-30T10:05:22Z -
-
- oai:test.example.com:1587872 - 2010-12-17T16:14:53Z -
-
- oai:test.example.com:1587893 - 2010-11-11T09:53:38Z -
-
- oai:test.example.com:1587898 - 2010-11-11T09:54:05Z -
-
- oai:test.example.com:1587918 - 2011-01-04T18:29:22Z -
-
- oai:test.example.com:1587944 - 2011-11-30T10:48:41Z -
-
- oai:test.example.com:1587956 - 2010-12-17T15:18:41Z -
-
- oai:test.example.com:1587970 - 2010-12-20T13:18:23Z -
-
- oai:test.example.com:1587974 - 2012-01-26T09:38:18Z -
-
- oai:test.example.com:1587979 - 2012-01-26T09:38:18Z -
-
- oai:test.example.com:1587984 - 2011-06-16T00:43:39Z -
-
- oai:test.example.com:1587994 - 2011-05-10T15:54:10Z -
-
- oai:test.example.com:1588008 - 2011-09-22T10:17:56Z -
-
- oai:test.example.com:1588013 - 2011-09-28T16:16:37Z -
-
- oai:test.example.com:1588026 - 2011-09-09T08:06:53Z -
-
- oai:test.example.com:1588031 - 2011-01-05T16:57:10Z -
-
- oai:test.example.com:1588063 - 2011-06-22T16:44:25Z -
-
- oai:test.example.com:1588070 - 2011-01-05T15:14:13Z -
-
- oai:test.example.com:1588078 - 2011-12-19T14:21:58Z -
-
- oai:test.example.com:1588089 - 2011-09-12T12:59:18Z -
-
- oai:test.example.com:1588263 - 2011-10-02T18:56:53Z -
-
- oai:test.example.com:1588269 - 2010-11-03T11:40:02Z -
-
- oai:test.example.com:1588276 - 2010-12-21T14:31:54Z -
-
- oai:test.example.com:1588286 - 2011-09-26T14:24:57Z -
-
- oai:test.example.com:1588293 - 2010-12-08T18:55:27Z -
-
- oai:test.example.com:1588303 - 2011-11-14T13:56:42Z -
-
- oai:test.example.com:1588308 - 2011-10-06T15:59:45Z -
-
- oai:test.example.com:1588335 - 2011-12-22T13:18:08Z -
-
- oai:test.example.com:1588341 - 2011-06-10T14:15:55Z -
-
- oai:test.example.com:1588348 - 2011-11-22T09:44:14Z -
-
- oai:test.example.com:1588359 - 2011-04-26T09:44:26Z -
-
- oai:test.example.com:1588373 - 2011-01-05T12:13:20Z -
-
- oai:test.example.com:1588377 - 2010-12-09T10:48:03Z -
-
- oai:test.example.com:1588381 - 2011-01-05T12:13:20Z -
-
- oai:test.example.com:1588385 - 2011-12-09T15:43:14Z -
-
- oai:test.example.com:1588397 - 2010-12-22T14:09:41Z -
-
- oai:test.example.com:1588400 - 2012-08-19T13:33:31Z -
-
- oai:test.example.com:1588410 - 2011-09-28T16:15:57Z -
-
- oai:test.example.com:1588418 - 2010-11-03T22:08:40Z -
-
- oai:test.example.com:1588425 - 2010-12-14T15:57:44Z -
-
- oai:test.example.com:1588435 - 2011-12-07T00:22:19Z -
-
- oai:test.example.com:1588440 - 2011-12-07T00:26:04Z -
-
- oai:test.example.com:1588448 - 2011-01-14T10:56:40Z -
-
- oai:test.example.com:1588457 - 2013-01-18T15:11:14Z -
-
- oai:test.example.com:1588464 - 2011-09-21T13:47:18Z -
-
- oai:test.example.com:1588469 - 2011-09-22T10:15:16Z -
-
- oai:test.example.com:1588474 - 2011-09-26T14:34:11Z -
-
- oai:test.example.com:1588487 - 2012-01-25T19:00:54Z -
-
- oai:test.example.com:1588499 - 2011-03-01T11:05:07Z -
-
- oai:test.example.com:1588507 - 2011-07-07T14:03:42Z -
-
- oai:test.example.com:1588513 - 2010-12-14T15:54:59Z -
-
- oai:test.example.com:1588518 - 2011-09-22T16:58:19Z -
-
- oai:test.example.com:1588526 - 2012-02-07T17:41:41Z -
-
- oai:test.example.com:1588546 - 2011-03-02T09:30:47Z -
-
- oai:test.example.com:1588554 - 2012-03-27T12:05:42Z -
-
- oai:test.example.com:1588556 - 2012-08-19T13:11:03Z -
-
- oai:test.example.com:1588560 - 2011-01-05T16:59:47Z -
-
- oai:test.example.com:1588568 - 2012-11-26T11:53:01Z -
-
- oai:test.example.com:1588580 - 2011-08-17T16:25:18Z -
-
- oai:test.example.com:1588590 - 2012-03-23T16:44:53Z -
-
- oai:test.example.com:1588597 - 2012-03-12T13:19:56Z -
-
- oai:test.example.com:1588605 - 2010-11-04T14:56:33Z -
-
- oai:test.example.com:1588615 - 2011-09-30T10:54:38Z -
-
- oai:test.example.com:1588621 - 2010-12-23T15:33:12Z -
-
- oai:test.example.com:1588626 - 2011-12-09T17:15:45Z -
-
- oai:test.example.com:1588635 - 2011-09-01T16:12:02Z -
-
- oai:test.example.com:1588651 - 2011-02-03T13:24:49Z -
-
- oai:test.example.com:1588661 - 2011-08-17T13:06:26Z -
-
- oai:test.example.com:1588668 - 2010-12-10T14:35:32Z -
-
- oai:test.example.com:1588678 - 2010-12-20T11:43:17Z -
-
- oai:test.example.com:1588684 - 2011-01-04T17:55:29Z -
-
- oai:test.example.com:1588692 - 2011-02-14T16:14:29Z -
-
- oai:test.example.com:1588725 - 2011-01-11T13:57:45Z -
-
- oai:test.example.com:1588730 - 2011-11-23T10:08:22Z -
-
- oai:test.example.com:1588737 - 2011-01-17T14:18:27Z -
-
- oai:test.example.com:1588751 - 2011-08-22T21:46:23Z -
-
- oai:test.example.com:1588760 - 2012-03-09T14:07:21Z -
-
- oai:test.example.com:1588765 - 2011-08-02T23:37:47Z -
-
- oai:test.example.com:1588774 - 2011-03-16T12:06:28Z -
-
- oai:test.example.com:1588778 - 2011-01-07T09:45:06Z -
-
- oai:test.example.com:1588783 - 2011-09-26T14:15:34Z -
-
- oai:test.example.com:1588790 - 2011-08-17T16:26:48Z -
-
- oai:test.example.com:1588799 - 2012-03-23T16:44:53Z -
-
- oai:test.example.com:1588806 - 2011-01-07T13:54:02Z -
-
- oai:test.example.com:1588813 - 2013-01-03T11:10:52Z -
-
- oai:test.example.com:1588818 - 2011-01-18T16:13:23Z -
-
- oai:test.example.com:1588824 - 2011-01-04T16:51:56Z -
-
- oai:test.example.com:1588832 - 2011-05-19T17:46:09Z -
-
- oai:test.example.com:1588836 - 2011-11-29T11:20:36Z -
-
- oai:test.example.com:1588840 - 2011-09-13T16:13:08Z -
-
- oai:test.example.com:1588845 - 2011-01-07T13:45:11Z -
-
- oai:test.example.com:1588849 - 2011-05-20T16:28:40Z -
-
- oai:test.example.com:1588856 - 2011-01-07T10:56:29Z -
-
- oai:test.example.com:1588869 - 2011-03-08T11:04:53Z -
-
- oai:test.example.com:1588878 - 2011-01-07T09:24:05Z -
-
- oai:test.example.com:1588884 - 2010-11-18T10:38:37Z -
-
- oai:test.example.com:1588891 - 2012-03-09T14:08:42Z -
-
- oai:test.example.com:1588904 - 2012-03-09T14:07:59Z -
-
- oai:test.example.com:1588919 - 2012-01-24T19:07:43Z -
-
- oai:test.example.com:1588926 - 2010-11-03T10:05:37Z -
-
- oai:test.example.com:1588933 - 2011-03-01T11:37:30Z -
-
- oai:test.example.com:1588954 - 2011-02-21T17:57:30Z -
-
- oai:test.example.com:1588961 - 2011-01-05T15:48:12Z -
-
- oai:test.example.com:1588972 - 2011-01-06T15:35:32Z -
-
- oai:test.example.com:1588984 - 2011-12-08T16:55:36Z -
-
- oai:test.example.com:1588990 - 2010-12-07T17:58:53Z -
-
- oai:test.example.com:1589018 - 2011-10-17T12:55:41Z -
-
- oai:test.example.com:1589027 - 2010-11-04T10:52:12Z -
-
- oai:test.example.com:1589041 - 2010-12-03T10:10:49Z -
-
- oai:test.example.com:1589053 - 2011-01-05T16:25:59Z -
-
- oai:test.example.com:1589056 - 2010-11-03T22:47:38Z -
-
- oai:test.example.com:1589059 - 2010-12-23T11:58:54Z -
-
- oai:test.example.com:1589066 - 2011-06-02T00:18:22Z -
-
- oai:test.example.com:1589082 - 2011-06-02T00:17:35Z -
-
- oai:test.example.com:1589098 - 2012-08-19T13:26:05Z -
-
- oai:test.example.com:1589111 - 2012-03-20T10:36:50Z -
-
- oai:test.example.com:1589115 - 2012-04-18T13:42:11Z -
-
- oai:test.example.com:1589129 - 2012-01-27T16:33:10Z -
-
- oai:test.example.com:1589146 - 2011-11-30T10:39:56Z -
-
- oai:test.example.com:1589164 - 2012-11-06T16:05:33Z -
-
- oai:test.example.com:1589172 - 2012-08-29T16:13:27Z -
-
- oai:test.example.com:1589178 - 2010-11-25T09:21:51Z -
-
- oai:test.example.com:1589181 - 2011-11-24T11:26:33Z -
-
- oai:test.example.com:1589183 - 2010-12-17T16:14:54Z -
-
- oai:test.example.com:1589186 - 2011-12-16T14:50:19Z -
-
- oai:test.example.com:1589192 - 2011-01-10T13:26:44Z -
-
- oai:test.example.com:1589205 - 2011-12-15T15:12:02Z -
-
- oai:test.example.com:1589209 - 2010-11-03T14:40:37Z -
-
- oai:test.example.com:1589216 - 2011-01-10T13:54:25Z -
-
- oai:test.example.com:1589222 - 2012-11-23T15:15:29Z -
-
- oai:test.example.com:1589225 - 2012-07-27T14:09:55Z -
-
- oai:test.example.com:1589236 - 2011-06-01T13:21:26Z -
-
- oai:test.example.com:1589242 - 2011-10-11T12:08:04Z -
-
- oai:test.example.com:1589245 - 2012-02-14T12:01:21Z -
-
- oai:test.example.com:1589254 - 2011-12-09T17:19:28Z -
-
- oai:test.example.com:1589262 - 2010-12-16T17:00:37Z -
-
- oai:test.example.com:1589272 - 2010-12-14T15:55:00Z -
-
- oai:test.example.com:1589283 - 2011-01-11T13:48:41Z -
-
- oai:test.example.com:1589290 - 2011-12-22T13:12:06Z -
-
- oai:test.example.com:1589294 - 2010-12-16T16:54:09Z -
-
- oai:test.example.com:1589300 - 2011-06-14T15:11:48Z -
-
- oai:test.example.com:1589308 - 2012-03-23T16:44:53Z -
-
- oai:test.example.com:1589322 - 2010-11-18T10:36:54Z -
-
- oai:test.example.com:1589327 - 2012-07-09T14:13:44Z -
-
- oai:test.example.com:1589338 - 2010-12-17T11:30:10Z -
-
- oai:test.example.com:1589348 - 2011-01-04T16:58:34Z -
-
- oai:test.example.com:1589351 - 2011-11-11T14:59:39Z -
-
- oai:test.example.com:1589354 - 2011-01-12T14:10:12Z -
-
- oai:test.example.com:1589363 - 2011-03-16T11:41:03Z -
-
- oai:test.example.com:1589371 - 2012-05-09T15:10:45Z -
-
- oai:test.example.com:1589377 - 2010-11-18T10:37:54Z -
-
- oai:test.example.com:1589394 - 2011-01-20T17:24:26Z -
-
- oai:test.example.com:1589399 - 2010-12-14T15:55:00Z -
-
- oai:test.example.com:1589403 - 2011-12-08T11:57:03Z -
-
-
\ No newline at end of file diff --git a/sickle/tests/xml/ListRecords.xml b/sickle/tests/xml/ListRecords.xml deleted file mode 100644 index fbc9082..0000000 --- a/sickle/tests/xml/ListRecords.xml +++ /dev/null @@ -1,6468 +0,0 @@ - - - 2013-02-27T09:10:56Z - http://test.example.com/oai - - -
- oai:test.example.com:1585310 - 2011-07-18T16:31:00Z -
-
- -
- oai:test.example.com:1585315 - 2012-11-13T12:09:38Z -
-
- -
- oai:test.example.com:1585322 - 2011-01-10T10:19:23Z -
- - - Sample Title - http://test.example.com/publication/1585322 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585328 - 2011-03-01T16:04:04Z -
- - - Sample Title - http://test.example.com/publication/1585328 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585333 - 2010-12-16T09:26:40Z -
- - - Sample Title - http://test.example.com/publication/1585333 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585347 - 2011-11-25T15:31:13Z -
- - - Sample Title - http://test.example.com/publication/1585347 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585352 - 2011-09-07T17:36:26Z -
- - - Sample Title - http://test.example.com/publication/1585352 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585358 - 2011-12-09T15:53:41Z -
- - - Sample Title - http://test.example.com/publication/1585358 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585379 - 2012-02-14T12:01:43Z -
- - - Sample Title - http://test.example.com/publication/1585379 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1585384 - 2013-02-25T10:42:30Z -
- - - Sample Title - http://test.example.com/publication/1585384 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585399 - 2012-01-24T19:09:59Z -
- - - Sample Title - http://test.example.com/publication/1585399 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585404 - 2011-11-01T22:58:05Z -
- - - Sample Title - http://test.example.com/publication/1585404 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585408 - 2011-11-28T14:16:39Z -
- - - Sample Title - http://test.example.com/publication/1585408 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585412 - 2011-09-07T18:14:23Z -
- - - Sample Title - http://test.example.com/publication/1585412 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585416 - 2011-01-04T17:07:58Z -
- - - Sample Title - http://test.example.com/publication/1585416 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585424 - 2011-12-09T17:23:07Z -
- - - Sample Title - http://test.example.com/publication/1585424 - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585430 - 2011-11-24T13:06:52Z -
- - - Sample Title - http://test.example.com/publication/1585430 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585442 - 2011-11-23T11:37:24Z -
- - - Sample Title - http://test.example.com/publication/1585442 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585448 - 2011-01-17T14:39:43Z -
- - - Sample Title - http://test.example.com/publication/1585448 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585453 - 2011-10-11T12:08:04Z -
- - - Sample Title - http://test.example.com/publication/1585453 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585462 - 2011-05-02T10:47:21Z -
- - - Sample Title - http://test.example.com/publication/1585462 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585467 - 2012-07-09T11:04:41Z -
- - - Sample Title - http://test.example.com/publication/1585467 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585484 - 2011-11-25T15:32:23Z -
- - - Sample Title - http://test.example.com/publication/1585484 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585491 - 2011-11-25T15:29:52Z -
- - - Sample Title - http://test.example.com/publication/1585491 - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585496 - 2011-06-08T12:58:18Z -
- - - Sample Title - http://test.example.com/publication/1585496 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585503 - 2011-12-15T14:49:50Z -
- - - Sample Title - http://test.example.com/publication/1585503 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585507 - 2011-12-16T13:05:11Z -
- - - Sample Title - http://test.example.com/publication/1585507 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585521 - 2010-11-08T14:06:25Z -
- - - Sample Title - http://test.example.com/publication/1585521 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585529 - 2010-11-04T10:11:56Z -
- - - Sample Title - http://test.example.com/publication/1585529 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585540 - 2013-02-13T15:22:00Z -
- - - Sample Title - http://test.example.com/publication/1585540 - John Doe - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585552 - 2010-12-14T15:55:27Z -
- - - Sample Title - http://test.example.com/publication/1585552 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585560 - 2012-02-23T09:26:28Z -
- - - Sample Title - http://test.example.com/publication/1585560 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1585576 - 2011-08-10T16:22:00Z -
-
- -
- oai:test.example.com:1585611 - 2012-03-09T13:56:49Z -
- - - Sample Title - http://test.example.com/publication/1585611 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1585617 - 2012-01-24T19:11:08Z -
- - - Sample Title - http://test.example.com/publication/1585617 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585623 - 2010-12-23T15:34:21Z -
- - - Sample Title - http://test.example.com/publication/1585623 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585635 - 2011-10-10T15:09:18Z -
- - - Sample Title - http://test.example.com/publication/1585635 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585645 - 2012-07-09T16:50:56Z -
- - - Sample Title - http://test.example.com/publication/1585645 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1585672 - 2011-09-28T16:11:17Z -
- - - Sample Title - http://test.example.com/publication/1585672 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585682 - 2011-02-11T16:50:53Z -
- - - Sample Title - http://test.example.com/publication/1585682 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585704 - 2011-01-05T16:55:42Z -
- - - Sample Title - http://test.example.com/publication/1585704 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585710 - 2011-09-28T16:11:57Z -
- - - Sample Title - http://test.example.com/publication/1585710 - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585716 - 2011-01-05T14:38:01Z -
- - - Sample Title - http://test.example.com/publication/1585716 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585724 - 2011-08-24T12:16:56Z -
- - - Sample Title - http://test.example.com/publication/1585724 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585731 - 2012-02-07T17:46:37Z -
- - - Sample Title - http://test.example.com/publication/1585731 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585750 - 2011-01-17T14:38:25Z -
- - - Sample Title - http://test.example.com/publication/1585750 - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585757 - 2012-07-09T13:53:43Z -
- - - Sample Title - http://test.example.com/publication/1585757 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585768 - 2013-01-29T18:46:23Z -
- - - Sample Title - http://test.example.com/publication/1585768 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585782 - 2012-06-10T23:47:26Z -
- - - Sample Title - http://test.example.com/publication/1585782 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585817 - 2010-12-03T10:16:01Z -
- - - Sample Title - http://test.example.com/publication/1585817 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585830 - 2011-01-06T15:22:49Z -
- - - Sample Title - http://test.example.com/publication/1585830 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585840 - 2011-12-22T13:21:37Z -
- - - Sample Title - http://test.example.com/publication/1585840 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585846 - 2011-12-09T17:22:09Z -
- - - Sample Title - http://test.example.com/publication/1585846 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1585850 - 2013-01-10T07:20:53Z -
- - - Sample Title - http://test.example.com/publication/1585850 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1585855 - 2011-03-25T11:54:01Z -
- - - Sample Title - http://test.example.com/publication/1585855 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585878 - 2011-12-02T14:03:49Z -
- - - Sample Title - http://test.example.com/publication/1585878 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585886 - 2011-02-11T16:52:20Z -
- - - Sample Title - http://test.example.com/publication/1585886 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585914 - 2010-11-08T11:11:04Z -
- - - Sample Title - http://test.example.com/publication/1585914 - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585918 - 2012-02-03T11:17:44Z -
- - - Sample Title - http://test.example.com/publication/1585918 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585939 - 2012-10-22T18:01:40Z -
- - - Sample Title - http://test.example.com/publication/1585939 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585956 - 2012-02-03T11:15:51Z -
- - - Sample Title - http://test.example.com/publication/1585956 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585969 - 2010-12-14T15:57:40Z -
- - - Sample Title - http://test.example.com/publication/1585969 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585980 - 2011-09-28T13:53:57Z -
- - - Sample Title - http://test.example.com/publication/1585980 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1585987 - 2012-08-22T10:05:17Z -
- - - Sample Title - http://test.example.com/publication/1585987 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586009 - 2012-08-19T13:35:54Z -
- - - Sample Title - http://test.example.com/publication/1586009 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586024 - 2010-11-03T15:17:34Z -
- - - Sample Title - http://test.example.com/publication/1586024 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1586036 - 2012-02-03T11:14:51Z -
- - - Sample Title - http://test.example.com/publication/1586036 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1586060 - 2011-12-09T13:12:10Z -
- - - Sample Title - http://test.example.com/publication/1586060 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586087 - 2010-11-18T10:37:22Z -
- - - Sample Title - http://test.example.com/publication/1586087 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586095 - 2011-12-09T15:52:12Z -
- - - Sample Title - http://test.example.com/publication/1586095 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586105 - 2011-09-28T16:12:23Z -
- - - Sample Title - http://test.example.com/publication/1586105 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586113 - 2010-12-20T13:16:33Z -
- - - Sample Title - http://test.example.com/publication/1586113 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586120 - 2010-12-16T10:16:16Z -
- - - Sample Title - http://test.example.com/publication/1586120 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586126 - 2012-08-06T12:09:18Z -
- - - Sample Title - http://test.example.com/publication/1586126 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586137 - 2010-12-17T16:14:54Z -
- - - Sample Title - http://test.example.com/publication/1586137 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586139 - 2011-12-07T00:25:03Z -
- - - Sample Title - http://test.example.com/publication/1586139 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586145 - 2010-12-14T15:55:25Z -
- - - Sample Title - http://test.example.com/publication/1586145 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586150 - 2011-09-27T13:14:39Z -
- - - Sample Title - http://test.example.com/publication/1586150 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586154 - 2011-09-29T08:43:11Z -
- - - Sample Title - http://test.example.com/publication/1586154 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586162 - 2011-11-22T16:26:50Z -
-
- -
- oai:test.example.com:1586169 - 2011-01-10T10:41:13Z -
- - - Sample Title - http://test.example.com/publication/1586169 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586186 - 2011-09-28T16:12:51Z -
- - - Sample Title - http://test.example.com/publication/1586186 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586197 - 2011-02-11T16:53:08Z -
- - - Sample Title - http://test.example.com/publication/1586197 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586213 - 2011-01-10T17:17:52Z -
- - - Sample Title - http://test.example.com/publication/1586213 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586232 - 2012-07-06T14:11:34Z -
- - - Sample Title - http://test.example.com/publication/1586232 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586248 - 2011-12-22T13:17:12Z -
- - - Sample Title - http://test.example.com/publication/1586248 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586256 - 2011-11-16T13:14:55Z -
- - - Sample Title - http://test.example.com/publication/1586256 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586267 - 2010-12-16T17:33:53Z -
- - - Sample Title - http://test.example.com/publication/1586267 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586279 - 2011-01-10T15:45:40Z -
- - - Sample Title - http://test.example.com/publication/1586279 - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586284 - 2011-01-10T19:33:50Z -
- - - Sample Title - http://test.example.com/publication/1586284 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586290 - 2011-09-30T10:06:50Z -
- - - Sample Title - http://test.example.com/publication/1586290 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586302 - 2011-02-24T14:32:51Z -
- - - Sample Title - http://test.example.com/publication/1586302 - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586306 - 2011-12-22T13:21:17Z -
- - - Sample Title - http://test.example.com/publication/1586306 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586311 - 2010-11-03T13:13:16Z -
- - - Sample Title - http://test.example.com/publication/1586311 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586335 - 2011-02-11T16:55:16Z -
- - - Sample Title - http://test.example.com/publication/1586335 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586418 - 2011-05-02T10:46:54Z -
- - - Sample Title - http://test.example.com/publication/1586418 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586423 - 2011-11-22T12:26:50Z -
- - - Sample Title - http://test.example.com/publication/1586423 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586428 - 2010-12-20T11:56:13Z -
- - - Sample Title - http://test.example.com/publication/1586428 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586440 - 2011-01-06T15:04:39Z -
- - - Sample Title - http://test.example.com/publication/1586440 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586444 - 2011-07-04T11:03:07Z -
- - - Sample Title - http://test.example.com/publication/1586444 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586449 - 2011-12-09T15:57:55Z -
- - - Sample Title - http://test.example.com/publication/1586449 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586460 - 2011-02-14T18:32:24Z -
- - - Sample Title - http://test.example.com/publication/1586460 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586480 - 2011-05-31T11:58:29Z -
- - - Sample Title - http://test.example.com/publication/1586480 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586483 - 2011-05-31T11:58:56Z -
- - - Sample Title - http://test.example.com/publication/1586483 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586501 - 2011-03-16T11:03:15Z -
- - - Sample Title - http://test.example.com/publication/1586501 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586515 - 2011-08-17T16:41:07Z -
- - - Sample Title - http://test.example.com/publication/1586515 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586527 - 2012-03-30T13:56:16Z -
- - - Sample Title - http://test.example.com/publication/1586527 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1586533 - 2012-11-15T17:26:15Z -
- - - Sample Title - http://test.example.com/publication/1586533 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586539 - 2012-11-15T17:26:55Z -
- - - Sample Title - http://test.example.com/publication/1586539 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1586544 - 2011-12-08T14:33:12Z -
- - - Sample Title - http://test.example.com/publication/1586544 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586550 - 2010-12-14T15:57:41Z -
- - - Sample Title - http://test.example.com/publication/1586550 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586561 - 2012-07-09T10:40:11Z -
- - - Sample Title - http://test.example.com/publication/1586561 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586569 - 2011-10-04T14:48:27Z -
- - - Sample Title - http://test.example.com/publication/1586569 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1586577 - 2011-12-09T15:41:52Z -
- - - Sample Title - http://test.example.com/publication/1586577 - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586584 - 2011-05-10T15:50:20Z -
- - - Sample Title - http://test.example.com/publication/1586584 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586601 - 2010-12-23T10:11:18Z -
- - - Sample Title - http://test.example.com/publication/1586601 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586618 - 2010-11-03T22:08:40Z -
- - - Sample Title - http://test.example.com/publication/1586618 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586626 - 2010-12-22T14:09:41Z -
- - - Sample Title - http://test.example.com/publication/1586626 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586629 - 2011-12-09T15:22:30Z -
- - - Sample Title - http://test.example.com/publication/1586629 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586647 - 2010-12-20T11:43:18Z -
- - - Sample Title - http://test.example.com/publication/1586647 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586669 - 2012-02-23T15:52:58Z -
- - - Sample Title - http://test.example.com/publication/1586669 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1586681 - 2013-01-03T11:12:41Z -
- - - Sample Title - http://test.example.com/publication/1586681 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586697 - 2010-12-17T15:18:42Z -
- - - Sample Title - http://test.example.com/publication/1586697 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586719 - 2010-12-20T09:49:37Z -
- - - Sample Title - http://test.example.com/publication/1586719 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586726 - 2011-01-10T16:00:28Z -
- - - Sample Title - http://test.example.com/publication/1586726 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586732 - 2012-02-23T15:56:51Z -
- - - Sample Title - http://test.example.com/publication/1586732 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1586736 - 2012-08-23T09:25:39Z -
- - - Sample Title - http://test.example.com/publication/1586736 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586740 - 2010-11-18T10:37:41Z -
- - - Sample Title - http://test.example.com/publication/1586740 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586756 - 2010-11-18T10:36:28Z -
- - - Sample Title - http://test.example.com/publication/1586756 - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586779 - 2010-12-17T15:18:42Z -
- - - Sample Title - http://test.example.com/publication/1586779 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586782 - 2011-08-31T07:20:43Z -
- - - Sample Title - http://test.example.com/publication/1586782 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586785 - 2012-08-19T13:39:58Z -
- - - Sample Title - http://test.example.com/publication/1586785 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1586815 - 2011-06-01T13:23:05Z -
-
- -
- oai:test.example.com:1586821 - 2010-12-14T15:57:42Z -
- - - Sample Title - http://test.example.com/publication/1586821 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586833 - 2011-04-21T18:08:37Z -
- - - Sample Title - http://test.example.com/publication/1586833 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586838 - 2010-12-20T11:57:53Z -
- - - Sample Title - http://test.example.com/publication/1586838 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586844 - 2011-11-22T16:38:49Z -
- - - Sample Title - http://test.example.com/publication/1586844 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586848 - 2011-06-15T16:24:44Z -
- - - Sample Title - http://test.example.com/publication/1586848 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586855 - 2010-12-16T17:17:52Z -
- - - Sample Title - http://test.example.com/publication/1586855 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586869 - 2011-01-12T16:02:44Z -
- - - Sample Title - http://test.example.com/publication/1586869 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586876 - 2010-12-14T15:57:44Z -
- - - Sample Title - http://test.example.com/publication/1586876 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586893 - 2011-12-22T13:55:18Z -
- - - Sample Title - http://test.example.com/publication/1586893 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586921 - 2011-08-17T16:46:16Z -
- - - Sample Title - http://test.example.com/publication/1586921 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586928 - 2011-12-09T13:15:32Z -
- - - Sample Title - http://test.example.com/publication/1586928 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586934 - 2011-01-10T17:17:52Z -
- - - Sample Title - http://test.example.com/publication/1586934 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586942 - 2011-12-02T11:09:19Z -
- - - Sample Title - http://test.example.com/publication/1586942 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586951 - 2010-11-03T11:40:02Z -
- - - Sample Title - http://test.example.com/publication/1586951 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586963 - 2012-02-20T09:50:14Z -
- - - Sample Title - http://test.example.com/publication/1586963 - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586967 - 2011-03-10T10:37:43Z -
- - - Sample Title - http://test.example.com/publication/1586967 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586975 - 2011-08-22T21:57:19Z -
- - - Sample Title - http://test.example.com/publication/1586975 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586979 - 2012-08-06T13:11:36Z -
- - - Sample Title - http://test.example.com/publication/1586979 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1586986 - 2010-12-14T14:53:00Z -
- - - Sample Title - http://test.example.com/publication/1586986 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587003 - 2011-09-28T16:13:24Z -
- - - Sample Title - http://test.example.com/publication/1587003 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587011 - 2012-03-27T12:24:40Z -
- - - Sample Title - http://test.example.com/publication/1587011 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587023 - 2010-12-08T18:55:27Z -
- - - Sample Title - http://test.example.com/publication/1587023 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587033 - 2011-12-02T14:00:44Z -
- - - Sample Title - http://test.example.com/publication/1587033 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587040 - 2011-09-30T15:15:01Z -
- - - Sample Title - http://test.example.com/publication/1587040 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587052 - 2011-09-26T14:24:00Z -
- - - Sample Title - http://test.example.com/publication/1587052 - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587058 - 2011-11-22T15:02:12Z -
- - - Sample Title - http://test.example.com/publication/1587058 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587066 - 2011-11-24T13:52:25Z -
- - - Sample Title - http://test.example.com/publication/1587066 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587078 - 2012-08-19T13:42:45Z -
- - - Sample Title - http://test.example.com/publication/1587078 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587082 - 2010-11-18T10:39:41Z -
- - - Sample Title - http://test.example.com/publication/1587082 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587090 - 2011-09-15T17:04:27Z -
- - - Sample Title - http://test.example.com/publication/1587090 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587102 - 2011-01-20T17:25:09Z -
- - - Sample Title - http://test.example.com/publication/1587102 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587114 - 2011-01-10T16:09:55Z -
- - - Sample Title - http://test.example.com/publication/1587114 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587121 - 2012-04-03T17:03:32Z -
- - - Sample Title - http://test.example.com/publication/1587121 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587124 - 2010-12-17T17:08:08Z -
- - - Sample Title - http://test.example.com/publication/1587124 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587130 - 2011-09-30T10:06:12Z -
- - - Sample Title - http://test.example.com/publication/1587130 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587134 - 2012-07-06T13:04:32Z -
- - - Sample Title - http://test.example.com/publication/1587134 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587141 - 2012-07-06T14:22:40Z -
- - - Sample Title - http://test.example.com/publication/1587141 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587158 - 2013-01-16T09:09:37Z -
- - - Sample Title - http://test.example.com/publication/1587158 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587163 - 2010-11-04T14:56:46Z -
- - - Sample Title - http://test.example.com/publication/1587163 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587180 - 2010-12-17T16:14:54Z -
- - - Sample Title - http://test.example.com/publication/1587180 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587197 - 2011-03-17T12:15:24Z -
- - - Sample Title - http://test.example.com/publication/1587197 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587199 - 2011-12-16T13:05:11Z -
- - - Sample Title - http://test.example.com/publication/1587199 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587212 - 2012-01-23T15:52:41Z -
- - - Sample Title - http://test.example.com/publication/1587212 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587216 - 2011-08-24T12:16:56Z -
- - - Sample Title - http://test.example.com/publication/1587216 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587223 - 2011-01-05T16:55:42Z -
- - - Sample Title - http://test.example.com/publication/1587223 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587226 - 2011-01-05T16:55:42Z -
- - - Sample Title - http://test.example.com/publication/1587226 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587233 - 2011-11-23T11:49:23Z -
- - - Sample Title - http://test.example.com/publication/1587233 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587251 - 2011-02-17T11:36:45Z -
- - - Sample Title - http://test.example.com/publication/1587251 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587254 - 2011-01-05T16:55:42Z -
- - - Sample Title - http://test.example.com/publication/1587254 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587283 - 2012-01-24T19:10:27Z -
- - - Sample Title - http://test.example.com/publication/1587283 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587298 - 2012-02-23T15:52:05Z -
- - - Sample Title - http://test.example.com/publication/1587298 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587304 - 2012-05-29T12:05:12Z -
- - - Sample Title - http://test.example.com/publication/1587304 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587311 - 2011-12-22T13:17:35Z -
- - - Sample Title - http://test.example.com/publication/1587311 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587317 - 2012-07-09T09:37:50Z -
- - - Sample Title - http://test.example.com/publication/1587317 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587324 - 2011-05-10T15:33:16Z -
- - - Sample Title - http://test.example.com/publication/1587324 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587328 - 2011-12-22T13:19:18Z -
- - - Sample Title - http://test.example.com/publication/1587328 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587331 - 2010-12-23T14:12:02Z -
- - - Sample Title - http://test.example.com/publication/1587331 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587337 - 2011-12-01T17:03:44Z -
- - - Sample Title - http://test.example.com/publication/1587337 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587349 - 2011-12-22T13:55:37Z -
- - - Sample Title - http://test.example.com/publication/1587349 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587353 - 2010-12-22T14:09:41Z -
- - - Sample Title - http://test.example.com/publication/1587353 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587365 - 2011-09-28T16:14:23Z -
- - - Sample Title - http://test.example.com/publication/1587365 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587375 - 2011-09-09T15:29:56Z -
- - - Sample Title - http://test.example.com/publication/1587375 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587398 - 2011-01-10T15:33:59Z -
- - - Sample Title - http://test.example.com/publication/1587398 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587404 - 2012-01-24T19:10:53Z -
- - - Sample Title - http://test.example.com/publication/1587404 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587409 - 2012-01-24T19:12:46Z -
- - - Sample Title - http://test.example.com/publication/1587409 - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587414 - 2011-01-04T17:51:38Z -
- - - Sample Title - http://test.example.com/publication/1587414 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587426 - 2011-01-04T18:27:23Z -
- - - Sample Title - http://test.example.com/publication/1587426 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - ger - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- ListRecords2.xml -
-
\ No newline at end of file diff --git a/sickle/tests/xml/ListRecords2.xml b/sickle/tests/xml/ListRecords2.xml deleted file mode 100644 index 50ba814..0000000 --- a/sickle/tests/xml/ListRecords2.xml +++ /dev/null @@ -1,6489 +0,0 @@ - - - 2013-02-27T09:12:19Z - http://test.example.com/oai - - -
- oai:test.example.com:1587443 - 2012-02-24T14:08:34Z -
- - - Sample Title - http://test.example.com/1587443 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587458 - 2010-11-18T10:36:38Z -
- - - Sample Title - http://test.example.com/1587458 - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587464 - 2012-02-07T17:45:06Z -
- - - Sample Title - http://test.example.com/1587464 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587474 - 2010-12-14T15:57:39Z -
- - - Sample Title - http://test.example.com/1587474 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587491 - 2011-05-02T12:24:12Z -
- - - Sample Title - http://test.example.com/1587491 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587496 - 2011-10-06T16:00:53Z -
- - - Sample Title - http://test.example.com/1587496 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587502 - 2011-01-04T18:29:21Z -
- - - Sample Title - http://test.example.com/1587502 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587508 - 2011-07-04T17:12:33Z -
- - - Sample Title - http://test.example.com/1587508 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587512 - 2011-10-10T15:09:18Z -
- - - Sample Title - http://test.example.com/1587512 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587524 - 2010-12-20T13:20:21Z -
- - - Sample Title - http://test.example.com/1587524 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587531 - 2012-02-07T10:41:08Z -
- - - Sample Title - http://test.example.com/1587531 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587551 - 2011-12-02T11:05:14Z -
- - - Sample Title - http://test.example.com/1587551 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587560 - 2011-05-31T11:56:07Z -
- - - Sample Title - http://test.example.com/1587560 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587576 - 2010-12-14T15:57:45Z -
- - - Sample Title - http://test.example.com/1587576 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587584 - 2013-01-16T09:10:33Z -
- - - Sample Title - http://test.example.com/1587584 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587590 - 2012-02-24T14:17:26Z -
- - - Sample Title - http://test.example.com/1587590 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587614 - 2011-12-15T22:09:47Z -
- - - Sample Title - http://test.example.com/1587614 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587623 - 2011-08-10T14:00:13Z -
-
- -
- oai:test.example.com:1587637 - 2012-08-22T14:15:24Z -
- - - Sample Title - http://test.example.com/1587637 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587641 - 2011-12-15T14:49:16Z -
- - - Sample Title - http://test.example.com/1587641 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587650 - 2011-01-10T11:12:39Z -
- - - Sample Title - http://test.example.com/1587650 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587657 - 2011-01-04T17:51:38Z -
- - - Sample Title - http://test.example.com/1587657 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587661 - 2010-12-08T18:55:27Z -
- - - Sample Title - http://test.example.com/1587661 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587668 - 2010-12-02T11:27:26Z -
- - - Sample Title - http://test.example.com/1587668 - John Doe - John Doe - John Doe - John Doe - John Doe - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587674 - 2011-09-30T10:05:47Z -
- - - Sample Title - http://test.example.com/1587674 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587689 - 2011-01-17T15:24:47Z -
- - - Sample Title - http://test.example.com/1587689 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587695 - 2011-01-10T11:12:39Z -
- - - Sample Title - http://test.example.com/1587695 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587698 - 2011-12-16T12:20:32Z -
- - - Sample Title - http://test.example.com/1587698 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587702 - 2011-01-04T12:03:29Z -
- - - Sample Title - http://test.example.com/1587702 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587707 - 2010-12-14T15:57:55Z -
- - - Sample Title - http://test.example.com/1587707 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587713 - 2010-12-10T09:40:44Z -
- - - Sample Title - http://test.example.com/1587713 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587726 - 2010-12-02T11:42:05Z -
- - - Sample Title - http://test.example.com/1587726 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587736 - 2012-01-24T18:57:09Z -
- - - Sample Title - http://test.example.com/1587736 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587750 - 2012-01-26T09:38:18Z -
- - - Sample Title - http://test.example.com/1587750 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587760 - 2012-02-24T14:15:07Z -
- - - Sample Title - http://test.example.com/1587760 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587766 - 2012-11-26T15:05:39Z -
- - - Sample Title - http://test.example.com/1587766 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587776 - 2010-12-14T15:57:43Z -
- - - Sample Title - http://test.example.com/1587776 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587782 - 2011-01-26T09:36:27Z -
- - - Sample Title - http://test.example.com/1587782 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587786 - 2011-09-02T13:47:45Z -
- - - Sample Title - http://test.example.com/1587786 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587793 - 2012-03-14T12:16:50Z -
- - - Sample Title - http://test.example.com/1587793 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587805 - 2012-03-09T14:46:30Z -
- - - Sample Title - http://test.example.com/1587805 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587814 - 2011-01-10T16:06:51Z -
- - - Sample Title - http://test.example.com/1587814 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587836 - 2011-01-17T14:53:57Z -
- - - Sample Title - http://test.example.com/1587836 - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587840 - 2011-09-30T16:35:51Z -
- - - Sample Title - http://test.example.com/1587840 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587850 - 2012-01-25T19:00:17Z -
- - - Sample Title - http://test.example.com/1587850 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587864 - 2010-12-05T12:28:34Z -
- - - Sample Title - http://test.example.com/1587864 - John Doe - eng(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/review - doc-type:review - text - - -
- -
- oai:test.example.com:1587866 - 2011-09-30T10:05:22Z -
- - - Sample Title - http://test.example.com/1587866 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587872 - 2010-12-17T16:14:53Z -
- - - Sample Title - http://test.example.com/1587872 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587893 - 2010-11-11T09:53:38Z -
- - - Sample Title - http://test.example.com/1587893 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587898 - 2010-11-11T09:54:05Z -
- - - Sample Title - http://test.example.com/1587898 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1587918 - 2011-01-04T18:29:22Z -
- - - Sample Title - http://test.example.com/1587918 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587944 - 2011-11-30T10:48:41Z -
-
- -
- oai:test.example.com:1587956 - 2010-12-17T15:18:41Z -
- - - Sample Title - http://test.example.com/1587956 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587970 - 2010-12-20T13:18:23Z -
- - - Sample Title - http://test.example.com/1587970 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587974 - 2012-01-26T09:38:18Z -
- - - Sample Title - http://test.example.com/1587974 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587979 - 2012-01-26T09:38:18Z -
- - - Sample Title - http://test.example.com/1587979 - John Doe - John Doe - John Doe - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1587984 - 2011-06-16T00:43:39Z -
- - - Sample Title - http://test.example.com/1587984 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1587994 - 2011-05-10T15:54:10Z -
- - - Sample Title - http://test.example.com/1587994 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588008 - 2011-09-22T10:17:56Z -
- - - Sample Title - http://test.example.com/1588008 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588013 - 2011-09-28T16:16:37Z -
- - - Sample Title - http://test.example.com/1588013 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588026 - 2011-09-09T08:06:53Z -
- - - Sample Title - http://test.example.com/1588026 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1588031 - 2011-01-05T16:57:10Z -
- - - Sample Title - http://test.example.com/1588031 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/conferenceObject - doc-type:conferenceObject - text - - -
- -
- oai:test.example.com:1588063 - 2011-06-22T16:44:25Z -
- - - Sample Title - http://test.example.com/1588063 - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588070 - 2011-01-05T15:14:13Z -
- - - Sample Title - http://test.example.com/1588070 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588078 - 2011-12-19T14:21:58Z -
- - - Sample Title - http://test.example.com/1588078 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588089 - 2011-09-12T12:59:18Z -
- - - Sample Title - http://test.example.com/1588089 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588263 - 2011-10-02T18:56:53Z -
- - - Sample Title - http://test.example.com/1588263 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588269 - 2010-11-03T11:40:02Z -
- - - Sample Title - http://test.example.com/1588269 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588276 - 2010-12-21T14:31:54Z -
- - - Sample Title - http://test.example.com/1588276 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588286 - 2011-09-26T14:24:57Z -
- - - Sample Title - http://test.example.com/1588286 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588293 - 2010-12-08T18:55:27Z -
- - - Sample Title - http://test.example.com/1588293 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588303 - 2011-11-14T13:56:42Z -
- - - Sample Title - http://test.example.com/1588303 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588308 - 2011-10-06T15:59:45Z -
- - - Sample Title - http://test.example.com/1588308 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588335 - 2011-12-22T13:18:08Z -
- - - Sample Title - http://test.example.com/1588335 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588341 - 2011-06-10T14:15:55Z -
-
- -
- oai:test.example.com:1588348 - 2011-11-22T09:44:14Z -
- - - Sample Title - http://test.example.com/1588348 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588359 - 2011-04-26T09:44:26Z -
- - - Sample Title - http://test.example.com/1588359 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588373 - 2011-01-05T12:13:20Z -
- - - Sample Title - http://test.example.com/1588373 - John Doe - John Doe - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588377 - 2010-12-09T10:48:03Z -
- - - Sample Title - http://test.example.com/1588377 - John Doe - John Doe - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588381 - 2011-01-05T12:13:20Z -
- - - Sample Title - http://test.example.com/1588381 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588385 - 2011-12-09T15:43:14Z -
- - - Sample Title - http://test.example.com/1588385 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588397 - 2010-12-22T14:09:41Z -
- - - Sample Title - http://test.example.com/1588397 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588400 - 2012-08-19T13:33:31Z -
- - - Sample Title - http://test.example.com/1588400 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588410 - 2011-09-28T16:15:57Z -
- - - Sample Title - http://test.example.com/1588410 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588418 - 2010-11-03T22:08:40Z -
- - - Sample Title - http://test.example.com/1588418 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588425 - 2010-12-14T15:57:44Z -
- - - Sample Title - http://test.example.com/1588425 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588435 - 2011-12-07T00:22:19Z -
- - - Sample Title - http://test.example.com/1588435 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588440 - 2011-12-07T00:26:04Z -
- - - Sample Title - http://test.example.com/1588440 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588448 - 2011-01-14T10:56:40Z -
- - - Sample Title - http://test.example.com/1588448 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588457 - 2013-01-18T15:11:14Z -
- - - Sample Title - http://test.example.com/1588457 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588464 - 2011-09-21T13:47:18Z -
-
- -
- oai:test.example.com:1588469 - 2011-09-22T10:15:16Z -
- - - Sample Title - http://test.example.com/1588469 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588474 - 2011-09-26T14:34:11Z -
- - - Sample Title - http://test.example.com/1588474 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588487 - 2012-01-25T19:00:54Z -
- - - Sample Title - http://test.example.com/1588487 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588499 - 2011-03-01T11:05:07Z -
- - - Sample Title - http://test.example.com/1588499 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588507 - 2011-07-07T14:03:42Z -
- - - Sample Title - http://test.example.com/1588507 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588513 - 2010-12-14T15:54:59Z -
- - - Sample Title - http://test.example.com/1588513 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588518 - 2011-09-22T16:58:19Z -
- - - Sample Title - http://test.example.com/1588518 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588526 - 2012-02-07T17:41:41Z -
- - - Sample Title - http://test.example.com/1588526 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588546 - 2011-03-02T09:30:47Z -
- - - Sample Title - http://test.example.com/1588546 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588554 - 2012-03-27T12:05:42Z -
- - - Sample Title - http://test.example.com/1588554 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588556 - 2012-08-19T13:11:03Z -
- - - Sample Title - http://test.example.com/1588556 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588560 - 2011-01-05T16:59:47Z -
- - - Sample Title - http://test.example.com/1588560 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588568 - 2012-11-26T11:53:01Z -
- - - Sample Title - http://test.example.com/1588568 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588580 - 2011-08-17T16:25:18Z -
- - - Sample Title - http://test.example.com/1588580 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588590 - 2012-03-23T16:44:53Z -
- - - Sample Title - http://test.example.com/1588590 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588597 - 2012-03-12T13:19:56Z -
- - - Sample Title - http://test.example.com/1588597 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588605 - 2010-11-04T14:56:33Z -
- - - Sample Title - http://test.example.com/1588605 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588615 - 2011-09-30T10:54:38Z -
- - - Sample Title - http://test.example.com/1588615 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588621 - 2010-12-23T15:33:12Z -
- - - Sample Title - http://test.example.com/1588621 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588626 - 2011-12-09T17:15:45Z -
- - - Sample Title - http://test.example.com/1588626 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588635 - 2011-09-01T16:12:02Z -
- - - Sample Title - http://test.example.com/1588635 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588651 - 2011-02-03T13:24:49Z -
- - - Sample Title - http://test.example.com/1588651 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588661 - 2011-08-17T13:06:26Z -
- - - Sample Title - http://test.example.com/1588661 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588668 - 2010-12-10T14:35:32Z -
- - - Sample Title - http://test.example.com/1588668 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588678 - 2010-12-20T11:43:17Z -
- - - Sample Title - http://test.example.com/1588678 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588684 - 2011-01-04T17:55:29Z -
- - - Sample Title - http://test.example.com/1588684 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588692 - 2011-02-14T16:14:29Z -
- - - Sample Title - http://test.example.com/1588692 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588725 - 2011-01-11T13:57:45Z -
- - - Sample Title - http://test.example.com/1588725 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588730 - 2011-11-23T10:08:22Z -
- - - Sample Title - http://test.example.com/1588730 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588737 - 2011-01-17T14:18:27Z -
- - - Sample Title - http://test.example.com/1588737 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588751 - 2011-08-22T21:46:23Z -
- - - Sample Title - http://test.example.com/1588751 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588760 - 2012-03-09T14:07:21Z -
- - - Sample Title - http://test.example.com/1588760 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1588765 - 2011-08-02T23:37:47Z -
- - - Sample Title - http://test.example.com/1588765 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588774 - 2011-03-16T12:06:28Z -
- - - Sample Title - http://test.example.com/1588774 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588778 - 2011-01-07T09:45:06Z -
- - - Sample Title - http://test.example.com/1588778 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588783 - 2011-09-26T14:15:34Z -
- - - Sample Title - http://test.example.com/1588783 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588790 - 2011-08-17T16:26:48Z -
- - - Sample Title - http://test.example.com/1588790 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588799 - 2012-03-23T16:44:53Z -
- - - Sample Title - http://test.example.com/1588799 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588806 - 2011-01-07T13:54:02Z -
- - - Sample Title - http://test.example.com/1588806 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588813 - 2013-01-03T11:10:52Z -
- - - Sample Title - http://test.example.com/1588813 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588818 - 2011-01-18T16:13:23Z -
- - - Sample Title - http://test.example.com/1588818 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588824 - 2011-01-04T16:51:56Z -
- - - Sample Title - http://test.example.com/1588824 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588832 - 2011-05-19T17:46:09Z -
- - - Sample Title - http://test.example.com/1588832 - John Doe - John Doe - John Doe - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588836 - 2011-11-29T11:20:36Z -
- - - Sample Title - http://test.example.com/1588836 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588840 - 2011-09-13T16:13:08Z -
- - - Sample Title - http://test.example.com/1588840 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588845 - 2011-01-07T13:45:11Z -
- - - Sample Title - http://test.example.com/1588845 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588849 - 2011-05-20T16:28:40Z -
-
- -
- oai:test.example.com:1588856 - 2011-01-07T10:56:29Z -
- - - Sample Title - http://test.example.com/1588856 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588869 - 2011-03-08T11:04:53Z -
- - - Sample Title - http://test.example.com/1588869 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588878 - 2011-01-07T09:24:05Z -
- - - Sample Title - http://test.example.com/1588878 - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588884 - 2010-11-18T10:38:37Z -
- - - Sample Title - http://test.example.com/1588884 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588891 - 2012-03-09T14:08:42Z -
- - - Sample Title - http://test.example.com/1588891 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1588904 - 2012-03-09T14:07:59Z -
- - - Sample Title - http://test.example.com/1588904 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1588919 - 2012-01-24T19:07:43Z -
- - - Sample Title - http://test.example.com/1588919 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588926 - 2010-11-03T10:05:37Z -
- - - Sample Title - http://test.example.com/1588926 - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588933 - 2011-03-01T11:37:30Z -
- - - Sample Title - http://test.example.com/1588933 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588954 - 2011-02-21T17:57:30Z -
- - - Sample Title - http://test.example.com/1588954 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588961 - 2011-01-05T15:48:12Z -
- - - Sample Title - http://test.example.com/1588961 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588972 - 2011-01-06T15:35:32Z -
- - - Sample Title - http://test.example.com/1588972 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588984 - 2011-12-08T16:55:36Z -
- - - Sample Title - http://test.example.com/1588984 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1588990 - 2010-12-07T17:58:53Z -
- - - Sample Title - http://test.example.com/1588990 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589018 - 2011-10-17T12:55:41Z -
- - - Sample Title - http://test.example.com/1589018 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589027 - 2010-11-04T10:52:12Z -
- - - Sample Title - http://test.example.com/1589027 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589041 - 2010-12-03T10:10:49Z -
- - - Sample Title - http://test.example.com/1589041 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589053 - 2011-01-05T16:25:59Z -
- - - Sample Title - http://test.example.com/1589053 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589056 - 2010-11-03T22:47:38Z -
- - - Sample Title - http://test.example.com/1589056 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589059 - 2010-12-23T11:58:54Z -
- - - Sample Title - http://test.example.com/1589059 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589066 - 2011-06-02T00:18:22Z -
- - - Sample Title - http://test.example.com/1589066 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2007 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589082 - 2011-06-02T00:17:35Z -
- - - Sample Title - http://test.example.com/1589082 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589098 - 2012-08-19T13:26:05Z -
- - - Sample Title - http://test.example.com/1589098 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1589111 - 2012-03-20T10:36:50Z -
- - - Sample Title - http://test.example.com/1589111 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589115 - 2012-04-18T13:42:11Z -
- - - Sample Title - http://test.example.com/1589115 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2008 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589129 - 2012-01-27T16:33:10Z -
- - - Sample Title - http://test.example.com/1589129 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589146 - 2011-11-30T10:39:56Z -
-
- -
- oai:test.example.com:1589164 - 2012-11-06T16:05:33Z -
- - - Sample Title - http://test.example.com/1589164 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589172 - 2012-08-29T16:13:27Z -
- - - Sample Title - http://test.example.com/1589172 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589178 - 2010-11-25T09:21:51Z -
- - - Sample Title - http://test.example.com/1589178 - John Doe - ger - Sample Source - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589181 - 2011-11-24T11:26:33Z -
- - - Sample Title - http://test.example.com/1589181 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - ger - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589183 - 2010-12-17T16:14:54Z -
- - - Sample Title - http://test.example.com/1589183 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589186 - 2011-12-16T14:50:19Z -
- - - Sample Title - http://test.example.com/1589186 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589192 - 2011-01-10T13:26:44Z -
- - - Sample Title - http://test.example.com/1589192 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589205 - 2011-12-15T15:12:02Z -
- - - Sample Title - http://test.example.com/1589205 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589209 - 2010-11-03T14:40:37Z -
- - - Sample Title - http://test.example.com/1589209 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589216 - 2011-01-10T13:54:25Z -
- - - Sample Title - http://test.example.com/1589216 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589222 - 2012-11-23T15:15:29Z -
- - - Sample Title - http://test.example.com/1589222 - John Doe - eng - Sample Source - 2010 - info:eu-repo/semantics/review - doc-type:review - text - - -
- -
- oai:test.example.com:1589225 - 2012-07-27T14:09:55Z -
- - - Sample Title - http://test.example.com/1589225 - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1589236 - 2011-06-01T13:21:26Z -
-
- -
- oai:test.example.com:1589242 - 2011-10-11T12:08:04Z -
- - - Sample Title - http://test.example.com/1589242 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589245 - 2012-02-14T12:01:21Z -
- - - Sample Title - http://test.example.com/1589245 - John Doe - John Doe - John Doe - John Doe - John Doe - Interactions with water are crucial for the properties, transformation and climate effects of atmospheric aerosols. Here we present a conceptual framework for the interaction of amorphous aerosol particles with water vapor, outlining characteristic features and differences in comparison to crystalline particles. We used a hygroscopicity tandem differential mobility analyzer (H-TDMA) to characterize the hydration and dehydration of crystalline ammonium sulfate, amorphous oxalic acid and amorphous levoglucosan particles (diameter ~100 nm, relative humidity 5–95% at 298 K). The experimental data and accompanying Köhler model calculations provide new insights into particle microstructure, surface adsorption, bulk absorption, phase transitions and hygroscopic growth. The results of these and related investigations lead to the following conclusions: - -(1) Many organic substances, including carboxylic acids, carbohydrates and proteins, tend to form amorphous rather than crystalline phases upon drying of aqueous solution droplets. Depending on viscosity and microstructure, the amorphous phases can be classified as glasses, rubbers, gels or viscous liquids. - -(2) Amorphous organic substances tend to absorb water vapor and undergo gradual deliquescence and hygroscopic growth at lower relative humidity than their crystalline counterparts. - -(3) In the course of hydration and dehydration, certain organic substances can form rubber- or gel-like structures (supramolecular networks) and undergo transitions between swollen and collapsed network structures. - -(4) Organic gels or (semi-)solid amorphous shells (glassy, rubbery, ultra-viscous) with low molecular diffusivity can kinetically limit the uptake and release of water and may influence the hygroscopic growth and activation of aerosol particles as cloud condensation nuclei (CCN) and ice nuclei (IN). Moreover, (semi-)solid amorphous phases may influence the uptake of gaseous photo-oxidants and the chemical transformation and aging of atmospheric aerosols. - -(5) The shape and porosity of amorphous and crystalline particles formed upon dehydration of aqueous solution droplets depend on chemical composition and drying conditions. The apparent volume void fractions of particles with highly porous structures can range up to ~50% or more (xerogels, aerogels). - -(6) For efficient description of water uptake and phase transitions of aerosol particles, we propose not to limit the terms deliquescence and efflorescence to equilibrium phase transitions of crystalline substances. Instead we propose generalized definitions according to which amorphous and crystalline components can undergo gradual or prompt, partial or full deliquescence or efflorescence. - -We suggest that (semi-)solid amorphous phases may be important not only in the upper atmosphere as suggested in recent studies of glass formation at low temperatures. Depending on relative humidity, (semi-)solid phases and moisture-induced glass transitions may also play a role in gas-particle interactions at ambient temperatures in the lower atmosphere. - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - application/pdf - - -
- -
- oai:test.example.com:1589254 - 2011-12-09T17:19:28Z -
- - - Sample Title - http://test.example.com/1589254 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589262 - 2010-12-16T17:00:37Z -
- - - Sample Title - http://test.example.com/1589262 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589272 - 2010-12-14T15:55:00Z -
- - - Sample Title - http://test.example.com/1589272 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589283 - 2011-01-11T13:48:41Z -
- - - Sample Title - http://test.example.com/1589283 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589290 - 2011-12-22T13:12:06Z -
- - - Sample Title - http://test.example.com/1589290 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589294 - 2010-12-16T16:54:09Z -
- - - Sample Title - http://test.example.com/1589294 - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589300 - 2011-06-14T15:11:48Z -
- - - Sample Title - http://test.example.com/1589300 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589308 - 2012-03-23T16:44:53Z -
- - - Sample Title - http://test.example.com/1589308 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589322 - 2010-11-18T10:36:54Z -
- - - Sample Title - http://test.example.com/1589322 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589327 - 2012-07-09T14:13:44Z -
- - - Sample Title - http://test.example.com/1589327 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589338 - 2010-12-17T11:30:10Z -
- - - Sample Title - http://test.example.com/1589338 - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589348 - 2011-01-04T16:58:34Z -
- - - Sample Title - http://test.example.com/1589348 - John Doe - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589351 - 2011-11-11T14:59:39Z -
- - - Sample Title - http://test.example.com/1589351 - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589354 - 2011-01-12T14:10:12Z -
- - - Sample Title - http://test.example.com/1589354 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589363 - 2011-03-16T11:41:03Z -
- - - Sample Title - http://test.example.com/1589363 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - eng - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589371 - 2012-05-09T15:10:45Z -
- - - Sample Title - http://test.example.com/1589371 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589377 - 2010-11-18T10:37:54Z -
- - - Sample Title - http://test.example.com/1589377 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - Sample Subject - Sample Subject - Sample Subject - Sample Subject - Sample Subject - ger - Sample Source(?s) - - Sample Publisher - 2009 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589394 - 2011-01-20T17:24:26Z -
- - - Sample Title - http://test.example.com/1589394 - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589399 - 2010-12-14T15:55:00Z -
- - - Sample Title - http://test.example.com/1589399 - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
- -
- oai:test.example.com:1589403 - 2011-12-08T11:57:03Z -
- - - Sample Title - http://test.example.com/1589403 - John Doe - John Doe - John Doe - John Doe - John Doe - John Doe - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod -tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, -quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo -consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse -cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non -proident, sunt in culpa qui officia deserunt mollit anim id est laborum. - eng - Sample Source(?s) - - Sample Publisher - 2010 - info:eu-repo/semantics/article - doc-type:article - text - - -
-
-
\ No newline at end of file diff --git a/sickle/tests/xml/ListSets.xml b/sickle/tests/xml/ListSets.xml deleted file mode 100644 index 64921c5..0000000 --- a/sickle/tests/xml/ListSets.xml +++ /dev/null @@ -1,531 +0,0 @@ - - - 2013-02-27T09:52:00Z - http://test.example.com/oai - - - bi - All BI publications (already published) - - - bookChapterFtxt - Book Chapter with fulltext - - - bookEditor - Book: Editor - - - bookEditorFtxt - Book: Editor with fulltext - - - bookFtxt - Book - - - caseStudy - Case Study - - - caseStudyFtxt - Case Study with fulltext - - - conferenceAbstracFtxt - Conference Abstract with fulltext - - - conferenceAbstract - Conference Abstract - - - conferenceEditor - Conference: Editor - - - conferenceEditorFtxt - Conference: Editor with fulltext - - - conferenceFtxt - Conference Proceeding/Paper with fulltext - - - ddc:000 - Generalities, knowledge, the book - - - ddc:004 - Data processing, computer science, computer systems - - - ddc:010 - Bibliographies - - - ddc:020 - Library and information sciences - - - ddc:030 - Encyclopedias and books of facts - - - ddc:050 - Magazines, journals and serials - - - ddc:060 - Associations, organizations, and museum science - - - ddc:070 - News media, journalism and publishing - - - ddc:080 - General collections - - - ddc:090 - Manuscripts and rare books - - - ddc:100 - Philosophy - - - ddc:130 - Parapsychology and occultism - - - ddc:150 - Psychology - - - ddc:200 - Religion, Philosophy and theory of religion - - - ddc:220 - Bible - - - ddc:230 - Christianity and Christian theology - - - ddc:290 - Comparative religion and other religions - - - ddc:300 - Social sciences, sociology and anthropology - - - ddc:310 - Statistics - - - ddc:320 - Political science - - - ddc:330 - Economics - - - ddc:340 - Law - - - ddc:350 - Public administration - - - ddc:355 - Military science - - - ddc:360 - Social problems and social services - - - ddc:370 - Education - - - ddc:380 - Commerce, communications, transportation - - - ddc:390 - Customs, etiquette, folklore - - - ddc:400 - Language, linguistics - - - ddc:420 - English and Old English languages - - - ddc:430 - German language - - - ddc:439 - Other Germanic languages - - - ddc:440 - French and related languages - - - ddc:450 - Italian, Romanian and related languages - - - ddc:460 - Spanish and Portuguese languages - - - ddc:470 - Latin and Italic languages - - - ddc:480 - Classical and modern Greek languages - - - ddc:490 - Other languages - - - ddc:500 - Science - - - ddc:510 - Mathematics - - - ddc:520 - Astronomy and allied sciences - - - ddc:530 - Physics - - - ddc:540 - Chemistry and allied sciences - - - ddc:550 - Earth sciences and geology - - - ddc:560 - Fossils and prehistoric life - - - ddc:570 - Life sciences, biology - - - ddc:580 - Plants (Botany) - - - ddc:590 - Animals (Zoology) - - - ddc:600 - Technology (Applied sciences) - - - ddc:610 - Medicine and health - - - ddc:620 - Engineering - - - ddc:630 - Agriculture and related technologies (including veterinary medicine) - - - ddc:640 - Home and family management - - - ddc:650 - Management and public relations - - - ddc:660 - Chemical engineering - - - ddc:670 - Manufacturing - - - ddc:690 - Building and construction - - - ddc:700 - Arts - - - ddc:710 - Landscaping and area planning - - - ddc:720 - Architecture - - - ddc:730 - Sculpture, numismatics, ceramics, and metalwork - - - ddc:740 - Drawing and decorative arts - - - ddc:741.5 - Cartoons, caricatures - - - ddc:750 - Painting - - - ddc:760 - Graphic arts, prints - - - ddc:770 - Photography and computer art - - - ddc:780 - Music - - - ddc:790 - Recreational and performing arts - - - ddc:791 - Public performances - - - ddc:792 - Stage presentations - - - ddc:793 - Indoor games and amusements - - - ddc:796 - Athletic and outdoor sports and games - - - ddc:800 - Literature, rhetoric, and criticism - - - ddc:810 - American literature in English - - - ddc:820 - English and Old English literatures - - - ddc:830 - German literature - - - ddc:839 - Other Germanic literatures - - - ddc:840 - French and related literatures - - - ddc:850 - Italian, Romanian and related literatures - - - ddc:860 - Spanish and Portuguese literatures - - - ddc:870 - Latin and Italic literatures - - - ddc:880 - Classical and modern Greek literatures - - - ddc:890 - Literatures of other languages - - - ddc:900 - History - - - ddc:910 - Geography and travel - - - ddc:914.3 - Geography of and travel in Germany - - - ddc:920 - Biography, genealogy, and insignia - - - ddc:930 - History of ancient world (to ca. 499), archaeology - - - ddc:940 - History of Europe - - - ddc:943 - History of Germany - - - ddc:950 - History of Asia - - - ddc:960 - History of Africa - - - ddc:970 - History of North America - - - ddc:980 - History of South America - - - ddc:990 - History of other areas - - - dissertationFtxt - Dissertation with fulltext - - - doc-type:article - Article - - - doc-type:book - Book - - - doc-type:bookPart - BookPart - - - doc-type:conferenceObject - ConferenceObject - - - doc-type:doctoralThesis - DoctoralThesis - - - doc-type:preprint - Preprint - - - doc-type:report - Report - - - doc-type:review - Review - - - doc-type:workingPaper - Working Paper - - - driver - All documents with fulltext - - - ec_fundedresources - EC funded (OpenAire) - - - journalArticleFtxt - Journal Article with fulltext - - - licentiateThesis - Licentiate Thesis - - - licentiateThesisFtxt - Licentiate Thesis with fulltext - - - newspaperArticle - Newspaper Article - - - newspaperArticleFtxt - Newspaper Article with fulltext - - - open_access - All documents with fulltext - - - preprintFtxt - Preprint with fulltext - - - reportFtxt - Report with fulltext - - - reviewFtxt - Book Review with fulltext - - - translation - Translation - - - translationFtxt - Translation with fulltext - - - workingPaperFtxt - Working Paper with fulltext - - - \ No newline at end of file diff --git a/sickle/tests/xml/badArgument.xml b/sickle/tests/xml/badArgument.xml deleted file mode 100644 index 0e99e53..0000000 --- a/sickle/tests/xml/badArgument.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - 2002-06-01T19:20:30Z - - http://memory.loc.gov/cgi-bin/oai - - \ No newline at end of file diff --git a/sickle/tests/xml/badResumptionToken.xml b/sickle/tests/xml/badResumptionToken.xml deleted file mode 100644 index a349b39..0000000 --- a/sickle/tests/xml/badResumptionToken.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - 2001-06-01T19:20:30Z - - http://purl.org/alcme/etdcat/servlet/OAIHandler - This resumptionToken is invalid - \ No newline at end of file diff --git a/sickle/tests/xml/cannotDisseminateFormat.xml b/sickle/tests/xml/cannotDisseminateFormat.xml deleted file mode 100644 index 8ec6ec6..0000000 --- a/sickle/tests/xml/cannotDisseminateFormat.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - 2002-02-08T08:55:46Z - http://arXiv.org/oai1 - - \ No newline at end of file diff --git a/sickle/tests/xml/idDoesNotExist.xml b/sickle/tests/xml/idDoesNotExist.xml deleted file mode 100644 index 5a3348f..0000000 --- a/sickle/tests/xml/idDoesNotExist.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - 2002-06-08T15:19:13Z - - http://memory.loc.gov/cgi-bin/oai - oai:lcoa1.loc.gov:loc.rbc/rbpe.00000111 has the - structure of a valid LOC identifier, but it maps to no known - item - \ No newline at end of file diff --git a/sickle/tests/xml/noRecordsMatch.xml b/sickle/tests/xml/noRecordsMatch.xml deleted file mode 100644 index 14ef20a..0000000 --- a/sickle/tests/xml/noRecordsMatch.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - 2002-02-08T14:27:19Z - - http://www.perseus.tufts.edu/cgi-bin/pdataprov - - diff --git a/sickle/tests/xml/noSetHierarchy.xml b/sickle/tests/xml/noSetHierarchy.xml deleted file mode 100644 index f826478..0000000 --- a/sickle/tests/xml/noSetHierarchy.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - 2001-06-01T19:20:30Z - - http://purl.org/alcme/etdcat/servlet/OAIHandler - This repository does not - support sets - \ No newline at end of file diff --git a/sickle/utils.py b/sickle/utils.py index 93d515b..02bd334 100644 --- a/sickle/utils.py +++ b/sickle/utils.py @@ -1,11 +1,11 @@ # coding: utf-8 """ - utils - ~~~~~ + sickle.utils + ~~~~~~~~~~~~ Collects utility functions. - :copyright: Copright 2013 Mathias Loesch + :copyright: Copyright 2015 Mathias Loesch """ import re @@ -20,19 +20,25 @@ def get_namespace(element): return re.search('(\{.*\})', element.tag).group(1) -def xml_to_dict(tree, paths=['.//'], nsmap={}, strip_ns=False): +def xml_to_dict(tree, paths=None, nsmap=None, strip_ns=False): """Convert an XML tree to a dictionary. + :param tree: etree Element + :type tree: :class:`lxml.etree._Element` :param paths: An optional list of XPath expressions applied on the XML tree. + :type paths: list[basestring] :param nsmap: An optional prefix-namespace mapping for conciser spec of paths. + :type nsmap: dict :param strip_ns: Flag for whether to remove the namespaces from the tags. + :type strip_ns: bool """ + paths = paths or ['.//'] + nsmap = nsmap or {} fields = defaultdict(list) for path in paths: elements = tree.findall(path, nsmap) for element in elements: - tag = element.tag - if strip_ns: - tag = re.sub(r'\{.*\}', '', tag) + tag = re.sub( + r'\{.*\}', '', element.tag) if strip_ns else element.tag fields[tag].append(element.text) return dict(fields)