├── .gitignore ├── LICENSE ├── README.md ├── README.txt ├── application-api ├── Bootstrap.php ├── configs │ ├── application.ini │ ├── episciences.ini │ └── halspm-application.ini ├── controllers │ ├── DocsController.php │ ├── EpisciencesController.php │ ├── ErrorController.php │ ├── IndexController.php │ ├── MergeController.php │ ├── Oai2Controller.php │ ├── OaiController.php │ ├── RefController.php │ ├── RobotsController.php │ ├── SearchController.php │ ├── SparqlController.php │ ├── SwordController.php │ └── WsController.php └── views │ ├── layouts │ ├── common │ │ ├── footer.phtml │ │ └── navbar.phtml │ └── layout.phtml │ └── scripts │ ├── error │ └── error.phtml │ ├── index │ └── index.phtml │ ├── merge │ └── index.phtml │ ├── partials │ └── schema_fields.phtml │ ├── sparql │ ├── index.phtml │ └── test.phtml │ ├── submit │ └── index.phtml │ └── sword │ └── upload.phtml ├── application-aurehal ├── Bootstrap.php ├── configs │ ├── application.ini │ ├── halspm-application.ini │ └── navigation.json ├── controllers │ ├── AjaxController.php │ ├── AnrprojectController.php │ ├── AuthorController.php │ ├── DomainController.php │ ├── ErrorController.php │ ├── EuropeanprojectController.php │ ├── IdhalController.php │ ├── IndexController.php │ ├── JournalController.php │ ├── RobotsController.php │ ├── StructureController.php │ ├── TypdocController.php │ ├── UserController.php │ └── ViewController.php ├── languages │ ├── en │ │ ├── emails │ │ │ ├── ref_structure_ajout.phtml │ │ │ ├── ref_structure_fusion.phtml │ │ │ ├── ref_structure_modification.phtml │ │ │ └── ref_structure_suppression.phtml │ │ └── trad.php │ ├── fr │ │ ├── emails │ │ │ ├── ref_structure_ajout.phtml │ │ │ ├── ref_structure_fusion.phtml │ │ │ ├── ref_structure_modification.phtml │ │ │ └── ref_structure_suppression.phtml │ │ └── trad.php │ └── langueiso639.php └── views │ ├── layouts │ ├── common │ │ ├── footer.phtml │ │ ├── logo.phtml │ │ ├── sidebar.phtml │ │ └── user.phtml │ └── layout.phtml │ └── scripts │ ├── domain │ ├── index.phtml │ └── read.phtml │ ├── error │ ├── alert.phtml │ ├── error.phtml │ ├── missing.phtml │ └── refused.phtml │ ├── idhal │ ├── index.phtml │ └── read.phtml │ ├── index │ └── index.phtml │ ├── partials │ ├── alert.phtml │ ├── documents.phtml │ ├── formReplace.phtml │ ├── formSearch.phtml │ ├── pagination.phtml │ ├── paginationControl.phtml │ ├── paginationControl2.phtml │ ├── pagination_form.phtml │ └── row.phtml │ ├── referentiel │ ├── alias.phtml │ ├── browse.phtml │ ├── confirm.phtml │ ├── header.phtml │ ├── history.phtml │ ├── maintenance.phtml │ ├── modify.phtml │ ├── read.phtml │ ├── replace.phtml │ └── resume.phtml │ ├── structure │ ├── ajax_row.phtml │ ├── ajaxbrowse.phtml │ ├── create.phtml │ ├── form.phtml │ ├── form_r.phtml │ ├── modify.phtml │ ├── read.phtml │ ├── result.phtml │ ├── resume.phtml │ └── transfer.phtml │ ├── typdoc │ ├── index.phtml │ └── read.phtml │ └── user │ └── login.phtml ├── application-cv ├── Bootstrap.php ├── configs │ └── application.ini ├── controllers │ ├── ErrorController.php │ ├── IndexController.php │ ├── PhotoController.php │ ├── RobotsController.php │ └── UserController.php └── views │ ├── layouts │ ├── common │ │ └── user.phtml │ └── layout.phtml │ └── scripts │ └── index │ ├── index.phtml │ ├── info-en.phtml │ ├── info-fr.phtml │ ├── widget-anr.phtml │ ├── widget-coauthors.phtml │ ├── widget-domain.phtml │ ├── widget-europ.phtml │ ├── widget-export.phtml │ ├── widget-ext.phtml │ ├── widget-idext.phtml │ ├── widget-keywords.phtml │ ├── widget-mesh.phtml │ ├── widget-metrics.phtml │ ├── widget-photo.phtml │ ├── widget-revues.phtml │ ├── widget-socialurl.phtml │ ├── widget-structures.phtml │ └── widget-years.phtml ├── application-halms ├── Bootstrap.php ├── configs │ ├── application.ini │ └── navigation.json ├── controllers │ ├── AdministrateController.php │ ├── ErrorController.php │ ├── FileController.php │ ├── IndexController.php │ ├── SubmissionsController.php │ └── UserController.php ├── languages │ └── fr │ │ ├── file.php │ │ └── mail.php └── views │ ├── layouts │ ├── common │ │ ├── footer.phtml │ │ ├── logo.phtml │ │ ├── sidebar.phtml │ │ └── user.phtml │ └── layout.phtml │ └── scripts │ ├── administrate │ ├── default.phtml │ ├── error-reported-author.phtml │ ├── initial-ready.phtml │ ├── initial.phtml │ ├── list.phtml │ ├── qa.phtml │ └── wait-for-dcl.phtml │ ├── common │ ├── document-actions.phtml │ ├── document-header.phtml │ └── document-history.phtml │ ├── error │ ├── error.phtml │ └── refused.phtml │ ├── index │ └── index.phtml │ └── submissions │ ├── controlled.phtml │ ├── default.phtml │ └── index.phtml ├── application ├── Bootstrap.php ├── configs │ ├── acl.ini │ ├── application.ini │ ├── halspm-application.ini │ ├── halspm-navigation.portail.json │ ├── navigation.collection.json │ └── navigation.portail.json ├── controllers │ ├── AboutController.php │ ├── AdministrateController.php │ ├── AdministratemailController.php │ ├── AjaxController.php │ ├── ArchiveController.php │ ├── BrowseController.php │ ├── CollectionController.php │ ├── CracController.php │ ├── DataController.php │ ├── DocumentationController.php │ ├── ErrorController.php │ ├── FaqController.php │ ├── FeedsController.php │ ├── FileController.php │ ├── FolderController.php │ ├── HelpController.php │ ├── IndexController.php │ ├── ModerateController.php │ ├── NewsController.php │ ├── PageController.php │ ├── PatrolController.php │ ├── PingController.php │ ├── RightsController.php │ ├── RobotsController.php │ ├── SearchController.php │ ├── SectionController.php │ ├── SettingsController.php │ ├── StatController.php │ ├── SubmitController.php │ ├── UserController.php │ ├── ValidateController.php │ ├── ViewController.php │ ├── WebsiteController.php │ └── WidgetController.php ├── languages │ ├── en │ │ ├── api.php │ │ ├── api_search.php │ │ ├── emails │ │ │ ├── account_create.phtml │ │ │ ├── account_lost_login.phtml │ │ │ ├── account_lost_pwd.phtml │ │ │ ├── alert_corresp_author_document_accepted.phtml │ │ │ ├── alert_moderator_new_submission.phtml │ │ │ ├── alert_user_search.phtml │ │ │ ├── alert_validator_confirm_validation.phtml │ │ │ ├── alert_validator_end_validation.phtml │ │ │ ├── alert_validator_new_validation_reminder.phtml │ │ │ ├── document_accepted.phtml │ │ │ ├── document_accepted_arxiv.phtml │ │ │ ├── document_adminmodify.phtml │ │ │ ├── document_alert_admin.phtml │ │ │ ├── document_alert_ownership.phtml │ │ │ ├── document_alert_refstruct.phtml │ │ │ ├── document_claim_ownership.phtml │ │ │ ├── document_claim_ownership_direct.phtml │ │ │ ├── document_claim_ownership_ko.phtml │ │ │ ├── document_claim_ownership_ok.phtml │ │ │ ├── document_deleted.phtml │ │ │ ├── document_file_access.phtml │ │ │ ├── document_file_access_ko.phtml │ │ │ ├── document_file_access_ok.phtml │ │ │ ├── document_fusion.phtml │ │ │ ├── document_refused.phtml │ │ │ ├── document_submitted.phtml │ │ │ ├── document_submitted_online.phtml │ │ │ ├── document_toupdate.phtml │ │ │ ├── document_toupdate_reminder.phtml │ │ │ ├── notice_submitted.phtml │ │ │ ├── ref_structure_ajout.phtml │ │ │ ├── ref_structure_fusion.phtml │ │ │ ├── ref_structure_modification.phtml │ │ │ └── ref_structure_suppression.phtml │ │ ├── errors.php │ │ ├── form.php │ │ ├── formulaires_inist.php │ │ ├── js.php │ │ ├── language.php │ │ ├── libelle.php │ │ ├── libelles_inist.php │ │ ├── mails.php │ │ ├── ref_metadatalist.php │ │ ├── submit.php │ │ └── views.php │ ├── es │ │ ├── api.php │ │ ├── emails │ │ │ ├── account_create.phtml │ │ │ ├── account_lost_login.phtml │ │ │ ├── account_lost_pwd.phtml │ │ │ ├── alert_corresp_author_document_accepted.phtml │ │ │ ├── alert_moderator_new_submission.phtml │ │ │ ├── alert_user_search.phtml │ │ │ ├── alert_validator_confirm_validation.phtml │ │ │ ├── alert_validator_end_validation.phtml │ │ │ ├── alert_validator_new_validation_reminder.phtml │ │ │ ├── document_accepted.phtml │ │ │ ├── document_accepted_arxiv.phtml │ │ │ ├── document_alert_ownership.phtml │ │ │ ├── document_claim_ownership.phtml │ │ │ ├── document_claim_ownership_direct.phtml │ │ │ ├── document_claim_ownership_ko.phtml │ │ │ ├── document_claim_ownership_ok.phtml │ │ │ ├── document_deleted.phtml │ │ │ ├── document_file_access.phtml │ │ │ ├── document_file_access_ko.phtml │ │ │ ├── document_file_access_ok.phtml │ │ │ ├── document_fusion.phtml │ │ │ ├── document_give_ownership.phtml │ │ │ ├── document_refused.phtml │ │ │ ├── document_submitted.phtml │ │ │ ├── document_submitted_online.phtml │ │ │ ├── document_toupdate.phtml │ │ │ ├── document_toupdate_reminder.phtml │ │ │ └── notice_submitted.phtml │ │ ├── mails.php │ │ └── views.php │ ├── eu │ │ ├── api.php │ │ ├── email │ │ │ ├── account_create.phtml │ │ │ ├── account_lost_login.phtml │ │ │ ├── account_lost_pwd.phtml │ │ │ ├── alert_corresp_author_document_accepted.phtml │ │ │ ├── alert_moderator_new_submission.phtml │ │ │ ├── alert_user_search.phtml │ │ │ ├── alert_validator_confirm_validation.phtml │ │ │ ├── alert_validator_end_validation.phtml │ │ │ ├── alert_validator_new_validation_reminder.phtml │ │ │ ├── document_accepted.phtml │ │ │ ├── document_accepted_arxiv.phtml │ │ │ ├── document_alert_ownership.phtml │ │ │ ├── document_claim_ownership.phtml │ │ │ ├── document_claim_ownership_direct.phtml │ │ │ ├── document_claim_ownership_ko.phtml │ │ │ ├── document_claim_ownership_ok.phtml │ │ │ ├── document_deleted.phtml │ │ │ ├── document_file_access.phtml │ │ │ ├── document_file_access_ko.phtml │ │ │ ├── document_file_access_ok.phtml │ │ │ ├── document_fusion.phtml │ │ │ ├── document_give_ownership.phtml │ │ │ ├── document_refused.phtml │ │ │ ├── document_submitted.phtml │ │ │ ├── document_submitted_online.phtml │ │ │ ├── document_toupdate.phtml │ │ │ ├── document_toupdate_reminder.phtml │ │ │ └── notice_submitted.phtml │ │ ├── mails.php │ │ └── views.php │ └── fr │ │ ├── Zend_Validate.php │ │ ├── api.php │ │ ├── api_search.php │ │ ├── archive.php │ │ ├── elements_form.php │ │ ├── emails │ │ ├── account_create.phtml │ │ ├── account_init.phtml │ │ ├── account_lost_login.phtml │ │ ├── account_lost_pwd.phtml │ │ ├── alert_corresp_author_document_accepted.phtml │ │ ├── alert_moderator_new_submission.phtml │ │ ├── alert_user_search.phtml │ │ ├── alert_validator_confirm_validation.phtml │ │ ├── alert_validator_end_validation.phtml │ │ ├── alert_validator_new_validation.phtml │ │ ├── alert_validator_new_validation_reminder.phtml │ │ ├── document_accepted.phtml │ │ ├── document_accepted_arxiv.phtml │ │ ├── document_adminmodify.phtml │ │ ├── document_alert_admin.phtml │ │ ├── document_alert_ownership.phtml │ │ ├── document_alert_refstruct.phtml │ │ ├── document_claim_ownership.phtml │ │ ├── document_claim_ownership_direct.phtml │ │ ├── document_claim_ownership_ko.phtml │ │ ├── document_claim_ownership_ok.phtml │ │ ├── document_deleted.phtml │ │ ├── document_file_access.phtml │ │ ├── document_file_access_ko.phtml │ │ ├── document_file_access_ok.phtml │ │ ├── document_fusion.phtml │ │ ├── document_refused.phtml │ │ ├── document_submitted.phtml │ │ ├── document_submitted_online.phtml │ │ ├── document_toupdate.phtml │ │ ├── document_toupdate_reminder.phtml │ │ ├── notice_submitted.phtml │ │ ├── ref_structure_ajout.phtml │ │ ├── ref_structure_fusion.phtml │ │ ├── ref_structure_modification.phtml │ │ └── ref_structure_suppression.phtml │ │ ├── js.php │ │ ├── language.php │ │ ├── libelle.php │ │ ├── mails.php │ │ ├── ref_author.php │ │ ├── ref_domain.php │ │ ├── ref_journal.php │ │ ├── ref_metadatalist.php │ │ ├── ref_projanr.php │ │ ├── ref_projeurop.php │ │ ├── ref_structure.php │ │ ├── submit.php │ │ ├── validation_forms.php │ │ └── views.php └── views │ ├── layouts │ ├── common │ │ ├── breadcrumbs.phtml │ │ ├── breadcrumbs │ │ │ └── render.phtml │ │ ├── debug.phtml │ │ ├── errors.phtml │ │ ├── footer.phtml │ │ ├── mail.phtml │ │ └── user.phtml │ └── layout.phtml │ ├── scripts │ ├── administrate │ │ ├── batch.phtml │ │ ├── batch │ │ │ ├── data.phtml │ │ │ ├── field.phtml │ │ │ └── index.phtml │ │ ├── delete.phtml │ │ ├── documents-actions.phtml │ │ ├── documents-document.phtml │ │ ├── documents.phtml │ │ ├── doublons.phtml │ │ ├── pending-modification.phtml │ │ ├── render.phtml │ │ ├── reply.phtml │ │ ├── settings.phtml │ │ ├── user-card.phtml │ │ ├── user-merge-modal.phtml │ │ ├── user-merge-results.phtml │ │ ├── user-merge.phtml │ │ ├── users-account.phtml │ │ ├── users-list.phtml │ │ ├── users-rights.phtml │ │ └── users.phtml │ ├── administratemail │ │ ├── edittemplate.phtml │ │ └── templates.phtml │ ├── ajax │ │ └── ref │ │ │ ├── index.phtml │ │ │ └── new.phtml │ ├── archive │ │ ├── details.phtml │ │ └── index.phtml │ ├── browse │ │ ├── author.phtml │ │ ├── collection.json.phtml │ │ ├── collection.phtml │ │ ├── doctype.phtml │ │ ├── domain.json.phtml │ │ ├── domain.phtml │ │ ├── facet.phtml │ │ ├── index.phtml │ │ ├── meta.phtml │ │ ├── period.phtml │ │ ├── portal.phtml │ │ ├── scollection.phtml │ │ ├── structures.phtml │ │ └── year.phtml │ ├── collection │ │ ├── ajaxgetdoc.phtml │ │ ├── ajaxgetdoctotamponnate.phtml │ │ ├── ajaxnbdoc.phtml │ │ ├── create.phtml │ │ ├── delete.phtml │ │ ├── duplicate.phtml │ │ └── list.phtml │ ├── conditor │ │ └── row-file.phtml │ ├── crac │ │ ├── help.phtml │ │ ├── index.phtml │ │ └── search.phtml │ ├── document │ │ ├── actions.phtml │ │ ├── admin.phtml │ │ ├── claimOwnershipModal.phtml │ │ ├── default.phtml │ │ ├── displayMeta.phtml │ │ ├── document.phtml │ │ ├── form-reference.phtml │ │ ├── hceres.phtml │ │ ├── img.phtml │ │ ├── metas_header.phtml │ │ ├── references.phtml │ │ ├── row-file.phtml │ │ ├── software.phtml │ │ ├── spm-video.phtml │ │ ├── spm-widget-pour-citer.phtml │ │ ├── spm.phtml │ │ ├── video.phtml │ │ ├── widget-analyse-aar.phtml │ │ ├── widget-citation.phtml │ │ ├── widget-collections.phtml │ │ ├── widget-data.phtml │ │ ├── widget-export.phtml │ │ ├── widget-files.phtml │ │ ├── widget-gallery.phtml │ │ ├── widget-identifiants.phtml │ │ ├── widget-licence.phtml │ │ ├── widget-maps.phtml │ │ ├── widget-metrics.phtml │ │ ├── widget-openaccess.phtml │ │ ├── widget-preview.phtml │ │ ├── widget-references.phtml │ │ ├── widget-relations.phtml │ │ ├── widget-researchdata.phtml │ │ └── widget-share.phtml │ ├── error │ │ ├── collectionnotfound.phtml │ │ ├── document-not-found.phtml │ │ ├── document-not-indexed-in-solr.phtml │ │ ├── document-not-visible-in-space.phtml │ │ ├── error.phtml │ │ ├── feature-disabled.phtml │ │ └── pagenotfound.phtml │ ├── file │ │ └── video.phtml │ ├── form │ │ ├── render-subform.phtml │ │ └── render.phtml │ ├── help │ │ └── information.phtml │ ├── index │ │ ├── submenu.phtml │ │ └── test.phtml │ ├── moderate │ │ ├── documents-actions.phtml │ │ ├── documents-document.phtml │ │ ├── documents.phtml │ │ ├── embargo.phtml │ │ ├── expert-list.phtml │ │ ├── file-embargo.phtml │ │ ├── message.phtml │ │ └── waiting.phtml │ ├── news │ │ └── index.phtml │ ├── page │ │ ├── ajaxgetwidget.phtml │ │ └── render.phtml │ ├── partials │ │ ├── browse_alphabet.phtml │ │ ├── browse_sort.phtml │ │ ├── browse_type.phtml │ │ ├── expert-list.phtml │ │ ├── file-embargo.phtml │ │ ├── modal.phtml │ │ ├── pagination.phtml │ │ └── search_pagination.phtml │ ├── patrol │ │ └── documents-actions.phtml │ ├── robots │ │ └── index.phtml │ ├── search │ │ ├── advanced-export.phtml │ │ ├── ajaxfilters.phtml │ │ ├── filters.phtml │ │ ├── index.phtml │ │ ├── opensearch.phtml │ │ └── partials │ │ │ ├── claimOwnershipModal.phtml │ │ │ ├── search_facets.phtml │ │ │ ├── search_form.phtml │ │ │ ├── search_results.phtml │ │ │ ├── search_rows.phtml │ │ │ ├── search_sort.phtml │ │ │ ├── search_tools.phtml │ │ │ └── spm_search_results.phtml │ ├── settings │ │ ├── domain.phtml │ │ ├── files.phtml │ │ ├── metadata.phtml │ │ ├── row-metadata.phtml │ │ ├── submit.phtml │ │ ├── typdoc-element.phtml │ │ └── typdoc.phtml │ ├── stat │ │ ├── ajax-consultation.phtml │ │ ├── ajax-nodata.phtml │ │ ├── ajax-provenance-country.phtml │ │ ├── ajax-provenance-domain.phtml │ │ ├── ajax-provenance.phtml │ │ ├── ajax-repartition.phtml │ │ ├── ajax-ressource.phtml │ │ ├── ajaxnbdoc.phtml │ │ └── index.phtml │ ├── submit │ │ ├── ajaxgetidentifier.phtml │ │ ├── ajaxgetidentifierhascopy.phtml │ │ ├── errors.phtml │ │ ├── getform.phtml │ │ ├── index.phtml │ │ ├── step-author │ │ │ ├── author-add-from-structure-list.phtml │ │ │ ├── author-add-from-structure.phtml │ │ │ ├── author-add-list.phtml │ │ │ ├── author-add-my-authors.phtml │ │ │ ├── author-form.phtml │ │ │ ├── author-function-form.phtml │ │ │ ├── author.phtml │ │ │ ├── authors-structures.phtml │ │ │ ├── index.phtml │ │ │ ├── structure-form-struct.phtml │ │ │ ├── structure-form.phtml │ │ │ └── structure.phtml │ │ ├── step-file │ │ │ ├── detailed-file.phtml │ │ │ ├── detailed.phtml │ │ │ ├── index.phtml │ │ │ ├── licence.phtml │ │ │ ├── simple.phtml │ │ │ ├── sucessmsg.phtml │ │ │ └── update.phtml │ │ ├── step-meta-referentiel.phtml │ │ ├── step-meta │ │ │ ├── ajaxgetidentifier.phtml │ │ │ ├── ajaxgetidentifierhascopy.phtml │ │ │ └── index.phtml │ │ └── step-recap │ │ │ ├── index.phtml │ │ │ ├── moderation-msg.phtml │ │ │ ├── submit-arxiv.phtml │ │ │ ├── submit-pmc.phtml │ │ │ └── submit-swh.phtml │ ├── user │ │ ├── activate.phtml │ │ ├── ajaxdocowner.phtml │ │ ├── ajaxgetdocrequest.phtml │ │ ├── ajaxsubmissions.phtml │ │ ├── changepassword.phtml │ │ ├── collection.phtml │ │ ├── collections.phtml │ │ ├── create.phtml │ │ ├── cv.phtml │ │ ├── docowner.phtml │ │ ├── edit.phtml │ │ ├── editprefdepot.phtml │ │ ├── editprefmail.phtml │ │ ├── filerequest.phtml │ │ ├── form_edit.phtml │ │ ├── form_editpref.phtml │ │ ├── ftp.phtml │ │ ├── idhal-docs.phtml │ │ ├── idhal-search.phtml │ │ ├── idhal.phtml │ │ ├── index.phtml │ │ ├── library.phtml │ │ ├── login.phtml │ │ ├── login2.phtml │ │ ├── lostlogin.phtml │ │ ├── lostpassword.phtml │ │ ├── related.phtml │ │ ├── reply.phtml │ │ ├── resetpassword.phtml │ │ ├── search.phtml │ │ ├── stat.phtml │ │ └── submissions.phtml │ ├── validate │ │ ├── availability.phtml │ │ ├── documents-actions.phtml │ │ ├── documents.phtml │ │ └── message.phtml │ ├── view │ │ ├── accessibilityHelp.phtml │ │ ├── conformiteRgaa.phtml │ │ ├── file.phtml │ │ ├── history.phtml │ │ ├── index.phtml │ │ ├── legalnotice.phtml │ │ └── privacy.phtml │ ├── website │ │ ├── common.phtml │ │ ├── edit.phtml │ │ ├── footer.phtml │ │ ├── header.phtml │ │ ├── menu-page-form.phtml │ │ ├── menu-page.phtml │ │ ├── menu.phtml │ │ ├── news.phtml │ │ ├── public.phtml │ │ ├── search.phtml │ │ └── style.phtml │ └── widget │ │ ├── cartohal.phtml │ │ ├── cloud.phtml │ │ ├── count.phtml │ │ ├── feed.phtml │ │ ├── last.phtml │ │ ├── lastpub.phtml │ │ ├── search.phtml │ │ ├── searchAdv.phtml │ │ ├── sherpa.phtml │ │ ├── stats.phtml │ │ └── twitter.phtml │ └── xsl │ └── document.xsl ├── composer.json ├── composer.phar ├── config.rb ├── config ├── bdd │ └── CAS_users.sql ├── collection │ ├── index.en.html │ ├── index.fr.html │ └── navigation.json ├── domains.json ├── halspm-endpoints.ini.asuppr ├── html │ ├── accessibilityHelp.fr.html │ ├── conformiteRgaa.fr.html │ ├── legalnotice.fr.html │ └── privacy.fr.html ├── licences.json ├── portail │ ├── halspm-meta.ini │ ├── halspm-meta.ini.asuppr │ ├── languages │ │ ├── en │ │ │ ├── metas.php │ │ │ └── portails_metas.php │ │ └── fr │ │ │ ├── metas.php │ │ │ └── portails_metas.php │ ├── meta.ini │ ├── solr.hal.AdvSearchFields.json │ ├── solr.hal.checkedFilters.json │ ├── solr.hal.facets.json │ └── solr.hal.returnedFields.json └── templates │ ├── template-basic.cnf │ ├── template-hal.conf │ ├── template.hosts │ └── template.pwd.json ├── confighalspm ├── ApacheConf-basics.cnf ├── atinternet.suivi.json ├── collection │ ├── index.en.html │ ├── index.fr.html │ └── navigation.json ├── domains.json ├── endpoints.ini ├── licences.json ├── portail │ ├── languages │ │ ├── en │ │ │ ├── metas.php │ │ │ └── portails_metas.php │ │ └── fr │ │ │ ├── metas.php │ │ │ └── portails_metas.php │ ├── meta.ini │ ├── solr.hal.AdvSearchFields.json │ ├── solr.hal.checkedFilters.json │ ├── solr.hal.facets.json │ └── solr.hal.returnedFields.json └── templates │ ├── template-basic.cnf │ ├── template-hal.conf │ ├── template.hosts │ └── template.pwd.json ├── install ├── DBStruct.sql ├── confs_templates │ ├── api-instance.conf │ ├── aurehal-instance.conf │ ├── basics.cnf │ ├── ccsdlib-instance.conf │ ├── cv-instance.conf │ └── hal-instance.conf ├── halInitDB.tag.gz ├── initialData.tgz ├── instHal.sh └── navigation.json ├── library ├── .gitignore ├── Aurehal │ ├── Acl.php │ ├── Acl │ │ └── Plugin.php │ ├── Controller │ │ └── Referentiel.php │ └── View │ │ └── Helper │ │ └── Documents.php ├── Globales.php ├── Hal │ ├── Acl.php │ ├── Apiplugin.php │ ├── Application │ │ └── Bootstrap │ │ │ └── Bootstrap.php │ ├── Arxiv.php │ ├── Arxiv │ │ ├── Exception.php │ │ └── TrackingInfo.php │ ├── Auth.php │ ├── Auth │ │ ├── Adapter │ │ │ └── DbTable.php │ │ └── Plugin.php │ ├── Cache.php │ ├── Config.php │ ├── Controller │ │ ├── Action.php │ │ └── Action │ │ │ └── HelperBroker.php │ ├── Cv.php │ ├── Cv │ │ └── Visite.php │ ├── Daemon.php │ ├── Db │ │ └── Adapter │ │ │ ├── ReferenceBiblio.php │ │ │ ├── Stats.php │ │ │ └── config │ │ │ ├── refbiblio.ini │ │ │ └── stats.ini │ ├── Default │ │ ├── index.en.html │ │ ├── index.fr.html │ │ ├── menu.en.php │ │ ├── menu.fr.php │ │ ├── navigation.json │ │ ├── navigation.sql │ │ └── vhost.conf │ ├── Document.php │ ├── Document │ │ ├── Acl.php │ │ ├── Alert.php │ │ ├── Author.php │ │ ├── Collection.php │ │ ├── Doublonresearcher.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── Filerequest.php │ │ ├── Lock.php │ │ ├── Logger.php │ │ ├── Meta │ │ │ ├── Abstract.php │ │ │ ├── Anrproject.php │ │ │ ├── Anrprojectgroup.php │ │ │ ├── Boolean.php │ │ │ ├── Complex.php │ │ │ ├── Domain.php │ │ │ ├── Domaininter.php │ │ │ ├── Europeanproject.php │ │ │ ├── Europeanprojectgroup.php │ │ │ ├── Hceresentity.php │ │ │ ├── Hceresentitygroup.php │ │ │ ├── Identifier.php │ │ │ ├── Journal.php │ │ │ ├── Keyword.php │ │ │ ├── Licence.php │ │ │ ├── LinkExt.php │ │ │ ├── Metalist.php │ │ │ ├── Object.php │ │ │ ├── Researchdata.php │ │ │ ├── Researchdatagroup.php │ │ │ └── Simple.php │ │ ├── Metadatas.php │ │ ├── Owner.php │ │ ├── References.php │ │ ├── Settings.php │ │ ├── Settings │ │ │ └── Dates.php │ │ ├── Structure.php │ │ ├── Tei.php │ │ ├── Tei │ │ │ ├── Creator.php │ │ │ └── Loader.php │ │ ├── Tokens │ │ │ ├── Ownership.php │ │ │ ├── OwnershipMapper.php │ │ │ └── OwnershipTable.php │ │ ├── Validity.php │ │ ├── Visite.php │ │ ├── aofr.xml │ │ ├── createFront.php │ │ ├── createSip.php │ │ ├── createTei.php │ │ ├── loadFromTei.php │ │ ├── loadFromWs.php │ │ ├── pdfbox-app-1.8.7.jar │ │ └── xsl │ │ │ ├── bibtex.xsl │ │ │ ├── dc.xsl │ │ │ ├── dcterms.xsl │ │ │ ├── endnote.xsl │ │ │ └── html.xsl │ ├── Evaluation │ │ ├── Message.php │ │ ├── Moderation │ │ │ └── Message.php │ │ └── Validation │ │ │ └── Message.php │ ├── Export.php │ ├── Export │ │ └── SearchAPI.php │ ├── Form │ │ ├── Decorator │ │ │ ├── Identifiant.php │ │ │ └── Identifiers.php │ │ ├── Element │ │ │ └── Identifiant.php │ │ └── Trait │ │ │ └── InstancePrefixPaths.php │ ├── Ini.php │ ├── Instance.php │ ├── Instance │ │ ├── Hal.php │ │ └── Spm.php │ ├── LinkExt.php │ ├── Locale.php │ ├── Mail.php │ ├── Mail │ │ ├── Template.php │ │ ├── TemplatesManager.php │ │ └── Translations.php │ ├── Meta.php │ ├── Model.php │ ├── Moderation.php │ ├── News.php │ ├── Oai │ │ └── Server.php │ ├── Patrol.php │ ├── Plugin.php │ ├── PubMedCentral.php │ ├── Rdf │ │ ├── Abstract.php │ │ ├── Anrproject.php │ │ ├── Author.php │ │ ├── Document.php │ │ ├── Domain.php │ │ ├── Europeanproject.php │ │ ├── Exception.php │ │ ├── Idhal.php │ │ ├── Journal.php │ │ ├── Queue.php │ │ ├── Schema.php │ │ ├── Structure.php │ │ ├── Tools.php │ │ ├── Typdoc.php │ │ └── Vocabulary.php │ ├── Referentiels │ │ ├── Exception.php │ │ ├── Metadata.php │ │ ├── StructureFinder.php │ │ ├── StructureFinderPolicy.php │ │ ├── StructureFinderPolicyDefault.php │ │ ├── StructureFinderPolicyINRA.php │ │ ├── StructureInfo.php │ │ └── StructureInfoObject.php │ ├── ResearchData.php │ ├── Script.php │ ├── Search │ │ └── Solr │ │ │ ├── Api.php │ │ │ ├── Api │ │ │ ├── Affiliation.php │ │ │ ├── Affiliation │ │ │ │ ├── Author.php │ │ │ │ └── Structure.php │ │ │ ├── Authorstructure.php │ │ │ ├── Exception.php │ │ │ └── RTF │ │ │ │ └── RtfEntry.php │ │ │ ├── Indexer │ │ │ ├── DocumentCore.php │ │ │ ├── RefauthorCore.php │ │ │ ├── RefdomainCore.php │ │ │ ├── RefjournalCore.php │ │ │ ├── RefmetadataCore.php │ │ │ ├── RefprojetanrCore.php │ │ │ ├── RefprojeteuropeCore.php │ │ │ ├── RefsiteCore.php │ │ │ └── RefstructureCore.php │ │ │ ├── Search.php │ │ │ ├── Search │ │ │ ├── Affiliation.php │ │ │ ├── Author.php │ │ │ ├── Collection.php │ │ │ ├── Domain.php │ │ │ ├── Structure.php │ │ │ └── Typedoc.php │ │ │ └── xsl │ │ │ └── teiCorpusToTEI.xsl │ ├── Session │ │ └── Namespace.php │ ├── Settings.php │ ├── Settings │ │ ├── Features.php │ │ ├── Search.php │ │ └── Submissions.php │ ├── Site.php │ ├── Site │ │ ├── Collection.php │ │ ├── Exception.php │ │ ├── Form │ │ │ └── config.ini │ │ ├── Portail.php │ │ ├── Settings.php │ │ └── Settings │ │ │ ├── Collection.php │ │ │ └── Portail.php │ ├── SoftwareHeritage.php │ ├── Stats.php │ ├── Submit.php │ ├── Submit │ │ ├── Manager.php │ │ ├── Options.php │ │ ├── Status.php │ │ ├── Step.php │ │ └── Step │ │ │ ├── Author.php │ │ │ ├── File.php │ │ │ ├── Meta.php │ │ │ └── Recap.php │ ├── Sword │ │ ├── Server.php │ │ ├── xsd │ │ │ ├── aofr.xsd │ │ │ ├── inner-aofr.xsd │ │ │ └── xml.xsd │ │ └── xsl │ │ │ ├── jats.xsl │ │ │ └── mets.xsl │ ├── Tools.php │ ├── Transfert.php │ ├── Transfert │ │ ├── Arxiv.php │ │ ├── Exception.php │ │ ├── Response.php │ │ ├── SoftwareHeritage.php │ │ └── TrackingInfo.php │ ├── Translate.php │ ├── Translation │ │ └── Plugin.php │ ├── Typdoc.php │ ├── User.php │ ├── User │ │ ├── Form │ │ │ ├── Edit.php │ │ │ ├── EditPrefDepot.php │ │ │ └── EditPrefMail.php │ │ ├── Library.php │ │ ├── Merge.php │ │ ├── Search.php │ │ ├── Stat │ │ │ └── Queries.php │ │ └── config │ │ │ └── account.ini │ ├── Users.php │ ├── Validation.php │ ├── View.php │ ├── View │ │ ├── Addtoany.php │ │ ├── Atinternet.php │ │ ├── HeaderJS.php │ │ ├── Helper │ │ │ ├── Gi.php │ │ │ ├── JQuery.php │ │ │ ├── JQuery │ │ │ │ ├── Container.php │ │ │ │ └── Layout.php │ │ │ ├── SearchUrl.php │ │ │ ├── Url.php │ │ │ └── Widget.php │ │ ├── Matomo.php │ │ ├── Tarteaucitron.php │ │ ├── Text.php │ │ ├── Tracker.php │ │ └── TrackerJS.php │ ├── Website │ │ ├── Footer.php │ │ ├── Header.php │ │ ├── Navigation.php │ │ ├── Navigation │ │ │ ├── Page.php │ │ │ └── Page │ │ │ │ ├── Author.php │ │ │ │ ├── Collections.php │ │ │ │ ├── Custom.php │ │ │ │ ├── Doctype.php │ │ │ │ ├── Domain.php │ │ │ │ ├── File.php │ │ │ │ ├── Folder.php │ │ │ │ ├── Gallery.php │ │ │ │ ├── Index.php │ │ │ │ ├── Last.php │ │ │ │ ├── Latestpublications.php │ │ │ │ ├── Link.php │ │ │ │ ├── Meta.php │ │ │ │ ├── News.php │ │ │ │ ├── Period.php │ │ │ │ ├── Portails.php │ │ │ │ ├── Rss.php │ │ │ │ ├── SCollections.php │ │ │ │ ├── Search.php │ │ │ │ ├── Structure.php │ │ │ │ └── Submit.php │ │ ├── Search.php │ │ └── Style.php │ └── constantes.php ├── Halms │ ├── Acl.php │ ├── Auth.php │ ├── Document.php │ ├── Document │ │ └── Logger.php │ ├── Mail.php │ └── Tools.php └── Thesaurus │ ├── Spdx.php │ ├── aar.json │ ├── acm.json │ ├── acm2012.json │ ├── domains.json │ ├── erc.json │ ├── gav.json │ ├── hceres.json │ ├── jel.json │ ├── languages │ ├── en │ │ ├── aar.php │ │ ├── acm.php │ │ ├── acm2012.php │ │ ├── domains.php │ │ ├── erc.php │ │ ├── gav.php │ │ ├── hceres.php │ │ ├── jel.php │ │ ├── metas.php │ │ ├── portails_metas.php │ │ ├── typdoc.php │ │ └── usages.php │ ├── es │ │ └── domains.php │ └── fr │ │ ├── aar.php │ │ ├── acm.php │ │ ├── acm2012.php │ │ ├── domains.php │ │ ├── erc.php │ │ ├── gav.php │ │ ├── hceres.php │ │ ├── jel.php │ │ ├── metas.php │ │ ├── pacs.php │ │ ├── portails_metas.php │ │ ├── typdoc.php │ │ └── usages.php │ ├── pacs.json │ ├── spdx.json │ ├── typdoc.json │ └── usages.json ├── migrations ├── 20160314_base_user.sql ├── 20160627_base_ref_struct.sql ├── 20160830_add_column_in_document.sql ├── 20161025_migrationData ├── 20170103_file_source.sql ├── 20170213_NewColumns_DocMetadatas.sql ├── 20170401_PREF_DEPOT.sql ├── 20170402_Migration_PrefDepot.php ├── 20170403_DEL_COL_USER.sql ├── 20170504_PREF_MAIL.sql ├── 20170725_add_owner_token.sql ├── 20171113_DOC_LINKEXT.sql ├── 20171220_addLogAction.sql ├── 2018-07_composer ├── 20180115_add_SWH ├── 20180206_MAJ_REF_IDHAL_CV.sql ├── 20180222_ADD_COLUMN.sql ├── 20180391_USER_MERGE_TOKEN.sql ├── 20180517_CleanDbMeta.php ├── 20181219_USER_ID_ASSOCIATION ├── 2019-07-12.sql ├── 2019-09-01-PatrolTable.sql ├── 20190417_DOC_RESEARCHDATA.sql ├── LOG_PATH ├── MISE_EN_PROD_SEPT_2017 ├── add_base_no_arxiv.sql ├── audience_metadata.sql ├── migration_base_janvier2016-01_v1.sql ├── perf1.sql └── update_base_user.sql ├── public ├── .htaccess ├── bddconst.php ├── crossdomain.xml ├── css │ ├── api.css │ ├── aurehal.css │ ├── ccsd.css │ ├── cv.css │ ├── cv2.css │ ├── cv3.css │ ├── default-skin.css │ ├── hal.css │ ├── halms.css │ ├── jquery.switchButton.css │ ├── photoswipe.css │ ├── print_aurehal.css │ ├── print_cv.css │ ├── print_hal.css │ ├── rdf_gui.css │ ├── submit.css │ ├── templates │ │ ├── cv-tpl.css │ │ ├── tpl1.css │ │ └── tpl2.css │ └── widget-gallery.css ├── fonts │ ├── arialnb.ttf │ └── ariblk.ttf ├── img │ ├── arxiv.png │ ├── aurehal.png │ ├── autoloading.svg │ ├── background_fond.png │ ├── ccsd.logo.png │ ├── ccsd.png │ ├── charts │ │ ├── BarChart.png │ │ ├── ColumnChart.png │ │ ├── GeoChart.png │ │ ├── LineChart.png │ │ ├── PieChart.png │ │ ├── SteppedAreaChart.png │ │ └── table.png │ ├── default-skin.png │ ├── default-skin.svg │ ├── defaultThumb.jpg │ ├── favicon.png │ ├── file_shadow.jpg │ ├── filters.svg │ ├── flags.png │ ├── footer-bg.jpg │ ├── hal-ao.jpg │ ├── hal.body.bg.png │ ├── hal.png │ ├── hal_selcuk.png │ ├── hallinkout.png │ ├── halms-1-large.png │ ├── halms-1.png │ ├── halms-2-large.png │ ├── halms-2.png │ ├── halms-3-large.png │ ├── halms-3.png │ ├── halms-4-large.png │ ├── halms-4.png │ ├── halms-5-large.png │ ├── halms-5.png │ ├── halms-6-large.png │ ├── halms-6.png │ ├── halms.html.png │ ├── halms.pdf.png │ ├── heloise.gif │ ├── icon-mail.png │ ├── icon-pdf.png │ ├── icon-phone.png │ ├── licences │ │ ├── by.large.png │ │ ├── by.png │ │ ├── cc.large.png │ │ ├── cc.png │ │ ├── etalab.png │ │ ├── nc-eu.large.png │ │ ├── nc-eu.png │ │ ├── nc-jp.large.png │ │ ├── nc-jp.png │ │ ├── nc.large.png │ │ ├── nc.png │ │ ├── nd.large.png │ │ ├── nd.png │ │ ├── pd.large.png │ │ ├── pd.png │ │ ├── remix.large.png │ │ ├── remix.png │ │ ├── sa.large.png │ │ ├── sa.png │ │ ├── sampling.large.png │ │ ├── sampling.plus.large.png │ │ ├── sampling.plus.png │ │ ├── sampling.png │ │ ├── share.large.png │ │ ├── share.png │ │ ├── zero.large.png │ │ └── zero.png │ ├── loading.gif │ ├── logo-arxiv.png │ ├── logo-ccsd-footer.jpg │ ├── logo-ccsd.png │ ├── logo-hal.png │ ├── logo-istex.png │ ├── logo-openaccess.png │ ├── logo-pubmedcentral.png │ ├── portail-hal.gif │ ├── preloader.gif │ ├── pubmedcentral.jpg │ ├── sherpa-romeo.gif │ ├── social │ │ ├── facebook.png │ │ ├── google_plus.png │ │ ├── linkedin.png │ │ └── twitter.png │ ├── softwareheritage.png │ ├── spacer.gif │ ├── submit-step-file.png │ ├── tampon-hal.jpg │ ├── tamponHal.png │ ├── triangle.png │ ├── user.png │ ├── videhal.png │ ├── vignette-hal.jpg │ └── ws-struct.jpg ├── index.php ├── js │ ├── administrate │ │ ├── user-rights.js │ │ └── users-list.js │ ├── administratemail │ │ └── templates.js │ ├── api │ │ └── api.js │ ├── bootstrap-wysihtml5.js │ ├── browse │ │ └── browse.js │ ├── d3 │ │ ├── d3.v4.min.js │ │ └── d3tip.js │ ├── document │ │ ├── document.js │ │ ├── doublon.js │ │ ├── evaluation.js │ │ ├── photoswipe-ui-default.js │ │ ├── photoswipe.js │ │ └── validate.js │ ├── form │ │ └── decorator │ │ │ ├── identifiant │ │ │ ├── add.js │ │ │ └── delete.js │ │ │ ├── identifiers │ │ │ └── init.js │ │ │ └── lang │ │ │ └── init.js │ ├── jquery.switchButton.js │ ├── page │ │ ├── en_GB.js │ │ ├── fr_FR.js │ │ └── render.js │ ├── require.js │ ├── search │ │ ├── advanced-export.js │ │ ├── autocomplete.js │ │ └── search.js │ ├── submit │ │ ├── author.js │ │ ├── domain.js │ │ ├── file-detailled.js │ │ ├── file.js │ │ ├── index.js │ │ ├── meta.js │ │ ├── recap.js │ │ └── validation.js │ ├── translations.php │ ├── urlParser.js │ ├── user │ │ └── user.js │ ├── utile.js │ └── wysihtml5-0.js ├── landing-page │ ├── index.php │ └── robots.txt ├── proxy.php └── scss │ ├── rdf_gui.scss │ ├── submit.scss │ └── submit │ ├── _step-author.scss │ ├── _step-file.scss │ ├── _step-meta.scss │ └── _step-recap.scss ├── scripts ├── 20171019_CLEAN_EUROPROJ.php ├── Archives │ ├── addAliasMd5.php │ ├── addUserDepots.php │ ├── autoarchivage.php │ ├── checkRenamedArchivedFiles.php │ ├── cleanRelated.php │ ├── coherenceCV.php │ ├── coherenceMeta.php │ ├── coherenceMetaDocid.php │ └── loadARInra.php ├── CorrectionProdInraBMC.sql ├── ImportHceres.php ├── IrsteaImport.php ├── ProdinraImport.php ├── StatInist.php ├── addCodesArXiv.php ├── badHalrequest ├── campus-aar.php ├── checkFiles.php ├── cleanMeta.php ├── cleanStructures.php ├── coherenceDbSolr.php ├── conditor.php ├── controlStructures.php ├── convertVideo.php ├── createVideoImagettes.php ├── createXSDlight.php ├── cron │ ├── copyDb4Stat │ ├── loadVirtuoso.sh │ └── toggleVirtuosoProd ├── deleteDocument.php ├── do_coverpage.php ├── docImagette.php ├── emailInraReplacement.php ├── envoiCINES.php ├── europePMC.php ├── getAdminsEmails.php ├── getTei.php ├── halms.php ├── import-hceres.php ├── indexerDaemon.php ├── indicateur-CO-CNRS.sh ├── jel.php ├── labintel.php ├── lireMailArchivage.php ├── loadHalHeader.php ├── loadZendHeader.php ├── load_europ.php ├── maj_counter_robots.php ├── migrationORCID.php ├── modifAffiliationInNotices.php ├── ponctuel │ ├── exportBySolr.php │ ├── generateCoverPage.php │ ├── inversionNP_Literature.php │ ├── moissonnageScholix.php │ ├── sword.php │ ├── transferStructure.php │ └── transfertStructure.php ├── portails_collections │ ├── checkCollectionsDirs.php │ ├── copyConfig.php │ ├── createPortail.php │ └── duplicateCollectionMenus.php ├── rdf.php ├── rdfBackup.php ├── recupforLinkExt.php ├── references │ ├── createReferences.php │ ├── deleteReferences.php │ ├── extractReferences.php │ ├── htmlReferences.php │ ├── loop.sh │ └── updateReferences.php ├── repec.php ├── searchWithCursor.php ├── sendAlerts.php ├── sitemap.php ├── smesh.php ├── solr-process-queue.sh ├── solrDbDiff.php ├── solrJob.php ├── stat.php ├── statCV.php ├── tamponnate.php ├── testAPIPiwik.php ├── tools │ ├── load_anr-PIA.php │ ├── load_anr.php │ └── prepareSolrReIndexationScripts.php ├── traduction.php ├── unIndexDocs.php ├── updateArxivId.php ├── updateSWH.php ├── updateSherpaInfo.php ├── update_referential.php ├── verifFormat.php ├── verifImagette.php └── verifVersion.php └── tests ├── Hal └── TestConfig.php ├── application ├── BootstrapTest.php ├── aurehal │ └── controllers │ │ └── StructureControllerTest.php └── hal │ ├── controllers │ ├── FileControllerTest.php │ ├── IndexControllerTest.php │ ├── RightsControllerTest.php │ ├── RobotControllerTest.php │ ├── SearchControllerTest.php │ └── SubmitControllerTest.php │ └── views │ └── scripts │ └── submit │ └── ajaxgetidentifier_Test.php ├── bootstrap.php ├── library ├── Aurehal │ └── Referentiel_Test.php ├── Hal │ ├── Arxiv_Test.php │ ├── Document │ │ ├── Author_Test.php │ │ ├── File_Test.php │ │ ├── Meta_Test.php │ │ ├── Owner_Test.php │ │ ├── Tei │ │ │ ├── Document_Tei_Creator_Test.php │ │ │ └── Document_Tei_Loader_Test.php │ │ ├── TeiLoader_Test.php │ │ └── Validity_Test.php │ ├── Document_Test.php │ ├── Externdoc_Inra_Test.php │ ├── File_Test.php │ ├── Linkext_Test.php │ ├── Meta_Test.php │ ├── Patrol_Test.php │ ├── Rdf │ │ ├── Anrproject_Test.php │ │ ├── Author_Test.php │ │ ├── Document_Test.php │ │ ├── Domain_Test.php │ │ ├── Europeanproject_Test.php │ │ ├── Idhal_Test.php │ │ ├── Journal_Test.php │ │ ├── Structure_Test.php │ │ └── Typdoc_Test.php │ ├── Referentiels │ │ └── StructureFinderTest.php │ ├── Search │ │ └── Solr │ │ │ ├── Api │ │ │ └── RTF │ │ │ │ └── RftEntry_Test.php │ │ │ ├── Api_Test.php │ │ │ └── Search_Test.php │ ├── Settings_Test.php │ ├── Site │ │ ├── Collection_Test.php │ │ └── Portail_Test.php │ ├── Site_Test.php │ ├── Submit │ │ ├── Manager_Test.php │ │ └── Step │ │ │ └── Meta_Test.php │ ├── Tools_test.php │ ├── Transfert │ │ ├── Arxiv_Test.php │ │ └── SoftwareHeritage_Test.php │ ├── Translation │ │ └── Plugin_Test.php │ └── User_Test.php └── Thesaurus │ └── Thesaurus_Spdx_Test.php ├── phpunit-aurehal.xml ├── phpunit.xml └── ressources ├── ART-WithDOI.pdf ├── ART.pdf ├── ART_TEST.zip ├── Brazil.jpg ├── DirTree ├── dir1 │ └── dir3 │ │ ├── File3 │ │ └── otherFile_pruned └── dir2 │ ├── file2 │ ├── filePruned.txt │ └── filePruned2.txt ├── FR.pdf ├── Test.pdf ├── changement_sur_date.xml ├── grec.tex ├── krakow.doc ├── paper.tex ├── rdf ├── anr-1.rdf ├── doctype-art.rdf ├── european-116726.rdf ├── revue-7333.rdf ├── structure-1.rdf └── subject-phys.rdf ├── rtf ├── serialBiblio.php ├── serialBiblio.rtf ├── t.bib └── wget-log ├── russe.tex ├── sword ├── ART_ss_doi.xml ├── COMM_ssdoi.xml ├── COUV__ssdoi.xml ├── DOUV_ssdoi.xml ├── HDR.xml ├── MEM-Hal-InriaOnly.xml ├── OTHER_ssdoi.xml ├── OUV_ssdoi.xml ├── PATENT.xml ├── POSTER_ssdoi.xml ├── REPORT_ssdoi.xml └── THESE.xml ├── tei ├── art-inpress.xml ├── ineris-01596485.xml └── software.xml ├── test_sword_arxivOk.xml ├── test_sword_ouvrage.xml ├── test_sword_preprint.xml ├── test_sword_preprint_multilingual.xml └── translations ├── en └── licence.php └── fr └── licence.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/README.txt -------------------------------------------------------------------------------- /application-api/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/Bootstrap.php -------------------------------------------------------------------------------- /application-api/configs/application.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/configs/application.ini -------------------------------------------------------------------------------- /application-api/configs/episciences.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/configs/episciences.ini -------------------------------------------------------------------------------- /application-api/controllers/OaiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/controllers/OaiController.php -------------------------------------------------------------------------------- /application-api/controllers/RefController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/controllers/RefController.php -------------------------------------------------------------------------------- /application-api/controllers/WsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/controllers/WsController.php -------------------------------------------------------------------------------- /application-api/views/layouts/layout.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application-api/views/layouts/layout.phtml -------------------------------------------------------------------------------- /application-api/views/scripts/index/index.phtml: -------------------------------------------------------------------------------- 1 | Dépôt 2 | 3 | -------------------------------------------------------------------------------- /application/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/Bootstrap.php -------------------------------------------------------------------------------- /application/configs/acl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/configs/acl.ini -------------------------------------------------------------------------------- /application/configs/application.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/configs/application.ini -------------------------------------------------------------------------------- /application/configs/halspm-application.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/configs/halspm-application.ini -------------------------------------------------------------------------------- /application/configs/navigation.portail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/configs/navigation.portail.json -------------------------------------------------------------------------------- /application/controllers/AboutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/AboutController.php -------------------------------------------------------------------------------- /application/controllers/AjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/AjaxController.php -------------------------------------------------------------------------------- /application/controllers/ArchiveController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/ArchiveController.php -------------------------------------------------------------------------------- /application/controllers/BrowseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/BrowseController.php -------------------------------------------------------------------------------- /application/controllers/CracController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/CracController.php -------------------------------------------------------------------------------- /application/controllers/DataController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/DataController.php -------------------------------------------------------------------------------- /application/controllers/ErrorController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/ErrorController.php -------------------------------------------------------------------------------- /application/controllers/FaqController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/FaqController.php -------------------------------------------------------------------------------- /application/controllers/FeedsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/FeedsController.php -------------------------------------------------------------------------------- /application/controllers/FileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/FileController.php -------------------------------------------------------------------------------- /application/controllers/FolderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/FolderController.php -------------------------------------------------------------------------------- /application/controllers/HelpController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/HelpController.php -------------------------------------------------------------------------------- /application/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/IndexController.php -------------------------------------------------------------------------------- /application/controllers/NewsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/NewsController.php -------------------------------------------------------------------------------- /application/controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/PageController.php -------------------------------------------------------------------------------- /application/controllers/PatrolController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/PatrolController.php -------------------------------------------------------------------------------- /application/controllers/PingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/PingController.php -------------------------------------------------------------------------------- /application/controllers/RightsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/RightsController.php -------------------------------------------------------------------------------- /application/controllers/RobotsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/RobotsController.php -------------------------------------------------------------------------------- /application/controllers/SearchController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/SearchController.php -------------------------------------------------------------------------------- /application/controllers/SectionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/SectionController.php -------------------------------------------------------------------------------- /application/controllers/StatController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/StatController.php -------------------------------------------------------------------------------- /application/controllers/SubmitController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/SubmitController.php -------------------------------------------------------------------------------- /application/controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/UserController.php -------------------------------------------------------------------------------- /application/controllers/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/ViewController.php -------------------------------------------------------------------------------- /application/controllers/WebsiteController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/WebsiteController.php -------------------------------------------------------------------------------- /application/controllers/WidgetController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/controllers/WidgetController.php -------------------------------------------------------------------------------- /application/languages/en/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/api.php -------------------------------------------------------------------------------- /application/languages/en/api_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/api_search.php -------------------------------------------------------------------------------- /application/languages/en/emails/ref_structure_ajout.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_ajout.phtml -------------------------------------------------------------------------------- /application/languages/en/emails/ref_structure_fusion.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_fusion.phtml -------------------------------------------------------------------------------- /application/languages/en/errors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/errors.php -------------------------------------------------------------------------------- /application/languages/en/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/form.php -------------------------------------------------------------------------------- /application/languages/en/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/js.php -------------------------------------------------------------------------------- /application/languages/en/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/language.php -------------------------------------------------------------------------------- /application/languages/en/libelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/libelle.php -------------------------------------------------------------------------------- /application/languages/en/libelles_inist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/libelles_inist.php -------------------------------------------------------------------------------- /application/languages/en/mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/mails.php -------------------------------------------------------------------------------- /application/languages/en/ref_metadatalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/ref_metadatalist.php -------------------------------------------------------------------------------- /application/languages/en/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/submit.php -------------------------------------------------------------------------------- /application/languages/en/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/en/views.php -------------------------------------------------------------------------------- /application/languages/es/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/es/api.php -------------------------------------------------------------------------------- /application/languages/es/mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/es/mails.php -------------------------------------------------------------------------------- /application/languages/es/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/es/views.php -------------------------------------------------------------------------------- /application/languages/eu/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/eu/api.php -------------------------------------------------------------------------------- /application/languages/eu/mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/eu/mails.php -------------------------------------------------------------------------------- /application/languages/eu/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/eu/views.php -------------------------------------------------------------------------------- /application/languages/fr/Zend_Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/Zend_Validate.php -------------------------------------------------------------------------------- /application/languages/fr/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/api.php -------------------------------------------------------------------------------- /application/languages/fr/api_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/api_search.php -------------------------------------------------------------------------------- /application/languages/fr/archive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/archive.php -------------------------------------------------------------------------------- /application/languages/fr/elements_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/elements_form.php -------------------------------------------------------------------------------- /application/languages/fr/emails/ref_structure_ajout.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_ajout.phtml -------------------------------------------------------------------------------- /application/languages/fr/emails/ref_structure_fusion.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_fusion.phtml -------------------------------------------------------------------------------- /application/languages/fr/js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/js.php -------------------------------------------------------------------------------- /application/languages/fr/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/language.php -------------------------------------------------------------------------------- /application/languages/fr/libelle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/libelle.php -------------------------------------------------------------------------------- /application/languages/fr/mails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/mails.php -------------------------------------------------------------------------------- /application/languages/fr/ref_author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_author.php -------------------------------------------------------------------------------- /application/languages/fr/ref_domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_domain.php -------------------------------------------------------------------------------- /application/languages/fr/ref_journal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_journal.php -------------------------------------------------------------------------------- /application/languages/fr/ref_metadatalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_metadatalist.php -------------------------------------------------------------------------------- /application/languages/fr/ref_projanr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_projanr.php -------------------------------------------------------------------------------- /application/languages/fr/ref_projeurop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_projeurop.php -------------------------------------------------------------------------------- /application/languages/fr/ref_structure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/ref_structure.php -------------------------------------------------------------------------------- /application/languages/fr/submit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/submit.php -------------------------------------------------------------------------------- /application/languages/fr/validation_forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/validation_forms.php -------------------------------------------------------------------------------- /application/languages/fr/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/languages/fr/views.php -------------------------------------------------------------------------------- /application/views/layouts/common/debug.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/common/debug.phtml -------------------------------------------------------------------------------- /application/views/layouts/common/errors.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/common/errors.phtml -------------------------------------------------------------------------------- /application/views/layouts/common/footer.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/common/footer.phtml -------------------------------------------------------------------------------- /application/views/layouts/common/mail.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/common/mail.phtml -------------------------------------------------------------------------------- /application/views/layouts/common/user.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/common/user.phtml -------------------------------------------------------------------------------- /application/views/layouts/layout.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/layouts/layout.phtml -------------------------------------------------------------------------------- /application/views/scripts/ajax/ref/new.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/ajax/ref/new.phtml -------------------------------------------------------------------------------- /application/views/scripts/archive/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/archive/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/author.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/author.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/collection.json.phtml: -------------------------------------------------------------------------------- 1 | facets); 3 | 4 | -------------------------------------------------------------------------------- /application/views/scripts/browse/domain.json.phtml: -------------------------------------------------------------------------------- 1 | domainTree; 3 | 4 | -------------------------------------------------------------------------------- /application/views/scripts/browse/domain.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/domain.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/facet.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/facet.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/index.phtml: -------------------------------------------------------------------------------- 1 | INDEX -------------------------------------------------------------------------------- /application/views/scripts/browse/meta.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/meta.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/period.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/period.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/portal.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/portal.phtml -------------------------------------------------------------------------------- /application/views/scripts/browse/year.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/browse/year.phtml -------------------------------------------------------------------------------- /application/views/scripts/crac/help.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/crac/help.phtml -------------------------------------------------------------------------------- /application/views/scripts/crac/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/crac/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/crac/search.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/crac/search.phtml -------------------------------------------------------------------------------- /application/views/scripts/document/img.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/document/img.phtml -------------------------------------------------------------------------------- /application/views/scripts/document/spm.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/document/spm.phtml -------------------------------------------------------------------------------- /application/views/scripts/error/error.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/error/error.phtml -------------------------------------------------------------------------------- /application/views/scripts/file/video.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/file/video.phtml -------------------------------------------------------------------------------- /application/views/scripts/form/render.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/form/render.phtml -------------------------------------------------------------------------------- /application/views/scripts/index/submenu.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/index/submenu.phtml -------------------------------------------------------------------------------- /application/views/scripts/index/test.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/index/test.phtml -------------------------------------------------------------------------------- /application/views/scripts/news/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/news/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/page/render.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/page/render.phtml -------------------------------------------------------------------------------- /application/views/scripts/robots/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/robots/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/search/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/search/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/settings/domain.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/scripts/stat/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/stat/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/submit/errors.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/submit/errors.phtml -------------------------------------------------------------------------------- /application/views/scripts/submit/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/submit/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/activate.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/activate.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/create.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/create.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/cv.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/cv.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/docowner.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/docowner.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/edit.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/edit.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/ftp.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/ftp.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/idhal.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/idhal.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/index.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/library.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/library.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/login.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/login.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/login2.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/login2.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/related.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/related.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/reply.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/reply.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/search.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/search.phtml -------------------------------------------------------------------------------- /application/views/scripts/user/stat.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/HEAD/application/views/scripts/user/stat.phtml -------------------------------------------------------------------------------- /application/views/scripts/view/file.phtml: -------------------------------------------------------------------------------- 1 |