├── .gitignore ├── LICENSE.md ├── README.md ├── client ├── .gitignore ├── client-rest-jersey │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── eu │ │ │ │ └── europeana │ │ │ │ └── repox │ │ │ │ └── rest │ │ │ │ └── client │ │ │ │ └── accessors │ │ │ │ ├── AggregatorsAccessor.java │ │ │ │ ├── DatasetsAccessor.java │ │ │ │ ├── HarvestAccessor.java │ │ │ │ ├── MappingsAccessor.java │ │ │ │ ├── ProvidersAccessor.java │ │ │ │ ├── RecordsAccessor.java │ │ │ │ └── StatisticsAccessor.java │ │ └── resources │ │ │ └── log4j.properties │ │ └── test │ │ └── java │ │ └── eu │ │ └── europeana │ │ └── repox │ │ └── rest │ │ └── client │ │ └── accessors │ │ ├── AggregatorsAccessorTest.java │ │ ├── DatasetsAccessorTest.java │ │ ├── HarvestAccessorTest.java │ │ ├── MappingsAccessorTest.java │ │ ├── ProvidersAccessorTest.java │ │ ├── RecordsAccessorTest.java │ │ └── StatisticsAccessorTest.java └── pom.xml ├── commons ├── .gitignore ├── pom.xml └── src │ ├── main │ └── java │ │ ├── org │ │ └── oclc │ │ │ └── oai │ │ │ └── harvester │ │ │ ├── app │ │ │ └── RawWrite.java │ │ │ └── verb │ │ │ ├── GetRecord.java │ │ │ ├── HarvesterVerb.java │ │ │ ├── Identify.java │ │ │ ├── ListIdentifiers.java │ │ │ ├── ListMetadataFormats.java │ │ │ ├── ListRecords.java │ │ │ └── ListSets.java │ │ └── pt │ │ └── utl │ │ └── ist │ │ ├── characters │ │ ├── AnselConverter.java │ │ ├── ByteInspector.java │ │ ├── CharConverterMarc4jWrapper.java │ │ ├── CharacterConverterI.java │ │ ├── CharacterConverters.java │ │ ├── Cp850Converter.java │ │ ├── HorizonConverter.java │ │ ├── HtmlEncoder.java │ │ ├── JavascriptStringEncoder.java │ │ ├── Marc8CharsetConverter.java │ │ ├── NonSortingCharsRemover.java │ │ ├── RecordCharactersConverter.java │ │ ├── StandardCharsetConverter.java │ │ ├── ToAnselConverter.java │ │ ├── ToHorizonConverter.java │ │ ├── UnderCode32Remover.java │ │ ├── UnicodeUtil.java │ │ ├── XmlEncoder.java │ │ └── deprecated │ │ │ └── HtmlDecoder.java │ │ ├── marc │ │ ├── CharacterEncoding.java │ │ ├── Marc.gwt.xml │ │ ├── MarcField.java │ │ ├── MarcObjectFactory.java │ │ ├── MarcRecord.java │ │ ├── MarcSubfield.java │ │ ├── PortugalMatematicaDublinCoreToUnimarcCrosswalk.java │ │ ├── RecordType.java │ │ ├── UnimarcUtil.java │ │ ├── Viewer.form │ │ ├── Viewer.java │ │ ├── iso2709 │ │ │ ├── BatchInfo.java │ │ │ ├── ISOHandler.java │ │ │ ├── ISOHandlerSingleRecord.java │ │ │ ├── Iso2709TypeDetector.java │ │ │ ├── Iso2709Types.java │ │ │ ├── IsoNavigator.java │ │ │ ├── IteratorIso2709.java │ │ │ ├── IteratorIso2709Albania.java │ │ │ ├── IteratorIso2709Ukraine.java │ │ │ ├── MARCHandler.java │ │ │ ├── MARCPartialReader.java │ │ │ ├── MARCPartialReaderUkraine.java │ │ │ ├── MARCReader.java │ │ │ ├── ParseDirectoryException.java │ │ │ ├── ParseRecordException.java │ │ │ ├── ParseVariableFieldException.java │ │ │ ├── Record2Iso2709HorizonVisitor.java │ │ │ ├── Record2Iso2709Visitor.java │ │ │ ├── datatype │ │ │ │ ├── Datatype.java │ │ │ │ ├── Identifier.java │ │ │ │ ├── Indicator.java │ │ │ │ ├── Numeric.java │ │ │ │ └── Tag.java │ │ │ └── shared │ │ │ │ └── Iso2709Variant.java │ │ └── xml │ │ │ ├── DomBuilder.java │ │ │ ├── IteratorMarcXChange.java │ │ │ ├── MarcSaxParser.java │ │ │ ├── MarcSaxParserClient.java │ │ │ ├── MarcSaxParserFlorence.java │ │ │ ├── MarcSaxParserOaiMarc.java │ │ │ ├── MarcWriterInXml.java │ │ │ ├── MarcXChangeBuilder.java │ │ │ ├── MarcXChangeDom4jBuilder.java │ │ │ ├── MarcXChangeXmlBuilder.java │ │ │ ├── RecordBuilderFromMarcXChange.java │ │ │ └── RecordBuilderFromMarcXml.java │ │ ├── recordPackage │ │ ├── RecordRepox.java │ │ ├── RecordRepoxExternalId.java │ │ ├── RecordRepoxXpathId.java │ │ ├── RecordSAXParser.java │ │ ├── RecordStaxParser.java │ │ └── XmlRecordSplitter.java │ │ ├── reports │ │ ├── ErrorLogElement.java │ │ ├── InfoLogElement.java │ │ ├── LogElement.java │ │ ├── LogEntryType.java │ │ ├── LogUtil.java │ │ └── WarningLogElement.java │ │ └── util │ │ ├── CompareUtil.java │ │ ├── Country.java │ │ ├── Dom4jUtil.java │ │ ├── DomUtil.java │ │ ├── EmailSender.java │ │ ├── EmailUtil.java │ │ ├── ExternalServiceUtil.java │ │ ├── FileUtil.java │ │ ├── IndexUtil.java │ │ ├── InvalidInputException.java │ │ ├── MD5Generator.java │ │ ├── Month.java │ │ ├── NUtil.java │ │ ├── OutputStreamReplicator.java │ │ ├── PrintStreamString.java │ │ ├── PropertyUtil.java │ │ ├── ProviderType.java │ │ ├── RunnableStoppable.java │ │ ├── StringUtil.java │ │ ├── TarGz.java │ │ ├── TimeUtil.java │ │ ├── Util.gwt.xml │ │ ├── XmlUtil.java │ │ ├── ZipUtil.java │ │ ├── date │ │ ├── DateDifference.java │ │ ├── DateUtil.java │ │ ├── DayOfMonth.java │ │ └── LeapYear.java │ │ ├── exceptions │ │ ├── AlreadyExistsException.java │ │ ├── DatabaseConnectionException.java │ │ ├── DoesNotExistException.java │ │ ├── IncompatibleInstanceException.java │ │ ├── InvalidArgumentsException.java │ │ ├── InvalidRequestException.java │ │ ├── MissingArgumentsException.java │ │ ├── ObjectNotFoundException.java │ │ ├── SameStylesheetTransformationException.java │ │ ├── marc │ │ │ └── iso2709 │ │ │ │ ├── IllegalIdentifierException.java │ │ │ │ ├── IllegalIndicatorException.java │ │ │ │ └── IllegalTagException.java │ │ └── task │ │ │ └── IllegalFileFormatException.java │ │ ├── marc │ │ ├── AuthorityUtil.java │ │ ├── Directory.java │ │ ├── InsertPontuationVisitor.java │ │ ├── Leader.java │ │ ├── MarcUtil.java │ │ ├── RecordComparer.java │ │ ├── RemovePontuationFromAuthorityVisitor.java │ │ └── RemovePontuationVisitor.java │ │ ├── shared │ │ └── ProjectType.java │ │ ├── sql │ │ ├── SqlResultRow.java │ │ └── SqlUtil.java │ │ └── structure │ │ ├── IntHashtable.java │ │ ├── LastIntTable.java │ │ ├── ListOfLists.java │ │ ├── MapOf3Keys.java │ │ ├── MapOfInts.java │ │ ├── MapOfIntsToLists.java │ │ ├── MapOfLists.java │ │ ├── MapOfMaps.java │ │ ├── MapOfMapsOfLists.java │ │ ├── MapOfObjectArrays.java │ │ ├── MapOfSets.java │ │ ├── StringTuple.java │ │ ├── Triple.java │ │ └── Tuple.java │ └── test │ └── java │ └── pt │ └── utl │ └── ist │ └── util │ └── CompareUtilTest.java ├── gui ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── .gitignore │ ├── java │ │ └── harvesterUI │ │ │ ├── HarvesterUI.gwt.xml │ │ │ ├── client │ │ │ ├── HarvesterUI.java │ │ │ ├── attributes │ │ │ │ ├── AttributeIngestTypeCompare.java │ │ │ │ └── AttributeRecentCompare.java │ │ │ ├── core │ │ │ │ └── AppEvents.java │ │ │ ├── icons │ │ │ │ ├── BaseIconsManager.java │ │ │ │ ├── accordion.gif │ │ │ │ ├── add.gif │ │ │ │ ├── add16.gif │ │ │ │ ├── add24.gif │ │ │ │ ├── add32.gif │ │ │ │ ├── admin_menu_16x16.png │ │ │ │ ├── aggregator_icon.png │ │ │ │ ├── album.gif │ │ │ │ ├── anonymous_icon.png │ │ │ │ ├── application_form.png │ │ │ │ ├── application_side_list.png │ │ │ │ ├── arrow_move.png │ │ │ │ ├── broom_icon.png │ │ │ │ ├── calendar.gif │ │ │ │ ├── cancel_icon.png │ │ │ │ ├── config_properties.png │ │ │ │ ├── connect.png │ │ │ │ ├── dashboard_16x16.png │ │ │ │ ├── data_provider_16x22.png │ │ │ │ ├── data_provider_icon.png │ │ │ │ ├── data_set_icon.png │ │ │ │ ├── delete.gif │ │ │ │ ├── dp_import.png │ │ │ │ ├── edit_user_23x23.png │ │ │ │ ├── email_icon.png │ │ │ │ ├── equal_to.png │ │ │ │ ├── export_now.png │ │ │ │ ├── externalServiceError.png │ │ │ │ ├── externalServiceSuccess.png │ │ │ │ ├── externalServicesIcon.png │ │ │ │ ├── greater_than.png │ │ │ │ ├── harvest_menu.png │ │ │ │ ├── harvesting_16x16.png │ │ │ │ ├── help_23x23.png │ │ │ │ ├── home_23x23.png │ │ │ │ ├── html_report_icon.png │ │ │ │ ├── info_16x16.png │ │ │ │ ├── ingest_now.png │ │ │ │ ├── ingest_sample.png │ │ │ │ ├── ldap_icon.png │ │ │ │ ├── lesser_than.png │ │ │ │ ├── list-items.gif │ │ │ │ ├── lock_image16x16.png │ │ │ │ ├── lock_image23x23.png │ │ │ │ ├── log_icon.png │ │ │ │ ├── logout_23x23.png │ │ │ │ ├── management.png │ │ │ │ ├── mapping.png │ │ │ │ ├── mapping_new.png │ │ │ │ ├── menu-show.gif │ │ │ │ ├── music.png │ │ │ │ ├── network-transmit.png │ │ │ │ ├── oai_add_all.png │ │ │ │ ├── oai_check.png │ │ │ │ ├── oai_uncheck.png │ │ │ │ ├── operation_edit.png │ │ │ │ ├── paste_as_plain_text.png │ │ │ │ ├── plugin.png │ │ │ │ ├── refresh_icon.png │ │ │ │ ├── repox-logo-16.png │ │ │ │ ├── repox-logo-24.png │ │ │ │ ├── rssIcon21x21.png │ │ │ │ ├── running_tasks.png │ │ │ │ ├── save_icon.png │ │ │ │ ├── schedule_export.png │ │ │ │ ├── schema.png │ │ │ │ ├── schema_delete.png │ │ │ │ ├── schema_edit.png │ │ │ │ ├── schema_mapper_16x16.png │ │ │ │ ├── schema_new.png │ │ │ │ ├── schema_version.png │ │ │ │ ├── schema_version_new.png │ │ │ │ ├── search-icon.png │ │ │ │ ├── send_recovery_pass_icon.png │ │ │ │ ├── statistics_23x23.png │ │ │ │ ├── table.png │ │ │ │ ├── tag_add_icon.png │ │ │ │ ├── tag_icon.png │ │ │ │ ├── tag_remove_icon.png │ │ │ │ ├── task_status │ │ │ │ │ ├── canceled_task.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── post_process_16x16.png │ │ │ │ │ ├── post_process_error_16x16.png │ │ │ │ │ ├── pre_process_16x16.png │ │ │ │ │ ├── pre_process_error_16x16.png │ │ │ │ │ ├── processing.gif │ │ │ │ │ ├── processing_16x16.gif │ │ │ │ │ ├── retrying.png │ │ │ │ │ ├── running.gif │ │ │ │ │ ├── sample.png │ │ │ │ │ ├── status_offline.png │ │ │ │ │ ├── status_online.png │ │ │ │ │ ├── taskStatusIcons.java │ │ │ │ │ ├── validation_error_icon.png │ │ │ │ │ ├── validation_ok_icon.png │ │ │ │ │ └── warning.png │ │ │ │ ├── text.png │ │ │ │ ├── user_add.png │ │ │ │ ├── user_delete.png │ │ │ │ ├── user_manage_icon.png │ │ │ │ ├── view_filter.png │ │ │ │ ├── view_info.png │ │ │ │ ├── web_services_icon.png │ │ │ │ ├── worldmap.png │ │ │ │ ├── xsd_image.png │ │ │ │ ├── yes_icon.png │ │ │ │ └── zip_icon.png │ │ │ ├── language │ │ │ │ ├── LanguageComboBox.java │ │ │ │ ├── RepoxConstants.java │ │ │ │ ├── RepoxConstants_en.properties │ │ │ │ ├── RepoxConstants_es.properties │ │ │ │ ├── RepoxConstants_nl.properties │ │ │ │ └── RepoxConstants_pt.properties │ │ │ ├── models │ │ │ │ ├── Attribute.java │ │ │ │ ├── Country.java │ │ │ │ ├── DataFilter.java │ │ │ │ ├── FilterButton.java │ │ │ │ └── SingleExternalServiceStartData.java │ │ │ ├── mvc │ │ │ │ ├── controllers │ │ │ │ │ ├── AccountEditController.java │ │ │ │ │ ├── AdministrationController.java │ │ │ │ │ ├── AppController.java │ │ │ │ │ ├── BrowseController.java │ │ │ │ │ ├── DataSetActionsController.java │ │ │ │ │ ├── DataSetController.java │ │ │ │ │ ├── FormController.java │ │ │ │ │ ├── HarvestingController.java │ │ │ │ │ ├── HistoryController.java │ │ │ │ │ ├── OaiTestController.java │ │ │ │ │ ├── RssController.java │ │ │ │ │ ├── SchemaMapperController.java │ │ │ │ │ ├── ServiceManagerController.java │ │ │ │ │ └── StatisticsController.java │ │ │ │ └── views │ │ │ │ │ ├── AccountEditView.java │ │ │ │ │ ├── AdministrationView.java │ │ │ │ │ ├── AppView.java │ │ │ │ │ ├── BrowseView.java │ │ │ │ │ ├── DataSetView.java │ │ │ │ │ ├── FormView.java │ │ │ │ │ ├── HarvestingView.java │ │ │ │ │ ├── OaiTestView.java │ │ │ │ │ ├── RssView.java │ │ │ │ │ ├── SchemaMapperView.java │ │ │ │ │ ├── ServiceManagerView.java │ │ │ │ │ └── StatisticsView.java │ │ │ ├── panels │ │ │ │ ├── administration │ │ │ │ │ ├── AdminForm.java │ │ │ │ │ ├── FirstTimeRepoxUsedDialog.java │ │ │ │ │ └── userManagement │ │ │ │ │ │ ├── AccountEditPanel.java │ │ │ │ │ │ ├── AddDataProvidersDialog.java │ │ │ │ │ │ ├── DataProvidersContainer.java │ │ │ │ │ │ ├── LDAPLoginDialog.java │ │ │ │ │ │ ├── LoginDialog.java │ │ │ │ │ │ ├── SaveUserDialog.java │ │ │ │ │ │ ├── UserManagementGrid.java │ │ │ │ │ │ └── UsersOperations.java │ │ │ │ ├── browse │ │ │ │ │ ├── BrowseFilterPanel.java │ │ │ │ │ ├── CountryFilter.java │ │ │ │ │ ├── IngestTypeFilter.java │ │ │ │ │ ├── LastIngestFilter.java │ │ │ │ │ ├── MetadataFormatFilter.java │ │ │ │ │ ├── RecordsFilter.java │ │ │ │ │ ├── TagsFilter.java │ │ │ │ │ └── TypeFilter.java │ │ │ │ ├── dataProviderButtons │ │ │ │ │ ├── CreateDataProviderButton.java │ │ │ │ │ ├── CreateDataSetButton.java │ │ │ │ │ └── ManageDataProviderMenu.java │ │ │ │ ├── dataSetButtons │ │ │ │ │ └── ManageDataSetMenu.java │ │ │ │ ├── dataSourceView │ │ │ │ │ ├── ChooseDataSetDialog.java │ │ │ │ │ ├── DataSetDefaultViewInfo.java │ │ │ │ │ ├── DataSetFolderViewInfo.java │ │ │ │ │ ├── DataSetOAIViewInfo.java │ │ │ │ │ ├── DataSetOperations.java │ │ │ │ │ ├── DataSetViewInfo.java │ │ │ │ │ ├── DataSetViewInfoDialog.java │ │ │ │ │ ├── DataSetYaddaViewInfo.java │ │ │ │ │ ├── DataSetZ39ViewInfo.java │ │ │ │ │ └── ExternalServicesViewInfo.java │ │ │ │ ├── forms │ │ │ │ │ ├── AggregatorForm.java │ │ │ │ │ ├── FormDialog.java │ │ │ │ │ ├── dataProviders │ │ │ │ │ │ ├── DataProviderForm.java │ │ │ │ │ │ ├── DataProviderImportForm.java │ │ │ │ │ │ └── DefaultDataProviderForm.java │ │ │ │ │ └── dataSources │ │ │ │ │ │ ├── DataSourceFolderForm.java │ │ │ │ │ │ ├── DataSourceForm.java │ │ │ │ │ │ ├── DataSourceOAIForm.java │ │ │ │ │ │ ├── DataSourceSchemaForm.java │ │ │ │ │ │ ├── DataSourceServicesPanel.java │ │ │ │ │ │ ├── DataSourceSruForm.java │ │ │ │ │ │ ├── DataSourceTabPanel.java │ │ │ │ │ │ ├── DataSourceTagContainer.java │ │ │ │ │ │ ├── DataSourceTagsDialog.java │ │ │ │ │ │ ├── DataSourceYaddaForm.java │ │ │ │ │ │ ├── DataSourceZ39Form.java │ │ │ │ │ │ ├── MappingsDialog.java │ │ │ │ │ │ └── TransformationsContainer.java │ │ │ │ ├── grid │ │ │ │ │ └── DataGridContainer.java │ │ │ │ ├── harvesting │ │ │ │ │ ├── RunningTasksContainer.java │ │ │ │ │ ├── calendar │ │ │ │ │ │ ├── AppointmentBuilder.java │ │ │ │ │ │ ├── CalendarAppointment.java │ │ │ │ │ │ ├── CalendarAppointmentManager.java │ │ │ │ │ │ ├── CalendarTaskManager.java │ │ │ │ │ │ └── GoogleCalendarPanel.java │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── EditLastIngestDateDialog.java │ │ │ │ │ │ ├── ExportNowDialog.java │ │ │ │ │ │ ├── ScheduleExportDialog.java │ │ │ │ │ │ ├── SchedulePastResume.java │ │ │ │ │ │ └── ScheduleTaskDialog.java │ │ │ │ │ ├── runningTasks │ │ │ │ │ │ ├── RunningDataSetsPanel.java │ │ │ │ │ │ └── RunningTasksPanel.java │ │ │ │ │ └── scheduledTasks │ │ │ │ │ │ ├── ScheduledTasksList.java │ │ │ │ │ │ └── ScheduledTasksSearchBar.java │ │ │ │ ├── mdr │ │ │ │ │ ├── MDRContainer.java │ │ │ │ │ ├── MappingsPanel.java │ │ │ │ │ ├── MappingsSearchBar.java │ │ │ │ │ ├── SchemaContextMenu.java │ │ │ │ │ ├── SchemaGridContainer.java │ │ │ │ │ ├── SchemaVersionContextMenu.java │ │ │ │ │ ├── SchemaVersionOperations.java │ │ │ │ │ ├── SchemasOperations.java │ │ │ │ │ ├── SchemasPanel.java │ │ │ │ │ ├── SchemasSearchBar.java │ │ │ │ │ ├── TransformationsOperations.java │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── NewSchemaDialog.java │ │ │ │ │ │ ├── NewSchemaVersionField.java │ │ │ │ │ │ ├── NewSchemaVersionFieldSet.java │ │ │ │ │ │ ├── NewTransformationDialog.java │ │ │ │ │ │ ├── ShowConnectedDSDialog.java │ │ │ │ │ │ └── xmapper │ │ │ │ │ │ │ ├── OpenExistingMapDialog.java │ │ │ │ │ │ │ ├── OpenNewMapDialog.java │ │ │ │ │ │ │ ├── SaveExistingMapDialog.java │ │ │ │ │ │ │ ├── SaveMapDialog.java │ │ │ │ │ │ │ ├── SaveNewMapDialog.java │ │ │ │ │ │ │ ├── SchemasDetailsContainer.java │ │ │ │ │ │ │ └── SourceAndTargetFields.java │ │ │ │ │ └── xmapper │ │ │ │ │ │ ├── MDRMappingApplicationManager.java │ │ │ │ │ │ ├── OpenMapInfo.java │ │ │ │ │ │ ├── XMApperContainer.java │ │ │ │ │ │ └── usecase │ │ │ │ │ │ ├── GenerateScriptCtrl.java │ │ │ │ │ │ └── SaveMappingCtrl.java │ │ │ │ ├── oaiTest │ │ │ │ │ ├── OaiTestPanel.java │ │ │ │ │ └── RestRecordOperationsPanel.java │ │ │ │ ├── overviewGrid │ │ │ │ │ ├── MainGrid.java │ │ │ │ │ ├── MainGridDefaultComparator.java │ │ │ │ │ ├── MainGridTopToolbar.java │ │ │ │ │ ├── MyPagingToolBar.java │ │ │ │ │ ├── OverviewGrid.java │ │ │ │ │ ├── OverviewGridAggregatorOperations.java │ │ │ │ │ ├── OverviewGridDataProviderOperations.java │ │ │ │ │ ├── OverviewGridDataSetOperations.java │ │ │ │ │ ├── SearchComboBox.java │ │ │ │ │ ├── SendFeedbackDialog.java │ │ │ │ │ ├── ToolbarState.java │ │ │ │ │ ├── TooltipListener.java │ │ │ │ │ ├── columnRenderes │ │ │ │ │ │ ├── IngestStatusRenderer.java │ │ │ │ │ │ ├── IngestTypeRenderer.java │ │ │ │ │ │ ├── LastIngestRenderer.java │ │ │ │ │ │ ├── NextIngestRenderer.java │ │ │ │ │ │ ├── OaiSchemasRenderer.java │ │ │ │ │ │ └── RecordsRenderer.java │ │ │ │ │ └── contextMenus │ │ │ │ │ │ ├── AggregatorContextMenu.java │ │ │ │ │ │ ├── DataProviderContextMenu.java │ │ │ │ │ │ ├── DataProviderWithSingleDSContextMenu.java │ │ │ │ │ │ ├── DataSetContextMenu.java │ │ │ │ │ │ ├── MoveDataProviderDialog.java │ │ │ │ │ │ ├── MoveDataSetDialog.java │ │ │ │ │ │ └── OverviewGridContextMenus.java │ │ │ │ ├── rss │ │ │ │ │ └── RssFeedPanel.java │ │ │ │ ├── services │ │ │ │ │ ├── DataSetListDialog.java │ │ │ │ │ ├── DataSetListParameter.java │ │ │ │ │ ├── NewServiceDialog.java │ │ │ │ │ ├── NewServiceField.java │ │ │ │ │ ├── NewServiceFieldSet.java │ │ │ │ │ ├── ServiceManagementPanel.java │ │ │ │ │ └── ServicesOperations.java │ │ │ │ ├── statistics │ │ │ │ │ └── StatisticsPanel.java │ │ │ │ ├── tags │ │ │ │ │ ├── TagDialog.java │ │ │ │ │ ├── TagManagementPanel.java │ │ │ │ │ └── TagsOperations.java │ │ │ │ └── topToolbarButtons │ │ │ │ │ ├── AdminMenu.java │ │ │ │ │ ├── HarvestTopMenu.java │ │ │ │ │ └── SchemaMapperButton.java │ │ │ ├── servlets │ │ │ │ ├── RepoxService.java │ │ │ │ ├── RepoxServiceAsync.java │ │ │ │ ├── dataManagement │ │ │ │ │ ├── AGGService.java │ │ │ │ │ ├── AGGServiceAsync.java │ │ │ │ │ ├── DPService.java │ │ │ │ │ ├── DPServiceAsync.java │ │ │ │ │ ├── DataManagementService.java │ │ │ │ │ ├── DataManagementServiceAsync.java │ │ │ │ │ ├── DataSetOperationsService.java │ │ │ │ │ ├── DataSetOperationsServiceAsync.java │ │ │ │ │ ├── FilterService.java │ │ │ │ │ ├── FilterServiceAsync.java │ │ │ │ │ ├── TagsService.java │ │ │ │ │ ├── TagsServiceAsync.java │ │ │ │ │ └── search │ │ │ │ │ │ ├── SearchService.java │ │ │ │ │ │ └── SearchServiceAsync.java │ │ │ │ ├── externalServices │ │ │ │ │ ├── ESManagementService.java │ │ │ │ │ └── ESManagementServiceAsync.java │ │ │ │ ├── harvest │ │ │ │ │ ├── HarvestOperationsService.java │ │ │ │ │ ├── HarvestOperationsServiceAsync.java │ │ │ │ │ ├── TaskManagementService.java │ │ │ │ │ └── TaskManagementServiceAsync.java │ │ │ │ ├── rss │ │ │ │ │ ├── RssService.java │ │ │ │ │ └── RssServiceAsync.java │ │ │ │ ├── transformations │ │ │ │ │ ├── TransformationsService.java │ │ │ │ │ └── TransformationsServiceAsync.java │ │ │ │ ├── userManagement │ │ │ │ │ ├── UserManagementService.java │ │ │ │ │ └── UserManagementServiceAsync.java │ │ │ │ └── xmapper │ │ │ │ │ ├── XMApperService.java │ │ │ │ │ ├── XMApperServiceAsync.java │ │ │ │ │ └── XMApperStaticServerAcess.java │ │ │ └── util │ │ │ │ ├── AlertMessageBox.java │ │ │ │ ├── ConfirmMessageBox.java │ │ │ │ ├── CookieManager.java │ │ │ │ ├── CountryComboBox.java │ │ │ │ ├── FieldSetWithClickOption.java │ │ │ │ ├── FieldSetWithExternalService.java │ │ │ │ ├── GridOperations.java │ │ │ │ ├── ImageButton.java │ │ │ │ ├── MainGridProgressBar.java │ │ │ │ ├── NamespacePanelExtension.java │ │ │ │ ├── OldTasksUtil.java │ │ │ │ ├── SearchUtilManager.java │ │ │ │ ├── ServerExceptionDialog.java │ │ │ │ ├── TextFieldWithButton.java │ │ │ │ ├── UtilManager.java │ │ │ │ ├── WidgetWithRole.java │ │ │ │ ├── formPanel │ │ │ │ ├── DefaultFormLayout.java │ │ │ │ ├── DefaultFormPanel.java │ │ │ │ └── EditableFormLayout.java │ │ │ │ └── paging │ │ │ │ ├── ListPagingToolBar.java │ │ │ │ └── PageUtil.java │ │ │ ├── server │ │ │ ├── RepoxServiceImpl.java │ │ │ ├── dataManagement │ │ │ │ ├── DataManagementServiceImpl.java │ │ │ │ ├── DataType.java │ │ │ │ ├── RepoxDataExchangeManager.java │ │ │ │ ├── aggregators │ │ │ │ │ └── AGGServiceImpl.java │ │ │ │ ├── dataProviders │ │ │ │ │ ├── DPServiceImpl.java │ │ │ │ │ └── DataProvidersImportUploadServlet.java │ │ │ │ ├── dataSets │ │ │ │ │ ├── DataSetOperationsServiceImpl.java │ │ │ │ │ ├── TagsServiceImpl.java │ │ │ │ │ ├── TagsStatisticsManager.java │ │ │ │ │ └── Z39FileUpload.java │ │ │ │ ├── filters │ │ │ │ │ ├── FilterManagementUtil.java │ │ │ │ │ ├── FilterServiceImpl.java │ │ │ │ │ └── FilteredDataResponse.java │ │ │ │ └── search │ │ │ │ │ └── SearchServiceImpl.java │ │ │ ├── externalServices │ │ │ │ └── ESManagementServiceImpl.java │ │ │ ├── harvest │ │ │ │ ├── DownloadExportZipFileServlet.java │ │ │ │ ├── HarvestOperationsServiceImpl.java │ │ │ │ ├── OpenLogFileServlet.java │ │ │ │ └── TaskManagementServiceImpl.java │ │ │ ├── projects │ │ │ │ ├── DefaultProjectManager.java │ │ │ │ ├── DefaultSaveData.java │ │ │ │ └── ProjectManager.java │ │ │ ├── rss │ │ │ │ └── RssServiceImpl.java │ │ │ ├── sru │ │ │ │ ├── Action.java │ │ │ │ ├── OperationStatus.java │ │ │ │ ├── SoapUtil.java │ │ │ │ ├── SruRecordUpdateServlet.java │ │ │ │ ├── TestClient.java │ │ │ │ └── XmlUtil.java │ │ │ ├── transformations │ │ │ │ ├── MdrMappingDownloadServlet.java │ │ │ │ ├── MdrStatisticsManager.java │ │ │ │ ├── OpenTransformationResultLogFileServlet.java │ │ │ │ ├── TransformationFileUpload.java │ │ │ │ ├── TransformationsServiceImpl.java │ │ │ │ └── XslFileDownloadServlet.java │ │ │ ├── userManagement │ │ │ │ ├── ExportAllDataFileServlet.java │ │ │ │ └── UserManagementServiceImpl.java │ │ │ ├── util │ │ │ │ ├── Log4jInitServlet.java │ │ │ │ ├── PagingUtil.java │ │ │ │ ├── StatisticsUtil.java │ │ │ │ └── Util.java │ │ │ ├── web │ │ │ │ └── filter │ │ │ │ │ └── SetCharacterEncodingFilter.java │ │ │ └── xmapper │ │ │ │ ├── XMApperServiceImpl.java │ │ │ │ └── XMApperServicesServer.java │ │ │ └── shared │ │ │ ├── ServerSideException.java │ │ │ ├── dataTypes │ │ │ ├── AggregatorUI.java │ │ │ ├── DataContainer.java │ │ │ ├── DataProviderUI.java │ │ │ ├── SaveDataResponse.java │ │ │ ├── UserAuthentication.java │ │ │ ├── admin │ │ │ │ ├── AdminInfo.java │ │ │ │ ├── MainConfigurationInfo.java │ │ │ │ └── RepoxConfig.java │ │ │ └── dataSet │ │ │ │ ├── DataSetStatus.java │ │ │ │ ├── DataSetTagUI.java │ │ │ │ ├── DataSourceUI.java │ │ │ │ ├── DatasetType.java │ │ │ │ └── SimpleDataSetInfo.java │ │ │ ├── externalServices │ │ │ ├── ExternalServiceResultUI.java │ │ │ ├── ExternalServiceUI.java │ │ │ └── ServiceParameterUI.java │ │ │ ├── filters │ │ │ ├── FilterAttribute.java │ │ │ ├── FilterQuery.java │ │ │ ├── FilterQueryLastIngest.java │ │ │ ├── FilterQueryRecords.java │ │ │ └── FilterType.java │ │ │ ├── mdr │ │ │ ├── MarcFormat.java │ │ │ ├── MdrDataStatistics.java │ │ │ ├── SchemaMdrDataStatistics.java │ │ │ ├── SchemaTreeUI.java │ │ │ ├── SchemaUI.java │ │ │ ├── SchemaVersionUI.java │ │ │ ├── TransformationUI.java │ │ │ └── xmapper │ │ │ │ └── OpenMappingForm.java │ │ │ ├── rss │ │ │ └── RssItemUI.java │ │ │ ├── search │ │ │ ├── BaseSearchResult.java │ │ │ └── DefaultBaseSearchResult.java │ │ │ ├── servletResponseStates │ │ │ ├── RepoxServletResponseStates.java │ │ │ └── ResponseState.java │ │ │ ├── statistics │ │ │ ├── RepoxEudmlStatisticsUI.java │ │ │ ├── RepoxStatisticsUI.java │ │ │ └── StatisticsType.java │ │ │ ├── tasks │ │ │ ├── HarvestTask.java │ │ │ ├── OldTaskUI.java │ │ │ ├── RunningTask.java │ │ │ └── ScheduledTaskUI.java │ │ │ └── users │ │ │ ├── DataProviderUser.java │ │ │ ├── User.java │ │ │ └── UserRole.java │ ├── resources │ │ ├── ingest.html.ftl │ │ ├── ingest.txt.ftl │ │ ├── sendFeedbackEmail.html.ftl │ │ ├── sendFeedbackEmail.txt.ftl │ │ ├── sendUserData.html.ftl │ │ └── sendUserData.txt.ftl │ └── webapp │ │ ├── .gitignore │ │ ├── ExtGWT │ │ ├── chart │ │ │ └── open-flash-chart.swf │ │ ├── css │ │ │ ├── gxt-all.css │ │ │ └── gxt-gray.css │ │ ├── desktop │ │ │ ├── css │ │ │ │ └── desktop.css │ │ │ ├── images │ │ │ │ ├── desktop.gif │ │ │ │ ├── desktop3.jpg │ │ │ │ ├── gears.gif │ │ │ │ ├── gears.png │ │ │ │ ├── grid.png │ │ │ │ ├── hatch.gif │ │ │ │ ├── hd-bg.gif │ │ │ │ ├── hd-tb-bg.gif │ │ │ │ ├── icon_padlock.png │ │ │ │ ├── icons-bg.png │ │ │ │ ├── launcher-bg.gif │ │ │ │ ├── launcher-btn.gif │ │ │ │ ├── logout.gif │ │ │ │ ├── logout.png │ │ │ │ ├── member.gif │ │ │ │ ├── member.png │ │ │ │ ├── powered.gif │ │ │ │ ├── powered.png │ │ │ │ ├── s.gif │ │ │ │ ├── taskbar │ │ │ │ │ └── black │ │ │ │ │ │ ├── item-over.gif │ │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ │ ├── start-menu-left-corners.png │ │ │ │ │ │ ├── start-menu-left-right.png │ │ │ │ │ │ ├── start-menu-right-corners.png │ │ │ │ │ │ ├── start-menu-right.png │ │ │ │ │ │ ├── start-menu-top-bottom.png │ │ │ │ │ │ ├── startbutton-icon.gif │ │ │ │ │ │ ├── startbutton.gif │ │ │ │ │ │ ├── taskbar-split-h.gif │ │ │ │ │ │ ├── taskbar-start-panel-bg.gif │ │ │ │ │ │ ├── taskbutton.gif │ │ │ │ │ │ └── taskbuttons-panel-bg.gif │ │ │ │ ├── winbar-bg.gif │ │ │ │ ├── winbar-btn.gif │ │ │ │ └── windows-bg.gif │ │ │ └── wallpapers │ │ │ │ └── desktop.jpg │ │ ├── flash │ │ │ └── swfobject.js │ │ ├── images │ │ │ ├── default │ │ │ │ ├── box │ │ │ │ │ ├── corners-blue.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── l-blue.gif │ │ │ │ │ ├── l.gif │ │ │ │ │ ├── r-blue.gif │ │ │ │ │ ├── r.gif │ │ │ │ │ ├── tb-blue.gif │ │ │ │ │ └── tb.gif │ │ │ │ ├── button │ │ │ │ │ ├── arrow.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-sprite.gif │ │ │ │ │ ├── btn.gif │ │ │ │ │ ├── group-cs.gif │ │ │ │ │ ├── group-lr.gif │ │ │ │ │ ├── group-tb.gif │ │ │ │ │ ├── s-arrow-b-noline.gif │ │ │ │ │ ├── s-arrow-b.gif │ │ │ │ │ ├── s-arrow-bo.gif │ │ │ │ │ ├── s-arrow-noline.gif │ │ │ │ │ ├── s-arrow-o.gif │ │ │ │ │ └── s-arrow.gif │ │ │ │ ├── dd │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ └── drop-yes.gif │ │ │ │ ├── editor │ │ │ │ │ ├── tb-bold.gif │ │ │ │ │ ├── tb-font-color.gif │ │ │ │ │ ├── tb-font-decrease.gif │ │ │ │ │ ├── tb-font-highlight.gif │ │ │ │ │ ├── tb-font-increase.gif │ │ │ │ │ ├── tb-italic.gif │ │ │ │ │ ├── tb-justify-center.gif │ │ │ │ │ ├── tb-justify-left.gif │ │ │ │ │ ├── tb-justify-right.gif │ │ │ │ │ ├── tb-link.gif │ │ │ │ │ ├── tb-ol.gif │ │ │ │ │ ├── tb-source.gif │ │ │ │ │ ├── tb-sprite.gif │ │ │ │ │ ├── tb-ul.gif │ │ │ │ │ └── tb-underline.gif │ │ │ │ ├── form │ │ │ │ │ ├── checkbox.gif │ │ │ │ │ ├── clear-trigger.gif │ │ │ │ │ ├── date-trigger.gif │ │ │ │ │ ├── error-tip-corners.gif │ │ │ │ │ ├── exclamation.gif │ │ │ │ │ ├── radio.gif │ │ │ │ │ ├── search-trigger.gif │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── text-bg.gif │ │ │ │ │ ├── trigger-tpl.gif │ │ │ │ │ └── trigger.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── grid │ │ │ │ │ ├── arrow-left-white.gif │ │ │ │ │ ├── arrow-right-white.gif │ │ │ │ │ ├── col-move-bottom.gif │ │ │ │ │ ├── col-move-top.gif │ │ │ │ │ ├── columns.gif │ │ │ │ │ ├── dirty.gif │ │ │ │ │ ├── done.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ ├── footer-bg.gif │ │ │ │ │ ├── grid-blue-hd.gif │ │ │ │ │ ├── grid-blue-split.gif │ │ │ │ │ ├── grid-hrow.gif │ │ │ │ │ ├── grid-loading.gif │ │ │ │ │ ├── grid-split.gif │ │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ │ ├── grid3-hrow-group.gif │ │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ │ ├── grid3-hrow.gif │ │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ │ ├── group-by.gif │ │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ │ ├── hd-pop.gif │ │ │ │ │ ├── hmenu-asc.gif │ │ │ │ │ ├── hmenu-desc.gif │ │ │ │ │ ├── hmenu-lock.gif │ │ │ │ │ ├── hmenu-lock.png │ │ │ │ │ ├── hmenu-unlock.gif │ │ │ │ │ ├── hmenu-unlock.png │ │ │ │ │ ├── invalid_line.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── mso-hd.gif │ │ │ │ │ ├── nowait.gif │ │ │ │ │ ├── page-first-disabled.gif │ │ │ │ │ ├── page-first.gif │ │ │ │ │ ├── page-last-disabled.gif │ │ │ │ │ ├── page-last.gif │ │ │ │ │ ├── page-next-disabled.gif │ │ │ │ │ ├── page-next.gif │ │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ │ ├── page-prev.gif │ │ │ │ │ ├── pick-button.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── row-check-sprite.gif │ │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ │ ├── row-over.gif │ │ │ │ │ ├── row-sel.gif │ │ │ │ │ ├── sort-hd.gif │ │ │ │ │ ├── sort_asc.gif │ │ │ │ │ ├── sort_desc.gif │ │ │ │ │ └── wait.gif │ │ │ │ ├── layout │ │ │ │ │ ├── collapse.gif │ │ │ │ │ ├── expand.gif │ │ │ │ │ ├── gradient-bg.gif │ │ │ │ │ ├── mini-bottom.gif │ │ │ │ │ ├── mini-left.gif │ │ │ │ │ ├── mini-right.gif │ │ │ │ │ ├── mini-top.gif │ │ │ │ │ ├── ns-collapse.gif │ │ │ │ │ ├── ns-expand.gif │ │ │ │ │ ├── panel-close.gif │ │ │ │ │ ├── panel-title-bg.gif │ │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ │ ├── stick.gif │ │ │ │ │ ├── stuck.gif │ │ │ │ │ ├── tab-close-on.gif │ │ │ │ │ └── tab-close.gif │ │ │ │ ├── menu │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── group-checked.gif │ │ │ │ │ ├── item-over.gif │ │ │ │ │ ├── menu-parent.gif │ │ │ │ │ ├── menu.gif │ │ │ │ │ └── unchecked.gif │ │ │ │ ├── panel │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ ├── left-right.gif │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── progress │ │ │ │ │ └── progress-bg.gif │ │ │ │ ├── qtip │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── tip-anchor-sprite.gif │ │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── s.gif │ │ │ │ ├── shadow-c.png │ │ │ │ ├── shadow-lr.png │ │ │ │ ├── shadow.png │ │ │ │ ├── shared │ │ │ │ │ ├── blue-loading.gif │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── clear.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── large-loading.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── loading-balls.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ └── warning.gif │ │ │ │ ├── sizer │ │ │ │ │ ├── e-handle-dark.gif │ │ │ │ │ ├── e-handle.gif │ │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ │ ├── ne-handle.gif │ │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ │ ├── nw-handle.gif │ │ │ │ │ ├── s-handle-dark.gif │ │ │ │ │ ├── s-handle.gif │ │ │ │ │ ├── se-handle-dark.gif │ │ │ │ │ ├── se-handle.gif │ │ │ │ │ ├── square.gif │ │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ │ └── sw-handle.gif │ │ │ │ ├── slider │ │ │ │ │ ├── slider-bg.png │ │ │ │ │ ├── slider-thumb.png │ │ │ │ │ ├── slider-v-bg.png │ │ │ │ │ └── slider-v-thumb.png │ │ │ │ ├── tabs │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ ├── tab-strip-bg.png │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ ├── gray-bg.gif │ │ │ │ │ ├── more.gif │ │ │ │ │ ├── tb-bg.gif │ │ │ │ │ ├── tb-btn-sprite.gif │ │ │ │ │ ├── tb-xl-btn-sprite.gif │ │ │ │ │ └── tb-xl-sep.gif │ │ │ │ ├── tree │ │ │ │ │ ├── arrows.gif │ │ │ │ │ ├── drop-add.gif │ │ │ │ │ ├── drop-between.gif │ │ │ │ │ ├── drop-no.gif │ │ │ │ │ ├── drop-over.gif │ │ │ │ │ ├── drop-under.gif │ │ │ │ │ ├── drop-yes.gif │ │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ │ ├── elbow-end.gif │ │ │ │ │ ├── elbow-line.gif │ │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ │ ├── elbow-minus.gif │ │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ │ ├── elbow-plus.gif │ │ │ │ │ ├── elbow.gif │ │ │ │ │ ├── folder-open.gif │ │ │ │ │ ├── folder.gif │ │ │ │ │ ├── leaf.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ └── s.gif │ │ │ │ └── window │ │ │ │ │ ├── icon-error.gif │ │ │ │ │ ├── icon-info.gif │ │ │ │ │ ├── icon-question.gif │ │ │ │ │ ├── icon-warning.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── top-bottom.png │ │ │ ├── gray │ │ │ │ ├── button │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-sprite.gif │ │ │ │ │ ├── btn.gif │ │ │ │ │ ├── group-cs.gif │ │ │ │ │ ├── group-lr.gif │ │ │ │ │ └── group-tb.gif │ │ │ │ ├── form │ │ │ │ │ └── spinner.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── grid │ │ │ │ │ ├── col-move-bottom.gif │ │ │ │ │ ├── col-move-top.gif │ │ │ │ │ ├── grid-split.gif │ │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ │ ├── grid3-hrow-over2.gif │ │ │ │ │ ├── grid3-hrow.gif │ │ │ │ │ ├── grid3-hrow2.gif │ │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ │ ├── grid3-special-col-bg2.gif │ │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ │ ├── group-collapse.gif │ │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ │ ├── group-expand.gif │ │ │ │ │ ├── page-first.gif │ │ │ │ │ ├── page-last.gif │ │ │ │ │ ├── page-next.gif │ │ │ │ │ ├── page-prev.gif │ │ │ │ │ ├── refresh.gif │ │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ │ ├── sort_asc.gif │ │ │ │ │ └── sort_desc.gif │ │ │ │ ├── panel │ │ │ │ │ ├── corners-sprite.gif │ │ │ │ │ ├── left-right.gif │ │ │ │ │ ├── light-hd.gif │ │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ │ ├── tool-sprites.gif │ │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ │ ├── top-bottom.gif │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ │ ├── white-left-right.gif │ │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── qtip │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── s.gif │ │ │ │ ├── tabs │ │ │ │ │ ├── scroll-left.gif │ │ │ │ │ ├── scroll-right.gif │ │ │ │ │ ├── scroller-bg.gif │ │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ │ ├── tab-close.gif │ │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ │ ├── tab-strip-bg.png │ │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ ├── btn-over-bg.gif │ │ │ │ │ ├── gray-bg.gif │ │ │ │ │ ├── tb-bg.gif │ │ │ │ │ └── tb-btn-sprite.gif │ │ │ │ └── window │ │ │ │ │ ├── icon-error.gif │ │ │ │ │ ├── icon-info.gif │ │ │ │ │ ├── icon-question.gif │ │ │ │ │ ├── icon-warning.gif │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── left-corners.pspimage │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── top-bottom.png │ │ │ └── gxt │ │ │ │ ├── dd │ │ │ │ └── insert-bg.gif │ │ │ │ ├── grid │ │ │ │ ├── row-editor-bg.gif │ │ │ │ └── row-editor-btns.gif │ │ │ │ ├── icons │ │ │ │ ├── bottom2.gif │ │ │ │ ├── columns.gif │ │ │ │ ├── done.gif │ │ │ │ ├── doubleleft2.gif │ │ │ │ ├── doubleright2.gif │ │ │ │ ├── down2.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── folder-closed.png │ │ │ │ ├── folder.gif │ │ │ │ ├── folder.png │ │ │ │ ├── grid-loading.gif │ │ │ │ ├── hmenu-asc.gif │ │ │ │ ├── hmenu-desc.gif │ │ │ │ ├── left2.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── nowait.gif │ │ │ │ ├── page-first-disabled.gif │ │ │ │ ├── page-first.gif │ │ │ │ ├── page-last-disabled.gif │ │ │ │ ├── page-last.gif │ │ │ │ ├── page-next-disabled.gif │ │ │ │ ├── page-next.gif │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ ├── page-prev.gif │ │ │ │ ├── paging.gif │ │ │ │ ├── right2.gif │ │ │ │ ├── tabs.gif │ │ │ │ ├── top2.gif │ │ │ │ ├── up2.gif │ │ │ │ └── wait.gif │ │ │ │ ├── info │ │ │ │ ├── corners-sprite.gif │ │ │ │ └── top-bottom.gif │ │ │ │ ├── menu │ │ │ │ └── disabledcheck.gif │ │ │ │ ├── shared │ │ │ │ ├── clear.gif │ │ │ │ ├── large-loading.gif │ │ │ │ ├── select-18-bg.gif │ │ │ │ ├── select-19-bg-gray.gif │ │ │ │ ├── select-19-bg.gif │ │ │ │ ├── select-bg.gif │ │ │ │ └── select-light.gif │ │ │ │ ├── table │ │ │ │ ├── row-over.gif │ │ │ │ ├── vs-column-bg.gif │ │ │ │ ├── vsort-asc.gif │ │ │ │ └── vsort-desc.gif │ │ │ │ └── tree │ │ │ │ ├── checked.gif │ │ │ │ ├── joint-close.gif │ │ │ │ ├── joint-open.gif │ │ │ │ ├── notchecked.gif │ │ │ │ ├── tree-table-special-col-sel.gif │ │ │ │ ├── tree-table-special-col.gif │ │ │ │ ├── vnode.gif │ │ │ │ └── vnode_transparent.gif │ │ └── themes │ │ │ ├── access │ │ │ ├── css │ │ │ │ └── xtheme-access.css │ │ │ └── images │ │ │ │ ├── box │ │ │ │ ├── corners-blue.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── l-blue.gif │ │ │ │ ├── l.gif │ │ │ │ ├── r-blue.gif │ │ │ │ ├── r.gif │ │ │ │ ├── tb-blue.gif │ │ │ │ └── tb.gif │ │ │ │ ├── button │ │ │ │ ├── arrow.gif │ │ │ │ ├── btn.gif │ │ │ │ ├── group-cs.gif │ │ │ │ ├── group-lr.gif │ │ │ │ ├── group-tb.gif │ │ │ │ ├── s-arrow-b-noline.gif │ │ │ │ ├── s-arrow-b.gif │ │ │ │ ├── s-arrow-bo.gif │ │ │ │ ├── s-arrow-noline.gif │ │ │ │ ├── s-arrow-o.gif │ │ │ │ └── s-arrow.gif │ │ │ │ ├── editor │ │ │ │ ├── tb-source.gif │ │ │ │ └── tb-sprite.gif │ │ │ │ ├── form │ │ │ │ ├── checkbox.gif │ │ │ │ ├── clear-trigger.gif │ │ │ │ ├── date-trigger.gif │ │ │ │ ├── error-tip-corners.gif │ │ │ │ ├── exclamation.gif │ │ │ │ ├── radio.gif │ │ │ │ ├── search-trigger.gif │ │ │ │ ├── spinner.gif │ │ │ │ ├── text-bg.gif │ │ │ │ ├── trigger-single.gif │ │ │ │ ├── trigger-tpl.gif │ │ │ │ └── trigger.gif │ │ │ │ ├── grid │ │ │ │ ├── arrow-left-white.gif │ │ │ │ ├── arrow-right-white.gif │ │ │ │ ├── col-move-bottom.gif │ │ │ │ ├── col-move-top.gif │ │ │ │ ├── columns.gif │ │ │ │ ├── dirty.gif │ │ │ │ ├── done.gif │ │ │ │ ├── drop-no.gif │ │ │ │ ├── drop-yes.gif │ │ │ │ ├── footer-bg.gif │ │ │ │ ├── grid-blue-hd.gif │ │ │ │ ├── grid-blue-split.gif │ │ │ │ ├── grid-hrow.gif │ │ │ │ ├── grid-loading.gif │ │ │ │ ├── grid-split.gif │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ ├── grid3-hd-btn-contrast.gif │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ ├── grid3-hrow.gif │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ ├── group-by.gif │ │ │ │ ├── group-collapse.gif │ │ │ │ ├── group-expand-sprite.gif │ │ │ │ ├── group-expand.gif │ │ │ │ ├── hd-pop.gif │ │ │ │ ├── hmenu-asc.gif │ │ │ │ ├── hmenu-desc.gif │ │ │ │ ├── hmenu-lock.gif │ │ │ │ ├── hmenu-lock.png │ │ │ │ ├── hmenu-unlock.gif │ │ │ │ ├── hmenu-unlock.png │ │ │ │ ├── invalid_line.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── mso-hd.gif │ │ │ │ ├── nowait.gif │ │ │ │ ├── page-first-disabled.gif │ │ │ │ ├── page-first.gif │ │ │ │ ├── page-last-disabled.gif │ │ │ │ ├── page-last.gif │ │ │ │ ├── page-next-disabled.gif │ │ │ │ ├── page-next.gif │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ ├── page-prev.gif │ │ │ │ ├── pick-button.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── row-check-sel.gif │ │ │ │ ├── row-check-sprite.gif │ │ │ │ ├── row-check.gif │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ ├── row-over.gif │ │ │ │ ├── row-sel.gif │ │ │ │ ├── sort-hd.gif │ │ │ │ ├── sort_asc.gif │ │ │ │ ├── sort_desc.gif │ │ │ │ └── wait.gif │ │ │ │ ├── icons │ │ │ │ ├── bottom2.gif │ │ │ │ ├── doubleleft2.gif │ │ │ │ ├── doubleright2.gif │ │ │ │ ├── down2.gif │ │ │ │ ├── left2.gif │ │ │ │ ├── right2.gif │ │ │ │ ├── top2.gif │ │ │ │ └── up2.gif │ │ │ │ ├── layout │ │ │ │ ├── mini-bottom.gif │ │ │ │ └── mini-top.gif │ │ │ │ ├── menu │ │ │ │ ├── checked.gif │ │ │ │ ├── group-checked.gif │ │ │ │ ├── item-over.gif │ │ │ │ ├── menu-parent.gif │ │ │ │ ├── menu.gif │ │ │ │ └── unchecked.gif │ │ │ │ ├── panel │ │ │ │ ├── corners-sprite.gif │ │ │ │ ├── left-right.gif │ │ │ │ ├── light-hd.gif │ │ │ │ ├── tool-close.gif │ │ │ │ ├── tool-collapse.gif │ │ │ │ ├── tool-expand.gif │ │ │ │ ├── tool-gear.gif │ │ │ │ ├── tool-maximize.gif │ │ │ │ ├── tool-minimize.gif │ │ │ │ ├── tool-pin.gif │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ ├── tool-sprites.gif │ │ │ │ ├── tools-sprites-trans.gif │ │ │ │ ├── top-bottom.gif │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ ├── white-left-right.gif │ │ │ │ └── white-top-bottom.gif │ │ │ │ ├── progress │ │ │ │ └── progress-bg.gif │ │ │ │ ├── qtip │ │ │ │ ├── close.gif │ │ │ │ ├── tip-anchor-sprite.gif │ │ │ │ └── tip-sprite.gif │ │ │ │ ├── shared │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── left-btn.gif │ │ │ │ └── right-btn.gif │ │ │ │ ├── sizer │ │ │ │ ├── e-handle-dark.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle-dark.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── se-handle.gif │ │ │ │ ├── square.gif │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ └── sw-handle.gif │ │ │ │ ├── slider │ │ │ │ ├── slider-bg.png │ │ │ │ ├── slider-thumb-single.png │ │ │ │ ├── slider-thumb.png │ │ │ │ ├── slider-v-bg.png │ │ │ │ └── slider-v-thumb.png │ │ │ │ ├── tabs │ │ │ │ ├── scroll-left.gif │ │ │ │ ├── scroll-right.gif │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ ├── tab-close.gif │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ ├── tab-strip-btm-bg.gif │ │ │ │ └── tabs-sprite.gif │ │ │ │ ├── toolbar │ │ │ │ ├── bg.gif │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-over-bg.gif │ │ │ │ ├── gray-bg.gif │ │ │ │ ├── more.gif │ │ │ │ ├── s-arrow-bo.gif │ │ │ │ ├── tb-btn-sprite.gif │ │ │ │ ├── tb-xl-btn-sprite.gif │ │ │ │ └── tb-xl-sep.gif │ │ │ │ ├── tree │ │ │ │ ├── arrows.gif │ │ │ │ ├── drop-add.gif │ │ │ │ ├── drop-between.gif │ │ │ │ ├── drop-no.gif │ │ │ │ ├── drop-over.gif │ │ │ │ ├── drop-under.gif │ │ │ │ ├── drop-yes.gif │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ ├── elbow-end.gif │ │ │ │ ├── elbow-line.gif │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ ├── elbow-minus.gif │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ ├── elbow-plus.gif │ │ │ │ ├── elbow.gif │ │ │ │ ├── folder-open.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── leaf.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── s.gif │ │ │ │ ├── tree-collapsed.png │ │ │ │ └── tree-expanded.png │ │ │ │ └── window │ │ │ │ ├── icon-error.gif │ │ │ │ ├── icon-info.gif │ │ │ │ ├── icon-question.gif │ │ │ │ ├── icon-warning.gif │ │ │ │ ├── left-corners.png │ │ │ │ ├── left-right.png │ │ │ │ ├── right-corners.png │ │ │ │ └── top-bottom.png │ │ │ └── slate │ │ │ ├── css │ │ │ └── xtheme-slate.css │ │ │ └── images │ │ │ └── slate │ │ │ ├── button │ │ │ ├── arrow.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-sprite.gif │ │ │ ├── btn.gif │ │ │ ├── group-cs.gif │ │ │ ├── group-lr.gif │ │ │ ├── group-tb.gif │ │ │ ├── s-arrow-b-noline.gif │ │ │ ├── s-arrow-b.gif │ │ │ ├── s-arrow-bo.gif │ │ │ ├── s-arrow-noline.gif │ │ │ ├── s-arrow-o.gif │ │ │ └── s-arrow.gif │ │ │ ├── editor │ │ │ └── tb-sprite.gif │ │ │ ├── form │ │ │ ├── checkbox.gif │ │ │ ├── clear-trigger.gif │ │ │ ├── date-trigger.gif │ │ │ ├── error-tip-corners.gif │ │ │ ├── radio.gif │ │ │ ├── search-trigger.gif │ │ │ ├── spinner.gif │ │ │ ├── trigger-tpl.gif │ │ │ └── trigger.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ ├── arrow-left-white.gif │ │ │ ├── arrow-right-white.gif │ │ │ ├── col-move-bottom.gif │ │ │ ├── col-move-top.gif │ │ │ ├── footer-bg.gif │ │ │ ├── grid-blue-hd.gif │ │ │ ├── grid-blue-split.gif │ │ │ ├── grid-hrow.gif │ │ │ ├── grid-split.gif │ │ │ ├── grid-vista-hd.gif │ │ │ ├── grid3-hd-btn.gif │ │ │ ├── grid3-hrow-over.gif │ │ │ ├── grid3-hrow.gif │ │ │ ├── grid3-special-col-bg.gif │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ ├── group-expand-sprite.gif │ │ │ ├── mso-hd.gif │ │ │ ├── page-first-disabled.gif │ │ │ ├── page-first.gif │ │ │ ├── page-last-disabled.gif │ │ │ ├── page-last.gif │ │ │ ├── page-next-disabled.gif │ │ │ ├── page-next.gif │ │ │ ├── page-prev-disabled.gif │ │ │ ├── page-prev.gif │ │ │ ├── refresh.gif │ │ │ ├── row-over.gif │ │ │ ├── row-sel.gif │ │ │ ├── sort_asc.gif │ │ │ └── sort_desc.gif │ │ │ ├── menu │ │ │ ├── checked.gif │ │ │ ├── group-checked.gif │ │ │ ├── item-over - Copy.gif │ │ │ ├── item-over.gif │ │ │ ├── menu-parent.gif │ │ │ ├── menu.gif │ │ │ └── unchecked.gif │ │ │ ├── panel │ │ │ ├── corners-sprite.gif │ │ │ ├── left-right.gif │ │ │ ├── light-hd.gif │ │ │ ├── tool-sprite-tpl.gif │ │ │ ├── tool-sprites.gif │ │ │ ├── tools-sprites-trans.gif │ │ │ ├── top-bottom.gif │ │ │ ├── top-bottom.png │ │ │ ├── white-corners-sprite.gif │ │ │ ├── white-left-right.gif │ │ │ └── white-top-bottom.gif │ │ │ ├── progress │ │ │ └── progress-bg.gif │ │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ └── tip-sprite.gif │ │ │ ├── s.gif │ │ │ ├── shared │ │ │ ├── glass-bg.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── left-btn.gif │ │ │ └── right-btn.gif │ │ │ ├── sizer │ │ │ ├── e-handle-dark.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle-dark.gif │ │ │ ├── se-handle.gif │ │ │ ├── square.gif │ │ │ ├── sw-handle-dark.gif │ │ │ └── sw-handle.gif │ │ │ ├── slider │ │ │ ├── slider-bg.png │ │ │ ├── slider-thumb.png │ │ │ ├── slider-v-bg.png │ │ │ └── slider-v-thumb.png │ │ │ ├── tabs │ │ │ ├── scroll-left.gif │ │ │ ├── scroll-right.gif │ │ │ ├── scroller-bg.gif │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ ├── tab-close.gif │ │ │ ├── tab-strip-bg.gif │ │ │ ├── tab-strip-bg.png │ │ │ ├── tab-strip-btm-bg.gif │ │ │ └── tabs-sprite.gif │ │ │ ├── toolbar │ │ │ ├── bg.gif │ │ │ ├── btn-arrow-light.gif │ │ │ ├── btn-arrow.gif │ │ │ ├── btn-over-bg.gif │ │ │ ├── gray-bg.gif │ │ │ ├── sep.gif │ │ │ ├── tb-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ │ ├── tree │ │ │ └── arrows.gif │ │ │ └── window │ │ │ ├── icon-error.gif │ │ │ ├── icon-info.gif │ │ │ ├── icon-question.gif │ │ │ ├── icon-warning.gif │ │ │ ├── left-corners.png │ │ │ ├── left-right.png │ │ │ ├── right-corners.png │ │ │ └── top-bottom.png │ │ ├── HarvesterUI.css │ │ ├── HarvesterUI.html │ │ ├── META-INF │ │ ├── .gitignore │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ ├── .gitignore │ │ └── web.xml │ │ ├── examples │ │ ├── DataSetModelExamples.txt │ │ ├── MappingsModelExamples.txt │ │ ├── ProviderModelExamples.txt │ │ └── TaskModelExamples.txt │ │ ├── resources │ │ ├── MDR.css │ │ ├── XMApper.css │ │ ├── css │ │ │ └── MainGrid.css │ │ ├── eu-flag.gif │ │ ├── eudml-logo-footer.gif │ │ ├── eudml.css │ │ ├── footer-repeat.gif │ │ ├── gwt_cal_styles │ │ │ ├── Gwt_cal_demo.css │ │ │ ├── Gwt_cal_demo.html │ │ │ ├── button-active-gradient.gif │ │ │ ├── button-gradient.gif │ │ │ ├── corner.png │ │ │ ├── daypicker-gradient.gif │ │ │ ├── footer-gradient.gif │ │ │ ├── google-cal-style.css │ │ │ ├── header-gradient.gif │ │ │ ├── ical-cal-style.css │ │ │ ├── selected-cell-gradient.gif │ │ │ ├── splitter-gradient.gif │ │ │ └── today-cell-gradient.gif │ │ ├── images │ │ │ ├── countries │ │ │ │ ├── ad.png │ │ │ │ ├── ae.png │ │ │ │ ├── af.png │ │ │ │ ├── ag.png │ │ │ │ ├── ai.png │ │ │ │ ├── al.png │ │ │ │ ├── am.png │ │ │ │ ├── an.png │ │ │ │ ├── ao.png │ │ │ │ ├── aq.png │ │ │ │ ├── ar.png │ │ │ │ ├── as.png │ │ │ │ ├── at.png │ │ │ │ ├── au.png │ │ │ │ ├── aw.png │ │ │ │ ├── ax.png │ │ │ │ ├── az.png │ │ │ │ ├── ba.png │ │ │ │ ├── bb.png │ │ │ │ ├── bd.png │ │ │ │ ├── be.png │ │ │ │ ├── bf.png │ │ │ │ ├── bg.png │ │ │ │ ├── bh.png │ │ │ │ ├── bi.png │ │ │ │ ├── bj.png │ │ │ │ ├── bm.png │ │ │ │ ├── bn.png │ │ │ │ ├── bo.png │ │ │ │ ├── br.png │ │ │ │ ├── bs.png │ │ │ │ ├── bt.png │ │ │ │ ├── bv.png │ │ │ │ ├── bw.png │ │ │ │ ├── by.png │ │ │ │ ├── bz.png │ │ │ │ ├── ca.png │ │ │ │ ├── catalonia.png │ │ │ │ ├── cc.png │ │ │ │ ├── cd.png │ │ │ │ ├── cf.png │ │ │ │ ├── cg.png │ │ │ │ ├── ch.png │ │ │ │ ├── ci.png │ │ │ │ ├── ck.png │ │ │ │ ├── cl.png │ │ │ │ ├── cm.png │ │ │ │ ├── cn.png │ │ │ │ ├── co.png │ │ │ │ ├── cr.png │ │ │ │ ├── cs.png │ │ │ │ ├── cu.png │ │ │ │ ├── cv.png │ │ │ │ ├── cx.png │ │ │ │ ├── cy.png │ │ │ │ ├── cz.png │ │ │ │ ├── de.png │ │ │ │ ├── dj.png │ │ │ │ ├── dk.png │ │ │ │ ├── dm.png │ │ │ │ ├── do.png │ │ │ │ ├── dz.png │ │ │ │ ├── ec.png │ │ │ │ ├── ee.png │ │ │ │ ├── eg.png │ │ │ │ ├── eh.png │ │ │ │ ├── england.png │ │ │ │ ├── er.png │ │ │ │ ├── es.png │ │ │ │ ├── et.png │ │ │ │ ├── eu.png │ │ │ │ ├── europeanunion.png │ │ │ │ ├── fam.png │ │ │ │ ├── fi.png │ │ │ │ ├── fj.png │ │ │ │ ├── fk.png │ │ │ │ ├── fm.png │ │ │ │ ├── fo.png │ │ │ │ ├── fr.png │ │ │ │ ├── ga.png │ │ │ │ ├── gb.png │ │ │ │ ├── gd.png │ │ │ │ ├── ge.png │ │ │ │ ├── gf.png │ │ │ │ ├── gh.png │ │ │ │ ├── gi.png │ │ │ │ ├── gl.png │ │ │ │ ├── gm.png │ │ │ │ ├── gn.png │ │ │ │ ├── gp.png │ │ │ │ ├── gq.png │ │ │ │ ├── gr.png │ │ │ │ ├── gs.png │ │ │ │ ├── gt.png │ │ │ │ ├── gu.png │ │ │ │ ├── gw.png │ │ │ │ ├── gy.png │ │ │ │ ├── hk.png │ │ │ │ ├── hm.png │ │ │ │ ├── hn.png │ │ │ │ ├── hr.png │ │ │ │ ├── ht.png │ │ │ │ ├── hu.png │ │ │ │ ├── id.png │ │ │ │ ├── ie.png │ │ │ │ ├── il.png │ │ │ │ ├── in.png │ │ │ │ ├── io.png │ │ │ │ ├── iq.png │ │ │ │ ├── ir.png │ │ │ │ ├── is.png │ │ │ │ ├── it.png │ │ │ │ ├── jm.png │ │ │ │ ├── jo.png │ │ │ │ ├── jp.png │ │ │ │ ├── ke.png │ │ │ │ ├── kg.png │ │ │ │ ├── kh.png │ │ │ │ ├── ki.png │ │ │ │ ├── km.png │ │ │ │ ├── kn.png │ │ │ │ ├── kp.png │ │ │ │ ├── kr.png │ │ │ │ ├── kw.png │ │ │ │ ├── ky.png │ │ │ │ ├── kz.png │ │ │ │ ├── la.png │ │ │ │ ├── lb.png │ │ │ │ ├── lc.png │ │ │ │ ├── li.png │ │ │ │ ├── lk.png │ │ │ │ ├── lr.png │ │ │ │ ├── ls.png │ │ │ │ ├── lt.png │ │ │ │ ├── lu.png │ │ │ │ ├── lv.png │ │ │ │ ├── ly.png │ │ │ │ ├── ma.png │ │ │ │ ├── mc.png │ │ │ │ ├── md.png │ │ │ │ ├── me.png │ │ │ │ ├── mg.png │ │ │ │ ├── mh.png │ │ │ │ ├── mk.png │ │ │ │ ├── ml.png │ │ │ │ ├── mm.png │ │ │ │ ├── mn.png │ │ │ │ ├── mo.png │ │ │ │ ├── mp.png │ │ │ │ ├── mq.png │ │ │ │ ├── mr.png │ │ │ │ ├── ms.png │ │ │ │ ├── mt.png │ │ │ │ ├── mu.png │ │ │ │ ├── mv.png │ │ │ │ ├── mw.png │ │ │ │ ├── mx.png │ │ │ │ ├── my.png │ │ │ │ ├── mz.png │ │ │ │ ├── na.png │ │ │ │ ├── nc.png │ │ │ │ ├── ne.png │ │ │ │ ├── nf.png │ │ │ │ ├── ng.png │ │ │ │ ├── ni.png │ │ │ │ ├── nl.png │ │ │ │ ├── no.png │ │ │ │ ├── np.png │ │ │ │ ├── nr.png │ │ │ │ ├── nu.png │ │ │ │ ├── nz.png │ │ │ │ ├── om.png │ │ │ │ ├── pa.png │ │ │ │ ├── pe.png │ │ │ │ ├── pf.png │ │ │ │ ├── pg.png │ │ │ │ ├── ph.png │ │ │ │ ├── pk.png │ │ │ │ ├── pl.png │ │ │ │ ├── pm.png │ │ │ │ ├── pn.png │ │ │ │ ├── pr.png │ │ │ │ ├── ps.png │ │ │ │ ├── pt.png │ │ │ │ ├── pw.png │ │ │ │ ├── py.png │ │ │ │ ├── qa.png │ │ │ │ ├── re.png │ │ │ │ ├── ro.png │ │ │ │ ├── rs.png │ │ │ │ ├── ru.png │ │ │ │ ├── rw.png │ │ │ │ ├── sa.png │ │ │ │ ├── sb.png │ │ │ │ ├── sc.png │ │ │ │ ├── scotland.png │ │ │ │ ├── sd.png │ │ │ │ ├── se.png │ │ │ │ ├── sg.png │ │ │ │ ├── sh.png │ │ │ │ ├── si.png │ │ │ │ ├── sj.png │ │ │ │ ├── sk.png │ │ │ │ ├── sl.png │ │ │ │ ├── sm.png │ │ │ │ ├── sn.png │ │ │ │ ├── so.png │ │ │ │ ├── sr.png │ │ │ │ ├── st.png │ │ │ │ ├── sv.png │ │ │ │ ├── sy.png │ │ │ │ ├── sz.png │ │ │ │ ├── tc.png │ │ │ │ ├── td.png │ │ │ │ ├── tf.png │ │ │ │ ├── tg.png │ │ │ │ ├── th.png │ │ │ │ ├── tj.png │ │ │ │ ├── tk.png │ │ │ │ ├── tl.png │ │ │ │ ├── tm.png │ │ │ │ ├── tn.png │ │ │ │ ├── to.png │ │ │ │ ├── tr.png │ │ │ │ ├── tt.png │ │ │ │ ├── tv.png │ │ │ │ ├── tw.png │ │ │ │ ├── tz.png │ │ │ │ ├── ua.png │ │ │ │ ├── ug.png │ │ │ │ ├── uk.png │ │ │ │ ├── um.png │ │ │ │ ├── us.png │ │ │ │ ├── uy.png │ │ │ │ ├── uz.png │ │ │ │ ├── va.png │ │ │ │ ├── vc.png │ │ │ │ ├── ve.png │ │ │ │ ├── vg.png │ │ │ │ ├── vi.png │ │ │ │ ├── vn.png │ │ │ │ ├── vu.png │ │ │ │ ├── wales.png │ │ │ │ ├── wf.png │ │ │ │ ├── ws.png │ │ │ │ ├── ye.png │ │ │ │ ├── yt.png │ │ │ │ ├── za.png │ │ │ │ ├── zm.png │ │ │ │ └── zw.png │ │ │ ├── cube_green.png │ │ │ ├── icons │ │ │ │ ├── application_cascade.png │ │ │ │ ├── application_form.png │ │ │ │ ├── application_osx.png │ │ │ │ ├── application_put.png │ │ │ │ ├── application_side_boxes.png │ │ │ │ ├── application_side_contract.png │ │ │ │ ├── application_side_expand.png │ │ │ │ ├── application_side_list.png │ │ │ │ ├── application_side_tree.png │ │ │ │ ├── application_split.png │ │ │ │ ├── application_tile_vertical.png │ │ │ │ ├── application_view_detail.png │ │ │ │ ├── application_view_list.png │ │ │ │ ├── application_view_tile.png │ │ │ │ ├── arrow_join.png │ │ │ │ ├── arrow_refresh_small.png │ │ │ │ ├── bell.png │ │ │ │ ├── brick.png │ │ │ │ ├── bug.png │ │ │ │ ├── bug_error.png │ │ │ │ ├── calendar.png │ │ │ │ ├── calendar_add.png │ │ │ │ ├── calendar_view_day.png │ │ │ │ ├── chart_organisation.png │ │ │ │ ├── coins.png │ │ │ │ ├── connect.png │ │ │ │ ├── css.png │ │ │ │ ├── database_connect.png │ │ │ │ ├── database_gear.png │ │ │ │ ├── database_link.png │ │ │ │ ├── database_table.png │ │ │ │ ├── delete.png │ │ │ │ ├── doc.png │ │ │ │ ├── emoticon.png │ │ │ │ ├── emoticon_Down.png │ │ │ │ ├── emoticon_Over.png │ │ │ │ ├── euDML_logo.png │ │ │ │ ├── find.png │ │ │ │ ├── folder_bug.png │ │ │ │ ├── house.png │ │ │ │ ├── ipod.png │ │ │ │ ├── keyboard.png │ │ │ │ ├── layers.png │ │ │ │ ├── layout_content.png │ │ │ │ ├── license.txt │ │ │ │ ├── network-transmit.png │ │ │ │ ├── overlays.png │ │ │ │ ├── package_green.png │ │ │ │ ├── page_find.png │ │ │ │ ├── plugin.png │ │ │ │ ├── printer.png │ │ │ │ ├── repox-logo-16.png │ │ │ │ ├── schema_mapper_16x16.png │ │ │ │ ├── script_go.png │ │ │ │ ├── server_connect.png │ │ │ │ ├── server_go.png │ │ │ │ ├── shape_move_front.png │ │ │ │ ├── tab.png │ │ │ │ ├── task_status │ │ │ │ │ ├── canceled_task.png │ │ │ │ │ ├── error.png │ │ │ │ │ ├── ok.png │ │ │ │ │ ├── post_process_16x16.png │ │ │ │ │ ├── post_process_error_16x16.png │ │ │ │ │ ├── pre_process_16x16.png │ │ │ │ │ ├── pre_process_error_16x16.png │ │ │ │ │ ├── processing.gif │ │ │ │ │ ├── processing_16x16.gif │ │ │ │ │ ├── retrying.png │ │ │ │ │ ├── running.gif │ │ │ │ │ ├── sample.png │ │ │ │ │ ├── validation_error_icon.png │ │ │ │ │ ├── validation_ok_icon.png │ │ │ │ │ └── warning.png │ │ │ │ ├── timeline_marker.png │ │ │ │ ├── vcard_edit.png │ │ │ │ └── world.png │ │ │ └── logo │ │ │ │ ├── repox-logo-150_improved.png │ │ │ │ ├── repox-logo-16.png │ │ │ │ ├── repox-logo-24.png │ │ │ │ ├── repox-logo-256.png │ │ │ │ ├── repox-logo-64.png │ │ │ │ └── repox-logo.png │ │ └── logoEudml.png │ │ └── theme │ │ └── default │ │ ├── framedCloud.css │ │ ├── google.css │ │ ├── ie6-style.css │ │ ├── img │ │ ├── add_point_off.png │ │ ├── add_point_on.png │ │ ├── blank.gif │ │ ├── close.gif │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── draw_line_off.png │ │ ├── draw_line_on.png │ │ ├── draw_point_off.png │ │ ├── draw_point_on.png │ │ ├── draw_polygon_off.png │ │ ├── draw_polygon_on.png │ │ ├── editing_tool_bar.png │ │ ├── move_feature_off.png │ │ ├── move_feature_on.png │ │ ├── navigation_history.png │ │ ├── overview_replacement.gif │ │ ├── pan-panel-NOALPHA.png │ │ ├── pan-panel.png │ │ ├── pan_off.png │ │ ├── pan_on.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── remove_point_off.png │ │ ├── remove_point_on.png │ │ ├── ruler.png │ │ ├── save_features_off.png │ │ ├── save_features_on.png │ │ ├── view_next_off.png │ │ ├── view_next_on.png │ │ ├── view_previous_off.png │ │ ├── view_previous_on.png │ │ ├── zoom-panel-NOALPHA.png │ │ └── zoom-panel.png │ │ └── style.css │ └── test │ ├── java │ └── SimpleDateTests.java │ └── resources │ ├── gui.properties │ ├── testXslForUpload.xsl │ └── z3950IdFile.txt ├── manager ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── pt │ │ │ └── utl │ │ │ └── ist │ │ │ ├── accessPoint │ │ │ ├── AccessPoint.java │ │ │ ├── RecordRepoxFullAccessPoint.java │ │ │ ├── TimestampAccessPoint.java │ │ │ └── manager │ │ │ │ ├── AccessPointManagerFactory.java │ │ │ │ ├── AccessPointsManager.java │ │ │ │ ├── DefaultAccessPointsManager.java │ │ │ │ └── SqlAccessPointsManager.java │ │ │ ├── configuration │ │ │ ├── ConfigSingleton.java │ │ │ ├── DefaultRepoxConfiguration.java │ │ │ ├── DefaultRepoxContextUtil.java │ │ │ ├── DefaultRepoxManager.java │ │ │ ├── RepoxConfiguration.java │ │ │ ├── RepoxContextUtil.java │ │ │ └── RepoxManager.java │ │ │ ├── dataProvider │ │ │ ├── Aggregator.java │ │ │ ├── Countries.java │ │ │ ├── DataManager.java │ │ │ ├── DataProvider.java │ │ │ ├── DataSource.java │ │ │ ├── DataSourceContainer.java │ │ │ ├── DefaultDataManager.java │ │ │ ├── DefaultDataSourceContainer.java │ │ │ ├── LogFilenameComparator.java │ │ │ ├── MessageType.java │ │ │ └── dataSource │ │ │ │ ├── DataSourceTag.java │ │ │ │ ├── DataSourceTester.java │ │ │ │ ├── DataSourceUtil.java │ │ │ │ ├── DataSourcesMonitor.java │ │ │ │ ├── FileExtractStrategy.java │ │ │ │ ├── FileRetrieveStrategy.java │ │ │ │ ├── IdExtractedRecordIdPolicy.java │ │ │ │ ├── IdGeneratedRecordIdPolicy.java │ │ │ │ ├── IdProvidedRecordIdPolicy.java │ │ │ │ ├── RecordIdPolicy.java │ │ │ │ ├── SimpleFileExtractStrategy.java │ │ │ │ └── TagsManager.java │ │ │ ├── database │ │ │ ├── DatabaseAccess.java │ │ │ ├── DerbyDatabaseAccess.java │ │ │ ├── MysqlDatabaseAccess.java │ │ │ └── PostgresqlDatabaseAccess.java │ │ │ ├── externalServices │ │ │ ├── ExternalNoMonitorServiceThread.java │ │ │ ├── ExternalRestService.java │ │ │ ├── ExternalRestServiceContainer.java │ │ │ ├── ExternalRestServiceThread.java │ │ │ ├── ExternalRestServicesManager.java │ │ │ ├── ExternalServiceNoMonitor.java │ │ │ ├── ExternalServiceStates.java │ │ │ ├── ExternalServiceType.java │ │ │ └── ServiceParameter.java │ │ │ ├── ftp │ │ │ └── FtpFileRetrieveStrategy.java │ │ │ ├── http │ │ │ └── HttpFileRetrieveStrategy.java │ │ │ ├── ldap │ │ │ └── LDAPAuthenticator.java │ │ │ ├── marc │ │ │ ├── DirectoryImporterDataSource.java │ │ │ ├── FolderFileRetrieveStrategy.java │ │ │ ├── Iso2709FileExtractStrategy.java │ │ │ ├── MarcXchangeFileExtractStrategy.java │ │ │ └── RecordRepoxMarc.java │ │ │ ├── metadataSchemas │ │ │ ├── MetadataSchema.java │ │ │ ├── MetadataSchemaManager.java │ │ │ └── MetadataSchemaVersion.java │ │ │ ├── metadataTransformation │ │ │ ├── ManualMetadataTransformationManager.java │ │ │ ├── MetadataFormat.java │ │ │ ├── MetadataTransformation.java │ │ │ ├── MetadataTransformationManager.java │ │ │ ├── RecordSplitter.java │ │ │ ├── Tag.java │ │ │ ├── TagGroup.java │ │ │ ├── TransformationFile.java │ │ │ ├── TransformationSubFile.java │ │ │ ├── TransformationsFileManager.java │ │ │ └── Xslt2StylesheetCache.java │ │ │ ├── oai │ │ │ ├── OaiDataSource.java │ │ │ ├── OaiHarvester.java │ │ │ ├── OaiListResponse.java │ │ │ └── ResponseTransformer.java │ │ │ ├── rest │ │ │ └── statistics │ │ │ │ ├── DefaultRepoxStatistics.java │ │ │ │ └── DefaultStatisticsManager.java │ │ │ ├── sru │ │ │ └── SruRecordUpdateDataSource.java │ │ │ ├── statistics │ │ │ ├── DefaultRepoxStatistics.java │ │ │ ├── DefaultStatisticsManager.java │ │ │ ├── MetadataFormatStatistics.java │ │ │ ├── RecordCount.java │ │ │ ├── RecordCountManager.java │ │ │ ├── RepoxStatistics.java │ │ │ └── StatisticsManager.java │ │ │ ├── task │ │ │ ├── DataSourceExportTask.java │ │ │ ├── DataSourceIngestTask.java │ │ │ ├── DataSourceTask.java │ │ │ ├── ExportToFilesystem.java │ │ │ ├── IngestDataSource.java │ │ │ ├── OldTask.java │ │ │ ├── OldTaskReviewer.java │ │ │ ├── ScheduledTask.java │ │ │ ├── ScheduledTaskHourMinComparator.java │ │ │ ├── ScheduledTaskTimeBean.java │ │ │ ├── Task.java │ │ │ ├── TaskCalendarMonth.java │ │ │ ├── TaskDay.java │ │ │ ├── TaskFactory.java │ │ │ ├── TaskFileHelper.java │ │ │ └── TaskManager.java │ │ │ ├── util │ │ │ ├── CompareDataUtil.java │ │ │ ├── DefaultEmailUtil.java │ │ │ ├── ExternalServiceUtil.java │ │ │ ├── TransformationResultLogger.java │ │ │ └── Urn.java │ │ │ └── z3950 │ │ │ ├── AbstractHarvester.java │ │ │ ├── DataSourceZ3950.java │ │ │ ├── HarvestFailureException.java │ │ │ ├── Harvester.java │ │ │ ├── IdListHarvester.java │ │ │ ├── IdSequenceHarvester.java │ │ │ ├── Target.java │ │ │ ├── Test.java │ │ │ └── TimestampHarvester.java │ └── resources │ │ ├── Bib1Diag.properties │ │ ├── InternalAttrTypes.properties │ │ ├── InternalToType1Rules.properties │ │ ├── OutOfScope │ │ ├── countries_codesorted.txt │ │ └── metadataTransformations │ │ │ ├── metadataTransformations.xml │ │ │ └── xslt │ │ │ ├── lib_unimarc2dc.xsl │ │ │ ├── marc21ToOaiDc.xsl │ │ │ ├── marc21ToOaiDc │ │ │ ├── mappings.xml │ │ │ └── sample.xml │ │ │ ├── marc21ToTel.xsl │ │ │ ├── marc21ToTel │ │ │ ├── mappings.xml │ │ │ └── sample.xml │ │ │ ├── marc21Toqdc.xsl │ │ │ ├── oai2ese.xsl │ │ │ ├── oaiDcToTel.xsl │ │ │ ├── unimarcTags.txt │ │ │ ├── unimarcToOaiDc.xsl │ │ │ ├── unimarcToOaiDc │ │ │ ├── mappings.xml │ │ │ └── sample.xml │ │ │ ├── unimarcToTel.xsl │ │ │ └── unimarcToTel │ │ │ ├── mappings.xml │ │ │ └── sample.xml │ │ ├── ZHarvesterApplicationContext.xml │ │ ├── a2j.properties │ │ ├── countries.txt │ │ ├── metadataTransformations.xml │ │ └── oairesponse2records.xsl │ └── test │ ├── java │ └── pt │ │ └── utl │ │ └── ist │ │ ├── ScheduledTaskTest.java │ │ ├── dataProvider │ │ └── LightDataManagerTest.java │ │ ├── repox │ │ ├── dataSource │ │ │ ├── HarvestFtpTest.java │ │ │ ├── HarvestHttpTest.java │ │ │ ├── HarvestIdSequenceTest.java │ │ │ ├── HarvestOaiFailTest.java │ │ │ ├── HarvestOaiTest.java │ │ │ └── error │ │ ├── directoryImporter │ │ │ └── HarvestTest.java │ │ ├── mdr │ │ │ ├── SaveMappingsTest.java │ │ │ └── TransformationsOutdatedTest.java │ │ ├── oldTasks │ │ │ └── OldTaskDynamicAddTest.java │ │ └── reports │ │ │ ├── HarvestOaiTestCreateReport.java │ │ │ └── LogTestsWithOAIHarvest.java │ │ └── task │ │ ├── TaskFileHelperTest.java │ │ └── TaskManagerTest.java │ └── resources │ ├── directoryImportTest │ └── records.iso │ ├── oldTasksAddTest │ ├── DS_OAI_TEST_1_20121003_151407.log │ ├── DS_OAI_TEST_2_20121008_162833.log │ └── DS_OAI_TEST_3_20120208_063604.log │ └── xslImportTest │ ├── marc21bguc2ese.xsl │ ├── new.xsl │ └── new2.xsl ├── pom.xml ├── resources ├── .gitignore ├── pom.xml └── src │ ├── assembly │ └── resources.xml │ └── main │ └── resources │ ├── configuration.properties │ ├── gui.properties │ ├── log4j.properties │ ├── oaicat.properties │ ├── repox-images │ └── RepoxStructure.jpg │ └── swagger-ui-images │ └── Homepage.png ├── scripts └── install.sh └── server ├── .gitignore ├── oai ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ ├── org │ │ └── oclc │ │ │ └── oai │ │ │ ├── server │ │ │ ├── OAIHandler.java │ │ │ ├── catalog │ │ │ │ ├── AbstractCatalog.java │ │ │ │ ├── ExtendedJDBCOAICatalog.java │ │ │ │ ├── ExtendedJDBCRecordFactory.java │ │ │ │ ├── FileRecordFactory.java │ │ │ │ ├── FileSystemOAICatalog.java │ │ │ │ ├── FolderOAICatalog.java │ │ │ │ ├── FolderRecordFactory.java │ │ │ │ ├── IMSXMLRecordFactory.java │ │ │ │ ├── JDBCLimitedOAICatalog.java │ │ │ │ ├── JDBCOAICatalog.java │ │ │ │ ├── JDBCRecordFactory.java │ │ │ │ ├── NewFileRecordFactory.java │ │ │ │ ├── NewFileSystemOAICatalog.java │ │ │ │ ├── NewJDBCOAICatalog.java │ │ │ │ ├── NodeRecordFactory.java │ │ │ │ ├── RecordFactory.java │ │ │ │ ├── SRUOAICatalog.java │ │ │ │ ├── XMLFileOAICatalog.java │ │ │ │ ├── XMLFileRecordFactory.java │ │ │ │ ├── XMLRecordFactory.java │ │ │ │ ├── XerSRUOAICatalog.java │ │ │ │ ├── XerSRURecordFactory.java │ │ │ │ └── helpers │ │ │ │ │ └── RecordStringHandler.java │ │ │ ├── crosswalk │ │ │ │ ├── Copycdwalite.java │ │ │ │ ├── Copydesc.java │ │ │ │ ├── Copymets.java │ │ │ │ ├── Copyoai_dc.java │ │ │ │ ├── Copyxhtml.java │ │ │ │ ├── Copyxoaiconfig.java │ │ │ │ ├── Copyxsd.java │ │ │ │ ├── Copyxsl.java │ │ │ │ ├── Crosswalk.java │ │ │ │ ├── CrosswalkItem.java │ │ │ │ ├── Crosswalks.java │ │ │ │ ├── ExtendedJDBC2oai_dc.java │ │ │ │ ├── FileMap2oai_dc.java │ │ │ │ ├── FileMap2oai_etdms.java │ │ │ │ ├── JDBC2oai_dc.java │ │ │ │ ├── NodePassThruCrosswalk.java │ │ │ │ ├── XML2oai_dc.java │ │ │ │ ├── XML2oai_etdms.java │ │ │ │ ├── XSLTCrosswalk.java │ │ │ │ ├── XSLTmarc21Crosswalk.java │ │ │ │ ├── XSLTmtxCrosswalk.java │ │ │ │ ├── XSLToai_dcCrosswalk.java │ │ │ │ ├── XSLTpro2004Crosswalk.java │ │ │ │ ├── XSLTproCrosswalk.java │ │ │ │ ├── XSLTxsdCrosswalk.java │ │ │ │ ├── XSLTxslCrosswalk.java │ │ │ │ └── XSLTz39_19Crosswalk.java │ │ │ └── verb │ │ │ │ ├── BadArgumentException.java │ │ │ │ ├── BadResumptionTokenException.java │ │ │ │ ├── BadVerb.java │ │ │ │ ├── CannotDisseminateFormatException.java │ │ │ │ ├── GetRecord.java │ │ │ │ ├── IdDoesNotExistException.java │ │ │ │ ├── Identify.java │ │ │ │ ├── ListIdentifiers.java │ │ │ │ ├── ListMetadataFormats.java │ │ │ │ ├── ListMetadataFormatsRepox.java │ │ │ │ ├── ListRecords.java │ │ │ │ ├── ListSets.java │ │ │ │ ├── NoItemsMatchException.java │ │ │ │ ├── NoMetadataFormatsException.java │ │ │ │ ├── NoRecordsMatchException.java │ │ │ │ ├── NoSetHierarchyException.java │ │ │ │ ├── OAIInternalServerError.java │ │ │ │ ├── ServerVerb.java │ │ │ │ └── extension │ │ │ │ ├── GetMetadata.java │ │ │ │ └── Redirect.java │ │ │ └── util │ │ │ └── OAIUtil.java │ └── pt │ │ └── utl │ │ └── ist │ │ └── oai │ │ └── server │ │ └── catalog │ │ ├── DataSourceOaiCatalog.java │ │ └── OaiSet.java │ └── webapp │ └── WEB-INF │ └── web.xml ├── pom.xml ├── rest-jersey ├── .gitignore ├── pom.xml ├── src │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── theeuropeanlibrary │ │ │ │ └── repox │ │ │ │ └── rest │ │ │ │ ├── configuration │ │ │ │ ├── JerseyConfig.java │ │ │ │ └── SwaggerBootstrap.java │ │ │ │ ├── exceptionMappers │ │ │ │ ├── AlreadyExistsExceptionMapper.java │ │ │ │ ├── DatabaseConnectionExceptionMapper.java │ │ │ │ ├── DoesNotExistExceptionMapper.java │ │ │ │ ├── InternalServerErrorExceptionMapper.java │ │ │ │ ├── InvalidArgumentsExceptionMapper.java │ │ │ │ └── MissingArgumentsExceptionMapper.java │ │ │ │ ├── pathOptions │ │ │ │ ├── AggregatorOptionListContainer.java │ │ │ │ ├── DatasetOptionListContainer.java │ │ │ │ ├── HarvestOptionListContainer.java │ │ │ │ ├── MappingOptionListContainer.java │ │ │ │ ├── Option.java │ │ │ │ ├── OptionListContainer.java │ │ │ │ ├── ProviderOptionListContainer.java │ │ │ │ ├── RecordOptionListContainer.java │ │ │ │ ├── Result.java │ │ │ │ ├── RootOptionListContainer.java │ │ │ │ └── StatisticsOptionListContainer.java │ │ │ │ ├── security │ │ │ │ ├── RestAuthenticationEntryPoint.java │ │ │ │ └── SavedRequestAwareAuthenticationSuccessHandler.java │ │ │ │ └── servlets │ │ │ │ ├── AggregatorsResource.java │ │ │ │ ├── DatasetsResource.java │ │ │ │ ├── HarvestResource.java │ │ │ │ ├── MappingResource.java │ │ │ │ ├── ProvidersResource.java │ │ │ │ ├── RecordsResource.java │ │ │ │ ├── RootResource.java │ │ │ │ └── StatisticsResource.java │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── security.xml │ │ │ └── web.xml │ │ │ ├── examples │ │ │ ├── DataSetModelExamples.txt │ │ │ ├── MappingsModelExamples.txt │ │ │ ├── ProviderModelExamples.txt │ │ │ └── TaskModelExamples.txt │ │ │ └── gui │ │ │ ├── css │ │ │ ├── reset.css │ │ │ ├── screen.css │ │ │ └── typography.css │ │ │ ├── fonts │ │ │ ├── droid-sans-v6-latin-700.eot │ │ │ ├── droid-sans-v6-latin-700.svg │ │ │ ├── droid-sans-v6-latin-700.ttf │ │ │ ├── droid-sans-v6-latin-700.woff │ │ │ ├── droid-sans-v6-latin-700.woff2 │ │ │ ├── droid-sans-v6-latin-regular.eot │ │ │ ├── droid-sans-v6-latin-regular.svg │ │ │ ├── droid-sans-v6-latin-regular.ttf │ │ │ ├── droid-sans-v6-latin-regular.woff │ │ │ └── droid-sans-v6-latin-regular.woff2 │ │ │ ├── images │ │ │ ├── explorer_icons.png │ │ │ ├── logo_small.png │ │ │ ├── pet_store_api.png │ │ │ ├── repox-logo-24.png │ │ │ ├── throbber.gif │ │ │ └── wordnik_api.png │ │ │ ├── index.html │ │ │ ├── lib │ │ │ ├── backbone-min.js │ │ │ ├── handlebars-2.0.0.js │ │ │ ├── highlight.7.3.pack.js │ │ │ ├── jquery-1.8.0.min.js │ │ │ ├── jquery.ba-bbq.min.js │ │ │ ├── jquery.slideto.min.js │ │ │ ├── jquery.wiggle.min.js │ │ │ ├── marked.js │ │ │ ├── shred.bundle.js │ │ │ ├── shred │ │ │ │ └── content.js │ │ │ ├── swagger-client.js │ │ │ ├── swagger-oauth.js │ │ │ └── underscore-min.js │ │ │ ├── o2c.html │ │ │ ├── swagger-ui.js │ │ │ └── swagger-ui.min.js │ └── test │ │ └── java │ │ ├── clientTestClass.java │ │ └── org │ │ └── theeuropeanlibrary │ │ └── repox │ │ └── rest │ │ ├── configuration │ │ └── JerseyConfigMocked.java │ │ └── servlets │ │ ├── AggregatorsResourceTest.java │ │ ├── DatasetsResourceTest.java │ │ ├── HarvestResourceTest.java │ │ ├── MappingResourceTest.java │ │ ├── ProvidersResourceTest.java │ │ ├── RecordsResourceTest.java │ │ ├── RootResourceTest.java │ │ └── StatisticsResourceTest.java └── templates │ ├── markdown.mustache │ └── strapdown.html.mustache └── rest ├── .gitignore ├── pom.xml └── src └── main ├── java └── pt │ └── utl │ └── ist │ └── rest │ ├── DefaultResponseRest.java │ ├── EuDMLResponseRest.java │ ├── ResponseOperations.java │ ├── ResponseRest.java │ ├── RestServlet.java │ └── services │ └── web │ ├── DefaultWebServices.java │ ├── WebServices.java │ └── rest │ ├── RestRequest.java │ └── RestUtils.java └── webapp └── WEB-INF └── web.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/client-rest-jersey/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/client/client-rest-jersey/.gitignore -------------------------------------------------------------------------------- /client/client-rest-jersey/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/client/client-rest-jersey/pom.xml -------------------------------------------------------------------------------- /client/client-rest-jersey/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/client/client-rest-jersey/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/client/pom.xml -------------------------------------------------------------------------------- /commons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/.gitignore -------------------------------------------------------------------------------- /commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/pom.xml -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/characters/HtmlEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/characters/HtmlEncoder.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/characters/UnicodeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/characters/UnicodeUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/characters/XmlEncoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/characters/XmlEncoder.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/CharacterEncoding.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/CharacterEncoding.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/Marc.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/Marc.gwt.xml -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/MarcField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/MarcField.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/MarcObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/MarcObjectFactory.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/MarcRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/MarcRecord.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/MarcSubfield.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/MarcSubfield.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/RecordType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/RecordType.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/UnimarcUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/UnimarcUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/Viewer.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/Viewer.form -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/Viewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/Viewer.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/iso2709/BatchInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/iso2709/BatchInfo.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/iso2709/ISOHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/iso2709/ISOHandler.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/iso2709/MARCReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/iso2709/MARCReader.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/xml/DomBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/xml/DomBuilder.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/marc/xml/MarcSaxParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/marc/xml/MarcSaxParser.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/reports/ErrorLogElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/reports/ErrorLogElement.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/reports/InfoLogElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/reports/InfoLogElement.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/reports/LogElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/reports/LogElement.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/reports/LogEntryType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/reports/LogEntryType.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/reports/LogUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/reports/LogUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/CompareUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/CompareUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/Country.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/Country.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/Dom4jUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/Dom4jUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/DomUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/DomUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/EmailSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/EmailSender.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/EmailUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/EmailUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/FileUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/FileUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/IndexUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/IndexUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/MD5Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/MD5Generator.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/Month.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/Month.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/NUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/NUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/PrintStreamString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/PrintStreamString.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/PropertyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/PropertyUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/ProviderType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/ProviderType.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/RunnableStoppable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/RunnableStoppable.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/StringUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/TarGz.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/TarGz.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/TimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/TimeUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/Util.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/Util.gwt.xml -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/XmlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/XmlUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/ZipUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/ZipUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/date/DateUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/date/DateUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/date/DayOfMonth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/date/DayOfMonth.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/date/LeapYear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/date/LeapYear.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/marc/AuthorityUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/marc/AuthorityUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/marc/Directory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/marc/Directory.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/marc/Leader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/marc/Leader.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/marc/MarcUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/marc/MarcUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/shared/ProjectType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/shared/ProjectType.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/sql/SqlResultRow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/sql/SqlResultRow.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/sql/SqlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/sql/SqlUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/structure/Triple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/structure/Triple.java -------------------------------------------------------------------------------- /commons/src/main/java/pt/utl/ist/util/structure/Tuple.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/main/java/pt/utl/ist/util/structure/Tuple.java -------------------------------------------------------------------------------- /commons/src/test/java/pt/utl/ist/util/CompareUtilTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/commons/src/test/java/pt/utl/ist/util/CompareUtilTest.java -------------------------------------------------------------------------------- /gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/.gitignore -------------------------------------------------------------------------------- /gui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/pom.xml -------------------------------------------------------------------------------- /gui/src/main/.gitignore: -------------------------------------------------------------------------------- 1 | /gwt-unitCache 2 | -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/HarvesterUI.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/HarvesterUI.gwt.xml -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/HarvesterUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/HarvesterUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/core/AppEvents.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/core/AppEvents.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/accordion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/accordion.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/add.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/add16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/add16.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/add24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/add24.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/add32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/add32.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/album.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/album.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/anonymous_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/anonymous_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/arrow_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/arrow_move.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/broom_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/broom_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/calendar.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/cancel_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/cancel_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/connect.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/data_set_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/data_set_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/delete.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/dp_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/dp_import.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/email_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/email_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/equal_to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/equal_to.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/export_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/export_now.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/greater_than.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/greater_than.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/harvest_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/harvest_menu.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/help_23x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/help_23x23.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/home_23x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/home_23x23.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/info_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/info_16x16.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/ingest_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/ingest_now.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/ingest_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/ingest_sample.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/ldap_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/ldap_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/lesser_than.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/lesser_than.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/list-items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/list-items.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/log_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/log_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/logout_23x23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/logout_23x23.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/management.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/mapping.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/mapping_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/mapping_new.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/menu-show.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/menu-show.gif -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/music.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/oai_add_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/oai_add_all.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/oai_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/oai_check.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/oai_uncheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/oai_uncheck.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/operation_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/operation_edit.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/plugin.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/refresh_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/refresh_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/repox-logo-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/repox-logo-16.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/repox-logo-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/repox-logo-24.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/rssIcon21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/rssIcon21x21.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/running_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/running_tasks.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/save_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/save_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/schema.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/schema_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/schema_delete.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/schema_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/schema_edit.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/schema_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/schema_new.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/schema_version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/schema_version.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/search-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/search-icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/table.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/tag_add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/tag_add_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/tag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/tag_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/task_status/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/task_status/ok.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/text.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/user_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/user_add.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/user_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/user_delete.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/view_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/view_filter.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/view_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/view_info.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/worldmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/worldmap.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/xsd_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/xsd_image.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/yes_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/yes_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/icons/zip_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/icons/zip_icon.png -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/models/Attribute.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/models/Attribute.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/models/Country.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/models/Country.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/models/DataFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/models/DataFilter.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/models/FilterButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/models/FilterButton.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/mvc/views/AppView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/mvc/views/AppView.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/mvc/views/FormView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/mvc/views/FormView.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/mvc/views/RssView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/mvc/views/RssView.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/CookieManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/CookieManager.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/GridOperations.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/GridOperations.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/ImageButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/ImageButton.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/OldTasksUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/OldTasksUtil.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/UtilManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/UtilManager.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/client/util/WidgetWithRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/client/util/WidgetWithRole.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/RepoxServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/RepoxServiceImpl.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/rss/RssServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/rss/RssServiceImpl.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/sru/Action.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/sru/Action.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/sru/OperationStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/sru/OperationStatus.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/sru/SoapUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/sru/SoapUtil.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/sru/TestClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/sru/TestClient.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/sru/XmlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/sru/XmlUtil.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/util/PagingUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/util/PagingUtil.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/util/StatisticsUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/util/StatisticsUtil.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/server/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/server/util/Util.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/ServerSideException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/ServerSideException.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/filters/FilterQuery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/filters/FilterQuery.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/filters/FilterType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/filters/FilterType.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/mdr/MarcFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/mdr/MarcFormat.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/mdr/SchemaTreeUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/mdr/SchemaTreeUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/mdr/SchemaUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/mdr/SchemaUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/mdr/SchemaVersionUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/mdr/SchemaVersionUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/rss/RssItemUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/rss/RssItemUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/tasks/HarvestTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/tasks/HarvestTask.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/tasks/OldTaskUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/tasks/OldTaskUI.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/tasks/RunningTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/tasks/RunningTask.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/users/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/users/User.java -------------------------------------------------------------------------------- /gui/src/main/java/harvesterUI/shared/users/UserRole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/java/harvesterUI/shared/users/UserRole.java -------------------------------------------------------------------------------- /gui/src/main/resources/ingest.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/ingest.html.ftl -------------------------------------------------------------------------------- /gui/src/main/resources/ingest.txt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/ingest.txt.ftl -------------------------------------------------------------------------------- /gui/src/main/resources/sendFeedbackEmail.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/sendFeedbackEmail.html.ftl -------------------------------------------------------------------------------- /gui/src/main/resources/sendFeedbackEmail.txt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/sendFeedbackEmail.txt.ftl -------------------------------------------------------------------------------- /gui/src/main/resources/sendUserData.html.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/sendUserData.html.ftl -------------------------------------------------------------------------------- /gui/src/main/resources/sendUserData.txt.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/resources/sendUserData.txt.ftl -------------------------------------------------------------------------------- /gui/src/main/webapp/.gitignore: -------------------------------------------------------------------------------- 1 | /harvesterui 2 | -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/chart/open-flash-chart.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/chart/open-flash-chart.swf -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/css/gxt-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/css/gxt-all.css -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/css/gxt-gray.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/css/gxt-gray.css -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/css/desktop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/css/desktop.css -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/desktop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/desktop.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/desktop3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/desktop3.jpg -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/gears.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/gears.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/gears.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/gears.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/grid.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/hatch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/hatch.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/hd-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/hd-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/hd-tb-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/hd-tb-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/icon_padlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/icon_padlock.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/icons-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/icons-bg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/launcher-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/launcher-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/launcher-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/launcher-btn.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/logout.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/logout.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/member.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/member.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/member.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/member.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/powered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/powered.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/powered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/powered.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/winbar-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/winbar-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/winbar-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/winbar-btn.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/images/windows-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/images/windows-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/desktop/wallpapers/desktop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/desktop/wallpapers/desktop.jpg -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/flash/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/flash/swfobject.js -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/corners.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/l-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/l-blue.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/l.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/r-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/r-blue.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/r.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/tb-blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/tb-blue.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/box/tb.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/arrow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/btn.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/group-cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/group-cs.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/group-lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/group-lr.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/group-tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/group-tb.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/button/s-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/button/s-arrow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/dd/drop-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/dd/drop-add.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/dd/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/dd/drop-no.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/dd/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/dd/drop-yes.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/editor/tb-bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/editor/tb-bold.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/editor/tb-link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/editor/tb-link.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/editor/tb-ol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/editor/tb-ol.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/editor/tb-ul.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/editor/tb-ul.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/form/checkbox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/form/checkbox.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/form/radio.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/form/radio.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/form/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/form/spinner.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/form/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/form/text-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/form/trigger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/form/trigger.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/gradient-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/columns.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/dirty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/dirty.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/done.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/drop-no.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/drop-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/drop-yes.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/footer-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/footer-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/grid-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/grid-hrow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/grid-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/grid-split.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/grid3-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/grid3-hrow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/group-by.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/group-by.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/hd-pop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/hd-pop.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-asc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-desc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-lock.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/hmenu-lock.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/loading.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/mso-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/mso-hd.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/nowait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/nowait.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/page-first.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/page-last.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/page-next.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/page-prev.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/refresh.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/refresh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/row-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/row-over.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/row-sel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/row-sel.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/sort-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/sort-hd.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/sort_asc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/sort_desc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/grid/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/grid/wait.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/layout/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/layout/collapse.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/layout/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/layout/expand.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/layout/mini-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/layout/mini-top.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/layout/stick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/layout/stick.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/layout/stuck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/layout/stuck.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/menu/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/menu/checked.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/menu/item-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/menu/item-over.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/menu/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/menu/menu.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/menu/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/menu/unchecked.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/panel/light-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/panel/light-hd.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/qtip/bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/qtip/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/qtip/close.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/qtip/tip-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/qtip/tip-sprite.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shadow-c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shadow-c.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shadow-lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shadow-lr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shadow.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shared/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shared/calendar.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shared/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shared/clear.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/shared/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/shared/glass-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/sizer/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/sizer/square.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/toolbar/bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/toolbar/more.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/toolbar/more.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/arrows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/arrows.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/drop-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/drop-no.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/elbow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/elbow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/folder.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/leaf.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/loading.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/default/tree/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/default/tree/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/button/btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/button/btn.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/button/group-cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/button/group-cs.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/button/group-lr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/button/group-lr.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/button/group-tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/button/group-tb.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/form/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/form/spinner.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/gradient-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/gradient-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/grid-split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/grid-split.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/grid3-hrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/grid3-hrow.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/page-first.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/page-last.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/page-next.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/page-prev.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/refresh.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/sort_asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/sort_asc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/grid/sort_desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/grid/sort_desc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/panel/light-hd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/panel/light-hd.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/qtip/bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/qtip/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/qtip/close.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/qtip/tip-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/qtip/tip-sprite.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/tabs/tab-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/tabs/tab-close.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/toolbar/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/toolbar/bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/toolbar/gray-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/toolbar/gray-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gray/toolbar/tb-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gray/toolbar/tb-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/dd/insert-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/dd/insert-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/bottom2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/bottom2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/columns.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/columns.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/done.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/down2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/down2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/folder.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/folder.png -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/hmenu-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/hmenu-asc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/hmenu-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/hmenu-desc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/left2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/left2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/loading.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/nowait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/nowait.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/page-first.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/page-first.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/page-last.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/page-last.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/page-next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/page-next.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/page-prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/page-prev.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/paging.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/paging.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/right2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/right2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/tabs.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/top2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/top2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/up2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/up2.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/icons/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/icons/wait.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/info/top-bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/info/top-bottom.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/shared/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/shared/clear.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/shared/select-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/shared/select-bg.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/table/row-over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/table/row-over.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/table/vsort-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/table/vsort-asc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/table/vsort-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/table/vsort-desc.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/tree/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/tree/checked.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/tree/joint-close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/tree/joint-close.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/tree/joint-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/tree/joint-open.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/tree/notchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/tree/notchecked.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/images/gxt/tree/vnode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/images/gxt/tree/vnode.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/themes/access/images/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/themes/access/images/box/l.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/themes/access/images/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/themes/access/images/box/r.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/themes/access/images/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/themes/access/images/box/tb.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/themes/access/images/tree/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/themes/access/images/tree/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/ExtGWT/themes/slate/images/slate/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/ExtGWT/themes/slate/images/slate/s.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/HarvesterUI.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/HarvesterUI.css -------------------------------------------------------------------------------- /gui/src/main/webapp/HarvesterUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/HarvesterUI.html -------------------------------------------------------------------------------- /gui/src/main/webapp/META-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /maven 2 | -------------------------------------------------------------------------------- /gui/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /gui/src/main/webapp/WEB-INF/.gitignore: -------------------------------------------------------------------------------- 1 | /classes 2 | /deploy 3 | /lib 4 | -------------------------------------------------------------------------------- /gui/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /gui/src/main/webapp/examples/DataSetModelExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/examples/DataSetModelExamples.txt -------------------------------------------------------------------------------- /gui/src/main/webapp/examples/MappingsModelExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/examples/MappingsModelExamples.txt -------------------------------------------------------------------------------- /gui/src/main/webapp/examples/ProviderModelExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/examples/ProviderModelExamples.txt -------------------------------------------------------------------------------- /gui/src/main/webapp/examples/TaskModelExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/examples/TaskModelExamples.txt -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/MDR.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/MDR.css -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/XMApper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/XMApper.css -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/css/MainGrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/css/MainGrid.css -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/eu-flag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/eu-flag.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/eudml-logo-footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/eudml-logo-footer.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/eudml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/eudml.css -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/footer-repeat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/footer-repeat.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/gwt_cal_styles/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/gwt_cal_styles/corner.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ad.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ae.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/af.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/af.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ag.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ai.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/al.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/al.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/am.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/am.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/an.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/an.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ao.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/aq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/aq.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ar.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/as.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/at.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/au.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/aw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/aw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ax.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/az.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/az.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ba.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bb.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bd.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/be.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bi.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bj.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/br.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bs.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/by.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/bz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/bz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ca.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cd.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ch.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ci.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ck.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/co.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cs.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cx.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cy.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/cz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/cz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/de.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/dj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/dj.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/dk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/dk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/dm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/dm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/do.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/do.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/dz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/dz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ec.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ee.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/eg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/eg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/eh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/eh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/england.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/england.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/er.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/er.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/es.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/et.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/et.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/eu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fam.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fi.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fj.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/fr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ga.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gb.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gd.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ge.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gi.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gp.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gq.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gs.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/gy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/gy.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/hk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/hk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/hm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/hm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/hn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/hn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/hr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ht.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/hu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/id.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ie.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/il.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/il.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/in.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/io.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/iq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/iq.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ir.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/is.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/is.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/it.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/jm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/jm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/jo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/jo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/jp.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ke.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ki.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/km.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/km.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kp.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ky.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/kz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/kz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/la.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/la.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lb.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/li.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/li.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ls.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/lv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/lv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ly.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ma.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/md.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/me.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ml.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mp.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mq.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ms.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mx.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/my.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/my.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/mz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/mz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/na.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/na.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ne.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ng.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ni.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/no.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/np.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/np.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/nz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/nz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/om.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/om.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pa.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pe.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ph.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ps.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/pw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/py.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/py.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/qa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/qa.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/re.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/re.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ro.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/rs.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ru.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/rw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/rw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sa.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sb.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sd.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/se.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sh.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/si.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sj.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/so.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/so.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/st.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sy.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/sz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/sz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/td.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/th.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/th.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tj.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tl.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/to.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tr.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tv.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/tz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/tz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ua.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ug.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/uk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/uk.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/um.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/um.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/us.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/uy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/uy.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/uz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/uz.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/va.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/vc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/vc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ve.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/vg.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/vi.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/vn.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/vu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/vu.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/wales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/wales.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/wf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/wf.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ws.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/ye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/ye.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/yt.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/za.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/za.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/zm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/zm.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/countries/zw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/countries/zw.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/cube_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/cube_green.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/arrow_join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/arrow_join.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/bell.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/brick.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/bug.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/bug_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/bug_error.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/calendar.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/coins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/coins.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/connect.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/css.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/delete.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/doc.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/emoticon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/emoticon.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/euDML_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/euDML_logo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/find.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/folder_bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/folder_bug.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/house.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/ipod.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/keyboard.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/layers.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/license.txt -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/overlays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/overlays.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/page_find.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/plugin.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/printer.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/script_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/script_go.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/server_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/server_go.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/tab.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/vcard_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/vcard_edit.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/icons/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/icons/world.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/images/logo/repox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/images/logo/repox-logo.png -------------------------------------------------------------------------------- /gui/src/main/webapp/resources/logoEudml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/resources/logoEudml.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/framedCloud.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/google.css -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/ie6-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/ie6-style.css -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/blank.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/close.gif -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/ruler.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /gui/src/main/webapp/theme/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/main/webapp/theme/default/style.css -------------------------------------------------------------------------------- /gui/src/test/java/SimpleDateTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/test/java/SimpleDateTests.java -------------------------------------------------------------------------------- /gui/src/test/resources/gui.properties: -------------------------------------------------------------------------------- 1 | project.type EUROPEANA 2 | repox.version v2.3.7 -------------------------------------------------------------------------------- /gui/src/test/resources/testXslForUpload.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/test/resources/testXslForUpload.xsl -------------------------------------------------------------------------------- /gui/src/test/resources/z3950IdFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/gui/src/test/resources/z3950IdFile.txt -------------------------------------------------------------------------------- /manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/.gitignore -------------------------------------------------------------------------------- /manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/pom.xml -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/marc/RecordRepoxMarc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/marc/RecordRepoxMarc.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/oai/OaiDataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/oai/OaiDataSource.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/oai/OaiHarvester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/oai/OaiHarvester.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/oai/OaiListResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/oai/OaiListResponse.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/DataSourceTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/DataSourceTask.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/OldTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/OldTask.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/OldTaskReviewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/OldTaskReviewer.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/ScheduledTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/ScheduledTask.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/Task.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/Task.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/TaskDay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/TaskDay.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/TaskFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/TaskFactory.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/TaskFileHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/TaskFileHelper.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/task/TaskManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/task/TaskManager.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/util/CompareDataUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/util/CompareDataUtil.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/util/Urn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/util/Urn.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/z3950/Harvester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/z3950/Harvester.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/z3950/Target.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/z3950/Target.java -------------------------------------------------------------------------------- /manager/src/main/java/pt/utl/ist/z3950/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/java/pt/utl/ist/z3950/Test.java -------------------------------------------------------------------------------- /manager/src/main/resources/Bib1Diag.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/Bib1Diag.properties -------------------------------------------------------------------------------- /manager/src/main/resources/InternalAttrTypes.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/InternalAttrTypes.properties -------------------------------------------------------------------------------- /manager/src/main/resources/InternalToType1Rules.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/InternalToType1Rules.properties -------------------------------------------------------------------------------- /manager/src/main/resources/a2j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/a2j.properties -------------------------------------------------------------------------------- /manager/src/main/resources/countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/countries.txt -------------------------------------------------------------------------------- /manager/src/main/resources/metadataTransformations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/metadataTransformations.xml -------------------------------------------------------------------------------- /manager/src/main/resources/oairesponse2records.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/main/resources/oairesponse2records.xsl -------------------------------------------------------------------------------- /manager/src/test/java/pt/utl/ist/ScheduledTaskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/java/pt/utl/ist/ScheduledTaskTest.java -------------------------------------------------------------------------------- /manager/src/test/java/pt/utl/ist/repox/dataSource/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/java/pt/utl/ist/repox/dataSource/error -------------------------------------------------------------------------------- /manager/src/test/java/pt/utl/ist/task/TaskManagerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/java/pt/utl/ist/task/TaskManagerTest.java -------------------------------------------------------------------------------- /manager/src/test/resources/directoryImportTest/records.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/resources/directoryImportTest/records.iso -------------------------------------------------------------------------------- /manager/src/test/resources/xslImportTest/new.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/resources/xslImportTest/new.xsl -------------------------------------------------------------------------------- /manager/src/test/resources/xslImportTest/new2.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/manager/src/test/resources/xslImportTest/new2.xsl -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/pom.xml -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/.gitignore -------------------------------------------------------------------------------- /resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/pom.xml -------------------------------------------------------------------------------- /resources/src/assembly/resources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/src/assembly/resources.xml -------------------------------------------------------------------------------- /resources/src/main/resources/configuration.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/src/main/resources/configuration.properties -------------------------------------------------------------------------------- /resources/src/main/resources/gui.properties: -------------------------------------------------------------------------------- 1 | project.type DEFAULT 2 | repox.version 3.2.0 -------------------------------------------------------------------------------- /resources/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /resources/src/main/resources/oaicat.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/resources/src/main/resources/oaicat.properties -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/oai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/oai/.gitignore -------------------------------------------------------------------------------- /server/oai/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/oai/pom.xml -------------------------------------------------------------------------------- /server/oai/src/main/java/org/oclc/oai/util/OAIUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/oai/src/main/java/org/oclc/oai/util/OAIUtil.java -------------------------------------------------------------------------------- /server/oai/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/oai/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /server/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/pom.xml -------------------------------------------------------------------------------- /server/rest-jersey/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/.gitignore -------------------------------------------------------------------------------- /server/rest-jersey/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/pom.xml -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/WEB-INF/security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/WEB-INF/security.xml -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/css/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/css/reset.css -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/css/screen.css -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/css/typography.css -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/images/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/images/throbber.gif -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/index.html -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/lib/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/lib/backbone-min.js -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/lib/marked.js -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/lib/shred.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/lib/shred.bundle.js -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/o2c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/o2c.html -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/swagger-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/swagger-ui.js -------------------------------------------------------------------------------- /server/rest-jersey/src/main/webapp/gui/swagger-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/main/webapp/gui/swagger-ui.min.js -------------------------------------------------------------------------------- /server/rest-jersey/src/test/java/clientTestClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/src/test/java/clientTestClass.java -------------------------------------------------------------------------------- /server/rest-jersey/templates/markdown.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/templates/markdown.mustache -------------------------------------------------------------------------------- /server/rest-jersey/templates/strapdown.html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest-jersey/templates/strapdown.html.mustache -------------------------------------------------------------------------------- /server/rest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest/.gitignore -------------------------------------------------------------------------------- /server/rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest/pom.xml -------------------------------------------------------------------------------- /server/rest/src/main/java/pt/utl/ist/rest/RestServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest/src/main/java/pt/utl/ist/rest/RestServlet.java -------------------------------------------------------------------------------- /server/rest/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/europeana/REPOX/HEAD/server/rest/src/main/webapp/WEB-INF/web.xml --------------------------------------------------------------------------------