├── .dockerignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── ci.yml │ ├── docker.yml │ └── swagger.yml ├── .gitignore ├── .zenodo.json ├── CHANGELOG.md ├── CLA.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── Dockerfile ├── INSTALL.md ├── LICENSE ├── README.md ├── TESTING.md ├── app ├── Binders.scala ├── Global.scala ├── Iterators │ ├── BagItIterator.scala │ ├── CollectionIterator.scala │ ├── DatasetIterator.scala │ ├── DatasetsInCollectionIterator.scala │ ├── FileIterator.scala │ ├── RootCollectionIterator.scala │ └── SelectedIterator.scala ├── api │ ├── Admin.scala │ ├── ApiController.scala │ ├── ApiHelp.scala │ ├── Collections.scala │ ├── Comments.scala │ ├── ContextLD.scala │ ├── CurationObjects.scala │ ├── Datasets.scala │ ├── Events.scala │ ├── Extractions.scala │ ├── Files.scala │ ├── Folders.scala │ ├── Geometry.scala │ ├── Geostreams.scala │ ├── Indexes.scala │ ├── Institutions.scala │ ├── Logos.scala │ ├── Metadata.scala │ ├── Permissions.scala │ ├── Previews.scala │ ├── Projects.scala │ ├── Proxy.scala │ ├── Relations.scala │ ├── Reporting.scala │ ├── Search.scala │ ├── Sections.scala │ ├── Selected.scala │ ├── Sensors.scala │ ├── Spaces.scala │ ├── Status.scala │ ├── ThreeDTexture.scala │ ├── Thumbnail.scala │ ├── Tree.scala │ ├── Users.scala │ ├── Vocabularies.scala │ ├── VocabularyTerms.scala │ └── ZoomIt.scala ├── assets │ ├── javascripts │ │ ├── select-bulk.js │ │ └── select.js │ └── stylesheets │ │ └── bootstrap │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ ├── alerts.less │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── buttons.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── gradients.less │ │ ├── grid-framework.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── image.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── nav-divider.less │ │ ├── nav-vertical-align.less │ │ ├── opacity.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── progress-bar.less │ │ ├── reset-filter.less │ │ ├── reset-text.less │ │ ├── resize.less │ │ ├── responsive-visibility.less │ │ ├── size.less │ │ ├── tab-focus.less │ │ ├── table-row.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less ├── controllers │ ├── Admin.scala │ ├── Application.scala │ ├── Collections.scala │ ├── CurationObjects.scala │ ├── Datasets.scala │ ├── Error.scala │ ├── Events.scala │ ├── ExtractionInfo.scala │ ├── Extractors.scala │ ├── FileLinks.scala │ ├── Files.scala │ ├── Folders.scala │ ├── Geostreams.scala │ ├── Login.scala │ ├── Metadata.scala │ ├── Previewers.scala │ ├── Profile.scala │ ├── RSS.scala │ ├── Registration.scala │ ├── Search.scala │ ├── SecuredController.scala │ ├── Selected.scala │ ├── Spaces.scala │ ├── Tags.scala │ ├── ToolManager.scala │ ├── Users.scala │ └── Utils.scala ├── fileutils │ └── FilesUtils.java ├── filters │ └── CORSFilter.scala ├── jsonutils │ └── JsonUtil.java ├── models │ ├── Collection.scala │ ├── Comment.scala │ ├── ContextLD.scala │ ├── Credentials.scala │ ├── CurationObject.scala │ ├── DBCounts.scala │ ├── Dataset.scala │ ├── DatasetXMLMetadata.scala │ ├── ElasticSearchObject.scala │ ├── Event.scala │ ├── Extraction.scala │ ├── ExtractionInfoSetUp.scala │ ├── ExtractionRequests.scala │ ├── ExtractorsForInstance.scala │ ├── ExtractorsForSpace.scala │ ├── File.scala │ ├── FileLink.scala │ ├── FileMD.scala │ ├── FileOP.scala │ ├── Folder.scala │ ├── Geometry.scala │ ├── IncrementCounter.scala │ ├── Institution.scala │ ├── JobsScheduler.scala │ ├── LicenseData.scala │ ├── Logo.scala │ ├── Metadata.scala │ ├── MetadataDefinition.scala │ ├── MiniEntity.scala │ ├── MultimediaFeatures.scala │ ├── Pager.scala │ ├── Preview.scala │ ├── PreviewFilesSearchResult.scala │ ├── Previewer.scala │ ├── Project.scala │ ├── QueuedAction.scala │ ├── Relation.scala │ ├── RequestResource.scala │ ├── ResourceRef.scala │ ├── ResourceType.scala │ ├── Role.scala │ ├── SearchResults.scala │ ├── Section.scala │ ├── SectionIndexInfo.scala │ ├── Selected.scala │ ├── ServerStartTime.scala │ ├── Space.scala │ ├── StandardVocab.scala │ ├── Statistic.scala │ ├── Stream.scala │ ├── Tag.scala │ ├── TempFile.scala │ ├── ThreeDAnnotation.scala │ ├── ThreeDTexture.scala │ ├── Thumbnail.scala │ ├── Tile.scala │ ├── TimerJob.scala │ ├── TypedID.scala │ ├── UUID.scala │ ├── User.scala │ ├── UserSpaceAndRole.scala │ ├── VersusExtraction.scala │ ├── VersusIndex.scala │ ├── VersusIndexTypeName.scala │ ├── VersusSimilarityResult.scala │ ├── Vocabulary.scala │ ├── VocabularyTerm.scala │ └── WebPageResource.scala ├── services │ ├── AdminsNotifierPlugin.scala │ ├── AppConfigurationService.scala │ ├── ByteStorageService.scala │ ├── CILogonProvider.scala │ ├── CollectionService.scala │ ├── CommentService.scala │ ├── ContextLDService.scala │ ├── CrowdProvider.scala │ ├── CurationService.scala │ ├── DI.scala │ ├── DatasetService.scala │ ├── DatasetsAutodumpService.scala │ ├── DatasetsMetadataAutodumpService.scala │ ├── ElasticsearchPlugin.scala │ ├── EventService.scala │ ├── EventSinkService.scala │ ├── ExtractionRequestsService.scala │ ├── ExtractionService.scala │ ├── ExtractorRoutingService.scala │ ├── ExtractorService.scala │ ├── FileDumpService.scala │ ├── FileLinkService.scala │ ├── FileMetadataAutodumpService.scala │ ├── FileService.scala │ ├── FolderService.scala │ ├── GraylogService.scala │ ├── InstitutionService.scala │ ├── KeycloakProvider.scala │ ├── LdapProvider.scala │ ├── LogService.scala │ ├── LogoService.scala │ ├── MailerPlugin.scala │ ├── MessageService.scala │ ├── MetadataService.scala │ ├── MultimediaQueryService.scala │ ├── ORCIDProvider.scala │ ├── PolyglotPlugin.scala │ ├── PostgresPlugin.scala │ ├── PreviewService.scala │ ├── ProjectService.scala │ ├── RDFExportService.scala │ ├── RDFExporterPlugin.scala │ ├── RDFUpdateService.scala │ ├── RdfSPARQLService.scala │ ├── RelationService.scala │ ├── SchedulerService.scala │ ├── SectionIndexInfoService.scala │ ├── SectionService.scala │ ├── SecureSocialEventListener.scala │ ├── SecureSocialTemplatesPlugin.scala │ ├── SelectionService.scala │ ├── SpaceCopyPlugin.scala │ ├── SpaceService.scala │ ├── SpaceSharingPlugin.scala │ ├── StagingAreaPlugin.scala │ ├── StandardVocabularyService.scala │ ├── TagService.scala │ ├── TempFileService.scala │ ├── TempFilesPlugin.scala │ ├── ThreeDService.scala │ ├── ThumbnailService.scala │ ├── TileService.scala │ ├── ToolManagerPlugin.scala │ ├── TreeService.scala │ ├── UserService.scala │ ├── VersusPlugin.scala │ ├── VocabularyService.scala │ ├── VocabularyTermService.scala │ ├── filesystem │ │ └── DiskByteStorageService.scala │ ├── fourstore │ │ └── FourStoreRdfSPARQLService.scala │ ├── mongodb │ │ ├── ElasticsearchQueue.scala │ │ ├── MongoContext.scala │ │ ├── MongoDBAppConfigurationService.scala │ │ ├── MongoDBAuthenticatorStore.scala │ │ ├── MongoDBByteStorage.scala │ │ ├── MongoDBCollectionService.scala │ │ ├── MongoDBCommentService.scala │ │ ├── MongoDBContextLDService.scala │ │ ├── MongoDBCurationService.scala │ │ ├── MongoDBDatasetService.scala │ │ ├── MongoDBEventService.scala │ │ ├── MongoDBExtractionRequestsService.scala │ │ ├── MongoDBExtractionService.scala │ │ ├── MongoDBExtractorService.scala │ │ ├── MongoDBFileLinkService.scala │ │ ├── MongoDBFileService.scala │ │ ├── MongoDBFolderService.scala │ │ ├── MongoDBInstitutionService.scala │ │ ├── MongoDBLogoService.scala │ │ ├── MongoDBMetadataService.scala │ │ ├── MongoDBMultimediaQueryService.scala │ │ ├── MongoDBPreviewService.scala │ │ ├── MongoDBProjectService.scala │ │ ├── MongoDBQueueService.scala │ │ ├── MongoDBRelationService.scala │ │ ├── MongoDBSchedulerService.scala │ │ ├── MongoDBSectionIndexInfoService.scala │ │ ├── MongoDBSectionService.scala │ │ ├── MongoDBSelectionService.scala │ │ ├── MongoDBSpaceService.scala │ │ ├── MongoDBStandardVocabularyService.scala │ │ ├── MongoDBTagService.scala │ │ ├── MongoDBTempFileService.scala │ │ ├── MongoDBThreeDService.scala │ │ ├── MongoDBThumbnailService.scala │ │ ├── MongoDBTileService.scala │ │ ├── MongoDBUserService.scala │ │ ├── MongoDBVocabularyService.scala │ │ ├── MongoDBVocabularyTermService.scala │ │ ├── MongoSalatPlugin.scala │ │ ├── MongoUserService.scala │ │ ├── SocialUserDAO.scala │ │ └── TypedIdDAO.scala │ ├── rabbitmq │ │ └── RabbitMQMessageService.scala │ └── s3 │ │ └── S3ByteStorageService.scala ├── util │ ├── Direction.scala │ ├── DistancePriorityQueue.scala │ ├── FileUtils.scala │ ├── Formatters.scala │ ├── GravatarUtils.scala │ ├── JSONLD.scala │ ├── License.scala │ ├── Mail.scala │ ├── MultimediaIndex.scala │ ├── Parsers.scala │ ├── PeekIterator.scala │ ├── Publications.scala │ ├── RequestUtils.scala │ ├── RequiredFieldsConfig.scala │ ├── ResourceLister.scala │ ├── SearchUtils.scala │ ├── SortingUtils.scala │ ├── SpaceConfig.scala │ ├── StreamGobbler.java │ ├── StreamGobblerReturnsNotUploaded.java │ └── UploadFileWorker.java └── views │ ├── JSConsole.scala.html │ ├── admin │ ├── customize.scala.html │ ├── tos.scala.html │ └── users.scala.html │ ├── adminIndex.scala.html │ ├── advancedsearch.scala.html │ ├── authorizationMessage.scala.html │ ├── bookmarklet.scala.html │ ├── bootstrap3 │ └── checkboxes.scala.html │ ├── carousel.scala.html │ ├── collectionList.scala.html │ ├── collectionPreviews.scala.html │ ├── collectionofdatasets.scala.html │ ├── collections │ ├── childCollections.scala.html │ ├── datasetsInCollection.scala.html │ ├── listchildcollection.scala.html │ ├── listitem.scala.html │ ├── miniList.scala.html │ ├── parentAllocation.scala.html │ ├── tile.scala.html │ └── users.scala.html │ ├── comment.scala.html │ ├── commentform.scala.html │ ├── curationObjectList.scala.html │ ├── curations │ ├── filesAndFolders.scala.html │ ├── listFolder.scala.html │ ├── listitem.scala.html │ ├── newCuration.scala.html │ ├── publishedData.scala.html │ ├── publishedGrid.scala.html │ └── tile.scala.html │ ├── dataset.scala.html │ ├── datasetInfo.scala.html │ ├── datasetList.scala.html │ ├── datasets │ ├── addFiles.scala.html │ ├── collections.scala.html │ ├── create.scala.html │ ├── createStep2.scala.html │ ├── deleteButton.scala.html │ ├── download.scala.html │ ├── editInfo.scala.html │ ├── editLicense.scala.html │ ├── filesAndFolders.scala.html │ ├── follow.scala.html │ ├── listCurationObjects.scala.html │ ├── listitem.scala.html │ ├── miniList.scala.html │ ├── previews.scala.html │ ├── restoreButton.scala.html │ ├── tags.scala.html │ ├── tile.scala.html │ ├── tools.scala.html │ ├── uploadFiles.scala.html │ ├── userLink.scala.html │ └── users.scala.html │ ├── datasetsContainingFile.scala.html │ ├── dtsExtension.scala.html │ ├── dtsbookmarklet.scala.html │ ├── editProfile.scala.html │ ├── emailAdmin.scala.html │ ├── emailEvents.scala.html │ ├── emails │ ├── footer.scala.html │ ├── userChanged.scala.html │ └── userSignup.scala.html │ ├── error │ └── accountNotActive.scala.html │ ├── errorPage.scala.html │ ├── eventsList.scala.html │ ├── extract.scala.html │ ├── extractionRequests.scala.html │ ├── extractions │ ├── extractionsHistorySingle.scala.html │ ├── extractionsList.scala.html │ ├── submitDatasetExtraction.scala.html │ ├── submitFileExtraction.scala.html │ └── submitSelectedExtraction.scala.html │ ├── extractorDetails.scala.html │ ├── extractorJobHistory.scala.html │ ├── extractorLabels.scala.html │ ├── extractorLog.scala.html │ ├── extractorMetrics.scala.html │ ├── extractors.scala.html │ ├── extractorsInputTypes.scala.html │ ├── extractorsServersIP.scala.html │ ├── file.scala.html │ ├── fileGeneralMetadataSearch.scala.html │ ├── fileMetadataSearch.scala.html │ ├── files │ ├── grid.scala.html │ ├── linkDownload.scala.html │ ├── listitem.scala.html │ ├── share.scala.html │ └── tile.scala.html │ ├── filesList.scala.html │ ├── fileusermetadata.scala.html │ ├── folders │ └── listitem.scala.html │ ├── generalMetadataSearch.scala.html │ ├── geostreams │ ├── create.scala.html │ ├── edit.scala.html │ ├── list.scala.html │ ├── map.scala.html │ └── sensor.scala.html │ ├── home.scala.html │ ├── imageSearchpage.scala.html │ ├── index.scala.html │ ├── inviteThroughEmail.scala.html │ ├── licenseform.scala.html │ ├── listAllExtractions.scala.html │ ├── logoSelect.scala.html │ ├── main.scala.html │ ├── manageMetadataDefinitions.scala.html │ ├── metadata.scala.html │ ├── metadataSearch.scala.html │ ├── metadatald │ ├── addMetadata.scala.html │ ├── newCard.scala.html │ ├── newTableRow.scala.html │ ├── printContent.scala.html │ ├── search.scala.html │ ├── view.scala.html │ ├── viewDataset.scala.html │ └── viewFile.scala.html │ ├── multimediaIndexResults.scala.html │ ├── multimediaSearchResults.scala.html │ ├── multimediaSearchResultsCombined.scala.html │ ├── multimediasearch.scala.html │ ├── newCollection.scala.html │ ├── newCollectionWithParent.scala.html │ ├── newsFeedCardEmail.scala.html │ ├── newsfeedCard.scala.html │ ├── noPermissions.scala.html │ ├── notAuthorized.scala.html │ ├── notFound.scala.html │ ├── playMode.scala.html │ ├── pluginNotEnabled.scala.html │ ├── previewers.scala.html │ ├── profile.scala.html │ ├── relations │ └── list.scala.html │ ├── roles │ ├── createRole.scala.html │ ├── editRole.scala.html │ └── listRoles.scala.html │ ├── search │ ├── searchResultCollection.scala.html │ ├── searchResultDataset.scala.html │ └── searchResultFile.scala.html │ ├── searchImgResults.scala.html │ ├── searchMultimediaIndex.scala.html │ ├── searchResults.scala.html │ ├── searchTextResults.scala.html │ ├── selectDataset.scala.html │ ├── selected.scala.html │ ├── sensors │ ├── admin.scala.html │ └── relatedSensors.scala.html │ ├── spaces │ ├── access.scala.html │ ├── collectionsBySpace.scala.html │ ├── collectionsGrid.scala.html │ ├── collectionsTable.scala.html │ ├── createButton.scala.html │ ├── curationDetailReport.scala.html │ ├── curationObject.scala.html │ ├── curationObjectsBySpace.scala.html │ ├── curationObjectsGrid.scala.html │ ├── curationSubmitted.scala.html │ ├── curationSummary.scala.html │ ├── datasetsBySpace.scala.html │ ├── datasetsGrid.scala.html │ ├── datasetsTable.scala.html │ ├── editSpace.scala.html │ ├── editUsers.scala.html │ ├── externalLinks.scala.html │ ├── follow.scala.html │ ├── invite.scala.html │ ├── inviteNotificationEmail.scala.html │ ├── listItem.scala.html │ ├── listSpaces.scala.html │ ├── matchmakerResult.scala.html │ ├── miniList.scala.html │ ├── newEditTemplate.scala.html │ ├── newSpace.scala.html │ ├── otherActions.scala.html │ ├── outstandingRequests.scala.html │ ├── requestAuthorization.scala.html │ ├── requestemail.scala.html │ ├── requestresponseemail.scala.html │ ├── space.scala.html │ ├── spaceAllocation.scala.html │ ├── spaceConfiguration.scala.html │ ├── spaceSelect.scala.html │ ├── stagingarea.scala.html │ ├── statistics.scala.html │ ├── submittedCurationObject.scala.html │ ├── tile.scala.html │ ├── updateButton.scala.html │ ├── updateExtractors.scala.html │ ├── users.scala.html │ └── verifySpaceEmail.scala.html │ ├── ss │ ├── Registration │ │ ├── resetPasswordPage.scala.html │ │ ├── signUp.scala.html │ │ ├── startResetPassword.scala.html │ │ └── startSignUp.scala.html │ ├── inputFieldConstructor.scala.html │ ├── ldap.scala.html │ ├── login.scala.html │ ├── mails │ │ ├── alreadyRegisteredEmail.scala.html │ │ ├── passwordChangedNotice.scala.html │ │ ├── passwordResetEmail.scala.html │ │ ├── signUpEmail.scala.html │ │ ├── unknownEmailNotice.scala.html │ │ ├── welcomeEmail.scala.html │ │ └── welcomeEmailPendingVerification.scala.html │ └── provider.scala.html │ ├── tagList.scala.html │ ├── tagListChar.scala.html │ ├── toolManager.scala.html │ ├── tos.scala.html │ ├── twitterBootstrapInput.scala.html │ ├── updateExtractors.scala.html │ ├── upload.scala.html │ ├── uploadExtract.scala.html │ ├── users │ ├── followers.scala.html │ ├── followingCollections.scala.html │ ├── followingDatasets.scala.html │ ├── followingFiles.scala.html │ ├── followingSpaces.scala.html │ ├── followingUsers.scala.html │ ├── listUsers.scala.html │ └── tile.scala.html │ ├── util │ ├── masonry.scala.html │ ├── masonryTabbed.scala.html │ └── multimasonry.scala.html │ └── viewDumpers.scala.html ├── bootstrap.sh ├── citation.cff ├── conf ├── .gitignore ├── application.conf ├── datasetRdfRootNodes.txt ├── datasetUserMetadataRDFMapping.xml ├── fileUserMetadataRDFMapping.xml ├── logger.xml ├── messages ├── mimetypes.conf ├── play.plugins ├── rdfRootNodes.txt ├── routes └── securesocial.conf ├── doc └── src │ └── sphinx │ ├── .gitignore │ ├── Makefile │ ├── Pipfile │ ├── Pipfile.lock │ ├── _static │ ├── GettingStarted_AddJDK.png │ ├── GettingStarted_Play2Config.png │ ├── GettingStarted_addConfig.png │ ├── IntelliJ_JDK_Download.png │ ├── architecture.jpg │ ├── architecture.png │ ├── css │ │ └── custom.css │ ├── data-model.jpg │ ├── data-model.png │ ├── datamodel.jpg │ ├── dataset.png │ ├── extraction.jpg │ ├── geostreaming.jpg │ ├── logo.png │ ├── logos_ncsa.png │ ├── ug-homepage-1.png │ ├── ug-signingup-1.png │ ├── ug-signingup-10.png │ ├── ug-signingup-11.png │ ├── ug-signingup-2.png │ ├── ug-signingup-3.png │ ├── ug-signingup-4.png │ ├── ug-signingup-5.png │ ├── ug-signingup-6.png │ ├── ug-signingup-7.png │ ├── ug-signingup-8.png │ ├── ug-signingup-9.png │ ├── ug_collections-1.png │ ├── ug_collections-10.png │ ├── ug_collections-11.png │ ├── ug_collections-12.png │ ├── ug_collections-13.png │ ├── ug_collections-14.png │ ├── ug_collections-15.png │ ├── ug_collections-16.png │ ├── ug_collections-17.png │ ├── ug_collections-18.png │ ├── ug_collections-19.png │ ├── ug_collections-2.png │ ├── ug_collections-20.png │ ├── ug_collections-21.png │ ├── ug_collections-3.png │ ├── ug_collections-4.png │ ├── ug_collections-5.png │ ├── ug_collections-6.png │ ├── ug_collections-7.png │ ├── ug_collections-8.png │ ├── ug_collections-9.png │ ├── ug_datasets-1.png │ ├── ug_datasets-10.png │ ├── ug_datasets-11.png │ ├── ug_datasets-12.png │ ├── ug_datasets-13.png │ ├── ug_datasets-14.png │ ├── ug_datasets-15.png │ ├── ug_datasets-16.png │ ├── ug_datasets-17.png │ ├── ug_datasets-18.png │ ├── ug_datasets-19.png │ ├── ug_datasets-2.png │ ├── ug_datasets-20.png │ ├── ug_datasets-21.png │ ├── ug_datasets-22.png │ ├── ug_datasets-23.png │ ├── ug_datasets-24.png │ ├── ug_datasets-25.png │ ├── ug_datasets-26.png │ ├── ug_datasets-3.png │ ├── ug_datasets-4.png │ ├── ug_datasets-5.png │ ├── ug_datasets-6.png │ ├── ug_datasets-7.png │ ├── ug_datasets-8.png │ ├── ug_datasets-9.png │ ├── ug_extractors-1.png │ ├── ug_extractors-2.png │ ├── ug_extractors-3.png │ ├── ug_extractors-4.png │ ├── ug_following-1.png │ ├── ug_following-2.png │ ├── ug_following-3.png │ ├── ug_following-4.png │ ├── ug_following-5.png │ ├── ug_following-6.png │ ├── ug_search-1.png │ ├── ug_search-2.png │ ├── ug_search-3.png │ ├── ug_spaces-1.png │ ├── ug_spaces-10.png │ ├── ug_spaces-11.png │ ├── ug_spaces-12.png │ ├── ug_spaces-13.png │ ├── ug_spaces-14.png │ ├── ug_spaces-15.png │ ├── ug_spaces-2.png │ ├── ug_spaces-3.png │ ├── ug_spaces-4.png │ ├── ug_spaces-5.png │ ├── ug_spaces-6.png │ ├── ug_spaces-7.png │ ├── ug_spaces-8.png │ ├── ug_spaces-9.png │ ├── ug_staging-1.png │ ├── ug_staging-2.png │ ├── ug_staging-3.png │ ├── ug_staging-4.png │ ├── ug_staging-5.png │ └── ug_staging-6.png │ ├── admin │ ├── customizing.rst │ └── upgrading.rst │ ├── api.rst │ ├── changelog.md │ ├── changelog_md_to_rst.rst │ ├── conf.py │ ├── develop │ ├── architecture.rst │ ├── contribute_docs.rst │ ├── extractors.rst │ └── previewers.rst │ ├── index.rst │ ├── license.rst │ ├── make.bat │ ├── overview.rst │ ├── publishing_data.rst │ ├── requirements.txt │ ├── thankyou.rst │ └── userguide │ ├── installing_clowder.rst │ ├── ug_collections.rst │ ├── ug_datasets.rst │ ├── ug_following.rst │ ├── ug_homepage.rst │ ├── ug_index.rst │ ├── ug_search.rst │ ├── ug_signingup.rst │ └── ug_spaces.rst ├── docker-compose.extractors.yml ├── docker-compose.geoserver.yml ├── docker-compose.override.example.yml ├── docker-compose.yml ├── docker.sh ├── docker ├── clowder.sh ├── custom.conf ├── healthcheck.sh └── play.plugins ├── env.example ├── geostream.sql ├── lib ├── LidoToCidoc.jar ├── URIpolicies.jar ├── lsva-features.jar └── swkmmodel2.jar ├── project ├── Build.scala ├── build.properties ├── medici-play-build.iml └── plugins.sbt ├── public ├── datasetsUserMetadataModel │ ├── user_metadata_model_allowedNodes.txt │ └── user_metadata_model_allowedRelationships.txt ├── filesUserMetadataModel │ ├── user_metadata_model_allowedNodes.txt │ └── user_metadata_model_allowedRelationships.txt ├── fonts │ ├── filtrify │ │ ├── filtrify-webfont.eot │ │ ├── filtrify-webfont.svg │ │ ├── filtrify-webfont.ttf │ │ └── filtrify-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── cc-by-nc-nd.png │ ├── cc-by-nc-sa.png │ ├── cc-by-nc.png │ ├── cc-by-nd.png │ ├── cc-by-sa.png │ ├── cc-by.png │ ├── cc-pd.png │ ├── chosen-sprite.png │ ├── chosen-sprite@2x.png │ ├── favicon.png │ ├── glyphicons-halflings-white.png │ ├── glyphicons-halflings.png │ ├── json-ld.png │ ├── logo_60.png │ ├── logo_sm.png │ └── texture_metal.jpg ├── javascripts │ ├── DTSbookmarklet │ │ ├── browndog-large-transparent.png │ │ ├── browndog-small-transparent.gif │ │ ├── browndog-small.png │ │ ├── css │ │ │ ├── bootstrap-theme.bd.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.bd.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── jquery-1.7.2.js │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── lunr.js │ │ │ └── lunr.min.js │ │ ├── lunr.min.js │ │ ├── modal.handlebars │ │ ├── poweredby-transparent.gif │ │ └── row.handlebars │ ├── adminIndex.js │ ├── bootstrap.min.js │ ├── chosen.jquery.js │ ├── clipboard.js │ ├── collection-create.js │ ├── collectionChildCollectionsList.js │ ├── collectionDatasetsList.js │ ├── collectionListProcess.js │ ├── collectionModify.js │ ├── combobox.js │ ├── comment-delete.js │ ├── comment-edit.js │ ├── creators.js │ ├── curation-create.js │ ├── curationProcess.js │ ├── d3js │ │ ├── d3.legend.js │ │ └── d3.v3.min.js │ ├── dataset-attach-fileuploader.js │ ├── datasetListProcess.js │ ├── datasets │ │ └── collections.js │ ├── deflate.js │ ├── deleteUtils.js │ ├── descriptionSummary.js │ ├── displayPanels.js │ ├── errorRedirect.js │ ├── extractors │ │ └── extractors.js │ ├── file-browser │ │ ├── app.js │ │ ├── fileBrowser.js │ │ └── views │ │ │ ├── app.js │ │ │ └── dragdrop.js │ ├── file-uploader │ │ ├── app.js │ │ ├── canvas-to-blob.min.js │ │ ├── cors │ │ │ ├── jquery.postmessage-transport.js │ │ │ └── jquery.xdr-transport.js │ │ ├── jquery.blueimp-gallery.min.js │ │ ├── jquery.fileupload-angular.js │ │ ├── jquery.fileupload-audio.js │ │ ├── jquery.fileupload-clowder-auth.js │ │ ├── jquery.fileupload-image.js │ │ ├── jquery.fileupload-jquery-ui.js │ │ ├── jquery.fileupload-process.js │ │ ├── jquery.fileupload-single-ui.js │ │ ├── jquery.fileupload-ui.js │ │ ├── jquery.fileupload-validate.js │ │ ├── jquery.fileupload-video.js │ │ ├── jquery.fileupload.js │ │ ├── jquery.iframe-transport.js │ │ ├── load-image.all.min.js │ │ ├── main.js │ │ └── tmpl.min.js │ ├── fileListProcess.js │ ├── files │ │ ├── datasets.js │ │ └── main.js │ ├── filtrify.js │ ├── folderListProcess.js │ ├── follow-button.js │ ├── galleria-1.2.9.js │ ├── galleria-classic │ │ ├── classic-loader.gif │ │ ├── classic-map.png │ │ ├── galleria.classic.css │ │ ├── galleria.classic.js │ │ └── galleria.classic.min.js │ ├── geostreams │ │ ├── sensorCreate.js │ │ ├── sensorEdit.js │ │ ├── sensorStreamEdit.js │ │ └── updateMap.js │ ├── handlebars-loader.js │ ├── handlebars-v1.3.0.js │ ├── htmlEncodeDecode.js │ ├── images │ │ ├── animated-overlay.gif │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ ├── marker-shadow.png │ │ ├── ui-bg_flat_45_0088CC_40x100.png │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ ├── ui-bg_gloss-wave_75_0088CC_500x100.png │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── ui-icons_0078ae_256x240.png │ │ ├── ui-icons_d8e7f3_256x240.png │ │ ├── ui-icons_f7a50d_256x240.png │ │ ├── ui-icons_fcd113_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── inflate.js │ ├── jquery-1.10.2.js │ ├── jquery-1.8.2.js │ ├── jquery-1.8.2.min.js │ ├── jquery-ui-1.10.3.custom.min.css │ ├── jquery-ui-1.10.3.custom.min.js │ ├── jquery-ui-timepicker-addon.js │ ├── jquery.cookie.js │ ├── jquery.tablesorter.js │ ├── jquery.validate.js │ ├── jstree │ │ ├── jstree.js │ │ ├── jstree.min.js │ │ └── themes │ │ │ ├── default-dark │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ │ │ └── default │ │ │ ├── 32px.png │ │ │ ├── 40px.png │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ └── throbber.gif │ ├── leaflet-src.js │ ├── leaflet.js │ ├── lib │ │ ├── backbone-0.9.2.js │ │ ├── backbone-0.9.2.min.js │ │ ├── handlebars-v4.0.5.js │ │ ├── handlebars-v4.0.5.min.js │ │ ├── imagesloaded.pkgd.min.js │ │ ├── jquery.serializejson.min.js │ │ ├── json2.js │ │ ├── masonry.pkgd.min.js │ │ ├── underscore-1.4.3.js │ │ └── underscore-1.4.3.min.js │ ├── loader.gif │ ├── main.js │ ├── manageAdmins.js │ ├── manageRoles.js │ ├── maxlength.min.js │ ├── mention │ │ ├── jquery.elastic.js │ │ ├── jquery.mentionsInput.css │ │ └── jquery.mentionsInput.js │ ├── metadata │ │ ├── addMetadata.js │ │ ├── definitionDropdowns.js │ │ └── manageDefinitions.js │ ├── noty │ │ ├── jquery.noty.js │ │ ├── layouts │ │ │ ├── bottom.js │ │ │ ├── bottomCenter.js │ │ │ ├── bottomLeft.js │ │ │ ├── bottomRight.js │ │ │ ├── center.js │ │ │ ├── centerLeft.js │ │ │ ├── centerRight.js │ │ │ ├── inline.js │ │ │ ├── top.js │ │ │ ├── topCenter.js │ │ │ ├── topLeft.js │ │ │ └── topRight.js │ │ ├── packaged │ │ │ ├── jquery.noty.packaged.js │ │ │ └── jquery.noty.packaged.min.js │ │ ├── promise.js │ │ └── themes │ │ │ ├── bootstrap.js │ │ │ ├── default.js │ │ │ └── relax.js │ ├── openlayers │ │ ├── ol.css │ │ └── ol.js │ ├── people.js │ ├── popcorn-complete.min.js │ ├── previewers │ │ ├── 3DObj │ │ │ ├── Detector.js │ │ │ ├── RequestAnimationFrame.js │ │ │ ├── Three.js │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── 3DWebGL │ │ │ ├── lazyload-min.js │ │ │ ├── package.json │ │ │ ├── some-library.js │ │ │ └── webGL.js │ │ ├── Book │ │ │ ├── book.css │ │ │ ├── book.js │ │ │ ├── hammer.js │ │ │ ├── jquery.hammer.js │ │ │ ├── package.json │ │ │ ├── seadragon-min.js │ │ │ ├── seadragon.overlay.js │ │ │ ├── seadragon.touch.js │ │ │ ├── some-library.js │ │ │ └── turn.js │ │ ├── PTM │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── Quicktime │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── RDF │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── audio │ │ │ ├── audio.js │ │ │ └── package.json │ │ ├── dataset-image │ │ │ ├── dataset-image.css │ │ │ ├── dataset-image.js │ │ │ └── package.json │ │ ├── dataset-mime-distribution │ │ │ ├── main.css │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── dataset-path │ │ │ ├── main.css │ │ │ ├── main.js │ │ │ └── package.json │ │ ├── geospatial-collection │ │ │ ├── geospatial-collection.js │ │ │ └── package.json │ │ ├── geospatial-dataset │ │ │ ├── geospatial-dataset.js │ │ │ └── package.json │ │ ├── geospatial-geojson │ │ │ ├── geospatial-geojson.js │ │ │ └── package.json │ │ ├── geospatial │ │ │ ├── geospatial.js │ │ │ └── package.json │ │ ├── html │ │ │ ├── html-iframe.js │ │ │ └── package.json │ │ ├── ifc_previewer │ │ │ ├── bundle.js │ │ │ ├── ifc │ │ │ │ └── web-ifc.wasm │ │ │ ├── ifc_viewer.js │ │ │ ├── main.css │ │ │ └── package.json │ │ ├── iframe │ │ │ ├── images │ │ │ │ └── iframe_error.jpg │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── iip │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── main.js │ │ ├── mri-papaya │ │ │ ├── README.md │ │ │ ├── clowder-mri-papaya-screenshot.png │ │ │ ├── mri-papaya.js │ │ │ ├── package.json │ │ │ ├── papaya.css │ │ │ └── papaya.js │ │ ├── oni │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── pdf │ │ │ ├── package.json │ │ │ ├── pdf.js │ │ │ └── some-library.js │ │ ├── pdf3d │ │ │ ├── package.json │ │ │ ├── pdfobject.js │ │ │ └── some-library.js │ │ ├── person-tracking │ │ │ ├── jquery.flot.axislabels.js │ │ │ ├── jquery.flot.crosshair.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.navigate.js │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── plain_text │ │ │ ├── package.json │ │ │ └── plain_text.js │ │ ├── presentation │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── sectionRubberband.js │ │ ├── test1 │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── test2 │ │ │ ├── package.json │ │ │ └── some-other-library.js │ │ ├── three_js │ │ │ ├── draco │ │ │ │ ├── README.md │ │ │ │ ├── draco_decoder.js │ │ │ │ ├── draco_decoder.wasm │ │ │ │ ├── draco_encoder.js │ │ │ │ ├── draco_wasm_wrapper.js │ │ │ │ └── gltf │ │ │ │ │ ├── draco_decoder.js │ │ │ │ │ ├── draco_decoder.wasm │ │ │ │ │ ├── draco_encoder.js │ │ │ │ │ └── draco_wasm_wrapper.js │ │ │ ├── js │ │ │ │ ├── DRACOLoader.js │ │ │ │ ├── FBXLoader.js │ │ │ │ ├── GLTFLoader.js │ │ │ │ ├── OrbitControls.js │ │ │ │ ├── fflate.min.js │ │ │ │ ├── stats.min.js │ │ │ │ └── three.min.js │ │ │ ├── package.json │ │ │ ├── style.css │ │ │ └── viewer_three.js │ │ ├── thumbnail │ │ │ ├── package.json │ │ │ └── thumbnail-previewer.js │ │ ├── vega5 │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── vega5.js │ │ ├── video │ │ │ ├── package.json │ │ │ └── video.js │ │ ├── viewer_hop │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── viewer_hop.js │ │ ├── x3dom │ │ │ ├── package.json │ │ │ └── some-library.js │ │ ├── zipfile │ │ │ ├── package.json │ │ │ └── zipfile.js │ │ └── zoomable │ │ │ ├── package.json │ │ │ ├── some-library.js │ │ │ └── zoomit.js │ ├── previews.js │ ├── recommendation.js │ ├── repositories.js │ ├── searchUserMetadata.js │ ├── sectionsListProcess.js │ ├── select2.min.js │ ├── sensors │ │ ├── assign.js │ │ └── removeRelation.js │ ├── spaceListProcess.js │ ├── spaceModify.js │ ├── spaceconfiguration.js │ ├── spin.min.js │ ├── stickytabs │ │ ├── LICENSE │ │ └── jquery.stickytabs.js │ ├── tabsInURL.js │ ├── terraformer │ │ ├── LICENSE.txt │ │ ├── terraformer-1.0.5.min.js │ │ └── terraformer-wkt-parser-1.1.0.min.js │ ├── textUtils.js │ ├── updateLicenseInfo.js │ ├── userMetadata.js │ ├── x3dom.js │ ├── z-worker.js │ └── zip.js ├── jsonld │ └── contexts │ │ ├── extractors.jsonld │ │ └── metadata.jsonld ├── plugins │ ├── IIPZoom.swf │ ├── envlib.jar │ └── expressInstall.swf ├── securesocial │ └── images │ │ └── providers │ │ ├── cilogon.png │ │ ├── crowd.png │ │ ├── keycloak.png │ │ ├── ldap.png │ │ └── orcid.png ├── stylesheets │ ├── chosen.css │ ├── dragdrop.css │ ├── dtsstylediv.css │ ├── extractions.css │ ├── file-uploader │ │ ├── blueimp-gallery.min.css │ │ ├── demo-ie8.css │ │ ├── demo.css │ │ ├── jquery.fileupload-noscript.css │ │ ├── jquery.fileupload-ui-noscript.css │ │ ├── jquery.fileupload-ui.css │ │ ├── jquery.fileupload.css │ │ └── style.css │ ├── filtrify.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── glyphicon-animations.css │ ├── jquery-ui-timepicker-addon.css │ ├── leaflet.css │ ├── leaflet.ie.css │ ├── main.css │ ├── pdf.css │ ├── select2-bootstrap.min.css │ ├── select2.min.css │ ├── tableborder.css │ ├── themes │ │ ├── bootstrap.min.css │ │ ├── cerulean.min.css │ │ ├── cosmo.min.css │ │ ├── cyborg.min.css │ │ ├── darkly.min.css │ │ ├── flatly.min.css │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── sead.min.css │ │ ├── simplex.min.css │ │ ├── slate.min.css │ │ ├── spacelab.min.css │ │ ├── superhero.min.css │ │ ├── united.min.css │ │ └── yeti.min.css │ └── x3dom.css ├── swagger.yml ├── templates │ ├── metadata │ │ ├── add_metadata.handlebars │ │ ├── add_metadata_annotation.handlebars │ │ ├── add_metadata_datetime.handlebars │ │ ├── add_metadata_list.handlebars │ │ ├── add_metadata_listjquery.handlebars │ │ ├── add_metadata_scientific_variable.handlebars │ │ ├── add_metadata_string.handlebars │ │ ├── add_metadata_wktlocation.handlebars │ │ ├── footer.handlebars │ │ ├── search_collection_result.handlebars │ │ ├── search_dataset_result.handlebars │ │ └── search_file_result.handlebars │ ├── sensors │ │ ├── assign.handlebars │ │ ├── parameters-form.handlebars │ │ ├── sensor-form.handlebars │ │ └── stream-form.handlebars │ └── spaces │ │ ├── assign.handlebars │ │ └── mmrepository.handlebars └── tos.txt ├── release.sh ├── sbt ├── sbt-launch-lib.bash ├── sbt-launch.jar ├── sbt.bat ├── scripts ├── README.md ├── clean-extractors-tmpfiles │ ├── Dockerfile │ ├── clean.sh │ └── list.txt ├── create-account.sh ├── crowd │ └── clowder.php ├── elasticsearch │ └── Dockerfile ├── exinfo.py ├── extract.py ├── geostream.py ├── jmeter │ ├── README.md │ └── jmeter-clowder.jmx ├── jupyter-notebook │ ├── collections.ipynb │ ├── dataset_files.ipynb │ └── spaces.ipynb ├── migrates-aws-s3 │ ├── Dockerfile │ ├── README.md │ ├── main.py │ ├── requirements.txt │ └── s3.py ├── mongo-exec.sh ├── mongo-init │ ├── Dockerfile │ ├── README │ ├── mongo-init.py │ └── requirements.txt ├── mongodb │ ├── assign_datasets.js │ ├── check_uploads.py │ └── migrate_users.py ├── monitor │ ├── Dockerfile │ ├── bootstrap-table.min.css │ ├── bootstrap-table.min.js │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── extractors.json │ ├── fa-solid-900.woff2 │ ├── favicon.png │ ├── fontawesome.min.css │ ├── index.html │ ├── jquery-3.3.1.min.js │ ├── monitor.py │ ├── popper.min.js │ ├── requirements.txt │ └── solid.min.css ├── reports │ └── SummarizeExtractionsByUser.js ├── rmq-error-shovel │ ├── Dockerfile │ ├── README.md │ ├── check_rabbitmq.py │ └── requirements.txt ├── test-tags.sh ├── tester │ ├── Dockerfile │ └── tester.sh ├── toollaunchservice │ ├── Dockerfile │ ├── FILES.toolserver │ │ └── usr │ │ │ └── local │ │ │ ├── bin │ │ │ ├── clowder-xfer │ │ │ ├── toolserver │ │ │ └── usage │ │ │ └── data │ │ │ └── toolconfig.json │ ├── Makefile │ └── toolserver.service ├── ubuntu │ ├── README.md │ ├── clowder.conf │ └── update-clowder.sh ├── updates │ ├── README.md │ ├── UpdateUserId.js │ ├── fix-counts.js │ └── update-avatar-url-to-https.js ├── upload.py └── web │ ├── README.md │ ├── extract.php │ ├── info.php │ ├── plots │ ├── README.md │ ├── days.gnuplot │ ├── hours.gnuplot │ ├── minutes.gnuplot │ ├── plot.php │ └── publish.sh │ ├── publish.sh │ └── tests │ ├── README.md │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css │ ├── failure_watchers.txt │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff │ ├── js │ ├── bootstrap.js │ └── bootstrap.min.js │ ├── pass_watchers.txt │ ├── plot.gnuplot │ ├── plot.php │ ├── publish.sh │ ├── test.php │ ├── tests.php │ ├── tests.py │ └── tests.txt ├── test ├── data │ ├── collections │ │ ├── data-test-collection-1.json │ │ ├── data-test-collection.json │ │ ├── dataset-image-1.zip │ │ └── dataset-image.zip │ ├── contextld │ │ ├── data-test-contextld-2.json │ │ ├── data-test-contextld-inline.json │ │ ├── data-test-contextld-person.json │ │ └── data-test-contextld.json │ ├── datasets │ │ ├── dataset-image.zip │ │ ├── dataset-search-general.json │ │ ├── dataset-search-user.json │ │ ├── dataset-test-general.json │ │ ├── dataset-test-tags-remove-one.json │ │ ├── dataset-test-tags-remove-round-two.json │ │ ├── dataset-test-tags-remove.json │ │ ├── dataset-test-tags-round-two.json │ │ ├── dataset-test-tags.json │ │ ├── dataset-test-user.json │ │ ├── morrowplots.jpg │ │ └── zip-file-thumbnail.jpg │ ├── extractions │ │ ├── morrowplots-thumb.jpg │ │ └── morrowplots.jpg │ ├── files │ │ ├── data-search-general.json │ │ ├── data-search-user.json │ │ ├── data-test-general.json │ │ ├── data-test-user.json │ │ ├── morrowplots-thumb-1.jpg │ │ ├── morrowplots-thumb.jpg │ │ └── morrowplots.jpg │ ├── previews │ │ ├── data-test-general.json │ │ ├── data-test-preview.json │ │ ├── morrowplots-preview-1.jpg │ │ ├── morrowplots-preview-meta.jpg │ │ ├── morrowplots-preview.jpg │ │ └── morrowplots.jpg │ └── spaces │ │ ├── data-test-collections.json │ │ └── data-test-spaces.json ├── integration │ ├── APITestSuite.scala │ ├── app-server │ │ ├── AppFixture.scala │ │ ├── AppFunctionalTest.scala │ │ ├── ApplicationSpec.scala │ │ ├── ApplicationTestSuite.scala │ │ ├── IntegrationSpec.scala │ │ └── ServerFixture.scala │ ├── collections │ │ ├── APICollectionsTestSuite.scala │ │ └── CollectionsAPIAppSpec.scala │ ├── contextld │ │ ├── APIContextLDTestSuite.scala │ │ ├── ContextLDAPIAppSpec.scala │ │ └── MongoDBContextLDSpec.scala │ ├── datasets │ │ ├── APIDatasetsTestSuite.scala │ │ └── DatasetsAPIAppSpec.scala │ ├── dts │ │ ├── APIDTSExtractionsTestSuite.scala │ │ └── DTSExtractionsAPIAppSpec.scala │ ├── extractions │ │ ├── APIExtractionsTestSuite.scala │ │ └── ExtractionsAPIAppSpec.scala │ ├── files │ │ ├── APIFilesTestSuite.scala │ │ └── FilesAPIAppSpec.scala │ ├── metadata │ │ └── MetadataMongoDBSpec.scala │ ├── previews │ │ ├── APIPreviewsTestSuite.scala │ │ └── PreviewsAPIAppSpec.scala │ ├── spaces │ │ ├── APISpacesTestSuite.scala │ │ ├── SpaceMongoDBSpec.scala │ │ └── SpacesAPIAppSpec.scala │ └── utilities │ │ └── MultiFileUpload.scala ├── testing-coverage.csv └── unit │ ├── RelationSpec.scala │ ├── app-server │ ├── FileSpec.scala │ ├── MongoDBSpec.scala │ ├── MongoFileSpec.scala │ ├── TestData.scala │ └── UnitSpec.scala │ ├── contextld │ └── ContextLDSpec.scala │ ├── extractions │ └── ExtractionHTMLControllerSpec.scala │ ├── metadata │ ├── MetadataSpec.scala │ └── metadataTestData.scala │ └── spaces │ └── SpaceSpec.scala └── version.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | target 3 | logs 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.github/workflows/swagger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/CLA.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/TESTING.md -------------------------------------------------------------------------------- /app/Binders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Binders.scala -------------------------------------------------------------------------------- /app/Global.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Global.scala -------------------------------------------------------------------------------- /app/Iterators/BagItIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/BagItIterator.scala -------------------------------------------------------------------------------- /app/Iterators/CollectionIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/CollectionIterator.scala -------------------------------------------------------------------------------- /app/Iterators/DatasetIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/DatasetIterator.scala -------------------------------------------------------------------------------- /app/Iterators/FileIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/FileIterator.scala -------------------------------------------------------------------------------- /app/Iterators/RootCollectionIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/RootCollectionIterator.scala -------------------------------------------------------------------------------- /app/Iterators/SelectedIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/Iterators/SelectedIterator.scala -------------------------------------------------------------------------------- /app/api/Admin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Admin.scala -------------------------------------------------------------------------------- /app/api/ApiController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/ApiController.scala -------------------------------------------------------------------------------- /app/api/ApiHelp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/ApiHelp.scala -------------------------------------------------------------------------------- /app/api/Collections.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Collections.scala -------------------------------------------------------------------------------- /app/api/Comments.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Comments.scala -------------------------------------------------------------------------------- /app/api/ContextLD.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/ContextLD.scala -------------------------------------------------------------------------------- /app/api/CurationObjects.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/CurationObjects.scala -------------------------------------------------------------------------------- /app/api/Datasets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Datasets.scala -------------------------------------------------------------------------------- /app/api/Events.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Events.scala -------------------------------------------------------------------------------- /app/api/Extractions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Extractions.scala -------------------------------------------------------------------------------- /app/api/Files.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Files.scala -------------------------------------------------------------------------------- /app/api/Folders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Folders.scala -------------------------------------------------------------------------------- /app/api/Geometry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Geometry.scala -------------------------------------------------------------------------------- /app/api/Geostreams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Geostreams.scala -------------------------------------------------------------------------------- /app/api/Indexes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Indexes.scala -------------------------------------------------------------------------------- /app/api/Institutions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Institutions.scala -------------------------------------------------------------------------------- /app/api/Logos.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Logos.scala -------------------------------------------------------------------------------- /app/api/Metadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Metadata.scala -------------------------------------------------------------------------------- /app/api/Permissions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Permissions.scala -------------------------------------------------------------------------------- /app/api/Previews.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Previews.scala -------------------------------------------------------------------------------- /app/api/Projects.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Projects.scala -------------------------------------------------------------------------------- /app/api/Proxy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Proxy.scala -------------------------------------------------------------------------------- /app/api/Relations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Relations.scala -------------------------------------------------------------------------------- /app/api/Reporting.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Reporting.scala -------------------------------------------------------------------------------- /app/api/Search.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Search.scala -------------------------------------------------------------------------------- /app/api/Sections.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Sections.scala -------------------------------------------------------------------------------- /app/api/Selected.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Selected.scala -------------------------------------------------------------------------------- /app/api/Sensors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Sensors.scala -------------------------------------------------------------------------------- /app/api/Spaces.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Spaces.scala -------------------------------------------------------------------------------- /app/api/Status.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Status.scala -------------------------------------------------------------------------------- /app/api/ThreeDTexture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/ThreeDTexture.scala -------------------------------------------------------------------------------- /app/api/Thumbnail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Thumbnail.scala -------------------------------------------------------------------------------- /app/api/Tree.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Tree.scala -------------------------------------------------------------------------------- /app/api/Users.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Users.scala -------------------------------------------------------------------------------- /app/api/Vocabularies.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/Vocabularies.scala -------------------------------------------------------------------------------- /app/api/VocabularyTerms.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/VocabularyTerms.scala -------------------------------------------------------------------------------- /app/api/ZoomIt.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/api/ZoomIt.scala -------------------------------------------------------------------------------- /app/assets/javascripts/select-bulk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/javascripts/select-bulk.js -------------------------------------------------------------------------------- /app/assets/javascripts/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/javascripts/select.js -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/close.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/code.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/forms.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/grid.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/media.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/navs.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/pager.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/print.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/theme.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/type.less -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/assets/stylesheets/bootstrap/wells.less -------------------------------------------------------------------------------- /app/controllers/Admin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Admin.scala -------------------------------------------------------------------------------- /app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Application.scala -------------------------------------------------------------------------------- /app/controllers/Collections.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Collections.scala -------------------------------------------------------------------------------- /app/controllers/CurationObjects.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/CurationObjects.scala -------------------------------------------------------------------------------- /app/controllers/Datasets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Datasets.scala -------------------------------------------------------------------------------- /app/controllers/Error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Error.scala -------------------------------------------------------------------------------- /app/controllers/Events.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Events.scala -------------------------------------------------------------------------------- /app/controllers/ExtractionInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/ExtractionInfo.scala -------------------------------------------------------------------------------- /app/controllers/Extractors.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Extractors.scala -------------------------------------------------------------------------------- /app/controllers/FileLinks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/FileLinks.scala -------------------------------------------------------------------------------- /app/controllers/Files.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Files.scala -------------------------------------------------------------------------------- /app/controllers/Folders.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Folders.scala -------------------------------------------------------------------------------- /app/controllers/Geostreams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Geostreams.scala -------------------------------------------------------------------------------- /app/controllers/Login.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Login.scala -------------------------------------------------------------------------------- /app/controllers/Metadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Metadata.scala -------------------------------------------------------------------------------- /app/controllers/Previewers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Previewers.scala -------------------------------------------------------------------------------- /app/controllers/Profile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Profile.scala -------------------------------------------------------------------------------- /app/controllers/RSS.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/RSS.scala -------------------------------------------------------------------------------- /app/controllers/Registration.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Registration.scala -------------------------------------------------------------------------------- /app/controllers/Search.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Search.scala -------------------------------------------------------------------------------- /app/controllers/SecuredController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/SecuredController.scala -------------------------------------------------------------------------------- /app/controllers/Selected.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Selected.scala -------------------------------------------------------------------------------- /app/controllers/Spaces.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Spaces.scala -------------------------------------------------------------------------------- /app/controllers/Tags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Tags.scala -------------------------------------------------------------------------------- /app/controllers/ToolManager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/ToolManager.scala -------------------------------------------------------------------------------- /app/controllers/Users.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Users.scala -------------------------------------------------------------------------------- /app/controllers/Utils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/controllers/Utils.scala -------------------------------------------------------------------------------- /app/fileutils/FilesUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/fileutils/FilesUtils.java -------------------------------------------------------------------------------- /app/filters/CORSFilter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/filters/CORSFilter.scala -------------------------------------------------------------------------------- /app/jsonutils/JsonUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/jsonutils/JsonUtil.java -------------------------------------------------------------------------------- /app/models/Collection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Collection.scala -------------------------------------------------------------------------------- /app/models/Comment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Comment.scala -------------------------------------------------------------------------------- /app/models/ContextLD.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ContextLD.scala -------------------------------------------------------------------------------- /app/models/Credentials.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Credentials.scala -------------------------------------------------------------------------------- /app/models/CurationObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/CurationObject.scala -------------------------------------------------------------------------------- /app/models/DBCounts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/DBCounts.scala -------------------------------------------------------------------------------- /app/models/Dataset.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Dataset.scala -------------------------------------------------------------------------------- /app/models/DatasetXMLMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/DatasetXMLMetadata.scala -------------------------------------------------------------------------------- /app/models/ElasticSearchObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ElasticSearchObject.scala -------------------------------------------------------------------------------- /app/models/Event.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Event.scala -------------------------------------------------------------------------------- /app/models/Extraction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Extraction.scala -------------------------------------------------------------------------------- /app/models/ExtractionInfoSetUp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ExtractionInfoSetUp.scala -------------------------------------------------------------------------------- /app/models/ExtractionRequests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ExtractionRequests.scala -------------------------------------------------------------------------------- /app/models/ExtractorsForInstance.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ExtractorsForInstance.scala -------------------------------------------------------------------------------- /app/models/ExtractorsForSpace.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ExtractorsForSpace.scala -------------------------------------------------------------------------------- /app/models/File.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/File.scala -------------------------------------------------------------------------------- /app/models/FileLink.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/FileLink.scala -------------------------------------------------------------------------------- /app/models/FileMD.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/FileMD.scala -------------------------------------------------------------------------------- /app/models/FileOP.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/FileOP.scala -------------------------------------------------------------------------------- /app/models/Folder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Folder.scala -------------------------------------------------------------------------------- /app/models/Geometry.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Geometry.scala -------------------------------------------------------------------------------- /app/models/IncrementCounter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/IncrementCounter.scala -------------------------------------------------------------------------------- /app/models/Institution.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Institution.scala -------------------------------------------------------------------------------- /app/models/JobsScheduler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/JobsScheduler.scala -------------------------------------------------------------------------------- /app/models/LicenseData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/LicenseData.scala -------------------------------------------------------------------------------- /app/models/Logo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Logo.scala -------------------------------------------------------------------------------- /app/models/Metadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Metadata.scala -------------------------------------------------------------------------------- /app/models/MetadataDefinition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/MetadataDefinition.scala -------------------------------------------------------------------------------- /app/models/MiniEntity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/MiniEntity.scala -------------------------------------------------------------------------------- /app/models/MultimediaFeatures.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/MultimediaFeatures.scala -------------------------------------------------------------------------------- /app/models/Pager.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Pager.scala -------------------------------------------------------------------------------- /app/models/Preview.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Preview.scala -------------------------------------------------------------------------------- /app/models/PreviewFilesSearchResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/PreviewFilesSearchResult.scala -------------------------------------------------------------------------------- /app/models/Previewer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Previewer.scala -------------------------------------------------------------------------------- /app/models/Project.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Project.scala -------------------------------------------------------------------------------- /app/models/QueuedAction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/QueuedAction.scala -------------------------------------------------------------------------------- /app/models/Relation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Relation.scala -------------------------------------------------------------------------------- /app/models/RequestResource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/RequestResource.scala -------------------------------------------------------------------------------- /app/models/ResourceRef.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ResourceRef.scala -------------------------------------------------------------------------------- /app/models/ResourceType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ResourceType.scala -------------------------------------------------------------------------------- /app/models/Role.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Role.scala -------------------------------------------------------------------------------- /app/models/SearchResults.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/SearchResults.scala -------------------------------------------------------------------------------- /app/models/Section.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Section.scala -------------------------------------------------------------------------------- /app/models/SectionIndexInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/SectionIndexInfo.scala -------------------------------------------------------------------------------- /app/models/Selected.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Selected.scala -------------------------------------------------------------------------------- /app/models/ServerStartTime.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ServerStartTime.scala -------------------------------------------------------------------------------- /app/models/Space.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Space.scala -------------------------------------------------------------------------------- /app/models/StandardVocab.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/StandardVocab.scala -------------------------------------------------------------------------------- /app/models/Statistic.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Statistic.scala -------------------------------------------------------------------------------- /app/models/Stream.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Stream.scala -------------------------------------------------------------------------------- /app/models/Tag.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Tag.scala -------------------------------------------------------------------------------- /app/models/TempFile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/TempFile.scala -------------------------------------------------------------------------------- /app/models/ThreeDAnnotation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ThreeDAnnotation.scala -------------------------------------------------------------------------------- /app/models/ThreeDTexture.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/ThreeDTexture.scala -------------------------------------------------------------------------------- /app/models/Thumbnail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Thumbnail.scala -------------------------------------------------------------------------------- /app/models/Tile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Tile.scala -------------------------------------------------------------------------------- /app/models/TimerJob.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/TimerJob.scala -------------------------------------------------------------------------------- /app/models/TypedID.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/TypedID.scala -------------------------------------------------------------------------------- /app/models/UUID.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/UUID.scala -------------------------------------------------------------------------------- /app/models/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/User.scala -------------------------------------------------------------------------------- /app/models/UserSpaceAndRole.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/UserSpaceAndRole.scala -------------------------------------------------------------------------------- /app/models/VersusExtraction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/VersusExtraction.scala -------------------------------------------------------------------------------- /app/models/VersusIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/VersusIndex.scala -------------------------------------------------------------------------------- /app/models/VersusIndexTypeName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/VersusIndexTypeName.scala -------------------------------------------------------------------------------- /app/models/VersusSimilarityResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/VersusSimilarityResult.scala -------------------------------------------------------------------------------- /app/models/Vocabulary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/Vocabulary.scala -------------------------------------------------------------------------------- /app/models/VocabularyTerm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/VocabularyTerm.scala -------------------------------------------------------------------------------- /app/models/WebPageResource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/models/WebPageResource.scala -------------------------------------------------------------------------------- /app/services/AdminsNotifierPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/AdminsNotifierPlugin.scala -------------------------------------------------------------------------------- /app/services/AppConfigurationService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/AppConfigurationService.scala -------------------------------------------------------------------------------- /app/services/ByteStorageService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ByteStorageService.scala -------------------------------------------------------------------------------- /app/services/CILogonProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/CILogonProvider.scala -------------------------------------------------------------------------------- /app/services/CollectionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/CollectionService.scala -------------------------------------------------------------------------------- /app/services/CommentService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/CommentService.scala -------------------------------------------------------------------------------- /app/services/ContextLDService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ContextLDService.scala -------------------------------------------------------------------------------- /app/services/CrowdProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/CrowdProvider.scala -------------------------------------------------------------------------------- /app/services/CurationService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/CurationService.scala -------------------------------------------------------------------------------- /app/services/DI.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/DI.scala -------------------------------------------------------------------------------- /app/services/DatasetService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/DatasetService.scala -------------------------------------------------------------------------------- /app/services/DatasetsAutodumpService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/DatasetsAutodumpService.scala -------------------------------------------------------------------------------- /app/services/ElasticsearchPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ElasticsearchPlugin.scala -------------------------------------------------------------------------------- /app/services/EventService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/EventService.scala -------------------------------------------------------------------------------- /app/services/EventSinkService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/EventSinkService.scala -------------------------------------------------------------------------------- /app/services/ExtractionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ExtractionService.scala -------------------------------------------------------------------------------- /app/services/ExtractorRoutingService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ExtractorRoutingService.scala -------------------------------------------------------------------------------- /app/services/ExtractorService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ExtractorService.scala -------------------------------------------------------------------------------- /app/services/FileDumpService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/FileDumpService.scala -------------------------------------------------------------------------------- /app/services/FileLinkService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/FileLinkService.scala -------------------------------------------------------------------------------- /app/services/FileService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/FileService.scala -------------------------------------------------------------------------------- /app/services/FolderService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/FolderService.scala -------------------------------------------------------------------------------- /app/services/GraylogService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/GraylogService.scala -------------------------------------------------------------------------------- /app/services/InstitutionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/InstitutionService.scala -------------------------------------------------------------------------------- /app/services/KeycloakProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/KeycloakProvider.scala -------------------------------------------------------------------------------- /app/services/LdapProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/LdapProvider.scala -------------------------------------------------------------------------------- /app/services/LogService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/LogService.scala -------------------------------------------------------------------------------- /app/services/LogoService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/LogoService.scala -------------------------------------------------------------------------------- /app/services/MailerPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/MailerPlugin.scala -------------------------------------------------------------------------------- /app/services/MessageService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/MessageService.scala -------------------------------------------------------------------------------- /app/services/MetadataService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/MetadataService.scala -------------------------------------------------------------------------------- /app/services/MultimediaQueryService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/MultimediaQueryService.scala -------------------------------------------------------------------------------- /app/services/ORCIDProvider.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ORCIDProvider.scala -------------------------------------------------------------------------------- /app/services/PolyglotPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/PolyglotPlugin.scala -------------------------------------------------------------------------------- /app/services/PostgresPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/PostgresPlugin.scala -------------------------------------------------------------------------------- /app/services/PreviewService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/PreviewService.scala -------------------------------------------------------------------------------- /app/services/ProjectService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ProjectService.scala -------------------------------------------------------------------------------- /app/services/RDFExportService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/RDFExportService.scala -------------------------------------------------------------------------------- /app/services/RDFExporterPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/RDFExporterPlugin.scala -------------------------------------------------------------------------------- /app/services/RDFUpdateService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/RDFUpdateService.scala -------------------------------------------------------------------------------- /app/services/RdfSPARQLService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/RdfSPARQLService.scala -------------------------------------------------------------------------------- /app/services/RelationService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/RelationService.scala -------------------------------------------------------------------------------- /app/services/SchedulerService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SchedulerService.scala -------------------------------------------------------------------------------- /app/services/SectionIndexInfoService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SectionIndexInfoService.scala -------------------------------------------------------------------------------- /app/services/SectionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SectionService.scala -------------------------------------------------------------------------------- /app/services/SelectionService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SelectionService.scala -------------------------------------------------------------------------------- /app/services/SpaceCopyPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SpaceCopyPlugin.scala -------------------------------------------------------------------------------- /app/services/SpaceService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SpaceService.scala -------------------------------------------------------------------------------- /app/services/SpaceSharingPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/SpaceSharingPlugin.scala -------------------------------------------------------------------------------- /app/services/StagingAreaPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/StagingAreaPlugin.scala -------------------------------------------------------------------------------- /app/services/TagService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/TagService.scala -------------------------------------------------------------------------------- /app/services/TempFileService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/TempFileService.scala -------------------------------------------------------------------------------- /app/services/TempFilesPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/TempFilesPlugin.scala -------------------------------------------------------------------------------- /app/services/ThreeDService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ThreeDService.scala -------------------------------------------------------------------------------- /app/services/ThumbnailService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ThumbnailService.scala -------------------------------------------------------------------------------- /app/services/TileService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/TileService.scala -------------------------------------------------------------------------------- /app/services/ToolManagerPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/ToolManagerPlugin.scala -------------------------------------------------------------------------------- /app/services/TreeService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/TreeService.scala -------------------------------------------------------------------------------- /app/services/UserService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/UserService.scala -------------------------------------------------------------------------------- /app/services/VersusPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/VersusPlugin.scala -------------------------------------------------------------------------------- /app/services/VocabularyService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/VocabularyService.scala -------------------------------------------------------------------------------- /app/services/VocabularyTermService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/VocabularyTermService.scala -------------------------------------------------------------------------------- /app/services/mongodb/MongoContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/mongodb/MongoContext.scala -------------------------------------------------------------------------------- /app/services/mongodb/MongoSalatPlugin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/mongodb/MongoSalatPlugin.scala -------------------------------------------------------------------------------- /app/services/mongodb/MongoUserService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/mongodb/MongoUserService.scala -------------------------------------------------------------------------------- /app/services/mongodb/SocialUserDAO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/mongodb/SocialUserDAO.scala -------------------------------------------------------------------------------- /app/services/mongodb/TypedIdDAO.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/mongodb/TypedIdDAO.scala -------------------------------------------------------------------------------- /app/services/s3/S3ByteStorageService.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/services/s3/S3ByteStorageService.scala -------------------------------------------------------------------------------- /app/util/Direction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/Direction.scala -------------------------------------------------------------------------------- /app/util/DistancePriorityQueue.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/DistancePriorityQueue.scala -------------------------------------------------------------------------------- /app/util/FileUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/FileUtils.scala -------------------------------------------------------------------------------- /app/util/Formatters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/Formatters.scala -------------------------------------------------------------------------------- /app/util/GravatarUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/GravatarUtils.scala -------------------------------------------------------------------------------- /app/util/JSONLD.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/JSONLD.scala -------------------------------------------------------------------------------- /app/util/License.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/License.scala -------------------------------------------------------------------------------- /app/util/Mail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/Mail.scala -------------------------------------------------------------------------------- /app/util/MultimediaIndex.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/MultimediaIndex.scala -------------------------------------------------------------------------------- /app/util/Parsers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/Parsers.scala -------------------------------------------------------------------------------- /app/util/PeekIterator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/PeekIterator.scala -------------------------------------------------------------------------------- /app/util/Publications.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/Publications.scala -------------------------------------------------------------------------------- /app/util/RequestUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/RequestUtils.scala -------------------------------------------------------------------------------- /app/util/RequiredFieldsConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/RequiredFieldsConfig.scala -------------------------------------------------------------------------------- /app/util/ResourceLister.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/ResourceLister.scala -------------------------------------------------------------------------------- /app/util/SearchUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/SearchUtils.scala -------------------------------------------------------------------------------- /app/util/SortingUtils.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/SortingUtils.scala -------------------------------------------------------------------------------- /app/util/SpaceConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/SpaceConfig.scala -------------------------------------------------------------------------------- /app/util/StreamGobbler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/StreamGobbler.java -------------------------------------------------------------------------------- /app/util/UploadFileWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/util/UploadFileWorker.java -------------------------------------------------------------------------------- /app/views/JSConsole.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/JSConsole.scala.html -------------------------------------------------------------------------------- /app/views/admin/customize.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/admin/customize.scala.html -------------------------------------------------------------------------------- /app/views/admin/tos.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/admin/tos.scala.html -------------------------------------------------------------------------------- /app/views/admin/users.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/admin/users.scala.html -------------------------------------------------------------------------------- /app/views/adminIndex.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/adminIndex.scala.html -------------------------------------------------------------------------------- /app/views/advancedsearch.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/advancedsearch.scala.html -------------------------------------------------------------------------------- /app/views/authorizationMessage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/authorizationMessage.scala.html -------------------------------------------------------------------------------- /app/views/bookmarklet.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/bookmarklet.scala.html -------------------------------------------------------------------------------- /app/views/bootstrap3/checkboxes.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/bootstrap3/checkboxes.scala.html -------------------------------------------------------------------------------- /app/views/carousel.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/carousel.scala.html -------------------------------------------------------------------------------- /app/views/collectionList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collectionList.scala.html -------------------------------------------------------------------------------- /app/views/collectionPreviews.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collectionPreviews.scala.html -------------------------------------------------------------------------------- /app/views/collectionofdatasets.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collectionofdatasets.scala.html -------------------------------------------------------------------------------- /app/views/collections/listitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collections/listitem.scala.html -------------------------------------------------------------------------------- /app/views/collections/miniList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collections/miniList.scala.html -------------------------------------------------------------------------------- /app/views/collections/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collections/tile.scala.html -------------------------------------------------------------------------------- /app/views/collections/users.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/collections/users.scala.html -------------------------------------------------------------------------------- /app/views/comment.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/comment.scala.html -------------------------------------------------------------------------------- /app/views/commentform.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/commentform.scala.html -------------------------------------------------------------------------------- /app/views/curationObjectList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/curationObjectList.scala.html -------------------------------------------------------------------------------- /app/views/curations/listFolder.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/curations/listFolder.scala.html -------------------------------------------------------------------------------- /app/views/curations/listitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/curations/listitem.scala.html -------------------------------------------------------------------------------- /app/views/curations/newCuration.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/curations/newCuration.scala.html -------------------------------------------------------------------------------- /app/views/curations/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/curations/tile.scala.html -------------------------------------------------------------------------------- /app/views/dataset.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/dataset.scala.html -------------------------------------------------------------------------------- /app/views/datasetInfo.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasetInfo.scala.html -------------------------------------------------------------------------------- /app/views/datasetList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasetList.scala.html -------------------------------------------------------------------------------- /app/views/datasets/addFiles.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/addFiles.scala.html -------------------------------------------------------------------------------- /app/views/datasets/collections.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/collections.scala.html -------------------------------------------------------------------------------- /app/views/datasets/create.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/create.scala.html -------------------------------------------------------------------------------- /app/views/datasets/createStep2.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/createStep2.scala.html -------------------------------------------------------------------------------- /app/views/datasets/deleteButton.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/deleteButton.scala.html -------------------------------------------------------------------------------- /app/views/datasets/download.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/download.scala.html -------------------------------------------------------------------------------- /app/views/datasets/editInfo.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/editInfo.scala.html -------------------------------------------------------------------------------- /app/views/datasets/editLicense.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/editLicense.scala.html -------------------------------------------------------------------------------- /app/views/datasets/follow.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/follow.scala.html -------------------------------------------------------------------------------- /app/views/datasets/listitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/listitem.scala.html -------------------------------------------------------------------------------- /app/views/datasets/miniList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/miniList.scala.html -------------------------------------------------------------------------------- /app/views/datasets/previews.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/previews.scala.html -------------------------------------------------------------------------------- /app/views/datasets/restoreButton.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/restoreButton.scala.html -------------------------------------------------------------------------------- /app/views/datasets/tags.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/tags.scala.html -------------------------------------------------------------------------------- /app/views/datasets/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/tile.scala.html -------------------------------------------------------------------------------- /app/views/datasets/tools.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/tools.scala.html -------------------------------------------------------------------------------- /app/views/datasets/uploadFiles.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/uploadFiles.scala.html -------------------------------------------------------------------------------- /app/views/datasets/userLink.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/userLink.scala.html -------------------------------------------------------------------------------- /app/views/datasets/users.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasets/users.scala.html -------------------------------------------------------------------------------- /app/views/datasetsContainingFile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/datasetsContainingFile.scala.html -------------------------------------------------------------------------------- /app/views/dtsExtension.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/dtsExtension.scala.html -------------------------------------------------------------------------------- /app/views/dtsbookmarklet.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/dtsbookmarklet.scala.html -------------------------------------------------------------------------------- /app/views/editProfile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/editProfile.scala.html -------------------------------------------------------------------------------- /app/views/emailAdmin.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/emailAdmin.scala.html -------------------------------------------------------------------------------- /app/views/emailEvents.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/emailEvents.scala.html -------------------------------------------------------------------------------- /app/views/emails/footer.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/emails/footer.scala.html -------------------------------------------------------------------------------- /app/views/emails/userChanged.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/emails/userChanged.scala.html -------------------------------------------------------------------------------- /app/views/emails/userSignup.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/emails/userSignup.scala.html -------------------------------------------------------------------------------- /app/views/error/accountNotActive.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/error/accountNotActive.scala.html -------------------------------------------------------------------------------- /app/views/errorPage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/errorPage.scala.html -------------------------------------------------------------------------------- /app/views/eventsList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/eventsList.scala.html -------------------------------------------------------------------------------- /app/views/extract.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extract.scala.html -------------------------------------------------------------------------------- /app/views/extractionRequests.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractionRequests.scala.html -------------------------------------------------------------------------------- /app/views/extractorDetails.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorDetails.scala.html -------------------------------------------------------------------------------- /app/views/extractorJobHistory.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorJobHistory.scala.html -------------------------------------------------------------------------------- /app/views/extractorLabels.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorLabels.scala.html -------------------------------------------------------------------------------- /app/views/extractorLog.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorLog.scala.html -------------------------------------------------------------------------------- /app/views/extractorMetrics.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorMetrics.scala.html -------------------------------------------------------------------------------- /app/views/extractors.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractors.scala.html -------------------------------------------------------------------------------- /app/views/extractorsInputTypes.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorsInputTypes.scala.html -------------------------------------------------------------------------------- /app/views/extractorsServersIP.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/extractorsServersIP.scala.html -------------------------------------------------------------------------------- /app/views/file.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/file.scala.html -------------------------------------------------------------------------------- /app/views/fileMetadataSearch.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/fileMetadataSearch.scala.html -------------------------------------------------------------------------------- /app/views/files/grid.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/files/grid.scala.html -------------------------------------------------------------------------------- /app/views/files/linkDownload.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/files/linkDownload.scala.html -------------------------------------------------------------------------------- /app/views/files/listitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/files/listitem.scala.html -------------------------------------------------------------------------------- /app/views/files/share.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/files/share.scala.html -------------------------------------------------------------------------------- /app/views/files/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/files/tile.scala.html -------------------------------------------------------------------------------- /app/views/filesList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/filesList.scala.html -------------------------------------------------------------------------------- /app/views/fileusermetadata.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/fileusermetadata.scala.html -------------------------------------------------------------------------------- /app/views/folders/listitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/folders/listitem.scala.html -------------------------------------------------------------------------------- /app/views/generalMetadataSearch.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/generalMetadataSearch.scala.html -------------------------------------------------------------------------------- /app/views/geostreams/create.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/geostreams/create.scala.html -------------------------------------------------------------------------------- /app/views/geostreams/edit.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/geostreams/edit.scala.html -------------------------------------------------------------------------------- /app/views/geostreams/list.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/geostreams/list.scala.html -------------------------------------------------------------------------------- /app/views/geostreams/map.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/geostreams/map.scala.html -------------------------------------------------------------------------------- /app/views/geostreams/sensor.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/geostreams/sensor.scala.html -------------------------------------------------------------------------------- /app/views/home.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/home.scala.html -------------------------------------------------------------------------------- /app/views/imageSearchpage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/imageSearchpage.scala.html -------------------------------------------------------------------------------- /app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/index.scala.html -------------------------------------------------------------------------------- /app/views/inviteThroughEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/inviteThroughEmail.scala.html -------------------------------------------------------------------------------- /app/views/licenseform.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/licenseform.scala.html -------------------------------------------------------------------------------- /app/views/listAllExtractions.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/listAllExtractions.scala.html -------------------------------------------------------------------------------- /app/views/logoSelect.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/logoSelect.scala.html -------------------------------------------------------------------------------- /app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/main.scala.html -------------------------------------------------------------------------------- /app/views/metadata.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadata.scala.html -------------------------------------------------------------------------------- /app/views/metadataSearch.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadataSearch.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/addMetadata.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/addMetadata.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/newCard.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/newCard.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/newTableRow.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/newTableRow.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/search.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/search.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/view.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/view.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/viewDataset.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/viewDataset.scala.html -------------------------------------------------------------------------------- /app/views/metadatald/viewFile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/metadatald/viewFile.scala.html -------------------------------------------------------------------------------- /app/views/multimediaIndexResults.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/multimediaIndexResults.scala.html -------------------------------------------------------------------------------- /app/views/multimediasearch.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/multimediasearch.scala.html -------------------------------------------------------------------------------- /app/views/newCollection.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/newCollection.scala.html -------------------------------------------------------------------------------- /app/views/newsFeedCardEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/newsFeedCardEmail.scala.html -------------------------------------------------------------------------------- /app/views/newsfeedCard.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/newsfeedCard.scala.html -------------------------------------------------------------------------------- /app/views/noPermissions.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/noPermissions.scala.html -------------------------------------------------------------------------------- /app/views/notAuthorized.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/notAuthorized.scala.html -------------------------------------------------------------------------------- /app/views/notFound.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/notFound.scala.html -------------------------------------------------------------------------------- /app/views/playMode.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/playMode.scala.html -------------------------------------------------------------------------------- /app/views/pluginNotEnabled.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/pluginNotEnabled.scala.html -------------------------------------------------------------------------------- /app/views/previewers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/previewers.scala.html -------------------------------------------------------------------------------- /app/views/profile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/profile.scala.html -------------------------------------------------------------------------------- /app/views/relations/list.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/relations/list.scala.html -------------------------------------------------------------------------------- /app/views/roles/createRole.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/roles/createRole.scala.html -------------------------------------------------------------------------------- /app/views/roles/editRole.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/roles/editRole.scala.html -------------------------------------------------------------------------------- /app/views/roles/listRoles.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/roles/listRoles.scala.html -------------------------------------------------------------------------------- /app/views/searchImgResults.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/searchImgResults.scala.html -------------------------------------------------------------------------------- /app/views/searchMultimediaIndex.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/searchMultimediaIndex.scala.html -------------------------------------------------------------------------------- /app/views/searchResults.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/searchResults.scala.html -------------------------------------------------------------------------------- /app/views/searchTextResults.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/searchTextResults.scala.html -------------------------------------------------------------------------------- /app/views/selectDataset.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/selectDataset.scala.html -------------------------------------------------------------------------------- /app/views/selected.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/selected.scala.html -------------------------------------------------------------------------------- /app/views/sensors/admin.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/sensors/admin.scala.html -------------------------------------------------------------------------------- /app/views/sensors/relatedSensors.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/sensors/relatedSensors.scala.html -------------------------------------------------------------------------------- /app/views/spaces/access.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/access.scala.html -------------------------------------------------------------------------------- /app/views/spaces/collectionsGrid.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/collectionsGrid.scala.html -------------------------------------------------------------------------------- /app/views/spaces/createButton.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/createButton.scala.html -------------------------------------------------------------------------------- /app/views/spaces/curationObject.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/curationObject.scala.html -------------------------------------------------------------------------------- /app/views/spaces/curationSummary.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/curationSummary.scala.html -------------------------------------------------------------------------------- /app/views/spaces/datasetsBySpace.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/datasetsBySpace.scala.html -------------------------------------------------------------------------------- /app/views/spaces/datasetsGrid.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/datasetsGrid.scala.html -------------------------------------------------------------------------------- /app/views/spaces/datasetsTable.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/datasetsTable.scala.html -------------------------------------------------------------------------------- /app/views/spaces/editSpace.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/editSpace.scala.html -------------------------------------------------------------------------------- /app/views/spaces/editUsers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/editUsers.scala.html -------------------------------------------------------------------------------- /app/views/spaces/externalLinks.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/externalLinks.scala.html -------------------------------------------------------------------------------- /app/views/spaces/follow.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/follow.scala.html -------------------------------------------------------------------------------- /app/views/spaces/invite.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/invite.scala.html -------------------------------------------------------------------------------- /app/views/spaces/listItem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/listItem.scala.html -------------------------------------------------------------------------------- /app/views/spaces/listSpaces.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/listSpaces.scala.html -------------------------------------------------------------------------------- /app/views/spaces/miniList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/miniList.scala.html -------------------------------------------------------------------------------- /app/views/spaces/newEditTemplate.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/newEditTemplate.scala.html -------------------------------------------------------------------------------- /app/views/spaces/newSpace.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/newSpace.scala.html -------------------------------------------------------------------------------- /app/views/spaces/otherActions.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/otherActions.scala.html -------------------------------------------------------------------------------- /app/views/spaces/requestemail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/requestemail.scala.html -------------------------------------------------------------------------------- /app/views/spaces/space.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/space.scala.html -------------------------------------------------------------------------------- /app/views/spaces/spaceAllocation.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/spaceAllocation.scala.html -------------------------------------------------------------------------------- /app/views/spaces/spaceSelect.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/spaceSelect.scala.html -------------------------------------------------------------------------------- /app/views/spaces/stagingarea.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/stagingarea.scala.html -------------------------------------------------------------------------------- /app/views/spaces/statistics.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/statistics.scala.html -------------------------------------------------------------------------------- /app/views/spaces/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/tile.scala.html -------------------------------------------------------------------------------- /app/views/spaces/updateButton.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/updateButton.scala.html -------------------------------------------------------------------------------- /app/views/spaces/users.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/spaces/users.scala.html -------------------------------------------------------------------------------- /app/views/ss/Registration/signUp.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/Registration/signUp.scala.html -------------------------------------------------------------------------------- /app/views/ss/ldap.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/ldap.scala.html -------------------------------------------------------------------------------- /app/views/ss/login.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/login.scala.html -------------------------------------------------------------------------------- /app/views/ss/mails/signUpEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/mails/signUpEmail.scala.html -------------------------------------------------------------------------------- /app/views/ss/mails/welcomeEmail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/mails/welcomeEmail.scala.html -------------------------------------------------------------------------------- /app/views/ss/provider.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/ss/provider.scala.html -------------------------------------------------------------------------------- /app/views/tagList.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/tagList.scala.html -------------------------------------------------------------------------------- /app/views/tagListChar.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/tagListChar.scala.html -------------------------------------------------------------------------------- /app/views/toolManager.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/toolManager.scala.html -------------------------------------------------------------------------------- /app/views/tos.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/tos.scala.html -------------------------------------------------------------------------------- /app/views/twitterBootstrapInput.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/twitterBootstrapInput.scala.html -------------------------------------------------------------------------------- /app/views/updateExtractors.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/updateExtractors.scala.html -------------------------------------------------------------------------------- /app/views/upload.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/upload.scala.html -------------------------------------------------------------------------------- /app/views/uploadExtract.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/uploadExtract.scala.html -------------------------------------------------------------------------------- /app/views/users/followers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/followers.scala.html -------------------------------------------------------------------------------- /app/views/users/followingFiles.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/followingFiles.scala.html -------------------------------------------------------------------------------- /app/views/users/followingSpaces.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/followingSpaces.scala.html -------------------------------------------------------------------------------- /app/views/users/followingUsers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/followingUsers.scala.html -------------------------------------------------------------------------------- /app/views/users/listUsers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/listUsers.scala.html -------------------------------------------------------------------------------- /app/views/users/tile.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/users/tile.scala.html -------------------------------------------------------------------------------- /app/views/util/masonry.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/util/masonry.scala.html -------------------------------------------------------------------------------- /app/views/util/masonryTabbed.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/util/masonryTabbed.scala.html -------------------------------------------------------------------------------- /app/views/util/multimasonry.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/util/multimasonry.scala.html -------------------------------------------------------------------------------- /app/views/viewDumpers.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/app/views/viewDumpers.scala.html -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/citation.cff -------------------------------------------------------------------------------- /conf/.gitignore: -------------------------------------------------------------------------------- 1 | /play.plugins 2 | -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/datasetRdfRootNodes.txt: -------------------------------------------------------------------------------- 1 | crm:E19_Physical_Object -------------------------------------------------------------------------------- /conf/datasetUserMetadataRDFMapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/datasetUserMetadataRDFMapping.xml -------------------------------------------------------------------------------- /conf/fileUserMetadataRDFMapping.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/fileUserMetadataRDFMapping.xml -------------------------------------------------------------------------------- /conf/logger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/logger.xml -------------------------------------------------------------------------------- /conf/messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/messages -------------------------------------------------------------------------------- /conf/mimetypes.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/mimetypes.conf -------------------------------------------------------------------------------- /conf/play.plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/play.plugins -------------------------------------------------------------------------------- /conf/rdfRootNodes.txt: -------------------------------------------------------------------------------- 1 | crm:E19_Physical_Object -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/routes -------------------------------------------------------------------------------- /conf/securesocial.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/conf/securesocial.conf -------------------------------------------------------------------------------- /doc/src/sphinx/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ -------------------------------------------------------------------------------- /doc/src/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/Makefile -------------------------------------------------------------------------------- /doc/src/sphinx/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/Pipfile -------------------------------------------------------------------------------- /doc/src/sphinx/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/Pipfile.lock -------------------------------------------------------------------------------- /doc/src/sphinx/_static/architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/architecture.jpg -------------------------------------------------------------------------------- /doc/src/sphinx/_static/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/architecture.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/css/custom.css -------------------------------------------------------------------------------- /doc/src/sphinx/_static/data-model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/data-model.jpg -------------------------------------------------------------------------------- /doc/src/sphinx/_static/data-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/data-model.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/datamodel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/datamodel.jpg -------------------------------------------------------------------------------- /doc/src/sphinx/_static/dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/dataset.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/extraction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/extraction.jpg -------------------------------------------------------------------------------- /doc/src/sphinx/_static/geostreaming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/geostreaming.jpg -------------------------------------------------------------------------------- /doc/src/sphinx/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/logo.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/logos_ncsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/logos_ncsa.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-homepage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-homepage-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-10.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-11.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-4.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-5.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-6.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-7.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-8.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug-signingup-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug-signingup-9.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_collections-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_collections-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_collections-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_collections-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_collections-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_collections-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-10.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-11.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-12.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-13.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-14.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-15.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-16.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-17.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-18.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-19.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-20.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-21.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-22.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-23.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-24.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-25.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-26.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-4.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-5.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-6.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-7.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-8.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_datasets-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_datasets-9.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-4.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-5.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_following-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_following-6.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_search-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_search-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_search-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_search-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_search-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_search-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-10.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-11.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-12.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-13.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-14.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-15.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-4.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-5.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-6.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-7.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-8.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_spaces-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_spaces-9.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-1.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-2.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-3.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-4.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-5.png -------------------------------------------------------------------------------- /doc/src/sphinx/_static/ug_staging-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/_static/ug_staging-6.png -------------------------------------------------------------------------------- /doc/src/sphinx/admin/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/admin/customizing.rst -------------------------------------------------------------------------------- /doc/src/sphinx/admin/upgrading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/admin/upgrading.rst -------------------------------------------------------------------------------- /doc/src/sphinx/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/api.rst -------------------------------------------------------------------------------- /doc/src/sphinx/changelog.md: -------------------------------------------------------------------------------- 1 | ../../../CHANGELOG.md -------------------------------------------------------------------------------- /doc/src/sphinx/changelog_md_to_rst.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/changelog_md_to_rst.rst -------------------------------------------------------------------------------- /doc/src/sphinx/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/conf.py -------------------------------------------------------------------------------- /doc/src/sphinx/develop/architecture.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/develop/architecture.rst -------------------------------------------------------------------------------- /doc/src/sphinx/develop/extractors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/develop/extractors.rst -------------------------------------------------------------------------------- /doc/src/sphinx/develop/previewers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/develop/previewers.rst -------------------------------------------------------------------------------- /doc/src/sphinx/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/index.rst -------------------------------------------------------------------------------- /doc/src/sphinx/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/license.rst -------------------------------------------------------------------------------- /doc/src/sphinx/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/make.bat -------------------------------------------------------------------------------- /doc/src/sphinx/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/overview.rst -------------------------------------------------------------------------------- /doc/src/sphinx/publishing_data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/publishing_data.rst -------------------------------------------------------------------------------- /doc/src/sphinx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/requirements.txt -------------------------------------------------------------------------------- /doc/src/sphinx/thankyou.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/thankyou.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_datasets.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_datasets.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_following.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_following.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_homepage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_homepage.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_index.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_search.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_signingup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_signingup.rst -------------------------------------------------------------------------------- /doc/src/sphinx/userguide/ug_spaces.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/doc/src/sphinx/userguide/ug_spaces.rst -------------------------------------------------------------------------------- /docker-compose.extractors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker-compose.extractors.yml -------------------------------------------------------------------------------- /docker-compose.geoserver.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker-compose.geoserver.yml -------------------------------------------------------------------------------- /docker-compose.override.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker-compose.override.example.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker.sh -------------------------------------------------------------------------------- /docker/clowder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker/clowder.sh -------------------------------------------------------------------------------- /docker/custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker/custom.conf -------------------------------------------------------------------------------- /docker/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/docker/healthcheck.sh -------------------------------------------------------------------------------- /docker/play.plugins: -------------------------------------------------------------------------------- 1 | 10002:services.ElasticsearchPlugin 2 | -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/env.example -------------------------------------------------------------------------------- /geostream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/geostream.sql -------------------------------------------------------------------------------- /lib/LidoToCidoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/lib/LidoToCidoc.jar -------------------------------------------------------------------------------- /lib/URIpolicies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/lib/URIpolicies.jar -------------------------------------------------------------------------------- /lib/lsva-features.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/lib/lsva-features.jar -------------------------------------------------------------------------------- /lib/swkmmodel2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/lib/swkmmodel2.jar -------------------------------------------------------------------------------- /project/Build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/project/Build.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=0.13.6 2 | -------------------------------------------------------------------------------- /project/medici-play-build.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/project/medici-play-build.iml -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /public/images/cc-by-nc-nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by-nc-nd.png -------------------------------------------------------------------------------- /public/images/cc-by-nc-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by-nc-sa.png -------------------------------------------------------------------------------- /public/images/cc-by-nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by-nc.png -------------------------------------------------------------------------------- /public/images/cc-by-nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by-nd.png -------------------------------------------------------------------------------- /public/images/cc-by-sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by-sa.png -------------------------------------------------------------------------------- /public/images/cc-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-by.png -------------------------------------------------------------------------------- /public/images/cc-pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/cc-pd.png -------------------------------------------------------------------------------- /public/images/chosen-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/chosen-sprite.png -------------------------------------------------------------------------------- /public/images/chosen-sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/chosen-sprite@2x.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/images/json-ld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/json-ld.png -------------------------------------------------------------------------------- /public/images/logo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/logo_60.png -------------------------------------------------------------------------------- /public/images/logo_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/logo_sm.png -------------------------------------------------------------------------------- /public/images/texture_metal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/images/texture_metal.jpg -------------------------------------------------------------------------------- /public/javascripts/adminIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/adminIndex.js -------------------------------------------------------------------------------- /public/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /public/javascripts/chosen.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/chosen.jquery.js -------------------------------------------------------------------------------- /public/javascripts/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/clipboard.js -------------------------------------------------------------------------------- /public/javascripts/collection-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/collection-create.js -------------------------------------------------------------------------------- /public/javascripts/collectionModify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/collectionModify.js -------------------------------------------------------------------------------- /public/javascripts/combobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/combobox.js -------------------------------------------------------------------------------- /public/javascripts/comment-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/comment-delete.js -------------------------------------------------------------------------------- /public/javascripts/comment-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/comment-edit.js -------------------------------------------------------------------------------- /public/javascripts/creators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/creators.js -------------------------------------------------------------------------------- /public/javascripts/curation-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/curation-create.js -------------------------------------------------------------------------------- /public/javascripts/curationProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/curationProcess.js -------------------------------------------------------------------------------- /public/javascripts/d3js/d3.legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/d3js/d3.legend.js -------------------------------------------------------------------------------- /public/javascripts/d3js/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/d3js/d3.v3.min.js -------------------------------------------------------------------------------- /public/javascripts/datasetListProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/datasetListProcess.js -------------------------------------------------------------------------------- /public/javascripts/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/deflate.js -------------------------------------------------------------------------------- /public/javascripts/deleteUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/deleteUtils.js -------------------------------------------------------------------------------- /public/javascripts/descriptionSummary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/descriptionSummary.js -------------------------------------------------------------------------------- /public/javascripts/displayPanels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/displayPanels.js -------------------------------------------------------------------------------- /public/javascripts/errorRedirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/errorRedirect.js -------------------------------------------------------------------------------- /public/javascripts/file-browser/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/file-browser/app.js -------------------------------------------------------------------------------- /public/javascripts/file-browser/fileBrowser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/javascripts/file-uploader/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/file-uploader/app.js -------------------------------------------------------------------------------- /public/javascripts/file-uploader/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/file-uploader/main.js -------------------------------------------------------------------------------- /public/javascripts/fileListProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/fileListProcess.js -------------------------------------------------------------------------------- /public/javascripts/files/datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/files/datasets.js -------------------------------------------------------------------------------- /public/javascripts/files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/files/main.js -------------------------------------------------------------------------------- /public/javascripts/filtrify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/filtrify.js -------------------------------------------------------------------------------- /public/javascripts/folderListProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/folderListProcess.js -------------------------------------------------------------------------------- /public/javascripts/follow-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/follow-button.js -------------------------------------------------------------------------------- /public/javascripts/galleria-1.2.9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/galleria-1.2.9.js -------------------------------------------------------------------------------- /public/javascripts/handlebars-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/handlebars-loader.js -------------------------------------------------------------------------------- /public/javascripts/handlebars-v1.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/handlebars-v1.3.0.js -------------------------------------------------------------------------------- /public/javascripts/htmlEncodeDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/htmlEncodeDecode.js -------------------------------------------------------------------------------- /public/javascripts/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/images/layers-2x.png -------------------------------------------------------------------------------- /public/javascripts/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/images/layers.png -------------------------------------------------------------------------------- /public/javascripts/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/images/marker-icon.png -------------------------------------------------------------------------------- /public/javascripts/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/inflate.js -------------------------------------------------------------------------------- /public/javascripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /public/javascripts/jquery-1.8.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery-1.8.2.js -------------------------------------------------------------------------------- /public/javascripts/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /public/javascripts/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery.cookie.js -------------------------------------------------------------------------------- /public/javascripts/jquery.tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery.tablesorter.js -------------------------------------------------------------------------------- /public/javascripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jquery.validate.js -------------------------------------------------------------------------------- /public/javascripts/jstree/jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jstree/jstree.js -------------------------------------------------------------------------------- /public/javascripts/jstree/jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/jstree/jstree.min.js -------------------------------------------------------------------------------- /public/javascripts/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/leaflet-src.js -------------------------------------------------------------------------------- /public/javascripts/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/leaflet.js -------------------------------------------------------------------------------- /public/javascripts/lib/backbone-0.9.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/lib/backbone-0.9.2.js -------------------------------------------------------------------------------- /public/javascripts/lib/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/lib/json2.js -------------------------------------------------------------------------------- /public/javascripts/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/loader.gif -------------------------------------------------------------------------------- /public/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/main.js -------------------------------------------------------------------------------- /public/javascripts/manageAdmins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/manageAdmins.js -------------------------------------------------------------------------------- /public/javascripts/manageRoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/manageRoles.js -------------------------------------------------------------------------------- /public/javascripts/maxlength.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/maxlength.min.js -------------------------------------------------------------------------------- /public/javascripts/noty/jquery.noty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/jquery.noty.js -------------------------------------------------------------------------------- /public/javascripts/noty/layouts/bottom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/layouts/bottom.js -------------------------------------------------------------------------------- /public/javascripts/noty/layouts/center.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/layouts/center.js -------------------------------------------------------------------------------- /public/javascripts/noty/layouts/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/layouts/inline.js -------------------------------------------------------------------------------- /public/javascripts/noty/layouts/top.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/layouts/top.js -------------------------------------------------------------------------------- /public/javascripts/noty/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/promise.js -------------------------------------------------------------------------------- /public/javascripts/noty/themes/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/themes/default.js -------------------------------------------------------------------------------- /public/javascripts/noty/themes/relax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/noty/themes/relax.js -------------------------------------------------------------------------------- /public/javascripts/openlayers/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/openlayers/ol.css -------------------------------------------------------------------------------- /public/javascripts/openlayers/ol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/openlayers/ol.js -------------------------------------------------------------------------------- /public/javascripts/people.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/people.js -------------------------------------------------------------------------------- /public/javascripts/previewers/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/previewers/main.js -------------------------------------------------------------------------------- /public/javascripts/previewers/pdf/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/previewers/pdf/pdf.js -------------------------------------------------------------------------------- /public/javascripts/previews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/previews.js -------------------------------------------------------------------------------- /public/javascripts/recommendation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/recommendation.js -------------------------------------------------------------------------------- /public/javascripts/repositories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/repositories.js -------------------------------------------------------------------------------- /public/javascripts/searchUserMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/searchUserMetadata.js -------------------------------------------------------------------------------- /public/javascripts/sectionsListProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/sectionsListProcess.js -------------------------------------------------------------------------------- /public/javascripts/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/select2.min.js -------------------------------------------------------------------------------- /public/javascripts/sensors/assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/sensors/assign.js -------------------------------------------------------------------------------- /public/javascripts/spaceListProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/spaceListProcess.js -------------------------------------------------------------------------------- /public/javascripts/spaceModify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/spaceModify.js -------------------------------------------------------------------------------- /public/javascripts/spaceconfiguration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/spaceconfiguration.js -------------------------------------------------------------------------------- /public/javascripts/spin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/spin.min.js -------------------------------------------------------------------------------- /public/javascripts/stickytabs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/stickytabs/LICENSE -------------------------------------------------------------------------------- /public/javascripts/tabsInURL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/tabsInURL.js -------------------------------------------------------------------------------- /public/javascripts/textUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/textUtils.js -------------------------------------------------------------------------------- /public/javascripts/updateLicenseInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/updateLicenseInfo.js -------------------------------------------------------------------------------- /public/javascripts/userMetadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/userMetadata.js -------------------------------------------------------------------------------- /public/javascripts/x3dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/x3dom.js -------------------------------------------------------------------------------- /public/javascripts/z-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/z-worker.js -------------------------------------------------------------------------------- /public/javascripts/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/javascripts/zip.js -------------------------------------------------------------------------------- /public/jsonld/contexts/extractors.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/jsonld/contexts/extractors.jsonld -------------------------------------------------------------------------------- /public/jsonld/contexts/metadata.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/jsonld/contexts/metadata.jsonld -------------------------------------------------------------------------------- /public/plugins/IIPZoom.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/plugins/IIPZoom.swf -------------------------------------------------------------------------------- /public/plugins/envlib.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/plugins/envlib.jar -------------------------------------------------------------------------------- /public/plugins/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/plugins/expressInstall.swf -------------------------------------------------------------------------------- /public/stylesheets/chosen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/chosen.css -------------------------------------------------------------------------------- /public/stylesheets/dragdrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/dragdrop.css -------------------------------------------------------------------------------- /public/stylesheets/dtsstylediv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/dtsstylediv.css -------------------------------------------------------------------------------- /public/stylesheets/extractions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/extractions.css -------------------------------------------------------------------------------- /public/stylesheets/file-uploader/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/file-uploader/demo.css -------------------------------------------------------------------------------- /public/stylesheets/filtrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/filtrify.css -------------------------------------------------------------------------------- /public/stylesheets/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/leaflet.css -------------------------------------------------------------------------------- /public/stylesheets/leaflet.ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/leaflet.ie.css -------------------------------------------------------------------------------- /public/stylesheets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/main.css -------------------------------------------------------------------------------- /public/stylesheets/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/pdf.css -------------------------------------------------------------------------------- /public/stylesheets/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/select2.min.css -------------------------------------------------------------------------------- /public/stylesheets/tableborder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/tableborder.css -------------------------------------------------------------------------------- /public/stylesheets/themes/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/cosmo.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/cyborg.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/cyborg.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/darkly.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/flatly.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/journal.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/lumen.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/paper.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/sead.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/sead.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/simplex.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/slate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/slate.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/united.min.css -------------------------------------------------------------------------------- /public/stylesheets/themes/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/themes/yeti.min.css -------------------------------------------------------------------------------- /public/stylesheets/x3dom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/stylesheets/x3dom.css -------------------------------------------------------------------------------- /public/swagger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/swagger.yml -------------------------------------------------------------------------------- /public/templates/spaces/assign.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/templates/spaces/assign.handlebars -------------------------------------------------------------------------------- /public/tos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/public/tos.txt -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/release.sh -------------------------------------------------------------------------------- /sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/sbt -------------------------------------------------------------------------------- /sbt-launch-lib.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/sbt-launch-lib.bash -------------------------------------------------------------------------------- /sbt-launch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/sbt-launch.jar -------------------------------------------------------------------------------- /sbt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/sbt.bat -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/clean-extractors-tmpfiles/list.txt: -------------------------------------------------------------------------------- 1 | #path,days 2 | -------------------------------------------------------------------------------- /scripts/create-account.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/create-account.sh -------------------------------------------------------------------------------- /scripts/crowd/clowder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/crowd/clowder.php -------------------------------------------------------------------------------- /scripts/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /scripts/exinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/exinfo.py -------------------------------------------------------------------------------- /scripts/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/extract.py -------------------------------------------------------------------------------- /scripts/geostream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/geostream.py -------------------------------------------------------------------------------- /scripts/jmeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/jmeter/README.md -------------------------------------------------------------------------------- /scripts/jmeter/jmeter-clowder.jmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/jmeter/jmeter-clowder.jmx -------------------------------------------------------------------------------- /scripts/jupyter-notebook/spaces.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/jupyter-notebook/spaces.ipynb -------------------------------------------------------------------------------- /scripts/migrates-aws-s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/migrates-aws-s3/Dockerfile -------------------------------------------------------------------------------- /scripts/migrates-aws-s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/migrates-aws-s3/README.md -------------------------------------------------------------------------------- /scripts/migrates-aws-s3/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/migrates-aws-s3/main.py -------------------------------------------------------------------------------- /scripts/migrates-aws-s3/requirements.txt: -------------------------------------------------------------------------------- 1 | pymongo==3.7.2 2 | boto3==1.9.188 3 | s3transfer==0.2.1 4 | -------------------------------------------------------------------------------- /scripts/migrates-aws-s3/s3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/migrates-aws-s3/s3.py -------------------------------------------------------------------------------- /scripts/mongo-exec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongo-exec.sh -------------------------------------------------------------------------------- /scripts/mongo-init/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongo-init/Dockerfile -------------------------------------------------------------------------------- /scripts/mongo-init/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongo-init/README -------------------------------------------------------------------------------- /scripts/mongo-init/mongo-init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongo-init/mongo-init.py -------------------------------------------------------------------------------- /scripts/mongo-init/requirements.txt: -------------------------------------------------------------------------------- 1 | bcrypt==3.1.6 2 | passlib==1.7.1 3 | pymongo==3.8.0 4 | -------------------------------------------------------------------------------- /scripts/mongodb/assign_datasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongodb/assign_datasets.js -------------------------------------------------------------------------------- /scripts/mongodb/check_uploads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongodb/check_uploads.py -------------------------------------------------------------------------------- /scripts/mongodb/migrate_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/mongodb/migrate_users.py -------------------------------------------------------------------------------- /scripts/monitor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/Dockerfile -------------------------------------------------------------------------------- /scripts/monitor/bootstrap-table.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/bootstrap-table.min.css -------------------------------------------------------------------------------- /scripts/monitor/bootstrap-table.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/bootstrap-table.min.js -------------------------------------------------------------------------------- /scripts/monitor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/bootstrap.min.css -------------------------------------------------------------------------------- /scripts/monitor/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/bootstrap.min.js -------------------------------------------------------------------------------- /scripts/monitor/extractors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/extractors.json -------------------------------------------------------------------------------- /scripts/monitor/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/fa-solid-900.woff2 -------------------------------------------------------------------------------- /scripts/monitor/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/favicon.png -------------------------------------------------------------------------------- /scripts/monitor/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/fontawesome.min.css -------------------------------------------------------------------------------- /scripts/monitor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/index.html -------------------------------------------------------------------------------- /scripts/monitor/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /scripts/monitor/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/monitor.py -------------------------------------------------------------------------------- /scripts/monitor/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/popper.min.js -------------------------------------------------------------------------------- /scripts/monitor/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/requirements.txt -------------------------------------------------------------------------------- /scripts/monitor/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/monitor/solid.min.css -------------------------------------------------------------------------------- /scripts/rmq-error-shovel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/rmq-error-shovel/Dockerfile -------------------------------------------------------------------------------- /scripts/rmq-error-shovel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/rmq-error-shovel/README.md -------------------------------------------------------------------------------- /scripts/rmq-error-shovel/requirements.txt: -------------------------------------------------------------------------------- 1 | pika==1.0.0 2 | requests==2.31.0 -------------------------------------------------------------------------------- /scripts/test-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/test-tags.sh -------------------------------------------------------------------------------- /scripts/tester/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/tester/Dockerfile -------------------------------------------------------------------------------- /scripts/tester/tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/tester/tester.sh -------------------------------------------------------------------------------- /scripts/toollaunchservice/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/toollaunchservice/Dockerfile -------------------------------------------------------------------------------- /scripts/toollaunchservice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/toollaunchservice/Makefile -------------------------------------------------------------------------------- /scripts/ubuntu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/ubuntu/README.md -------------------------------------------------------------------------------- /scripts/ubuntu/clowder.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/ubuntu/clowder.conf -------------------------------------------------------------------------------- /scripts/ubuntu/update-clowder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/ubuntu/update-clowder.sh -------------------------------------------------------------------------------- /scripts/updates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/updates/README.md -------------------------------------------------------------------------------- /scripts/updates/UpdateUserId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/updates/UpdateUserId.js -------------------------------------------------------------------------------- /scripts/updates/fix-counts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/updates/fix-counts.js -------------------------------------------------------------------------------- /scripts/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/upload.py -------------------------------------------------------------------------------- /scripts/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/README.md -------------------------------------------------------------------------------- /scripts/web/extract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/extract.php -------------------------------------------------------------------------------- /scripts/web/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/info.php -------------------------------------------------------------------------------- /scripts/web/plots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/README.md -------------------------------------------------------------------------------- /scripts/web/plots/days.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/days.gnuplot -------------------------------------------------------------------------------- /scripts/web/plots/hours.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/hours.gnuplot -------------------------------------------------------------------------------- /scripts/web/plots/minutes.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/minutes.gnuplot -------------------------------------------------------------------------------- /scripts/web/plots/plot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/plot.php -------------------------------------------------------------------------------- /scripts/web/plots/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/plots/publish.sh -------------------------------------------------------------------------------- /scripts/web/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/publish.sh -------------------------------------------------------------------------------- /scripts/web/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/README.md -------------------------------------------------------------------------------- /scripts/web/tests/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/css/bootstrap-theme.css -------------------------------------------------------------------------------- /scripts/web/tests/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/css/bootstrap.css -------------------------------------------------------------------------------- /scripts/web/tests/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/css/bootstrap.css.map -------------------------------------------------------------------------------- /scripts/web/tests/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/css/bootstrap.min.css -------------------------------------------------------------------------------- /scripts/web/tests/failure_watchers.txt: -------------------------------------------------------------------------------- 1 | mchenry@illinois.edu 2 | -------------------------------------------------------------------------------- /scripts/web/tests/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/js/bootstrap.js -------------------------------------------------------------------------------- /scripts/web/tests/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/js/bootstrap.min.js -------------------------------------------------------------------------------- /scripts/web/tests/pass_watchers.txt: -------------------------------------------------------------------------------- 1 | mchenry@illinois.edu 2 | -------------------------------------------------------------------------------- /scripts/web/tests/plot.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/plot.gnuplot -------------------------------------------------------------------------------- /scripts/web/tests/plot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/plot.php -------------------------------------------------------------------------------- /scripts/web/tests/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/publish.sh -------------------------------------------------------------------------------- /scripts/web/tests/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/test.php -------------------------------------------------------------------------------- /scripts/web/tests/tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/tests.php -------------------------------------------------------------------------------- /scripts/web/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/tests.py -------------------------------------------------------------------------------- /scripts/web/tests/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/scripts/web/tests/tests.txt -------------------------------------------------------------------------------- /test/data/collections/dataset-image-1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/collections/dataset-image-1.zip -------------------------------------------------------------------------------- /test/data/collections/dataset-image.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/collections/dataset-image.zip -------------------------------------------------------------------------------- /test/data/datasets/dataset-image.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/datasets/dataset-image.zip -------------------------------------------------------------------------------- /test/data/datasets/dataset-search-general.json: -------------------------------------------------------------------------------- 1 | { 2 | "Reason": ".*Suite.*" 3 | } -------------------------------------------------------------------------------- /test/data/datasets/dataset-search-user.json: -------------------------------------------------------------------------------- 1 | { 2 | "Other" : ".*Pretty Cool.*" 3 | } -------------------------------------------------------------------------------- /test/data/datasets/dataset-test-tags-remove-one.json: -------------------------------------------------------------------------------- 1 | { 2 | "tags" : ["Dataset"] 3 | } 4 | -------------------------------------------------------------------------------- /test/data/datasets/dataset-test-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/datasets/dataset-test-tags.json -------------------------------------------------------------------------------- /test/data/datasets/dataset-test-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/datasets/dataset-test-user.json -------------------------------------------------------------------------------- /test/data/datasets/morrowplots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/datasets/morrowplots.jpg -------------------------------------------------------------------------------- /test/data/datasets/zip-file-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/datasets/zip-file-thumbnail.jpg -------------------------------------------------------------------------------- /test/data/extractions/morrowplots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/extractions/morrowplots.jpg -------------------------------------------------------------------------------- /test/data/files/data-search-general.json: -------------------------------------------------------------------------------- 1 | { 2 | "Image": "fid" 3 | } -------------------------------------------------------------------------------- /test/data/files/data-search-user.json: -------------------------------------------------------------------------------- 1 | { 2 | "Description" : ".*bronze sign.*" 3 | } -------------------------------------------------------------------------------- /test/data/files/data-test-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/files/data-test-general.json -------------------------------------------------------------------------------- /test/data/files/data-test-user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/files/data-test-user.json -------------------------------------------------------------------------------- /test/data/files/morrowplots-thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/files/morrowplots-thumb-1.jpg -------------------------------------------------------------------------------- /test/data/files/morrowplots-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/files/morrowplots-thumb.jpg -------------------------------------------------------------------------------- /test/data/files/morrowplots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/files/morrowplots.jpg -------------------------------------------------------------------------------- /test/data/previews/data-test-general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/previews/data-test-general.json -------------------------------------------------------------------------------- /test/data/previews/data-test-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/previews/data-test-preview.json -------------------------------------------------------------------------------- /test/data/previews/morrowplots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/previews/morrowplots.jpg -------------------------------------------------------------------------------- /test/data/spaces/data-test-spaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/data/spaces/data-test-spaces.json -------------------------------------------------------------------------------- /test/integration/APITestSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/integration/APITestSuite.scala -------------------------------------------------------------------------------- /test/testing-coverage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/testing-coverage.csv -------------------------------------------------------------------------------- /test/unit/RelationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/RelationSpec.scala -------------------------------------------------------------------------------- /test/unit/app-server/FileSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/app-server/FileSpec.scala -------------------------------------------------------------------------------- /test/unit/app-server/MongoDBSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/app-server/MongoDBSpec.scala -------------------------------------------------------------------------------- /test/unit/app-server/MongoFileSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/app-server/MongoFileSpec.scala -------------------------------------------------------------------------------- /test/unit/app-server/TestData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/app-server/TestData.scala -------------------------------------------------------------------------------- /test/unit/app-server/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/app-server/UnitSpec.scala -------------------------------------------------------------------------------- /test/unit/contextld/ContextLDSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/contextld/ContextLDSpec.scala -------------------------------------------------------------------------------- /test/unit/metadata/MetadataSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/metadata/MetadataSpec.scala -------------------------------------------------------------------------------- /test/unit/metadata/metadataTestData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/metadata/metadataTestData.scala -------------------------------------------------------------------------------- /test/unit/spaces/SpaceSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/test/unit/spaces/SpaceSpec.scala -------------------------------------------------------------------------------- /version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clowder-framework/clowder/HEAD/version.sh --------------------------------------------------------------------------------