├── .gitignore ├── CREATING_NEW_DATASOURCE.md ├── LICENSE ├── MAJOR_CHANGES.md ├── PROPERTIES.md ├── README.md ├── WF_MIGRATION_TO_1.3.0.md ├── mock-repository-content ├── sample_0.xml ├── sample_1.xml ├── sample_10.xml ├── sample_100.xml ├── sample_101.xml ├── sample_102.xml ├── sample_103.xml ├── sample_104.xml ├── sample_105.xml ├── sample_106.xml ├── sample_107.xml ├── sample_108.xml ├── sample_109.xml ├── sample_11.xml ├── sample_110.xml ├── sample_111.xml ├── sample_112.xml ├── sample_113.xml ├── sample_114.xml ├── sample_115.xml ├── sample_116.xml ├── sample_117.xml ├── sample_118.xml ├── sample_119.xml ├── sample_12.xml ├── sample_120.xml ├── sample_121.xml ├── sample_122.xml ├── sample_123.xml ├── sample_124.xml ├── sample_125.xml ├── sample_126.xml ├── sample_127.xml ├── sample_128.xml ├── sample_129.xml ├── sample_13.xml ├── sample_130.xml ├── sample_131.xml ├── sample_132.xml ├── sample_133.xml ├── sample_134.xml ├── sample_135.xml ├── sample_136.xml ├── sample_137.xml ├── sample_138.xml ├── sample_139.xml ├── sample_14.xml ├── sample_140.xml ├── sample_141.xml ├── sample_142.xml ├── sample_143.xml ├── sample_144.xml ├── sample_145.xml ├── sample_146.xml ├── sample_147.xml ├── sample_148.xml ├── sample_149.xml ├── sample_15.xml ├── sample_16.xml ├── sample_17.xml ├── sample_18.xml ├── sample_19.xml ├── sample_2.xml ├── sample_20.xml ├── sample_21.xml ├── sample_22.xml ├── sample_23.xml ├── sample_24.xml ├── sample_25.xml ├── sample_26.xml ├── sample_27.xml ├── sample_28.xml ├── sample_29.xml ├── sample_3.xml ├── sample_30.xml ├── sample_31.xml ├── sample_32.xml ├── sample_33.xml ├── sample_34.xml ├── sample_35.xml ├── sample_36.xml ├── sample_37.xml ├── sample_38.xml ├── sample_39.xml ├── sample_4.xml ├── sample_40.xml ├── sample_41.xml ├── sample_42.xml ├── sample_43.xml ├── sample_44.xml ├── sample_45.xml ├── sample_46.xml ├── sample_47.xml ├── sample_48.xml ├── sample_49.xml ├── sample_5.xml ├── sample_50.xml ├── sample_51.xml ├── sample_52.xml ├── sample_53.xml ├── sample_54.xml ├── sample_55.xml ├── sample_56.xml ├── sample_57.xml ├── sample_58.xml ├── sample_59.xml ├── sample_6.xml ├── sample_60.xml ├── sample_61.xml ├── sample_62.xml ├── sample_63.xml ├── sample_64.xml ├── sample_65.xml ├── sample_66.xml ├── sample_67.xml ├── sample_68.xml ├── sample_69.xml ├── sample_7.xml ├── sample_70.xml ├── sample_71.xml ├── sample_72.xml ├── sample_73.xml ├── sample_74.xml ├── sample_75.xml ├── sample_76.xml ├── sample_77.xml ├── sample_78.xml ├── sample_79.xml ├── sample_8.xml ├── sample_80.xml ├── sample_81.xml ├── sample_82.xml ├── sample_83.xml ├── sample_84.xml ├── sample_85.xml ├── sample_86.xml ├── sample_87.xml ├── sample_88.xml ├── sample_89.xml ├── sample_9.xml ├── sample_90.xml ├── sample_91.xml ├── sample_92.xml ├── sample_93.xml ├── sample_94.xml ├── sample_95.xml ├── sample_96.xml ├── sample_97.xml ├── sample_98.xml └── sample_99.xml ├── pom.xml └── src └── main ├── resources ├── META-INF │ ├── cxf │ │ └── org.apache.cxf.Logger │ └── services │ │ └── javax.xml.transform.TransformerFactory ├── eu │ └── dnetlib │ │ ├── applicationContext-security.xml │ │ ├── cnr-site.properties │ │ └── test │ │ └── profiles │ │ ├── LightUiDSResources │ │ └── LightUiDSResourceType │ │ │ └── lightui_minimal.xml │ │ ├── MDFormatDSResources │ │ └── MDFormatDSResourceType │ │ │ └── 2-8b9503d9-8a86-4330-93ef-7e0cd9bc87c2.xml │ │ ├── OAIPublisherConfigurationDSResources │ │ └── OAIPublisherConfigurationDSResourceType │ │ │ └── oai-configuration.xml │ │ ├── RepositoryServiceResources │ │ └── RepositoryServiceResourceType │ │ │ └── mockDatasource.xml │ │ ├── TransformationRuleDSResources │ │ └── TransformationRuleDSResourceType │ │ │ ├── dc2dmf.xml │ │ │ ├── dc2oaf_cleaning_OPENAIREplus.xml │ │ │ ├── dmf2dc.xml │ │ │ └── identity.xml │ │ └── VocabularyDSResources │ │ ├── MetadataFormatDSResourceType │ │ └── 7-de9a7d86-00cd-4348-905d-0c977b2b996d.xml │ │ └── VocabularyDSResourceType │ │ ├── access_modes.xml │ │ ├── api_compatibilities.xml │ │ ├── api_protocols.xml │ │ ├── content_typologies.xml │ │ ├── countries.xml │ │ ├── datasource_typologies.xml │ │ ├── languages.xml │ │ └── text_typologies.xml └── log4j.properties └── webapp ├── WEB-INF ├── applicationContext.xml ├── cxf.xml ├── dispatcher-servlet.xml └── web.xml ├── images ├── User.png ├── admin.svg ├── d-netLogo.png └── monitor.png └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | 3 | *.class 4 | target 5 | .project 6 | .settings 7 | .classpath 8 | *.iml 9 | 10 | # Mobile Tools for Java (J2ME) 11 | .mtj.tmp/ 12 | 13 | # Package Files # 14 | *.jar 15 | *.ear 16 | 17 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 18 | hs_err_pid* 19 | -------------------------------------------------------------------------------- /MAJOR_CHANGES.md: -------------------------------------------------------------------------------- 1 | # Major changes from 1.2.0 to 1.3.0 2 | 3 | - OAI Publisher: 4 | - fixed cache management 5 | - fixed oai consistency (post feed) workflow branch 6 | - fixed deletion of content when workflow of data sources are deleted 7 | - D-Net enabling services: 8 | - using cache for subscription access 9 | - support only one subscription registry 10 | - Mongo based services (mdstore, oaistore, wf logging): 11 | - using API of mongo-java-driver 3.2.2, removed usage of deprecated methods 12 | - tracking the number of stored records to possibly highlight the collection of records with the same identifier 13 | - GUI: 14 | - enabling deletion of APIs via GUI 15 | - enabling editing of metadata_identifier_path 16 | - more info available in the datasource section 17 | - removed map of data sources (TODO: adapt to the new google map API) 18 | - Metadata collection: 19 | - handling HTML illegal entities in collected XMLs 20 | - Indexing: 21 | - default query operator for "bag of words" queries set to AND instead of OR 22 | - Workflow manager 23 | - do not launch workflows that were scheduled for execution during a pause of the aggregation system ("prepare for shutdown") -------------------------------------------------------------------------------- /mock-repository-content/sample_101.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-002 5 | 2014-03-26 6 | openaire 7 |
8 | 9 | 10 | SIBGRAPI 25th: Advances in pattern recognition and computer vision 11 | Silva, Luciano 12 | Scopigno, Roberto 13 | Computer vision 14 | Computer grapics 15 | info:eu-repo/classification/acm/I.3 COMPUTER GRAPHICS 16 | This special issue constitutes a selection of extended contributions of original works on Pattern Recognition and Computer Vision presented at 25th SIBGRAPI - Conference on Graphics, Patterns and Images, held in 2012 in the historical city of Ouro Preto, Minas Gerais, Brazil (conference website at: www.decom.ufop.br/ sibgrapi2012). Fifteen papers were invited for this special issue and ten submissions passed through a rigorous peer-reviewing process and have been accepted for publication. 17 | Elsevier 18 | 2014 19 | info:eu-repo/semantics/review 20 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-002 21 | en 22 | In: Pattern Recognition Letters. Editorial, vol. 39 (1) pp. 1 - 1. Elsevier, 2014. 23 | info:eu-repo/semantics/altIdentifier/url/http://www.sciencedirect.com/science/article/pii/S0167865513004212 24 | info:eu-repo/semantics/altIdentifier/issn/0167-8655 25 | info:eu-repo/semantics/altIdentifier/doi/http://dx.doi.org/10.1016/j.patrec.2013.10.029 26 | application/pdf 27 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-002/2014-ED-002.pdf 28 | info:eu-repo/semantics/openAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_102.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-051 5 | 2015-06-26 6 | openaire 7 |
8 | 9 | 10 | Support and training periodical report 11 | Fides, Alvaro 12 | Lenzi, Stefano 13 | Girolami, Michele 14 | Tazari, Saied 15 | AAL 16 | Platform support framework 17 | Open source strategy 18 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 19 | This deliverable follows the same structure of D2.2, since it is an update on the status of the activities defined therein: Platform support framework, Training framework, and Open source strategy. The updates on Platform support framework report barely no changes in the framework itself. Then a set of statistics of the status of all the different issue trackers is followed by a list of all issues opened within the period of analysis of this version. Updates on the Training framework itself are few as well, but these are followed by a list of all available sources of training materials set up by different tasks in ReAAL. A short list of events where coaching was provided is also available. Finally the activities to establish the Open Source community around the platform are described, including the next steps to follow in the plan. 20 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 21 | 2014-05-15 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-051 24 | en 25 | make it ReAAL. Deliverable ID2-1.a, 2014. 26 | application/pdf 27 | info:eu-repo/semantics/restrictedAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_106.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-047 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | PRELIDA - Final report on the midterm workshop 11 | Meghini, Carlo 12 | Midterm Workshop 13 | PRELIDA Working Group 14 | Preservation of Linked Data 15 | Ingesting a Linked Data dataset 16 | Managing evolution 17 | Accessing a Linked Data dataset 18 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 19 | The present document provides details on the second workshop of PRELIDA, held in Catania from the 2nd to the 4th of April, 2014. The workshop was reserved to the PRELIDA Working Group members, and it was the second event in which the members met amongst themselves and with the project in order to discuss the preservation of Linked Data. The programme of the workshop is provided, along with the list of participants. The scientific outcome of the workshop is finally presented, by illustrating the themes that have been discussed and that will form the research agenda of the next PRELIDA developments. 20 | info:eu-repo/grantAgreement/EC/FP7/600663/EU/Preserving Linked Data/PRELIDA 21 | 2014-05-09 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-047 24 | en 25 | PRELIDA - Preserving Linked Data. Deliverable D2.5, 2014. 26 | application/pdf 27 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-047/2014-EC-047.pdf 28 | info:eu-repo/semantics/openAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_107.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-046 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | PRELIDA - Report on the consolidation and dissemination workshop 11 | 12 | Batsakis, Sotiris 13 | Meghini, Carlo 14 | PRELIDA Final Workshop 15 | Preservation of Linked Data 16 | Dissemination of the results 17 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 18 | The present document provides details on the final workshop of PRELIDA, held in Riva del Garda, Italy, between the 17th and 18th of October, 2014. The workshop was open to interested parties in addition to the PRELIDA Working Group members, and it was the third and last event in which the members met amongst themselves and with the project in order to discuss the preservation of Linked Data. The programme of the workshop is provided, along with the list of participants. The scientific outcome of the workshop is finally discussed, by illustrating the themes that have been discussed and that will be part of the final outcomes of PRELIDA. 19 | info:eu-repo/grantAgreement/EC/FP7/600663/EU/Preserving Linked Data/PRELIDA 20 | 2014-10-31 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-046 23 | en 24 | PRELIDA - Preserving Linked Data. Deliverable D2.6, 2014. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-046/2014-EC-046.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_108.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-045 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | PRELIDA - State of the art assessment on linked data and digital preservation 11 | Batsakis, Sotiris 12 | Giaretta, David 13 | Gueret, Christophe 14 | 15 | Hogerwerf, Maarten 16 | Isaac, Antoine 17 | Meghini, Carlo 18 | Scharnhorst, Andrea 19 | Digital Preservation 20 | State of the Art 21 | Linked Data 22 | OAIS model 23 | Preservation of Linked Data 24 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 25 | The state of the art of Linked Data technologies and standards and of Digital Preservation solutions, standards and technologies is presented, along with an analysis of the characteristics of Linked Data that make their preservation different from that of other digital resources (A consolidated version of the report will be published at the end of the project). 26 | info:eu-repo/grantAgreement/EC/FP7/600663/EU/Preserving Linked Data/PRELIDA 27 | 2014-02-28 28 | info:eu-repo/semantics/report 29 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-045 30 | en 31 | PRELIDA - Preserving Linked Data. Deliverable D3.1, 2014. 32 | application/pdf 33 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-045/2014-EC-045.pdf 34 | info:eu-repo/semantics/openAccess 35 | 36 | 37 |
38 | -------------------------------------------------------------------------------- /mock-repository-content/sample_109.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-044 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | PRELIDA - First version of the roadmap 11 | Antoniou, Grigoris 12 | Batsakis, Sotiris 13 | Isaac, Antoine 14 | Scharnhorst, Andrea 15 | 16 | 17 | Meghini, Carlo 18 | Preservation of Linked Data 19 | Roadmap 20 | Linked Data 21 | Digital Preservation 22 | Ingestion of Linked Datasets 23 | Change 24 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 25 | The present document is a first version of the long term preservation of Linked Data roadmap deliverable. Based on current state of the art on digital preservation and Linked Data and a description of related use cases, corresponding challenges and limitations of existing approaches are identified. Then, based on these challenges, a draft roadmap is proposed for dealing with ingestion of Linked Datasets and changes into the dataset. Keeping track of changes and related technical and organizational challenges is also addressed. The present document is intended to form the basis for the scientific content of the final PRELIDA Workshop and is a stepping stone towards the preparation of a detailed final roadmap at the end of the project. 26 | info:eu-repo/grantAgreement/EC/FP7/600663/EU/Preserving Linked Data/PRELIDA 27 | 2014-09-30 28 | info:eu-repo/semantics/report 29 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-044 30 | en 31 | PRELIDA - Preservation of Linked Data. Deliverable D4.2, 2014. 32 | application/pdf 33 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-044/2014-EC-044.pdf 34 | info:eu-repo/semantics/openAccess 35 | 36 | 37 |
38 | -------------------------------------------------------------------------------- /mock-repository-content/sample_110.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-043 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | PRELIDA - Analysis of the limitations of digital preservation solutions for preserving linked data 11 | Antoniou, Grigoris 12 | Batsakis, Sotiris 13 | Isaac, Antoine 14 | Scharnhorst, Andrea 15 | 16 | 17 | Giaretta, David 18 | Meghini, Carlo 19 | Digital Preservation 20 | Linked Data 21 | Gap Analysis 22 | Preservation of Linked Data 23 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 24 | This deliverable deals with the task of identifying technical issues where this gap exists and the implication of this for efficient digital preservation of linked data.This can be considered as the first step towards describing a roadmap that will bridge this gap and will lead to efficient digital preservation of linked data. 25 | info:eu-repo/grantAgreement/EC/FP7/600663/EU/Preserving Linked Data/PRELIDA 26 | 2014-03-26 27 | info:eu-repo/semantics/report 28 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-043 29 | en 30 | PRELIDA - Preserving Linked Data. Deliverable D4.1, 2014. 31 | application/pdf 32 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-043/2014-EC-043.pdf 33 | info:eu-repo/semantics/openAccess 34 | 35 | 36 |
37 | -------------------------------------------------------------------------------- /mock-repository-content/sample_111.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-042 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | IMARINE - Sustaining iMarine: a Public Partnership led Business Model 11 | Taconet, Marc 12 | Ellenbroek, Anton 13 | Castelli, Donatella 14 | Pagano, Pasquale 15 | 16 | Garavelli, Sara 17 | Parker, Stephanie 18 | Business plan 19 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 20 | An activity to define the mission statement of the initiative, assess the type of business model centred on a public partnership, propose a business plan for sustaining the iMarine baseline activities, and prepare the ground for a business plan under a growth scenario 21 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 22 | 2014-11-30 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-042 25 | en 26 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable 0.0, 2014. 27 | info:eu-repo/semantics/altIdentifier/url/http://goo.gl/Axi3rh 28 | application/pdf 29 | info:eu-repo/semantics/closedAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_112.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-041 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | ICSI - Sensor Prototype Implementation 11 | Magrini, Massimo 12 | Moroni, Davide 13 | Pieri, Gabriele 14 | Salvetti, Ovidio 15 | Rodriguez, Aitor 16 | Dainciart, Francois 17 | Sanchez, Pedro 18 | Embedded systems 19 | Smart cameras network 20 | ITS 21 | info:eu-repo/classification/acm/I.4.8 IMAGE PROCESSING AND COMPUTER VISION. Scene analysis 22 | This document is focused on the study and development of computer vision (CV) sensors for real-time and cooperative traffic analysis. This version will focus in the first iterative implementation and evaluation of the subsystems (two more are expected). 23 | info:eu-repo/grantAgreement/EC/FP7/317671/EU/Intelligent Cooperative Sensing for Improved traffic efficiency/ICSI 24 | 2014-01-28 25 | info:eu-repo/semantics/report 26 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-041 27 | en 28 | INTELLIGENT COOPERATIVE SENSING FOR IMPROVED TRAFFIC EFFICIENCY. Deliverable D4.3.1, 2014. 29 | application/pdf 30 | info:eu-repo/semantics/restrictedAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_113.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-040 5 | 2015-02-14 6 | openaire 7 |
8 | 9 | 10 | IMARINE - Software release activity report 11 | Fabriani, Paolo 12 | Giammatteo, Gabriele 13 | Assante, Massimiliano 14 | Laskaris, Nikolas 15 | gCube system 16 | Integration 17 | Testing 18 | Distribution 19 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 20 | This document reports on activities related to the gCube system integration, testing, distribution and documentation performed during the third reporting period of iMarine project 21 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 22 | 2014-11-11 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-040 25 | en 26 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable D7.4, 2014. 27 | info:eu-repo/semantics/altIdentifier/url/http://goo.gl/atJsGF 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-040/2014-EC-040.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_114.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-039 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | IMARINE - EA-CoP Validation 11 | Ellenbroek, Anton 12 | Pagano, Pasquale 13 | Virtual Research Environments 14 | gCube system 15 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 16 | This report documents the strategy, plan, and progress leading to the development of specific applications and tools that in tandem with the rest of gCube technology will be used to realize the Virtual Research Environments that are expected to serve the needs of the Ecosystem Approach Community of Practice. 17 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 18 | 2014-10-31 19 | info:eu-repo/semantics/report 20 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-039 21 | en 22 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable D3.5, 2014. 23 | info:eu-repo/semantics/altIdentifier/url/http://goo.gl/vBqNKk 24 | application/pdf 25 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-039/2014-EC-039.pdf 26 | info:eu-repo/semantics/openAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_115.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-038 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | IMARINE - Project periodic report 11 | Castelli, Donatella 12 | Candela, Leonardo 13 | Coro, Gianpaolo 14 | Pagano, Pasquale 15 | Project documentation 16 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 17 | The attached periodic report represents an accurate description of the work carried out in this project for this reporting period. 18 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 19 | 2014-11-14 20 | info:eu-repo/semantics/report 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-038 22 | en 23 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable D1.4, 2014. 24 | info:eu-repo/semantics/altIdentifier/url/http://goo.gl/dv6bLh 25 | application/pdf 26 | info:eu-repo/semantics/closedAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_118.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-035 5 | 2015-02-26 6 | openaire 7 |
8 | 9 | 10 | DOREMI - Updated Exploitation plan and business plan 11 | 12 | Theben, Alexandra 13 | Pannese, Lucia 14 | Ascolese, Antonio 15 | Llorente, Miguel 16 | Colombo, Matteo 17 | Ferro, Erina 18 | Fortunati, Luigi 19 | Palumbo, Filippo 20 | IPR 21 | Exploitation strategy 22 | Exploitation plan 23 | info:eu-repo/classification/acm/C.2m COMPUTER-COMMUNICATION NETWORKS . Miscellaneous 24 | This document contains the indications of the DOREMI partners for the definition of the IPR rules to share the use of the forthcoming results of the DOREMI project. These indications have been collected through a questionnaire proposed to all the partners during October 2014. The questionnaire was aimed at defining the IPR rules to be applied for the exploitation of the DOREMI solution and related services. 25 | info:eu-repo/grantAgreement/EC/FP7/611650/EU/Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion/DOREMI 26 | 2014-11-11 27 | info:eu-repo/semantics/report 28 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-035 29 | en 30 | Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion. Deliverable D7.3.1, 2014. 31 | application/pdf 32 | info:eu-repo/semantics/restrictedAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /mock-repository-content/sample_12.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-ED-002 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | Data as first-class citizens 11 | Bolikowski, Lukasz 12 | Houssos, Nikos 13 | Manghi, Paolo 14 | Schirrwagen, Jochen 15 | Linking and Contextualizing Publications and Datasets 16 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 17 | Data are an essential element of the research process. Therefore, for the sake of transparency, verifiability and reproducibility of research, data need to become "first-class citizens" in scholarly communication. Researchers have to be able to publish, share, index, find, cite, and reuse research data sets. 18 | Corporation for National Research Initiatives 19 | Laurence Lannom 20 | 2015 21 | info:eu-repo/semantics/review 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-ED-002 23 | en 24 | In: D-Lib Magazine. Editorial, vol. 21 (1/2) pp. 1 - 3. Special issue on Linking and Contextualizing Publications and Datasets. Laurence Lannom (ed.). Corporation for National Research Initiatives, 2015. 25 | info:eu-repo/semantics/altIdentifier/url/http://www.dlib.org/dlib/january15/01guest_editorial.html 26 | info:eu-repo/semantics/altIdentifier/issn/1082-9873 27 | info:eu-repo/semantics/altIdentifier/doi/10.1045/january2015-guest-editorial 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-ED-002/2015-ED-002.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_120.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-033 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | DOREMI - Quality and risk management report 11 | Ferro, Erina 12 | Colombo, Matteo 13 | Quality Management 14 | Risk Management 15 | Control activities 16 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 17 | info:eu-repo/classification/acm/I.2.9 Robotics 18 | In order to assure the correct quality assurance procedures, a Quality and Risk management Plan has been designed at the beginning of the project and reported in D1.1. The DOREMI project involves risks, mainly due to the complexity of the problems and the degree of novelty of the intended results. To this, risks come from time restrictions, as well as from the distributed development project structure (there are teams from many organizations of different countries). The report includes a description of quality control activities and risks identification performed in the first year of the project by several partners involved in technical R&D activities aimed at the development of DOREMI platform. 19 | info:eu-repo/grantAgreement/EC/FP7/611650/EU/Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion/DOREMI 20 | 2014-11-17 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-033 23 | en 24 | Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion. Deliverable D1.5.1, 2014. 25 | application/pdf 26 | info:eu-repo/semantics/restrictedAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_121.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-030 5 | 2014-12-13 6 | openaire 7 |
8 | 9 | 10 | 11 | Candela, Leonardo 12 | Cirillo, Roberto 13 | Manzi, Andrea 14 | Pagano, Pasquale 15 | Infrastructure Operation 16 | Federated Resources 17 | Virtual Organisation 18 | info:eu-repo/classification/acm/H3.7 - Digital Libraries 19 | 20 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 21 | 2014-09-30 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-030 24 | en 25 | 26 | application/pdf 27 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-030/2014-EC-030.pdf 28 | info:eu-repo/semantics/openAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_122.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-029 5 | 2014-12-13 6 | openaire 7 |
8 | 9 | 10 | IMARINE - Virtual research environments activity report 11 | Candela, Leonardo 12 | Ellenbroek, Anton 13 | Pasquale, Pagano 14 | Virtual Research Environment 15 | Community Tools 16 | Applications 17 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 18 | Virtual Research Environments are among the key products that the iMarine project is requested to deliver to serve the needs of the Ecosystem Approach Community of Practice. The deployment and operation of a Virtual Research Environment is a task that involves the exploitation of technologies that have been developed as well as the development of new technologies aiming at offering new facilities. This report describes the activities performed to provide the Ecosystem Approach Community of Practice with the set of Virtual Research Environments hosted by the iMarine portal up to September 2014. 19 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 20 | 2014-10-10 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-029 23 | en 24 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable D6.5, 2014. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-029/2014-EC-029.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_123.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-028 5 | 2014-12-13 6 | openaire 7 |
8 | 9 | 10 | MIDAS - The basic MIDAS platform and the integrated test evaluation, planning and scheduling macro-component 11 | De Francesco, Alberto 12 | Di Napoli, Claudia 13 | Tonellotto, Nicola 14 | De Rosa, Fabio 15 | Maesano, Libero 16 | Harms, Patrick 17 | Herbold, Steffen 18 | TPaaS 19 | Test Method Integration 20 | Production Environment 21 | Development Environment 22 | Account & Billing Service 23 | Security and Confidentiality 24 | info:eu-repo/classification/acm/D.2.2 Design Tools and Techniques 25 | The basic MIDAS platform and the integrated test evaluation, planning and scheduling macro-component: This deliverable includes the basic MIDAS PaaS with mechanisms to manage the Cloud infrastructure and to provide the requested functionality and reports a planning for the activities performed in the task T6.2, T6.3 and T.6.4. The deliverable will include also a first demonstrator of the integrated test execution macro-component. 26 | info:eu-repo/grantAgreement/EC/FP7/318786/EU/Model and Inference Driven, Automated testing of Services architectures/MIDAS 27 | 2014-09-25 28 | info:eu-repo/semantics/report 29 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-028 30 | en 31 | Model and Inference Driven, Automated testing of Services architectures. Deliverable D6.3, 2014. 32 | application/pdf 33 | info:eu-repo/semantics/closedAccess 34 | 35 | 36 |
37 | -------------------------------------------------------------------------------- /mock-repository-content/sample_124.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-027 5 | 2014-12-13 6 | openaire 7 |
8 | 9 | 10 | QUANTICOL - Dissemination plan for the project 11 | Gilmore, Stephen 12 | Ter Beek, Maurice H. 13 | Bortolussi, Luca 14 | Ciancia, Vincenzo 15 | Galpin, Vashti 16 | Hillston, Jane 17 | Massink, Mieke 18 | Tribastone, Mirco 19 | Dissemination 20 | info:eu-repo/classification/acm/D.2 SOFTWARE ENGINEERING 21 | This document sets out the dissemination plan for the QUANTICOL project. The project has ambitions to see its research outputs and results disseminated widely in academia and beyond. We present here our plan to achieve this goal and review the progress on the plan which has been achieved in the rst year of the project. This gives an insight into how we see the plan being developed and implemented in later years of the project. 22 | info:eu-repo/grantAgreement/EC/FP7/600708/EU/A Quantitative Approach to Management and Design of Collective and Adaptive Behaviours/QUANTICOL 23 | 2014-03-31 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-027 26 | en 27 | QUANTICOL: A Quantitative Approach to Management and Design of Collective and Adaptive Behaviours. Deliverable D6.1, 2014. 28 | info:eu-repo/semantics/altIdentifier/url/http://blog.inf.ed.ac.uk/quanticol/files/2014/03/D61main.pdf 29 | application/pdf 30 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-027/2014-EC-027.pdf 31 | info:eu-repo/semantics/openAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_125.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-026 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | ReaAL - Platform intermediate releases 11 | Girolami, Michele 12 | Lenzi, Stefano 13 | 14 | AAL Platform 15 | OSGi 16 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 17 | This document is the second internal report (version B) describing the platform official release. It provides links to the software as well as a brief explanation about the management of the universAAL releases. This document has been prepared by reviewing the internal deliverable ID2.2a with updates concerning the release 3.2.0. Most of the contents have remained the same. 18 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 19 | 2014-10-15 20 | info:eu-repo/semantics/report 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-026 22 | en 23 | ReaAL - make it ReAAL. Deliverable D2.2b, 2014. 24 | application/pdf 25 | info:eu-repo/semantics/restrictedAccess 26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /mock-repository-content/sample_126.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-025 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | ReAAL - Platform intermediate releases 11 | Girolami, Michele 12 | Lenzi, Stefano 13 | 14 | AAL 15 | OSGi 16 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 17 | This document is the first internal report (version A) describing the platform official release. It provides links to the software as well as a brief explanation about the management of the universAAL releases. This document has been prepared by reviewing the first release of D2.3-A.. 18 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 19 | 2014-05-15 20 | info:eu-repo/semantics/report 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-025 22 | en 23 | ReAAL - make it ReAAL. Deliverable D2.2a, 2014. 24 | application/pdf 25 | info:eu-repo/semantics/restrictedAccess 26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /mock-repository-content/sample_127.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-024 5 | 2014-12-13 6 | openaire 7 |
8 | 9 | 10 | MIDAS - Specification and design of the basic MIDAS platform as a service on the cloud 11 | Tonellotto, Nicola 12 | Di Napoli, Claudia 13 | De Francesco, Alberto 14 | Giordano, Maurizio 15 | De Rosa, Fabio 16 | Maesano, Libero 17 | Cloud computing 18 | Elasticity 19 | Virtual Machine 20 | SOA Testing 21 | Web Services 22 | Test Execution 23 | info:eu-repo/classification/acm/D.2.2 Design Tools and Techniques 24 | Specification and design of the basic MIDAS Platform as a service on the cloud: This deliverable presents an architecture running on the Cloud, designed and configured for integrating the TTworkebnch engine on the Cloud services and providing an integrated platform for creating, configuring and running test user scenarios independently from the underlying platform implementation. It will include demonstrators of the main capabilities such as description of test cases, and support for test cases management and configuration. 25 | info:eu-repo/grantAgreement/EC/FP7/318786/EU/Model and Inference Driven, Automated testing of Services architectures/MIDAS 26 | 2014-02-25 27 | info:eu-repo/semantics/report 28 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-024 29 | en 30 | Model and Inference Driven, Automated testing of Services architectures. Deliverable D6.2, 2014. 31 | application/pdf 32 | info:eu-repo/semantics/closedAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /mock-repository-content/sample_13.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-ED-001 5 | 2015-01-07 6 | openaire 7 |
8 | 9 | 10 | Scientific data sharing and re-use 11 | Thanos, Costantino 12 | Rauber, Andreas 13 | (eds.), . 14 | Data Sharing and Re-use 15 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 16 | Research data are essential to all scientific endeavours. Openness in the sharing of research results is one of the norms of modern science. The assumption behind this openness is that scientific progress requires results to be shared within the scientific community as early as possible in the discovery process. 17 | ERCIM 18 | 2015 19 | info:eu-repo/semantics/review 20 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-ED-001 21 | en 22 | vol. 100 pp. 13 - 13. ERCIM, 2015. 23 | info:eu-repo/semantics/altIdentifier/url/http://ercim-news.ercim.eu/en100/special/scientific-data-sharing-and-re-use-introduction-to-the-special-theme 24 | info:eu-repo/semantics/altIdentifier/issn/0926-4981 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-ED-001/2015-ED-001.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_131.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-018 5 | 2014-07-03 6 | openaire 7 |
8 | 9 | 10 | ENVRI - Integration, harmonisation and publication software components - version 2 11 | Candela, Leonardo 12 | Coro, Gianpaolo 13 | Italiano, Angela 14 | Mangiacrapa, Francesco 15 | Pagano, Pasquale 16 | Sinibaldi, Fabio 17 | Environmental Research Infrastructures 18 | ENVRI Project 19 | Software components, services and subsystems 20 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 21 | The ENVRI Integration, Harmonisation and Publication software comprises a number of components, services and subsystems offering facilities enabling the integration and harmonization of data. The actual deliverable is thus the software realising such facilities. This document briefly describes the software components realising version 2 of these facilities and offers a series of links to the software itself and its accompanying documentation 22 | info:eu-repo/grantAgreement/EC/FP7/283465/EU/Common Operations of Environmental Research Infrastructures/ENVRI 23 | 2014-06-20 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-018 26 | en 27 | Common Operations of Environmental Research Infrastructures. Deliverable D4.5, 2014. 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-018/2014-EC-018.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_132.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-017 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | EAGLE - EAGLE metadata model specification (version 1.0) 11 | Sicilia, Miguel-Angel 12 | Gomez-Pantoja, Joaquin 13 | Fuentes, Maria Jose Rubio 14 | Ruiz, Eydel Rivero 15 | Mannocci, Andrea 16 | Manghi, Paolo 17 | Zoppi, Franco 18 | Data Infrastructure 19 | Aggregation System 20 | Metadata Formats 21 | Metadata Model 22 | Data Interoperability 23 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 24 | The main goal of the the EAGLE project is to aggregate into the EAGLE portal data from the EAGLE partners who have epigraphic data bases (the so called Content Providers), and then ingest these data into Europeana. The purpose of this document is to define a common data model to which all the Content Providers can map their own data sets so that all the collected material can be managed in a uniform an coherent way, both for ingestion to Europeana and for supporting advanced search functionality over the aggregated data. 25 | info:eu-repo/grantAgreement/EC/FP7/325122/EU/EAGLE - Europeana network of Ancient Greek and Latin Epigraphy/EAGLE 26 | 2014-01-17 27 | info:eu-repo/semantics/report 28 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-017 29 | en 30 | EAGLE - Europeana network of Ancient Greek and Latin Epigraphy. Deliverable D 3.1, 2014. 31 | application/pdf 32 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-017/2014-EC-017.pdf 33 | info:eu-repo/semantics/openAccess 34 | 35 | 36 |
37 | -------------------------------------------------------------------------------- /mock-repository-content/sample_133.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-016 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | EAGLE - First Release of AIM Infrastructure (version 1.0) 11 | Amato, Giuseppe 12 | Bolettieri, Paolo 13 | Falchi, Fabrizio 14 | Manghi, Paolo 15 | Mannocci, Andrea 16 | Zoppi, Franco 17 | Data Infrastructure 18 | Aggregation System 19 | Metadata Formats 20 | Data Interoperability 21 | Image Processing 22 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 23 | This document describes the current implementation (Release 1) of the EAGLE Aggregation and Image Retrieval system (AIM) Infrastructure in terms of: . Current implementation against the specification given in "D4.1 AIM Infrastructure Specification" (Section 1). . Details about the Metadata Aggregation System (Section 2). . Details about the Image Retrieval System (Section 3). . HW & SW requirements of the AIM (Section 4). For details about the full featured AIM Infrastructure, please refer to the released document "D4.1 AIM Infrastructure Specification". 24 | info:eu-repo/grantAgreement/EC/FP7/325122/EU/EAGLE - Europeana network of Ancient Greek and Latin Epigraphy/EAGLE 25 | 2014-03-25 26 | info:eu-repo/semantics/report 27 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-016 28 | en 29 | EAGLE - Europeana network of Ancient Greek and Latin Epigraphy. Deliverable D4.2.1, 2014. 30 | application/pdf 31 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-016/2014-EC-016.pdf 32 | info:eu-repo/semantics/openAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /mock-repository-content/sample_135.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-011 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | make it ReAAL - Platform official release A 11 | Girolami, Michele 12 | Lenzi, Stefano 13 | 14 | Ferro, Erina 15 | Gotta, Alberto 16 | Riolo, Giancarlo 17 | Ambient Assisted Living 18 | AAL Middleware Platform Design 19 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 20 | Official administrative representation of the first initial version of the platform software release. All links to the software are included and explained, and finally listed as references for quick use. The particularities and issues found while producing this initial release are explained and the set of planned releases (future versions of D2.3 and the intermediate ID2.2) is introduced. 21 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 22 | 2014-03-15 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-011 25 | en 26 | make it ReAAL. Deliverable D2.3a, 2014. 27 | application/pdf 28 | info:eu-repo/semantics/restrictedAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_136.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-010 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | make it ReAAL - Interoperability and customization requirements 11 | Girolami, Michele 12 | Lenzi, Stefano 13 | 14 | Ferro, Erina 15 | Gotta, Alberto 16 | Riolo, Giancarlo 17 | Ambient Assisted Living 18 | AAL Middleware Platform Design 19 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 20 | The goal of this deliverable is to report the analysis performed by each Pilot about the interoperability requirements on their applications, using an open platform and the possible customization of the pilots applications. The deliverable is therefore structured as follows: A general introduction on interoperability is provided. Then a model description is provided in order to have the same approach for all the pilots; so that an analysis of the similarities and the differences between pilots can be made. Then each application of pilots is designed using this model in order to report on the possible points of interoperability and flexibility of each application. 21 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 22 | 2014-02-04 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-010 25 | en 26 | make it ReAAL. Deliverable D1.2, 2014. 27 | application/pdf 28 | info:eu-repo/semantics/restrictedAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_137.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-009 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | make it ReAAL - Platform features specification 11 | Girolami, Michele 12 | Lenzi, Stefano 13 | 14 | Ferro, Erina 15 | Gotta, Alberto 16 | Riolo, Giancarlo 17 | Ambient Assisted Living 18 | AAL Middleware Platform Design 19 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 20 | 21 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 22 | 2014-02-28 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-009 25 | en 26 | make it ReAAL. Deliverable D2.1, 2014. 27 | application/pdf 28 | info:eu-repo/semantics/restrictedAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_138.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-006 5 | 2014-03-06 6 | openaire 7 |
8 | 9 | 10 | OpenAIREplus - OpenAIRE APIs for third party services. D8.6 11 | Manghi, Paolo 12 | Bardi, Alessia 13 | Atzori, Claudio 14 | Artini, Michele 15 | Dell'Amico, Andrea 16 | La Bruzzo, Sandro 17 | API 18 | Protocols 19 | Data Export 20 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 21 | This deliverable describes the APIs offered by the OpenAIRE infrastructure to provide accessibility to the objects in its information space. APIs are organized by entity type (publication, dataset, and projects) and are characterized by access protocol, data exchange format, and schema. 22 | info:eu-repo/grantAgreement/EC/FP7/283595/EU/2nd-Generation Open Access Infrastructure for Research in Europe/OPENAIREPLUS 23 | 2014-02-26 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-006 26 | en 27 | OpenAIREplus, 2nd Generation Open Access Infrastructure for Research in Europe. Deliverable D8.6, 2014. 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-006/2014-EC-006.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_140.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-003 5 | 2014-03-06 6 | openaire 7 |
8 | 9 | 10 | OpenAIREplus - OpenAIRE APIs for third party services 11 | Manghi, Paolo 12 | Bardi, Alessia 13 | Atzori, Claudio 14 | Artini, Michele 15 | Dell'Amico, Andrea 16 | La Bruzzo, Sandro 17 | APIs 18 | Protocols 19 | Data Export 20 | info:eu-repo/classification/acm/H3.7 Digital Libraries 21 | This deliverable describes the APIs offered by the OpenAIRE infrastructure to provide accessibility to the objects in its information space. APIs are organized by entity type (publication, dataset, and projects) and are characterized by access protocol, data exchange format, and schema. 22 | info:eu-repo/grantAgreement/EC/FP7/283595/EU/2nd-Generation Open Access Infrastructure for Research in Europe/OPENAIREPLUS 23 | 2014-02-26 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-003 26 | en 27 | 2nd-Generation Open Access Infrastructure for Research in Europe. Deliverable D8.6, 2014. 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-003/2014-EC-003.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_141.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-002 5 | 2014-02-25 6 | openaire 7 |
8 | 9 | 10 | iMarine - iMarine Data Consumption Software 11 | Antoniadis, Alex 12 | Brito, Fabrice 13 | Coro, Gianpaolo 14 | Gerbesiotis, John 15 | Laskaris, Nikolas 16 | Marketakis, Yannis 17 | Data Manipulation 18 | Information Retrieval 19 | gCube 20 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 21 | This document describes the novelties within the iMarine Data Consumption Software which were achieved from the 13th to the 27th month of the project and provide pointers to the documentation and artifacts of the related components. 22 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 23 | 2014-01-29 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-002 26 | en 27 | Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources. Deliverable D10.5, 2014. 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-EC-002/2014-EC-002.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_142.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-EC-001 5 | 2014-03-06 6 | openaire 7 |
8 | 9 | 10 | EUBrazilOpenBio - D1.5 periodic report 11 | Badia, Rosa M. 12 | Lezzi, Daniele 13 | Callau, Pilar 14 | De Giovanni, Renato 15 | Canhos, Vanderlei 16 | Candela, Leonardo 17 | Rebello, Vinod 18 | Pittonet, Sara 19 | Project management 20 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 21 | EU-Brazil Open Data and Cloud Computing e-Infrastructure for Biodiversity - Project activity report 22 | info:eu-repo/grantAgreement/EC/FP7/288754/EU/EU-Brazil Open Data and Cloud Computing e-Infrastructure for Biodiversity/EUBRAZILOPENBIO 23 | 2014-01-14 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-EC-001 26 | en 27 | EU-Brazil Open Data and Cloud Computing e-Infrastructure for Biodiversity. Deliverable D1.5, 2014. 28 | application/pdf 29 | info:eu-repo/semantics/restrictedAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_146.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-B5-011 5 | 2015-05-15 6 | openaire 7 |
8 | 9 | 10 | On-the-fly fast mean field model checking for collective adaptive systems 11 | Massink, Mieke 12 | Probabilistic model-checking 13 | On-the-fly model-checking 14 | Mean-field approximation 15 | info:eu-repo/classification/acm/B.8.2 Performance Analysis and Design Aids 16 | info:eu-repo/classification/acm/D.2.4 Software/Program Verification 17 | info:eu-repo/classification/acm/F.1.2 Modes of Computation 18 | info:eu-repo/classification/acm/F.3.1 Specifying and Verifying and Reasoning about Programs 19 | info:eu-repo/classification/msc/39-XX Difference and functional equations 20 | info:eu-repo/classification/msc/60Jxx Markov processes 21 | In this abstract work on the application of mean-field theory in the definition and implementation of on-the-fly probabilistic model checking of CAS. 22 | info:eu-repo/grantAgreement/EC/FP7/600708/EU/A Quantitative Approach to Management and Design of Collective and Adaptive Behaviours/QUANTICOL 23 | 2014-10-10 24 | info:eu-repo/semantics/other 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-B5-011 26 | en 27 | In: Dagstuhl Reports (ISSN: 2192-5283) V.4 n. 3/12 - Dagstuhl Publishing. 2014. 28 | info:eu-repo/semantics/altIdentifier/url/http://drops.dagstuhl.de/opus/volltexte/2015/5006/ 29 | info:eu-repo/semantics/altIdentifier/doi/http://dx.doi.org/10.4230/DagRep.4.12.68 30 | application/pdf 31 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-B5-011/2014-B5-011.pdf 32 | info:eu-repo/semantics/openAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /mock-repository-content/sample_147.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-B4-003 5 | 2014-06-16 6 | openaire 7 |
8 | 9 | 10 | Open Access e legislazione vigente - Linee guida 11 | Deluca, Rosaria 12 | Giannini, Silvia 13 | Open access law 14 | info:eu-repo/classification/acm/A.0 General Literature 15 | The paper summarizes the Italian and European legislation in the field of open access to the research products. 16 | Il presente lavoro riassume le direttive previste dalla normativa italiana ed europea in materia di accesso aperto ai prodotti della ricerca. 17 | 2014-06-12 18 | info:eu-repo/semantics/other 19 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-B4-003 20 | it 21 | Internal note, 2014. 22 | application/pdf 23 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-B4-003/2014-B4-003.pdf 24 | info:eu-repo/semantics/openAccess 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-B4-003/2014-B4-003_1.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_148.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-B4-002 5 | 2014-05-29 6 | openaire 7 |
8 | 9 | 10 | Il movimento Open Access - scenari attuali 11 | Deluca, Rosaria 12 | Giannini, Silvia 13 | Open access policies 14 | Open access law 15 | More than ten years after the first international Declarations on Open Access this paper briefly traces the milestones of the movement. It broadly examines the current legal and legislative framework and the national and international policies already implemented by the various institutions. 16 | 17 | 2014-04-30 18 | info:eu-repo/semantics/other 19 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-B4-002 20 | it 21 | Internal note, 2014. 22 | application/pdf 23 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-B4-002/2014-B4-002_0.pdf 24 | info:eu-repo/semantics/openAccess 25 | 26 | 27 |
28 | -------------------------------------------------------------------------------- /mock-repository-content/sample_149.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-B3-009 5 | 2015-02-14 6 | openaire 7 |
8 | 9 | 10 | Smart embedded cameras 11 | Magrini, Massimo 12 | Moroni, Davide 13 | Pieri, Gabriele 14 | Salvetti, Ovidio 15 | Embedded systems 16 | Computer vision 17 | Smart cameras 18 | Intelligent transportation systems (ITS) 19 | Smart cities 20 | info:eu-repo/classification/acm/I.4.8 IMAGE PROCESSING AND COMPUTER VISION. Scene analysis 21 | info:eu-repo/classification/acm/I.4.9 IMAGE PROCESSING AND COMPUTER VISION. Applications 22 | In this talk we surveyed Smart Camera Networks including the prototype sensors designed and developed at the Signals and Images Lab of CNR-ISTI. Their possible applications to traffic flow analysis and parking slot monitoring have been envisaged in the framework of the Smart Campus initiative which aims at deploying innovative solutions for smart cities inside the Pisa campus of the National Research Council. 23 | info:eu-repo/grantAgreement/EC/FP7//EU/Mobility and Transport Digital Wallet/MobiWallet 24 | 2014 25 | info:eu-repo/semantics/conferenceObject 26 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-B3-009 27 | en 28 | In: Area della Ricerca CNR di Pisa: Verso lo Smart Campus (Pisa, Italy, 31 Ottobre 2014). 29 | info:eu-repo/semantics/altIdentifier/url/http://eventiarea.isti.cnr.it/attachments/article/135/smartCamerasRev_Moroni.pdf 30 | application/pdf 31 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-B3-009/2014-B3-009.pdf 32 | info:eu-repo/semantics/openAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /mock-repository-content/sample_16.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-EC-006 5 | 2015-06-26 6 | openaire 7 |
8 | 9 | 10 | Support and training periodic report 11 | Fides, Alvaro 12 | Girolami, Michele 13 | 14 | Tazari, Saied 15 | Platform support framework 16 | Open Source strategy 17 | AAL 18 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 19 | This deliverable follows the same structure of D2.2, since it is an update on the status of the activities defined therein: Platform support framework, Training framework, and Open source strategy. There were almost no changes in the Platform support framework itself. After a short introduction to the (few) updates in the support framework, a set of statistics of the status on all the different issue trackers is presented, followed by a list of all issues opened and updated within the period of analysis of this version. Updates on the Training framework itself are few as well, but these are followed by a list of all available sources of training materials set up by different tasks in ReAAL. A short list of events where coaching was provided is also available. Finally the activities maintaining the Open Source community around the platform are described, including the next steps to follow. 20 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 21 | 2015-02-28 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-EC-006 24 | en 25 | make it ReAAL. Deliverable ID2.1b, 2015. 26 | application/pdf 27 | info:eu-repo/semantics/restrictedAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_17.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-EC-005 5 | 2015-05-18 6 | openaire 7 |
8 | 9 | 10 | Sustaining iMarine: a Public Partnership led Business Model 11 | Taconet, Marc 12 | Ellenbroek, Anton 13 | Castelli, Donatella 14 | Pagano, Pasquale 15 | 16 | Bernal, Patrice 17 | Garavelli, Sara 18 | Parker, Stephanie 19 | Virtual Research Environments 20 | imarine business model 21 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 22 | An activity to define the mission statement of the initiative, assess the type of business model centred on a public partnership, propose a business plan for sustaining the iMarine baseline activities, and prepare the ground for a business plan under a growth scenario 23 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 24 | 2015-5-18 25 | info:eu-repo/semantics/report 26 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-EC-005 27 | en 28 | I-Marine. Deliverable Final release, 2015. 29 | application/pdf 30 | info:eu-repo/semantics/closedAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_18.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-EC-004 5 | 2015-05-15 6 | openaire 7 |
8 | 9 | 10 | DOREMI - Interim Progress Report (Period 2) 11 | Rial, Michela 12 | Benvenuti, Chiara 13 | Vozzi, Federico 14 | Parodi, Oberdan 15 | Fortunati, Luigi 16 | Palumbo, Filippo 17 | Wireless Sensor Networks 18 | Sensor integration 19 | Middleware 20 | Activity recognition 21 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 22 | info:eu-repo/classification/acm/I.5 PATTERN RECOGNITION 23 | The DOREMI Scientific and Technological objectives of this period is: 1.2 . Development of preliminary version for the WSN environment, smart environment for context awareness and gamified environment (MS4, M18) 24 | info:eu-repo/grantAgreement/EC/FP7/611650/EU/Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion/DOREMI 25 | 2015-04-30 26 | info:eu-repo/semantics/report 27 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-EC-004 28 | en 29 | Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion (DOREMI). Deliverable D1.3.1, 2015. 30 | application/pdf 31 | info:eu-repo/semantics/restrictedAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-TR-012 5 | 2015-05-25 6 | openaire 7 |
8 | 9 | 10 | Efficient Foreground-Background Segmentation using Local Features for Object Detection 11 | Carrara, Fabio 12 | Amato, Giuseppe 13 | Falchi, Fabrizio 14 | Gennaro, Claudio 15 | Object Detection 16 | Foregroud-Background segmentation 17 | Local features 18 | info:eu-repo/classification/acm/I.4 IMAGE PROCESSING AND COMPUTER VISION 19 | In this work, a local feature based background modelling for background-foreground feature segmentation is presented. In local feature based computer vision applications, a local feature based model presents advantages with respect to classical pixel-based ones in terms of informativeness, robustness and segmentation performances. The method discussed in this paper is a block-wise background modelling where we propose to store the positions of only most frequent local feature configurations for each block. Incoming local features are classified as background or foreground depending on their position with respect to stored configurations. The resulting classification is refined applying a block-level analysis. Experiments on public dataset were conducted to compare the presented method to classical pixel-based background modelling 20 | 2015-05-25 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-TR-012 23 | en 24 | Technical report, 2015. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-TR-012/2015-TR-012.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_21.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-B0-001 5 | 2015-03-14 6 | openaire 7 |
8 | 9 | 10 | Qualche considerazione sugli schemi mentali sottesi all'approccio darwiniano. 11 | Beltrame, Renzo 12 | Cognition 13 | Italian Operational School 14 | Radical constructivism 15 | info:eu-repo/classification/acm/I.2 ARTIFICIAL INTELLIGENCE 16 | Brief notes on the mental scheme that underlies the Darwinian approach. 17 | 18 | 2015 19 | info:eu-repo/semantics/article 20 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-B0-001 21 | it 22 | 23 | info:eu-repo/semantics/altIdentifier/url/http://www.methodologia.it/wp/WP_288_Beltrame.pdf 24 | info:eu-repo/semantics/altIdentifier/issn/1120-3854 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-B0-001/2015-B0-001.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_24.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A3-001 5 | 2015-03-14 6 | openaire 7 |
8 | 9 | 10 | Structured prediction for quantification 11 | Esuli, Andrea 12 | Sebastiani, Fabrizio 13 | Quantification 14 | Structured output prediction 15 | info:eu-repo/classification/acm/I.2.6 ARTIFICIAL INTELLIGENCE. Learning 16 | We address the problem of quantification, a supervised learning task whose goal is, given a class, to estimate the relative frequency (or prevalence) of the class in a dataset of unlabelled items. Quantification has several applications in data and text mining, such as estimating the prevalence of positive reviews in a set of reviews of a given product, or estimating the prevalence of a given support issue in a dataset of transcripts of phone calls to tech support. So far, quantification has been addressed by learning a general-purpose classifier, counting the unlabelled items which have been assigned the class, and tuning the obtained counts according to some heuristics. In this paper we depart from the tradition of using general-purpose classifiers, and use instead a supervised learning model for structured prediction, capable of generating classifiers directly optimized for the (multivariate and non-linear) function used for evaluating quantification accuracy. The experiments that we have run on 5500 binary high-dimensional datasets (averaging more than 14,000 documents each) show that this method is more accurate, more stable, and more efficient than existing, state-of-the-art quantification methods. 17 | 2015 18 | info:eu-repo/semantics/conferenceObject 19 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A3-001 20 | en 21 | In: MLDAS 2015 - 2nd Machine Learning and Data Analytics Symposium (Doha, Qatar, 8-9 March 2015). 22 | application/pdf 23 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A3-001/2015-A3-001.pdf 24 | info:eu-repo/semantics/openAccess 25 | 26 | 27 |
28 | -------------------------------------------------------------------------------- /mock-repository-content/sample_25.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A2-017 5 | 2015-06-26 6 | openaire 7 |
8 | 9 | 10 | Evolving database conceptual graph partitioning 11 | Locuratolo, Elvira Immacolata 12 | Database design 13 | Partitioning 14 | Conceptual modeling 15 | Algorithms 16 | Correctness 17 | Class/concept completeness 18 | info:eu-repo/classification/acm/D.2.12 Data Mapping 19 | info:eu-repo/classification/acm/D.3.3 Classes and Objects 20 | info:eu-repo/classification/acm/I.5.2 Design Methodology 21 | info:eu-repo/classification/acm/G.2.2. Graph algorithms 22 | Algorithms of graph partitioning exploited in conceptual database design were reused to define a methodology of database concept preservation. An algorithm, the concept construction algorithm, that relates concept theory to computer science was designed. This algorithm, however, is not suitable for implementation. In this paper, a relationship between conceptual graphs and concept generalization hierarchies is established at the boundary between concept theory and computer science. The algorithmic property of class/concept completeness is given and an algorithm achieving this property is introduced as a refinement step of the concept construction algorithm. 23 | University of Maribor - Faculty of Electrical Engineering and Computer Science 24 | 25 | 2015 26 | info:eu-repo/semantics/conferenceObject 27 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A2-017 28 | en 29 | 30 | info:eu-repo/semantics/altIdentifier/isbn/978-961-248-486-6 31 | application/pdf 32 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A2-017/2015-A2-017.pdf 33 | info:eu-repo/semantics/openAccess 34 | 35 | 36 |
37 | -------------------------------------------------------------------------------- /mock-repository-content/sample_31.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A2-005 5 | 2015-03-23 6 | openaire 7 |
8 | 9 | 10 | Lightweight computer vision methods for traffic flow monitoring on low power embedded sensors 11 | Magrini, Massimo 12 | Moroni, Davide 13 | Pieri, Gabriele 14 | Salvetti, Ovidio 15 | Real-time Imaging 16 | Embedded Systems 17 | Intelligent Transport Systems (ITS) 18 | info:eu-repo/classification/acm/I.4.8 IMAGE PROCESSING AND COMPUTER VISION. Scene analysis 19 | info:eu-repo/classification/acm/I.2.10 ARTIFICIAL INTELLIGENCE. Vision and Scene Understanding 20 | Nowadays pervasive monitoring of traffic flows in urban environment is a topic of great relevance, since the information it is possible to gather may be exploited for a more efficient and sustainable mobility. In this paper, we address the use of smart cameras for assessing the level of service of roads and early detect possible congestion. In particular, we devise a lightweight method that is suitable for use on low power and low cost sensors, resulting in a scalable and sustainable approach to flow monitoring over large areas. We also present the current prototype of an ad hoc device we designed and report experimental results obtained during a field test. 21 | SCITEPRESS - Science and Technology Publications 22 | 23 | info:eu-repo/grantAgreement/EC/FP7/317671/EU/Intelligent Cooperative Sensing for Improved traffic efficiency/ICSI 24 | 2015 25 | info:eu-repo/semantics/conferenceObject 26 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A2-005 27 | en 28 | 29 | info:eu-repo/semantics/altIdentifier/isbn/978-989-758-090-1 30 | application/pdf 31 | info:eu-repo/semantics/restrictedAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_43.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A0-022 5 | 2015-05-14 6 | openaire 7 |
8 | 9 | 10 | Mesh joinery: a method for building fabricable structures 11 | Cignoni, Paolo 12 | Pietroni, Nico 13 | Malomo, Luigi 14 | Scopigno, Roberto 15 | 3D modelling 16 | 3D fabrication 17 | Illustrative shapes 18 | Geometry processing 19 | info:eu-repo/classification/acm/I.3 COMPUTER GRAPHICS 20 | Mesh joinery is an innovative method to produce illustrative shape approximations suitable for fabrication. Mesh joinery is capable of producing complex fabricable structures in an efficient and visually pleasing manner. We represent an input geometry as a set of planar pieces arranged to compose a rigid structure by exploiting an efficient slit mechanism. Since slices are planar, a standard 2D cutting system is sufficient to fabricate them. 21 | ERCIM 22 | info:eu-repo/grantAgreement/EC/FP7/323567/EU/Harvesting Dynamic 3D Worlds from Commodity Sensor Clouds/HARVEST4D 23 | 2015 24 | info:eu-repo/semantics/article 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A0-022 26 | en 27 | In: ERCIM News, vol. 101 pp. 44 - 45. ERCIM, 2015. 28 | info:eu-repo/semantics/altIdentifier/issn/0926-4981 29 | application/pdf 30 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A0-022/2015-A0-022.pdf 31 | info:eu-repo/semantics/openAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_44.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A0-021 5 | 2015-04-27 6 | openaire 7 |
8 | 9 | 10 | 11 | Goggi, Sara 12 | Pardelli, Gabriella 13 | Giannini, Silvia 14 | Biagioni, Stefania 15 | 16 | Grey Literature. European Commission Projects 17 | info:eu-repo/classification/acm/A.1 INTRODUCTORY AND SURVEY 18 | The survey is focused on the documentation produced by the European Commission (EC) projects involved in the Framework Programme for Research and Technological Development (hereafter FP7) and managed by the Italian National Research Council (hereafter CNR). In particular, the Grey Literature (GL) available on CORDIS and European Projects websites was analysed. In order to verify how it is managed and whether it is compliant with EC recommendations, some categories were introduced to identify, measure and evaluate the usability and availability of projects production. Data was obtained from a sample of European projects websites. 19 | 20 | A.D.B.S., Paris, FR 21 | 2015 22 | info:eu-repo/semantics/article 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A0-021 24 | fr 25 | 26 | info:eu-repo/semantics/altIdentifier/issn/0012-4508 27 | application/pdf 28 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A0-021/2015-A0-021_1.pdf 29 | info:eu-repo/semantics/openAccess 30 | application/pdf 31 | info:eu-repo/semantics/restrictedAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-TR-009 5 | 2015-03-24 6 | openaire 7 |
8 | 9 | 10 | Twitter for election forecasts: a Joint Machine Learning and Complex Network approach applied to an italian case study 11 | Coletto, Mauro 12 | Lucchese, Claudio 13 | Orlando, Salvatore 14 | Raffaele, Perego 15 | Chessa, Alessandro 16 | Puliga, Michelangelo 17 | Online Social Networks 18 | info:eu-repo/classification/acm/H.2.8 Database Applications Data mining 19 | Several studies have shown how to approximately predict real-world phenomena, such as political elections, by ana- lyzing user activities in micro-blogging platforms. This ap- proach has proven to be interesting but with some limita- tions, such as the representativeness of the sample of users, and the hardness of understanding polarity in short mes- sages. We believe that predictions based on social network analysis can be significantly improved by exploiting machine learning and complex network tools, where the latter pro- vides valuable high-level features to support the former in learning an accurate prediction function. 20 | 2015-03-23 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-TR-009 23 | en 24 | Accepted for Poster Presentation at the International Conference on Computational Social Science 2015. Technical report, 2015. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-TR-009/2015-TR-009.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_52.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A0-004 5 | 2015-01-07 6 | openaire 7 |
8 | 9 | 10 | MUSCLE Working Group International Workshop on Computational Intelligence for Multimedia Understanding 11 | Trocan, Maria 12 | Salerno, Emanuele 13 | Cetin, Enis 14 | Multimedia understanding 15 | info:eu-repo/classification/acm/I.2.10 Vision and Scene Understanding 16 | info:eu-repo/classification/acm/I.2.7 Language parsing and understanding, 17 | The Institut Superieur d'Electronique de Paris (ISEP) hosted the International Workshop on Computational Intelligence for Multimedia Understanding (IWCIM 2014), organized by the ERCIM Working Group on Multimedia Understanding through Semantics, Computation and Learning (Muscle), 1-2 November 2014. 18 | ERCIM 19 | Costantino Thanos, Andreas Rauber 20 | 2015 21 | info:eu-repo/semantics/article 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A0-004 23 | en 24 | In: Ercim News, vol. 100 pp. 52 - 53. Special theme: Scientific Data Sharing and Re-use. Costantino Thanos, Andreas Rauber (eds.). ERCIM, 2015. 25 | info:eu-repo/semantics/altIdentifier/url/http://ercim-news.ercim.eu/en100/events/muscle-working-group-international-workshop-on-computational-intelligence-for-multimedia-understanding 26 | info:eu-repo/semantics/altIdentifier/issn/0926-4981 27 | application/pdf 28 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A0-004/2015-A0-004.pdf 29 | info:eu-repo/semantics/openAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_53.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-A0-003 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | Cross-disciplinary data sharing and reuse via gCube 11 | Candela, Leonardo 12 | Pagano, Pasquale 13 | Data Sharing and Reuse 14 | Virtual Research Environments 15 | gCube 16 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 17 | Data sharing has been an emerging topic since the 1980's. Science evolution - e.g. data-intensive, open science, science 2.0 - is revamping this discussion and calling for data infrastructures capable of properly managing data sharing and promoting extensive reuse. 'gCube', a software system that promotes the development of data infrastructures, boasts the distinguishing feature of providing its users with Virtual Research Environments where data sharing and reuse actually happens. 18 | ERCIM 19 | Costantino Thanos, Andreas Rauber 20 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 21 | 2015 22 | info:eu-repo/semantics/article 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-A0-003 24 | en 25 | In: ERCIM News, vol. 100 pp. 30 - 31. Special theme: Scientific Data Sharing and Re-use. Costantino Thanos, Andreas Rauber (eds.). ERCIM, 2015. 26 | info:eu-repo/semantics/altIdentifier/url/http://ercim-news.ercim.eu/en100/special/cross-disciplinary-data-sharing-and-reuse-via-gcube 27 | info:eu-repo/semantics/altIdentifier/issn/0926-4981 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-A0-003/2015-A0-003.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_56.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-077 5 | 2015-01-14 6 | openaire 7 |
8 | 9 | 10 | Simple indicators for Lorentzian causets (v2) 11 | Bolognesi, Tommaso 12 | Lamb, Alexander 13 | Causal sets 14 | Lorentzian manifold 15 | Quantum gravity 16 | Discrete spacetime 17 | info:eu-repo/classification/acm/G.2.2 Graph Theory 18 | info:eu-repo/classification/acm/G.3 PROBABILITY AND STATISTICS 19 | Several classes of DAGs (directed acyclic graphs), and associated growth dynamics, have been investigated over the last two decades, mainly in the context of the Causal Set Program, with the purpose of finding satisfactory discrete models of spacetime. We introduce some simple statistical indicators that can be used for comparing these graphs, and for assessing their closeness to the ideal Lorentzian causets -- those obtained by uniformly sprinkling points in a Lorenztian manifold. In particular, we introduce 'longest/shortest path plots' as a way to visually detect the extent to which a DAG matches the reversed triangular inequality of special relativity (and the twin paradox), and we use it for assessing causets both of stochastic and of deterministic, algorithmic origin. We identify a very simple deterministic algorithm that behaves optimally in this respect. 20 | 2014-06-17 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-077 23 | en 24 | Versione 2 (10 dic. 2014), inviata a ArXiv - Cornell University Library, Technical report, 2014. 25 | info:eu-repo/semantics/altIdentifier/url/http://arxiv.org/abs/1407.1649 26 | application/pdf 27 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-077/2014-TR-077.pdf 28 | info:eu-repo/semantics/openAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_59.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-052 5 | 2014-12-09 6 | openaire 7 |
8 | 9 | 10 | Generazione di coppia di chiavi pubblica/privata mediante modulo hardware e generazione del file LDIFF 11 | De Maglio, Antonio 12 | PEC 13 | openssl 14 | HSM 15 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 16 | info:eu-repo/classification/msc/68Nxx Software 17 | This guide describes all the steps that will allow you to generate the couple of public and private keys by an hardware module (HSM), or using openssl calls. At the end It will be explained all the steps that will allow us to use the certificate issued by AGID to sign emails by the hardware module HSM. Finally I will describe steps to generate and sign the file "` The LDAP Data Interchange Format '' ldiff) of our PEC manager that we will send to AGID. 18 | 19 | 2014-11-12 20 | info:eu-repo/semantics/report 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-052 22 | it 23 | Technical report, 2014. 24 | application/pdf 25 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-052/2014-TR-052.pdf 26 | info:eu-repo/semantics/openAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-TR-008 5 | 2015-03-19 6 | openaire 7 |
8 | 9 | 10 | I diritti dell'uomo e il diritto alla Privacy per le persone anziane e/o disabili 11 | Pillitteri, Loredana 12 | Russo, Dario 13 | Miori, Vittorio 14 | Bianchi Bandinelli, Rolando 15 | privacy 16 | autodeterminazione individuo 17 | persone anziane 18 | info:eu-repo/classification/acm/K.4.2 Social Issues 19 | Respect for human rights and the individual person has changed profoundly in the last two centuries. Public opinion is that the individual must be respected in any situation and context. In the last century have multiplied the initiatives to establish rules to ensure compliance with the minimum rights of the human being. From an ethical point of view, the elderly should be protected from the negative consequences of ICT as regards the personal and social rights of the individual. ICT should empower them with the means to protect and pursue their rights. This, however, may not be enough. Modern technologies should also ensure the elderly not to be isolated, to have a real access to other persons or networks of people. 20 | 21 | info:eu-repo/grantAgreement/EC/FP7//EU/AAL - AMBIENT ASSISTED LIVING: SOCIALIZE/AAL - SOCIALIZE 22 | 2015-03-18 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-TR-008 25 | it 26 | 21 pagine, Technical report, 2015. 27 | application/pdf 28 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-TR-008/2015-TR-008.pdf 29 | info:eu-repo/semantics/openAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_63.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-046 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | Multi-tenancy aware ambient assisted living platforms in the cloud 11 | Stocklow, Carsten 12 | Medrano, Alejandro 13 | Fides Valero, Alvaro 14 | Girolami, Michele 15 | Lenzi, Stefano 16 | AAL Platform 17 | Cloud Computing 18 | Smart Environments 19 | info:eu-repo/classification/acm/D.2.11 Software Architectures 20 | info:eu-repo/classification/acm/D.2.13 Reusable Software 21 | Over the last years, Ambient Assisted Living (AAL) tech- nologies have seen a remarkable grow up. Although this field has been researched for many years and different projects have investigated and proposed AAL platforms with a rich set of functionality, the current market situation still favors isolated solutions. A possible reason is that those platforms are too complex to be easily setup and maintained. Also, resource sharing is possible between services, but not between platforms. A promising alternative is provided by the cloud computing approach which integrates common services in a shared way. Thus, we propose to use an AAL platform as Platform-as-a-Service in the cloud to offer all functionalities of AAL platforms to services in the cloud while being able to connect to platforms running in each home. We discuss different aspects of this approach and propose a simple ver- ification scenario. An exemplary adoption is discussed for the platform universAAL. 22 | info:eu-repo/grantAgreement/EC/FP7/325189/EU/make it ReAAL/ReAAL 23 | 2014-10-30 24 | info:eu-repo/semantics/report 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-046 26 | en 27 | Technical report, 2014. 28 | application/pdf 29 | info:eu-repo/semantics/restrictedAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_66.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-042 5 | 2014-10-22 6 | openaire 7 |
8 | 9 | 10 | 11 | De Maglio, Antonio 12 | PEC 13 | openssl 14 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 15 | info:eu-repo/classification/msc/68Nxx Software 16 | The Institute of Information Science and Technologies (ISTI) has a contract with Agency for Italy Digital (AGID) to perform interoperability tests of Certified Mail (PEC). The ISTI has both its own manager PEC, which one platform for performing a battery of tests on the PEC provider platform. In the configuration phase of a session for a provider if not already present, are generated automatically X.509 certificates of mailboxes that are used in the test battery current. I will describe in this guide initially openssl command to generate Certification Authority (CA), and subsequently analyze the commands openssl to generate the certificates of the users. I will finish this guide explaining the steps to revoke a certificate issued by its CA. 17 | 18 | 2014-10-17 19 | info:eu-repo/semantics/report 20 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-042 21 | it 22 | Technical report, 2014. 23 | application/pdf 24 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-042/2014-TR-042.pdf 25 | info:eu-repo/semantics/openAccess 26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /mock-repository-content/sample_70.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-030 5 | 2014-10-05 6 | openaire 7 |
8 | 9 | 10 | Using mCRL2 for the analysis of software product lines (extended version) 11 | Ter Beek, Maurice H. 12 | De Vink, Erik P. 13 | Model checking 14 | Product lines 15 | Variability analysis 16 | mCRL2 17 | info:eu-repo/classification/acm/D.2.4 Software/Program Verification. Formal methods 18 | info:eu-repo/classification/acm/D.2.4 Software/Program Verification. Model checking 19 | info:eu-repo/classification/acm/D.2.13 Reusable Software. Domain engineering 20 | We show how the formal specification language mCRL2 and its state-of-the-art toolset can be used successfully to model and analyze variability in software product lines. The mCRL2 toolset supports parametrized modeling, model reduction and quality assurance techniques like model checking. We present a proof-of-concept, which moreover illustrates the use of data in mCRL2 and also how to exploit its data language to manage feature attributes of software product lines and quantitative constraints between attributes and features. 21 | info:eu-repo/grantAgreement/EC/FP7/600708/EU/A Quantitative Approach to Management and Design of Collective and Adaptive Behaviours/QUANTICOL 22 | 2014-03-14 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-030 25 | en 26 | Technische Eindhoven University of Technology CSR 14/02. Technical report, 2014. 27 | info:eu-repo/semantics/altIdentifier/url/http://www.win.tue.nl/~evink/research/Postscript/csr1402.pdf 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-030/2014-TR-030.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_73.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-027 5 | 2014-10-08 6 | openaire 7 |
8 | 9 | 10 | gCube statistical manager: the algorithms 11 | Coro, Gianpaolo 12 | Candela, Leonardo 13 | Statistical Manager 14 | Data Mining 15 | Ecological Modelling 16 | info:eu-repo/classification/acm/I.0 COMPUTING METHODOLOGIES. General 17 | info:eu-repo/classification/acm/I.6 SIMULATION AND MODELING 18 | This technical report lists the algorithms and the processes running on the Statistical Manager D4Science service. The Statistical Manager (SM) is a set of web services that aid in the application of statistical computing and data mining to a variety of biological and marine related problems. By means of the integration with the D4Science e-Infrastructure it distributes algorithms "as a Service". Furthermore, it relies on the D4Science computational resources also to execute processes on large datasets. Here we report the algorithms that have been developed and deployed so far by using this system. 19 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 20 | 2014-06-30 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-027 23 | en 24 | Technical report, 2014. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-027/2014-TR-027_0.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_74.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-026 5 | 2014-10-08 6 | openaire 7 |
8 | 9 | 10 | Accessing biodiversity databases: a domain specific query language and a unifying data model 11 | Candela, Leonardo 12 | De Faveri, Federico 13 | Lelii, Lucio 14 | Mangiacrapa, Francesco 15 | Marioli, Valentina 16 | Pagano, Pasquale 17 | Species Data Integration 18 | Distributed Information Retrieval 19 | info:eu-repo/classification/acm/H.3.3 Information Search and Retrieval 20 | During the last years, considerable progresses have been made in developing on-line species databases. However, species data are scattered among several databases and information systems and there is no single database that can claim to host, and make available in a seamless way, all the species data needed by the communities willing to have access to such typology of data. In this report we present a domain specific query language and a unifying data model for species data that characterise a mediator service specifically conceived to act as a single access point to the plethora of existing species databases. 21 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 22 | 2014-06-30 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-026 25 | en 26 | Technical report, 2014. 27 | application/pdf 28 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-026/2014-TR-026_0.pdf 29 | info:eu-repo/semantics/openAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_75.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-025 5 | 2014-10-08 6 | openaire 7 |
8 | 9 | 10 | Automatic detection of geometric changes in time varying point clouds 11 | Palma, Gianpaolo 12 | Cignoni, Paolo 13 | Boubekeur, Tamy 14 | Scopigno, Roberto 15 | Detecting changes 16 | Point clouds 17 | Temporal segmentation 18 | info:eu-repo/classification/acm/I.3.5 Computational Geometry and Object Modeling 19 | The detection of the geometric changes in 4D data is an important task for all the applications interested in the segmentation of the input geometry between the static and dynamic areas, for the example the cleaning of the input clouds from the objects that are moved or disappear in one of the time step or the analysis and the study of the dynamic part to model the type of change. In this paper we present a novel algorithm to solve this problem that takes in input two point clouds of the same environments acquired in different moments. The core of the method is the computation of the differences between the point clouds using a multi-scale comparison of the implicit surface defined using the Growing Least Square framework. Then the obtained results are further processed to make the segmentation more robust in some critical geometrical configurations that are very common in man-made environments. The final segmentation shows an accurate detection of the real changes in the scene. 20 | info:eu-repo/grantAgreement/EC/FP7/323567/EU/Harvesting Dynamic 3D Worlds from Commodity Sensor Clouds/HARVEST4D 21 | 2014-06-30 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-025 24 | en 25 | Technical report, 2014. 26 | application/pdf 27 | info:eu-repo/semantics/restrictedAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_76.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-024 5 | 2014-07-03 6 | openaire 7 |
8 | 9 | 10 | Generalized trackball for surfing over surfaces 11 | Malomo, Luigi 12 | Cignoni, Paolo 13 | Scopigno, Roberto 14 | HCI 15 | 3D 16 | Navigation 17 | Inspection 18 | info:eu-repo/classification/acm/I.3.6 Methodology and Techniques 19 | info:eu-repo/classification/acm/H.5.2 User Interfaces 20 | We present a friendly, efficient 3D interaction technique that, generalizing the well known trackball approach, unifies and blends the two common interaction mechanisms known as panning and orbiting. The approach allows to inspect a virtual object by navigating over its surrounding space, remaining at a chosen distance and performing a sort of automatic panning over its surface. This generalized trackball allows an intuitive navigation of topologically complex shapes, by enabling unexperienced users to visit hard-to-be-reached parts better and faster than with standard GUI components. The approach is based on the construction of multiple smooth approximations of the model under inspection and, at rendering time, it constrains the camera to stay at a given distance to these approximations. The approach is designed to require negligible preprocessing and memory overhead and works well for both mouse-based and touch interfaces. A user study confirms the impact of the proposed technique. 21 | info:eu-repo/grantAgreement/EC/FP7/323567/EU/Harvesting Dynamic 3D Worlds from Commodity Sensor Clouds/HARVEST4D 22 | 2014-01-09 23 | info:eu-repo/semantics/report 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-024 25 | en 26 | Technical report, 2014. 27 | application/pdf 28 | info:eu-repo/semantics/restrictedAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_77.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-023 5 | 2014-06-18 6 | openaire 7 |
8 | 9 | 10 | Simple indicators for Lorentzian causets 11 | Bolognesi, Tommaso 12 | Lamb, Alexander 13 | Causal sets 14 | Lorentzian manifold 15 | Quantum gravity 16 | Discrete spacetime 17 | info:eu-repo/classification/acm/G.2.2 Graph Theory 18 | info:eu-repo/classification/acm/G.3 PROBABILITY AND STATISTICS 19 | Several classes of DAGs (directed acyclic graphs), and associated growth dynamics, have been investigated over the last two decades, mainly in the context of the Causal Set Program, with the purpose of finding satisfactory discrete models of spacetime. We introduce some simple statistical indicators that can be used for comparing these graphs, and for assessing their closeness to the ideal Lorentzian causets -- those obtained by uniformly sprinkling points in a Lorenztian manifold. In particular, we introduce 'longest/shortest path plots' as a way to visually detect the extent to which a DAG matches the reversed triangular inequality of special relativity (and the twin paradox), and we use it for assessing causets both of stochastic and of deterministic, algorithmic origin. We identify a very simple deterministic algorithm that behaves optimally in this respect. 20 | 2014-06-17 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-023 23 | en 24 | Technical report, 2014. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-023/2014-TR-023.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_78.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-022 5 | 2014-11-14 6 | openaire 7 |
8 | 9 | 10 | BiOnym: a flexible workflow approach to taxon name matching 11 | Vanden Berghe, Edward 12 | Bailly, Nicolas 13 | Coro, Gianpaolo 14 | Fiorellato, Fabio 15 | Aldemita, Caselyn 16 | Ellenbroek, Anton 17 | Pagano, Pasquale 18 | Biological taxonomy 19 | Taxon name matching 20 | BiOnym workflow 21 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 22 | 23 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 24 | 2014-06-16 25 | info:eu-repo/semantics/report 26 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-022 27 | en 28 | Technical report, 2014. 29 | application/pdf 30 | info:eu-repo/semantics/restrictedAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_8.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-TR-004 5 | 2015-02-08 6 | openaire 7 |
8 | 9 | 10 | Breve introduzione alla Domotica, alla Robotica e ad una loro possibile evoluzione 11 | Russo, Dario 12 | Domotics 13 | Robotics 14 | Ambient Intelligence 15 | Internet of Things 16 | Elderlies 17 | Disabled 18 | info:eu-repo/classification/acm/I.2.1 Applications and Expert Systems 19 | The work briefly introduces the concepts that underlie automation technologies, robotics technologies and the developments, which in the near future, thanks to the application of the paradigm of Ambient Intelligence and the Internet of Things, will be available and usable by all people. The work, through practical examples, shows the scenarios currently feasible and those that will be soon. In particular, it focuses on how these techniques can be applied for not only the welfare and comfort of everyone, but especially to make it easier and dignified life for the chronically ill, the elderly and the disabled. The Research Laboratory in Domotics of the CNR, for many years, and even today, is sensitive to this kind of problems and performs advanced research activities in the areas described. The laboratory has developed a prototype that implements some features still considered futuristic in order to realize and make a significant contribution to scientific subject. 20 | 21 | 2015-01-30 22 | info:eu-repo/semantics/report 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-TR-004 24 | it 25 | Technical report, 2015. 26 | application/pdf 27 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-TR-004/2015-TR-004.pdf 28 | info:eu-repo/semantics/openAccess 29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /mock-repository-content/sample_80.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-019 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | Service discovery in mobile social networks 11 | Girolami, Michele 12 | Chessa, Stefano 13 | Basagni, Stefano 14 | Furfari, Francesco 15 | Service Discovery 16 | Mobile Social Networks 17 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 18 | We present a new service discovery algorithm, termed SIDEMAN, which considers human mobility for service dissemination and discovery. In particular, SIDEMAN takes advantage of mobile social networking characteristics, such as user membership to a restricted number of communities, and interest for similar services among users in the same community. We evaluated the performance of SIDEMAN via simulations in a scenario based on traces collected at the IEEE conference Infocom in 2006. Our algorithm has been compared to the social version of two popular data dissemination techniques, namely, flooding and gossiping. We have measured how proactive an algorithm is in distributing services of interest (Recall), how many services are already with a user when they are needed (Gain), the energy cost necessary for service discovery, and the time needed to reply to a service query. Our results show that SIDEMAN obtains perfect Recall and a Gain that is always comparable to that of the other algorithms. Furthermore, most services are retrieved in reasonable time and at a remarkably lower energy cost than that of the flooding and gossiping-based solutions. 19 | info:eu-repo/grantAgreement/EC/FP7/247950/EU/UNIVERSsal open platform and reference Specification for Ambient Assisted Living/universAAL 20 | 2014-04-07 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-019 23 | en 24 | Technical report, 2014. 25 | application/pdf 26 | info:eu-repo/semantics/closedAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_81.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-TR-002 5 | 2014-02-11 6 | openaire 7 |
8 | 9 | 10 | Presentazione fotografica dell'installazione dimostrativa del Laboratorio di Domotica ISTI-CNR 11 | Russo, Dario 12 | Pillitteri, Loredana 13 | Domotics 14 | Home automation 15 | Interoperability 16 | info:eu-repo/classification/acm/D.2.6 Interactive environments 17 | info:eu-repo/classification/acm/D.2.12 Interoperability 18 | n.a. 19 | 20 | 2014-02-10 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-TR-002 23 | it 24 | Technical report, 2014. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-TR-002/2014-TR-002.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_83.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-SW-007 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | SensorWeaver communication platform 11 | Fortunati, Luigi 12 | La Rosa, Davide 13 | Palumbo, Filippo 14 | Middleware 15 | Sensor Network 16 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 17 | Middleware platform for secure communications in distributed sensor networks 18 | info:eu-repo/grantAgreement/EC/FP7/611650/EU/Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion/DOREMI 19 | 2014-12-21 20 | SW Software 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-SW-007 22 | en 23 | [Software] , 21 December 2014. 24 | info:eu-repo/semantics/altIdentifier/url/http://ala.isti.cnr.it/svn/wnlab/SensorWeaver/middleware/ 25 | application/zip 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-SW-007/2014-SW-007.zip 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_84.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-SW-006 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | NOSA-ITACA 11 | Binante, Vincenzo 12 | Girardi, Maria 13 | Padovani, Cristina 14 | Pasquinelli, Giuseppe 15 | Pellegrini, Daniele 16 | Porcelli, Margherita 17 | Finite element code 18 | Masonry constructions 19 | Nonlinear analysis 20 | info:eu-repo/classification/acm/J.2 PHYSICAL SCIENCES ENGINEERING 21 | NOSA-ITACA is a code for the nonlinear structural analysis of historical masonry constructions. It the result of the integration of the finite element code NOSA into the open-source SALOME platform. 22 | info:eu-repo/grantAgreement/EC/FP7//EU/Strumenti informatici per la modellazione e la verifica del comportamento strutturale di costruzioni antiche: il codice NOSA-ITACA/NOSA-ITACA 23 | 2014-10-23 24 | SW Software 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-SW-006 26 | en 27 | [Software] Release 1.0 , 23 October 2014. 28 | info:eu-repo/semantics/altIdentifier/url/http://www.nosaitaca.it/it/ 29 | application/pdf 30 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-SW-006/2014-SW-006.pdf 31 | info:eu-repo/semantics/openAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_86.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-PR-015 5 | 2015-01-31 6 | openaire 7 |
8 | 9 | 10 | 11 | Vairo, Claudio 12 | Amato, Giuseppe 13 | Gennaro, Claudio 14 | Cicloturismo 15 | IOS 16 | App 17 | info:eu-repo/classification/acm/H.4 INFORMATION SYSTEMS APPLICATIONS 18 | The goal of this activity is to develop an application for smartphones technologically advanced, in an augmented reality, aimed at cycling tourism object within the project Active Tourism. The application must provide information and images during the cycling routes and should allow you to share with other users, traffic information, cultural sites and scenic resources of the route you are currently taking. The application is designed and built for the iPhone platform with iOS operating system and can work in online mode (requires an active network connection for this mode), and offline mode. Some of the features offered by the application will not be available in offline mode. 19 | 20 | 2014-01-29 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-PR-015 23 | it 24 | 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-PR-015/2014-PR-015.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_9.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2015-TR-001 5 | 2015-01-09 6 | openaire 7 |
8 | 9 | 10 | Real Time System for Gesture Tracking in Psycho-Motorial Rehabilitation 11 | Magrini, Massimo 12 | Pieri, Gabriele 13 | Gesture tracking 14 | Image processing 15 | Rehabilitation 16 | info:eu-repo/classification/acm/I.5.4 PATTERN RECOGNITION. Applications 17 | info:eu-repo/classification/acm/I.2.10 Vision and Scene Understanding 18 | info:eu-repo/classification/msc/J.3 LIFE AND MEDICAL SCIENCES 19 | In the last years sensor based interactive systems for helping the treatment of learning difficulties and disabilities in children appeared on the specialized literature (Ould Mohamed and Courbulay, 2006) and (Kozima et al. 2005). Our system is based on real-time video processing techniques. The use of video-processing techniques adds more parameters which can be used for the exact localization and details about the human gestures to be detected and recognized. By using the implemented software interface, the operator can link these extracted video features to sounds synthesized in real time, following a predefined schema. The proposed system has been experimented as case study, in a real-patients test campaign over a set of patient affected by autism spectrum disorder (ASD), in order to provide them an increased interaction towards external environment and trying to reduce their pathological isolation (Riva et al., 2013). 20 | 2015-1-8 21 | info:eu-repo/semantics/report 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2015-TR-001 23 | en 24 | Technical report, 2015. 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2015-TR-001/2015-TR-001.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_91.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-MM-001 5 | 2015-01-15 6 | openaire 7 |
8 | 9 | 10 | Sensor Weaver documentation 11 | Fortunati, Luigi 12 | Sensor Networks 13 | Middleware platform 14 | info:eu-repo/classification/acm/C.2 COMPUTER-COMMUNICATION NETWORKS 15 | SensorWeaver is a suite of applications that enables application development in distributed sensor networks scenarios. It comprises: A Middleware Platform for secure communications between applications and sensor network gateway nodes Applications that leverage Middleware functionalities The software project is licensed with Apache V2 licensing. This page collects developers and administrators documentation on SensorWeaver components. 16 | info:eu-repo/grantAgreement/EC/FP7/611650/EU/Decrease of cOgnitive decline, malnutrRtion and sedEntariness by elderly empowerment in lifestyle Management and social Inclusion/DOREMI 17 | 2014-12-21 18 | MM Multimedia 19 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-MM-001 20 | en 21 | Multimedia, 2014. 22 | info:eu-repo/semantics/altIdentifier/url/http://wnlab.isti.cnr.it/sensorweaver 23 | directory 24 | info:eu-repo/semantics/ 25 | 26 | 27 |
28 | -------------------------------------------------------------------------------- /mock-repository-content/sample_92.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-016 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | Executive Summary of the "iMarine data Platform for collaborations" workshop 11 | Castelli, Donatella 12 | Taconet, Marc 13 | Garavelli, Sara 14 | Parker, Stephanie 15 | Management of fisheries and marine living resources 16 | iMarine project 17 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 18 | 19 | http://www.imarine.eu 20 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 21 | 2014 22 | info:eu-repo/semantics/review 23 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-016 24 | en 25 | In: iMarine Workshop: Ecosystem approach to marine and fishery data management. Editorial, article n. 1. http://www.imarine.eu, 2014. 26 | info:eu-repo/semantics/altIdentifier/url/http://uripreview.i-marine.eu/be0c89a7-6eca-4ae1-ac87-9a52d8800641.pdf 27 | application/pdf 28 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-016/2014-ED-016.pdf 29 | info:eu-repo/semantics/openAccess 30 | 31 | 32 |
33 | -------------------------------------------------------------------------------- /mock-repository-content/sample_93.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-015 5 | 2015-02-12 6 | openaire 7 |
8 | 9 | 10 | Executive Summary of the iMarine "Ecosystem approach to marine and fishery data management" 11 | Castelli, Donatella 12 | Pagano, Pasquale 13 | Parker, Stephanie 14 | iMarine project 15 | info:eu-repo/classification/acm/H.3.7 Digital Libraries 16 | The document defines the requirements for appropriate conservation and policy measures for the sustainable exploitation of natural resources in the marine environment, i.e., comprehensive, multi-domain and good quality knowledge on the status of biodiversity and ecosystems, as well as on marine resource exploitation and management. 17 | http://www.icri2014.eu 18 | info:eu-repo/grantAgreement/EC/FP7/283644/EU/Data e-Infrastructure Initiative for Fisheries Management and Conservation of Marine Living Resources/IMARINE 19 | 2014 20 | info:eu-repo/semantics/review 21 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-015 22 | en 23 | In: Ecosystem approach to marine and fishery data management" workshop, Co-located with ICRI2014 conference: 2nd International Conference on Research Infrastructures. Editorial, pp. 1 - 4. http://www.icri2014.eu, 2014. 24 | info:eu-repo/semantics/altIdentifier/url/http://uripreview.i-marine.eu/6ded7294-06a5-4cfe-a291-4c42e04623ef.pdf 25 | application/pdf 26 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-015/2014-ED-015.pdf 27 | info:eu-repo/semantics/openAccess 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /mock-repository-content/sample_94.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-010 5 | 2015-01-28 6 | openaire 7 |
8 | 9 | 10 | Fundamental Approaches to Software Engineering - 17th International Conference, 11 | Gnesi, Stefania 12 | Rensink, Arend 13 | (eds.), . 14 | Software Engineering 15 | Formal methods 16 | info:eu-repo/classification/acm/D.2 SOFTWARE ENGINEERING 17 | info:eu-repo/classification/acm/D.2.4 Software/Program Verification 18 | 17th International Conference, FASE 2014 Held as Part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2014 Grenoble, France, April 5-13, 2014 Proceedings 19 | Springer 20 | 2014 21 | info:eu-repo/semantics/review 22 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-010 23 | en 24 | In: Fundamental Approaches to Software Engineering. Editorial, Springer, 2014. 25 | info:eu-repo/semantics/altIdentifier/url/http://dx.doi.org/10.1007/978-3-642-54804-8 26 | info:eu-repo/semantics/altIdentifier/isbn/978-3-642-54803-1 27 | info:eu-repo/semantics/altIdentifier/doi/10.1007/978-3-642-54804-8 28 | application/pdf 29 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-010/2014-ED-010.pdf 30 | info:eu-repo/semantics/openAccess 31 | 32 | 33 |
34 | -------------------------------------------------------------------------------- /mock-repository-content/sample_95.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-009 5 | 2015-01-28 6 | openaire 7 |
8 | 9 | 10 | 2nd FME Workshop on Formal Methods in Software Engineering 11 | Gnesi, Stefania 12 | Plat, Nico 13 | (eds.), . 14 | SOFTWARE ENGINEERING, Formal methods 15 | info:eu-repo/classification/acm/D.2.4 Software/Program Verification. Formal methods 16 | ACM 17 | 2014 18 | info:eu-repo/semantics/review 19 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-009 20 | en 21 | In: Proceedings of the 2nd FME Workshop on Formal Methods in Software Engineering. Editorial, pp. iii - iv. ACM, 2014. 22 | info:eu-repo/semantics/altIdentifier/url/http://dl.acm.org/citation.cfm?id=2593489 23 | info:eu-repo/semantics/altIdentifier/isbn/978-1-4503-2853-1 24 | application/pdf 25 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-009/2014-ED-009.pdf 26 | info:eu-repo/semantics/openAccess 27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /mock-repository-content/sample_96.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-008 5 | 2015-01-28 6 | openaire 7 |
8 | 9 | 10 | 18th International Software Product Line Conference 11 | Gnesi, Stefania 12 | Fantechi, Alessandro 13 | Heymans, Patrick 14 | Rubin, Julia 15 | Czarnecki, Krzysztof 16 | Dhungana, Deepak 17 | (eds.), . 18 | Software Product Line 19 | info:eu-repo/classification/acm/D.2 SOFTWARE ENGINEERING 20 | Welcome to SPLC 2014, the 18th International Software Product Line Conference. SPLC is the premier forum for practitioners and researchers to present and discuss novel ideas, research results, experiences as well as issues and problems in the field. This year, the program of the conference consists of a variety of exciting events such as keynote talks, research and industry paper presentations, panels, tutorials, workshops, tool presentations, demos, the doctoral symposium and the Product Line Hall of Fame sessions. 21 | ACM 22 | 2014 23 | info:eu-repo/semantics/review 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-008 25 | en 26 | In: Proceedings of the 18th International Software Product Line Conference. Editorial, vol. 1 pp. vii - viii. ACM, 2014. 27 | info:eu-repo/semantics/altIdentifier/url/http://dl.acm.org/citation.cfm?id=2648511 28 | info:eu-repo/semantics/altIdentifier/isbn/978-1-4503-2740-4 29 | application/pdf 30 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-008/2014-ED-008.pdf 31 | info:eu-repo/semantics/openAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_97.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-006 5 | 2014-10-08 6 | openaire 7 |
8 | 9 | 10 | Proceedings of the 18th International Software Product Line Conference, Volume 2 11 | Gnesi, Stefania 12 | Fantechi, Alessandro 13 | Ter Beek, Maurice H. 14 | Botterweck, Goetz 15 | Becker, Martin 16 | (eds.), . 17 | Software Product Lines 18 | info:eu-repo/classification/acm/D.2.13 Software Engineering. Reusable Software 19 | no available 20 | ACM 21 | Stefania Gnesi, Alessandro Fantechi, Maurice H. ter Beek, Goetz Botterweck, Martin Becker 22 | 2014 23 | info:eu-repo/semantics/review 24 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-006 25 | en 26 | In: 18th International Software Product Line Conference, Volume 2: Companion Volume for Workshops, Demonstrations and Tools. Editorial, vol. 2 pp. 1 - 150. Stefania Gnesi, Alessandro Fantechi, Maurice H. ter Beek, Goetz Botterweck, Martin Becker (eds.). A 27 | info:eu-repo/semantics/altIdentifier/url/http://dl.acm.org/citation.cfm?id=2647908 28 | info:eu-repo/semantics/altIdentifier/isbn/978-1-4503-2739-8 29 | application/pdf 30 | http://puma.isti.cnr.it/rmydownload.php?filename=cnr.isti/cnr.isti/2014-ED-006/2014-ED-006_0.pdf 31 | info:eu-repo/semantics/openAccess 32 | 33 | 34 |
35 | -------------------------------------------------------------------------------- /mock-repository-content/sample_98.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | oai:pumaoai.isti.cnr.it:cnr.isti/cnr.isti/2014-ED-005 5 | 2014-10-05 6 | openaire 7 |
8 | 9 | 10 | Theory and Practice of Digital Libraries -- TPDL 2013 Selected Workshops 11 | Bolikowski, ŁUkasz 12 | Casarosa, Vittore 13 | Manghi, Paolo 14 | Gooddale, Paula 15 | Houssos, Nikos 16 | Shirrwagen, Jochen 17 | Linking publications and datasets 18 | Data curation 19 | info:eu-repo/classification/acm/H3.7 - Digital Libraries 20 | The preface presents the Revised Papers selected from the workshops LCPD 2013, SUEDL 2013, DataCur 2013, Held in Valletta, Malta, September 22-26, 2013. 21 | Springer 22 | info:eu-repo/grantAgreement/EC/FP7/283595/EU/2nd-Generation Open Access Infrastructure for Research in Europe/OPENAIREPLUS 23 | 2014 24 | info:eu-repo/semantics/review 25 | http://puma.isti.cnr.it/dfdownloadnew.php?ident=cnr.isti/cnr.isti/2014-ED-005 26 | en 27 | In: Theory and Practice of Digital Libraries. Editorial, pp. iv - ix. Springer, 2014. 28 | info:eu-repo/semantics/altIdentifier/url/http://link.springer.com/book/10.1007%2F978-3-319-08425-1 29 | info:eu-repo/semantics/altIdentifier/isbn/978-3-319-08424-4 (print) 978-3-319-08425-1 (online) 30 | info:eu-repo/semantics/altIdentifier/doi/10.1007/978-3-319-08425-1 31 | application/pdf 32 | info:eu-repo/semantics/restrictedAccess 33 | 34 | 35 |
36 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/cxf/org.apache.cxf.Logger: -------------------------------------------------------------------------------- 1 | org.apache.cxf.common.logging.Log4jLogger 2 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/javax.xml.transform.TransformerFactory: -------------------------------------------------------------------------------- 1 | net.sf.saxon.TransformerFactoryImpl -------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/applicationContext-security.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/OAIPublisherConfigurationDSResources/OAIPublisherConfigurationDSResourceType/oai-configuration.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | oai 12 | dnet 13 | oaistore_dnet 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | http://www.driver-repository.eu/OAI/2.0/DMF/ 25 | http://driver.research-infrastructures.eu/schemas/DMFSchema.xsd 26 | 27 | 28 | *=* 29 | 30 | 31 | http://www.openarchives.org/OAI/2.0/oai_dc/ 32 | http://www.openarchives.org/OAI/2.0/oai_dc.xsd 33 | 34 | 0dae03c9-e432-4e51-b7ff-64c5e8a9bcf7_VHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZXMvVHJhbnNmb3JtYXRpb25SdWxlRFNSZXNvdXJjZVR5cGU= 35 | *=* 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | SECURITY_PARAMETERS 48 | 49 |
50 | -------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/RepositoryServiceResources/RepositoryServiceResourceType/mockDatasource.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | dnet:repository 14 | mock 15 | false 16 | 17 | D-Net 18 | 19 | 0 20 | 21 | 0 22 | OCTOPUS 23 | Mock repository 24 | Mock repository 25 | 26 | IT 27 | 28 | 10.42 29 | 43.71 30 | 0.0 31 | 32 | http://www.mock.it 33 | Mock Institution 34 | admin@mock.it 35 | 36 | 39 | filesystem 40 | file:///var/lib/dnet/mock-repository-content 41 | //*[local-name()='header']/*[local-name()='identifier'] 42 | 43 | 44 | 45 | 46 | aggregatorName 47 | DNET 48 | 49 | 50 | NamespacePrefix 51 | dnet____mock 52 | 53 | 54 | 55 | 56 | 0 57 | 58 | 59 | 60 | 61 | 62 | 0 63 | 64 | 65 | 66 | 67 |
-------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/TransformationRuleDSResources/TransformationRuleDSResourceType/dmf2dc.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 30 | 31 | 32 | SECURITY_PARAMETERS 33 | 34 |
35 | -------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/TransformationRuleDSResources/TransformationRuleDSResourceType/identity.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 27 | 28 | 29 | SECURITY_PARAMETERS 30 | 31 |
-------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/VocabularyDSResources/MetadataFormatDSResourceType/7-de9a7d86-00cd-4348-905d-0c977b2b996d.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | Informations about metadata formats 12 | Contain the necessary informations about the metadata formats used by DRIVER 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | String 22 | 23 |
-------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/VocabularyDSResources/VocabularyDSResourceType/api_compatibilities.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | dnet:compatibilityLevel 12 | dnet:compatibilityLevel 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | String 29 | 30 |
-------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/VocabularyDSResources/VocabularyDSResourceType/content_typologies.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | D-Net Content Description Typologies 12 | D-Net Content Description Typologies 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | String 26 | 27 |
-------------------------------------------------------------------------------- /src/main/resources/eu/dnetlib/test/profiles/VocabularyDSResources/VocabularyDSResourceType/datasource_typologies.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | Datasource typologies 13 | D-Net datasource typologies 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
-------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- 1 | org.apache.cxf.Logger=org.apache.cxf.common.logging.Log4jLogger 2 | 3 | log4j.rootLogger=WARN, DNET 4 | 5 | # TO DISABLE WHEN BUILDING THE WAR 6 | log4j.rootLogger=WARN, CONSOLE 7 | log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender 8 | log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout 9 | log4j.appender.CONSOLE.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n 10 | 11 | log4j.appender.DNET = org.apache.log4j.RollingFileAppender 12 | log4j.appender.DNET.File = ${catalina.base}/logs/dnet.log 13 | log4j.appender.DNET.Append = true 14 | log4j.appender.DNET.Encoding = UTF-8 15 | log4j.appender.DNET.Threshold = ALL 16 | log4j.appender.DNET.MaxFileSize = 100MB 17 | log4j.appender.DNET.MaxBackupIndex = 30 18 | log4j.appender.DNET.layout = org.apache.log4j.PatternLayout 19 | log4j.appender.DNET.layout.ConversionPattern = %d [%t] %-5p %c- %m%n 20 | 21 | log4j.logger.eu.dnetlib=INFO 22 | log4j.logger.eu.dnetlib.data=INFO 23 | log4j.logger.eu.dnetlib.enabling.is.sn=FATAL 24 | log4j.logger.org.apache.cxf.interceptor=FATAL 25 | log4j.logger.org.apache.cxf.ws.addressing.ContextUtils=FATAL 26 | log4j.logger.eu.dnetlib.enabling.tools.AbstractBaseService=INFO 27 | log4j.logger.eu.dnetlib.xml.database.LoggingTrigger=WARN 28 | #log4j.logger.eu.dnetlib.enabling.tools.registration=DEBUG 29 | log4j.logger.eu.dnetlib.enabling.tools.registration.ServiceRegistrator=WARN 30 | log4j.logger.eu.dnetlib.enabling.inspector=FATAL 31 | log4j.logger.eu.dnetlib.enabling.inspector.SubscriptionController=INFO 32 | log4j.logger.eu.dnetlib.springutils.stringtemplate.StringTemplateViewResolver=FATAL 33 | log4j.logger.eu.dnetlib.enabling.is.sn.SynchronousNotificationSenderImpl=WARN 34 | log4j.logger.eu.dnetlib.enabling.is.store.AbstractContentInitializer=WARN 35 | #log4j.logger.eu.dnetlib.miscutils.functional.xml=INFO 36 | log4j.logger.eu.dnetlib.data.oai=DEBUG 37 | log4j.logger.eu.dnetlib.msro.oai=DEBUG -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/applicationContext.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 12 | 13 | 14 | 17 | 18 | 19 | 20 | 21 | 22 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/cxf.xml: -------------------------------------------------------------------------------- 1 | 2 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 35 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/dispatcher-servlet.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | DNet-2.0 container web app 6 | 7 | contextConfigLocation 8 | /WEB-INF/applicationContext.xml 9 | 10 | 11 | 12 | springSecurityFilterChain 13 | org.springframework.web.filter.DelegatingFilterProxy 14 | 15 | 16 | encodingFilter 17 | org.springframework.web.filter.CharacterEncodingFilter 18 | 19 | encoding 20 | UTF-8 21 | 22 | 23 | forceEncoding 24 | true 25 | 26 | 27 | 28 | encodingFilter 29 | /* 30 | 31 | 32 | 33 | springSecurityFilterChain 34 | /* 35 | 36 | 37 | 38 | org.springframework.web.context.ContextLoaderListener 39 | 40 | 41 | 42 | CXFServlet 43 | CXF Servlet 44 | org.apache.cxf.transport.servlet.CXFServlet 45 | 1 46 | 47 | 48 | dispatcher 49 | org.springframework.web.servlet.DispatcherServlet 50 | 1 51 | 52 | 53 | dispatcher 54 | /mvc/* 55 | 56 | 57 | CXFServlet 58 | /services/* 59 | 60 | -------------------------------------------------------------------------------- /src/main/webapp/images/User.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnet-team/dnet-basic-aggregator/53e02913e88d7b0045ed821a6d7f0b61393a064b/src/main/webapp/images/User.png -------------------------------------------------------------------------------- /src/main/webapp/images/d-netLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnet-team/dnet-basic-aggregator/53e02913e88d7b0045ed821a6d7f0b61393a064b/src/main/webapp/images/d-netLogo.png -------------------------------------------------------------------------------- /src/main/webapp/images/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dnet-team/dnet-basic-aggregator/53e02913e88d7b0045ed821a6d7f0b61393a064b/src/main/webapp/images/monitor.png -------------------------------------------------------------------------------- /src/main/webapp/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 |
if this container runs the IS, you can access the web interface here
if this container runs the user interfaces, you can access them here
if this container is monitored, you can access the monitoring web interface here
16 | --------------------------------------------------------------------------------