├── .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: -------------------------------------------------------------------------------- 1 | .buildpath 2 | .project 3 | .settings 4 | .sass-cache 5 | *~ 6 | *.save 7 | *.new 8 | *.old 9 | \#* 10 | cache 11 | documents 12 | docs 13 | data 14 | TAGS 15 | config/pwd.json 16 | config*/pwd.json 17 | public/info.php 18 | .idea 19 | public/scss/*.css 20 | public/scss/*.css.map 21 | vendor/* 22 | tests/docs/* 23 | .scannerwork 24 | scripts/library 25 | sonar-project.properties 26 | /tests/phpunit*.phar 27 | composer.lock 28 | config/*.cnf 29 | install/confs/* 30 | install/composer.phar 31 | *.log 32 | public/php_info.php 33 | .vscode/* -------------------------------------------------------------------------------- /application-api/controllers/IndexController.php: -------------------------------------------------------------------------------- 1 | redirect ( '/docs' ); 5 | } 6 | /** 7 | * robots.txt 8 | */ 9 | public function robotsAction() { 10 | $this->forward('index', 'robots'); 11 | } 12 | } -------------------------------------------------------------------------------- /application-api/controllers/WsController.php: -------------------------------------------------------------------------------- 1 | _helper->layout()->disableLayout(); 12 | $this->_helper->viewRenderer->setNoRender(true); 13 | $this->redirect('/docs/soap'); 14 | } 15 | } -------------------------------------------------------------------------------- /application-api/views/layouts/common/footer.phtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application-api/views/scripts/index/index.phtml: -------------------------------------------------------------------------------- 1 | Dépôt 2 | %%STRUCTNAME%% (%%STRUCTID%%) a été ajoutée. 4 | 5 | Vous recevez ce message car vous êtes référent de cette structure ou d'une ou plusieurs structures liées à celle-ci. 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe HAL 11 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/en/emails/ref_structure_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, la structure %%STRUCTNAME%% (%%STRUCTID%%) a été remplacée par la structure %%NEWSTRUCTNAME%% (%%NEWSTRUCTID%%). 4 | 5 | Vous recevez ce message car vous êtes référent de cette structure ou d'une ou plusieurs structures liées à celle-ci. 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe HAL 11 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/en/emails/ref_structure_modification.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La structure %%STRUCTNAME%% (%%STRUCTID%%) pour laquelle vous êtes référent ou liée à une ou plusieurs structures dont vous êtes référent, a été modifiée. 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe HAL 9 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/en/emails/ref_structure_suppression.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La structure %%STRUCTNAME%% (%%STRUCTID%%) pour laquelle vous êtes référent ou liée à une ou plusieurs structures dont vous êtes référent, a été supprimée. 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe HAL 9 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/fr/emails/ref_structure_ajout.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La structure %%STRUCTNAME%% (%%STRUCTID%%) a été ajoutée. 4 | 5 | Vous recevez ce message car vous êtes référent de cette structure ou d'une ou plusieurs structures liées à celle-ci. 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe HAL 11 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/fr/emails/ref_structure_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, la structure %%STRUCTNAME%% (%%STRUCTID%%) a été remplacée par la structure %%NEWSTRUCTNAME%% (%%NEWSTRUCTID%%). 4 | 5 | Vous recevez ce message car vous êtes référent de cette structure ou d'une ou plusieurs structures liées à celle-ci. 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe HAL 11 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/fr/emails/ref_structure_modification.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La structure %%STRUCTNAME%% (%%STRUCTID%%) pour laquelle vous êtes référent ou liée à une ou plusieurs structures dont vous êtes référent, a été modifiée. 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe HAL 9 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/languages/fr/emails/ref_structure_suppression.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La structure %%STRUCTNAME%% (%%STRUCTID%%) pour laquelle vous êtes référent ou liée à une ou pluisuers structures dont vous êtes référent, a été supprimée. 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe HAL 9 | HAL CCSD -------------------------------------------------------------------------------- /application-aurehal/views/layouts/common/footer.phtml: -------------------------------------------------------------------------------- 1 | 2 | Accès Unifié aux férentiels HAL 3 | -------------------------------------------------------------------------------- /application-aurehal/views/layouts/common/sidebar.phtml: -------------------------------------------------------------------------------- 1 |
2 | nav()->getPages() as $page) { 5 | $active = $page->isActive(true) || $page->getController() == Zend_Controller_Front::getInstance()->getRequest()->getControllerName(); 6 | ?> 7 | translate($page->getLabel())?> 8 | 9 |
-------------------------------------------------------------------------------- /application-aurehal/views/layouts/common/user.phtml: -------------------------------------------------------------------------------- 1 | 2 | translate($this->message) ?> 3 | -------------------------------------------------------------------------------- /application-aurehal/views/scripts/error/missing.phtml: -------------------------------------------------------------------------------- 1 |
2 | translate('Ressource inexistante') ?> 3 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/error/refused.phtml: -------------------------------------------------------------------------------- 1 |
2 | translate('Accès refusé') ?> 3 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/idhal/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/application-aurehal/views/scripts/idhal/index.phtml -------------------------------------------------------------------------------- /application-aurehal/views/scripts/idhal/read.phtml: -------------------------------------------------------------------------------- 1 |

translate("Fiche d'un IDHAL");?>

2 | 3 |
4 |
5 |
code ?>
6 | -------------------------------------------------------------------------------- /application-aurehal/views/scripts/index/index.phtml: -------------------------------------------------------------------------------- 1 | layout()->title = $this->translate("Liste des référentiels"); 3 | $this->layout()->description = $this->translate("AURéHAL permet d’accéder aux référentiels utilisés dans HAL."); 4 | 5 | echo $this->translate("desc_aurehal_index"); 6 | -------------------------------------------------------------------------------- /application-aurehal/views/scripts/partials/alert.phtml: -------------------------------------------------------------------------------- 1 |
2 | translate($this->message) ?> 3 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/partials/formReplace.phtml: -------------------------------------------------------------------------------- 1 |
2 | translate('Remplacer par...') ?> 3 | 4 |
5 | 6 |
7 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/partials/formSearch.phtml: -------------------------------------------------------------------------------- 1 |
"> 2 |
3 | getRequest()->getParam('critere'); 5 | 6 | echo new Zend_Form_Element_Text('critere', [ 7 | 'class' => 'form-control', 8 | 'decorators' => [['ViewHelper']], 9 | 'value' => Ccsd_Tools::ifsetor($critere, "") 10 | ]) 11 | ?> 12 |
13 | 14 |
15 |
16 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/referentiel/confirm.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/application-aurehal/views/scripts/referentiel/confirm.phtml -------------------------------------------------------------------------------- /application-aurehal/views/scripts/referentiel/header.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 |

translate($this->description) ?>

4 | 5 |
6 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/referentiel/maintenance.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 | LES MODIFICATIONS NE SONT PAS PRISES EN COMPTE POUR L'INSTANT (VERSION DE TEST) 5 |
6 |
7 |
-------------------------------------------------------------------------------- /application-aurehal/views/scripts/structure/create.phtml: -------------------------------------------------------------------------------- 1 | no_javascript = true; 4 | include __DIR__ . "/../referentiel/read.phtml" 5 | 6 | ?> 7 | 8 | -------------------------------------------------------------------------------- /application-aurehal/views/scripts/typdoc/index.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/application-aurehal/views/scripts/typdoc/index.phtml -------------------------------------------------------------------------------- /application-aurehal/views/scripts/user/login.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate("Connexion"); 3 | 4 | if ($this->form) { 5 | $this->layout()->pageDescription = $this->translate("Saisissez votre nom de connexion et votre mot de passe."); 6 | echo $this->form; 7 | } else { 8 | echo $this->DisplayFlashMessages('success', false); 9 | } 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /application-cv/controllers/ErrorController.php: -------------------------------------------------------------------------------- 1 | _helper->layout()->disableLayout(); 13 | $this->_helper->viewRenderer->setNoRender(true); 14 | echo 'error'; 15 | } 16 | } -------------------------------------------------------------------------------- /application-cv/views/layouts/common/user.phtml: -------------------------------------------------------------------------------- 1 | widget(array('title' => $this->translate('cv_widget_ext'), 'content' => $this->cv->getWidgetExt(), 'class' => 'widget-ext')); 4 | -------------------------------------------------------------------------------- /application-cv/views/scripts/index/widget-idext.phtml: -------------------------------------------------------------------------------- 1 | cv->getIdExt(); 4 | $servers = $this->cv->getServerExt(); 5 | $urls = $this->cv->getServerUrl(); 6 | $content = ''; 14 | echo $this->widget(array('title' => $this->translate('cv_widget_idext'), 'content' => $content, 'class' => 'widget-'.'idext')); -------------------------------------------------------------------------------- /application-cv/views/scripts/index/widget-metrics.phtml: -------------------------------------------------------------------------------- 1 | cv->getFacetMetrics(); 4 | $content = ''.$this->translate('Consultations du cv').''; 5 | $content .= '

'.$metrics.'

'; 6 | 7 | echo $this->widget(array('title' => $this->translate('cv_widget_metrics'), 'content' => $content, 'class' => 'widget-metrics')); 8 | -------------------------------------------------------------------------------- /application-cv/views/scripts/index/widget-photo.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 |
5 |
-------------------------------------------------------------------------------- /application-cv/views/scripts/index/widget-socialurl.phtml: -------------------------------------------------------------------------------- 1 | cv->getSocialUrlExt(); 4 | $servers = $this->cv->getSocialServerExt(); 5 | $content = ''; 12 | echo $this->widget(array('title' => $this->translate('cv_widget_socialurl'), 'content' => $content, 'class' => 'widget-'.'socialurl')); -------------------------------------------------------------------------------- /application-halms/configs/navigation.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "label" : "Accueil", 3 | "controller" : "index", 4 | "action" : "index", 5 | "resource" : "index-index", 6 | "icon" : "glyphicon glyphicon-home", 7 | "privilege": "guest" 8 | },{ 9 | "label" : "Mes articles", 10 | "controller" : "submissions", 11 | "action" : "index", 12 | "resource" : "submissions-index", 13 | "icon" : "glyphicon glyphicon-file", 14 | "privilege": "member" 15 | },{ 16 | "label" : "Tableau de bord", 17 | "controller" : "administrate", 18 | "action" : "index", 19 | "resource" : "administrate-index", 20 | "icon" : "glyphicon glyphicon-tasks", 21 | "privilege": "halmsadmin" 22 | }] -------------------------------------------------------------------------------- /application-halms/controllers/IndexController.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |

HALMS

4 |

translate("Plateforme de gestion des dépôts de HAL vers PubMed Central"); ?>

5 |
6 | -------------------------------------------------------------------------------- /application-halms/views/layouts/common/user.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /application-halms/views/scripts/administrate/error-reported-author.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /application-halms/views/scripts/error/refused.phtml: -------------------------------------------------------------------------------- 1 |
2 | translate('Accès refusé') ?> 3 |
-------------------------------------------------------------------------------- /application-halms/views/scripts/submissions/default.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /application/controllers/AboutController.php: -------------------------------------------------------------------------------- 1 | forward('about', 'page'); 13 | return; 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /application/controllers/DataController.php: -------------------------------------------------------------------------------- 1 | _helper->layout()->disableLayout(); 9 | $this->_helper->viewRenderer->setNoRender(); 10 | 11 | 12 | 13 | } 14 | } -------------------------------------------------------------------------------- /application/controllers/DocumentationController.php: -------------------------------------------------------------------------------- 1 | forward('documentation', 'page'); 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /application/controllers/FaqController.php: -------------------------------------------------------------------------------- 1 | forward('faq', 'page'); 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /application/controllers/FeedsController.php: -------------------------------------------------------------------------------- 1 | _action = $this->getRequest()->getActionName(); 14 | $this->getRequest()->setActionName('render'); 15 | } 16 | 17 | public function renderAction () 18 | { 19 | $this->renderScript('index/submenu.phtml'); 20 | } 21 | } -------------------------------------------------------------------------------- /application/controllers/HelpController.php: -------------------------------------------------------------------------------- 1 | renderScript('index/submenu.phtml'); 8 | } 9 | 10 | 11 | public function informationAction() 12 | { 13 | //Initialisation de la vue 14 | $this->view->typdocsNotice = Hal_Settings::getTypdocNotice(); 15 | $this->view->typdocsFulltext = Hal_Settings::getTypdocFulltext(); 16 | $this->view->typdocs = Hal_Settings::getTypdocs(); 17 | 18 | //$this->view->typdocsAccepted = Hal_Settings::getTypdocAssociated($this->_session->document->getTypdoc()); 19 | 20 | 21 | 22 | 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /application/controllers/IndexController.php: -------------------------------------------------------------------------------- 1 | view->controller = 'index'; 13 | $this->forward('index', 'page'); 14 | } 15 | 16 | public function langAction() 17 | { 18 | $this->_helper->layout()->disableLayout(); 19 | $this->_helper->viewRenderer->setNoRender(); 20 | echo Zend_Json::encode(Zend_Registry::get('Zend_Translate')->getMessages('all')); 21 | } 22 | 23 | } 24 | 25 | -------------------------------------------------------------------------------- /application/controllers/NewsController.php: -------------------------------------------------------------------------------- 1 | view->canEdit = true; 10 | } 11 | 12 | $news = new Hal_News(); 13 | $this->view->news = $news->getListNews(); 14 | 15 | } 16 | 17 | public function widgetAction() 18 | { 19 | 20 | } 21 | 22 | } -------------------------------------------------------------------------------- /application/controllers/PingController.php: -------------------------------------------------------------------------------- 1 | _helper->layout()->disableLayout(); 13 | $this->_helper->viewRenderer->setNoRender(); 14 | echo 'pong'; 15 | exit; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /application/controllers/RightsController.php: -------------------------------------------------------------------------------- 1 | renderScript('index/submenu.phtml'); 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /application/languages/en/emails/account_create.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | a new account was requested on %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | 5 | You must click on the following link to activate your account: 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | If the link does not work, please copy and paste it in your browser address bar. 10 | 11 | 12 | Sincerely yours, 13 | -- 14 | The %%PORTAIL%%/CCSD team 15 | 16 | -------------------------------------------------------------------------------- /application/languages/en/emails/account_lost_login.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | We are sending you the list of usernames using your email address upon your request : 4 | 5 | %%MAIL_ACCOUNT_USERNAME_LIST%% 6 | 7 | If you did not request these instructions, you can safely ignore this message. 8 | For instance, someone may have done a mistake when entering his email. 9 | 10 | Sincerely yours, 11 | -- 12 | The %%PORTAIL%%/CCSD team 13 | -------------------------------------------------------------------------------- /application/languages/en/emails/account_lost_pwd.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | We are sending password reset instructions to this email address upon your request. 4 | 5 | You must click on the following link to reset your password: 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | If you did not request these instructions, you can safely ignore this message. 10 | For instance, someone may have done a mistake when entering his username. 11 | 12 | Sincerely yours, 13 | 14 | -- 15 | The %%PORTAIL%%/CCSD team 16 | 17 | -------------------------------------------------------------------------------- /application/languages/en/emails/alert_corresp_author_document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | New submission on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | New submission on the portal ( %%PORTAIL%% %%PORTAIL_URL%% ). 5 | 6 | ------------------------------------------------------------------------------ 7 | ID : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | contributor : %%DOC_CONTRIBUTOR%% 10 | submission date : %%DOC_DATE%% 11 | title : %%DOC_TITLE%% 12 | author(s) : %%DOC_AUTHORS%% 13 | laboratorie(s) : %%DOC_LABOS%% 14 | domain (s) : %%DOC_DOMAINS%% 15 | ------------------------------------------------------------------------------ 16 | 17 | Please check the document by login on %%PORTAIL_URL%% 18 | 19 | ----------------- 20 | %%PORTAIL%%/CCSD Team 21 | -------------------------------------------------------------------------------- /application/languages/en/emails/alert_moderator_new_submission.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | New submission on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | ID : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | contributor : %%DOC_CONTRIBUTOR%% 9 | submission : %%DOC_DATE%% 10 | type of document : %%DOC_TYPDOC%% 11 | title : %%DOC_TITLE%% 12 | author(s) : %%DOC_AUTHORS%% 13 | laboratorie(s) : %%DOC_LABOS%% 14 | domain(s) : %%DOC_DOMAINS%% 15 | ------------------------------------------------------------------------------ 16 | 17 | Please check the document by login on %%PORTAIL_URL%% 18 | 19 | ----------------- 20 | %%PORTAIL%%/CCSD Team 21 | -------------------------------------------------------------------------------- /application/languages/en/emails/alert_user_search.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | This automatic message informs you of the new online documents corresponding to your alert : %%ALERT_NAME%%. 4 | The frequency of you alert is : %%ALERT_FREQ%% 5 | 6 | There are %%ALERT_NUM_DOCS%% documents corresponding to your subscription criteria. 7 | Here is the link to access your research : %%ALERT_SEARCH_URL%% 8 | You can modify your alerts on : https://hal.archives-ouvertes.fr/user/search 9 | 10 | %%ALERT_DOC_LIMIT%% 11 | ------------------------------------------------------------------------------ 12 | %%ALERT_DOC_LIST%% 13 | ------------------------------------------------------------------------------ 14 | 15 | -- 16 | %%PORTAIL%%/CCSD Team 17 | -------------------------------------------------------------------------------- /application/languages/en/emails/document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your document %%DOC_ID%%, version %%DOC_VERSION%% is now available online on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | The link to you document is : %%DOC_URL%% 6 | %%MSG_MODERATEUR%% 7 | 8 | Greetings, 9 | 10 | ----------------- 11 | %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_accepted_arxiv.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your document %%DOC_ID%%, version %%DOC_VERSION%% is now available online on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | The link to your article is : %%DOC_URL%% 6 | 7 | This submission was transfered to arXiv and its arXiv final identifier will be automatically added to HAL as soon as it will be validated by arXiv. 8 | 9 | %%MSG_MODERATEUR%% 10 | 11 | Greetings, 12 | 13 | ----------------- 14 | %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_adminmodify.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your document %%DOC_ID%%, version %%DOC_VERSION%% will be evaluted again. 4 | The requested modifications will be carried out by %%ADMIN%%, administrator of the portal %%PORTAIL%%. 5 | 6 | Greetings, 7 | 8 | ----------------- 9 | %%PORTAIL%% Team 10 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/en/emails/document_alert_admin.phtml: -------------------------------------------------------------------------------- 1 | %%MAIL_TO_FULLNAME%%, 2 | 3 | A new document is online on the portal you administrate : 4 | 5 | %%DOC_REF%% 6 | 7 | Greatings, 8 | -- 9 | Automatic message from %%MAIL_SIGNATURE%% 10 | 11 | P.S : the document has to be indexed by our machines. You can arrive on the page 'Document not accessible' by clicking on the link as long as the indexation has not processed your document. 12 | 13 | I don't want to receive this kind of emails anymore. -------------------------------------------------------------------------------- /application/languages/en/emails/document_claim_ownership.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | A request of property share was made on your document %%DOC_ID%% ( %%DOC_URL%% ). 4 | 5 | title : %%DOC_TITLE%% 6 | author(s) : %%DOC_AUTHORS%% 7 | 8 | Here is the request of %%REQUEST_USER%% (%%REQUEST_USER_EMAIL%%) : 9 | %%REQUEST_MESSAGE%% 10 | 11 | To satisfy this request, you have to go to %%PORTAIL%% ( %%PORTAIL_URL%% ) on the page "My space > My shared ownership" 12 | 13 | Greetings, 14 | 15 | ----------------- 16 | %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_claim_ownership_direct.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | The user %%SCREEN_NAME%% shared you the ownership of the document %%DOC_ID%%, version %%DOC_VERSION%% . 4 | 5 | Greetings, 6 | 7 | ----------------- 8 | The %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_claim_ownership_ko.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your request of shared ownership on the document %%DOC_ID%%, version %%DOC_VERSION%% was denied by %%SCREEN_NAME%% . 4 | 5 | Greetings, 6 | 7 | ----------------- 8 | %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_claim_ownership_ok.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your request of shared ownership on the document %%DOC_ID%%, version %%DOC_VERSION%% was accepted by %%SCREEN_NAME%% . 4 | 5 | Greetings, 6 | 7 | ----------------- 8 | The %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_deleted.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Unfortunatly, your document (%%DOC_ID%%, version %%DOC_VERSION%%) can not be accepted on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%% 6 | 7 | If you want further information regarding the scientific evaluation of your submission, please write to hal.support@ccsd.cnrs.fr 8 | 9 | Greetings, 10 | 11 | ----------------- 12 | The %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_file_access_ko.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your access request to the embargoed document (%%DOC_FILENAME%%) from %%DOC_ID%% ( %%DOC_URL%% ) has been denied by %%REFUSEDBY%% 4 | 5 | Sincerely yours, 6 | 7 | --- 8 | The %%PORTAIL%%/CCSD team 9 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/en/emails/document_file_access_ok.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Your access request to the embargoed document (%%DOC_FILENAME%%) from %%DOC_ID%% ( %%DOC_URL%% ) has been granted by %%ACCEPTEDBY%% 4 | The document is now available to you under %%DOC_URL%% when logged in on HAL or via the following URL: %%DOC_FILE_URL%% 5 | 6 | Sincerely yours, 7 | 8 | --- 9 | The %%PORTAIL%%/CCSD team 10 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/en/emails/document_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, 4 | votre dépôt %%DOC_ID%%, "%%DOC_TITLE%%" 5 | a été remplacé par le dépôt %%REPLACEID%%, "%%REPLACE_TITLE%%". 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/en/emails/document_refused.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Unfortunately, your document (%%DOC_ID%%, version %%DOC_VERSION%%) can not be accepted on %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%% 6 | 7 | If you want further information regarding the scientific evaluation of your submission, please write to hal.support@ccsd.cnrs.fr 8 | 9 | Greetings, 10 | 11 | ----------------- 12 | The %%PORTAIL%%/CCSD Team -------------------------------------------------------------------------------- /application/languages/en/emails/document_submitted.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | The information regarding your new submission on %%PORTAIL%% ( %%DOC_URL%% ) is : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | id : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | password : %%DOC_PWD%% 10 | submission date : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | This information will be necessary during your futur modification of this article. 14 | The document will now be evaluated : file(s) check, metadatas capture, etc 15 | 16 | Greetings, 17 | 18 | ----------------- 19 | The %%PORTAIL%%/CCSD team -------------------------------------------------------------------------------- /application/languages/en/emails/document_toupdate.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | Please make the following corrections to your document %%DOC_ID%% (version %%DOC_VERSION%%) by login on %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | %%MSG_MODERATEUR%% 5 | 6 | Without modifications or answer in the next 5 months, the document will be deleted from the server. You can user the feature "Annotate/Answer" to the modification request. 7 | 8 | Greetings, 9 | 10 | ----------------- 11 | The %%PORTAIL%%/CCSD team -------------------------------------------------------------------------------- /application/languages/en/emails/document_toupdate_reminder.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | This message is a reminder. 4 | 5 | In order to put your submission online, please make the following corrections to your document %%DOC_ID%%, version %%DOC_VERSION%% by logging into %%PORTAIL%% ( %%PORTAIL_URL%% ) 6 | --- 7 | %%MSG_MODERATEUR%% 8 | --- 9 | 10 | You can use the "Modify" ou the "Answer" actions in the the menu "Documents waiting for modifications" in "My deposits" space. 11 | 12 | Greetings, 13 | 14 | ----------------- 15 | The %%PORTAIL%% team 16 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/en/emails/notice_submitted.phtml: -------------------------------------------------------------------------------- 1 | Dear %%USER%%, 2 | 3 | The information regarding your new record on %%PORTAIL%% ( %%PORTAIL_URL%% ) is : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | id : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | password : %%DOC_PWD%% 10 | submission date : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | This information will be necessary during your futur modifications of this article. 14 | 15 | Greetings, 16 | 17 | ----------------- 18 | The %%PORTAIL%%/CCSD team -------------------------------------------------------------------------------- /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/emails/ref_structure_modification.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_modification.phtml -------------------------------------------------------------------------------- /application/languages/en/emails/ref_structure_suppression.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_suppression.phtml -------------------------------------------------------------------------------- /application/languages/en/errors.php: -------------------------------------------------------------------------------- 1 | "Invalid token.", 11 | "Impossible de retirer la propriété : le document n\'a pas été trouvé." => "Impossible to remove ownership : the document was not found." 12 | ); -------------------------------------------------------------------------------- /application/languages/es/emails/account_create.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Vous venez de créer un compte sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | 5 | Pour activer votre nouveau compte et pouvoir vous authentifier au système, merci de bien vouloir cliquer sur le lien 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | 15 | -------------------------------------------------------------------------------- /application/languages/es/emails/account_lost_login.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La liste des noms d'utilisateurs liés à votre adresse de messagerie a été demandée. 4 | 5 | Voici la liste des noms d'utilisateur trouvés pour votre compte : 6 | 7 | %%MAIL_ACCOUNT_USERNAME_LIST%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | -------------------------------------------------------------------------------- /application/languages/es/emails/account_lost_pwd.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La réinitialisation de votre mot de passe a été demandée . Si vous n'êtes pas à l'origine de cette demande vous pouvez ignorer ce message. 4 | 5 | Sinon vous pouvez cliquer sur le lien suivant pour changer votre mot de passe : 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | -------------------------------------------------------------------------------- /application/languages/es/emails/alert_corresp_author_document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Nouveau dépôt sur le portail ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | identifiant : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | déposant : %%DOC_CONTRIBUTOR%% 9 | date de soumission : %%DOC_DATE%% 10 | titre : %%DOC_TITLE%% 11 | auteur(s) : %%DOC_AUTHORS%% 12 | laboratoire(s) : %%DOC_LABOS%% 13 | domaine(s) : %%DOC_DOMAINS%% 14 | ------------------------------------------------------------------------------ 15 | 16 | Merci de vérifier ce document en vous connectant sur %%PORTAIL_URL%% 17 | 18 | ----------------- 19 | L'équipe %%PORTAIL%%/CCSD 20 | -------------------------------------------------------------------------------- /application/languages/es/emails/alert_moderator_new_submission.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Nouveau dépôt sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | identifiant : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | déposant : %%DOC_CONTRIBUTOR%% 9 | date de soumission : %%DOC_DATE%% 10 | type de document : %%DOC_TYPDOC%% 11 | titre : %%DOC_TITLE%% 12 | auteur(s) : %%DOC_AUTHORS%% 13 | laboratoire(s) : %%DOC_LABOS%% 14 | domaine(s) : %%DOC_DOMAINS%% 15 | ------------------------------------------------------------------------------ 16 | 17 | Merci de vérifier ce document en vous connectant sur %%PORTAIL_URL%% 18 | 19 | ----------------- 20 | L'équipe %%PORTAIL%%/CCSD 21 | -------------------------------------------------------------------------------- /application/languages/es/emails/alert_user_search.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Ce message automatique vous indique les nouveaux documents disponibles correspondant à votre alerte : %%ALERT_NAME%% 4 | La fréquence de votre alerte est : %%ALERT_FREQ%% 5 | Il y a %%ALERT_NUM_DOCS%% documents correspondant à votre critère d'abonnement. 6 | Voici le lien pour accéder à votre recherche dans l'interface de HAL : %%ALERT_SEARCH_URL%% 7 | Vous pouvez modifier vos alertes en ligne à l'adresse : https://hal.archives-ouvertes.fr/user/search 8 | 9 | ------------------------------------------------------------------------------ 10 | %%ALERT_DOC_LIST%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Fin de la liste. 14 | 15 | -- 16 | L'équipe %%PORTAIL%%/CCSD 17 | -------------------------------------------------------------------------------- /application/languages/es/emails/document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%%. 6 | %%MSG_MODERATEUR%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_accepted_arxiv.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%%. 6 | 7 | Ce dépôt a été transféré sur arXiv et son identifiant arXiv définitif sera automatiquement ajouté à HAL dès que celui-ci sera validé par arXiv. 8 | 9 | %%MSG_MODERATEUR%% 10 | 11 | Cordialement, 12 | 13 | ----------------- 14 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_claim_ownership.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Une demande de partage de propriété a été faite pour votre document %%DOC_ID%% (%%DOC_URL%%), version %%DOC_VERSION%% par %%REQUEST_USER%% (%%REQUEST_USER_EMAIL%%). 4 | 5 | Pour répondre à cette demande, vous devez aller sur %%PORTAIL%% ( %%PORTAIL_URL%%/user/docowner ) dans la page "Mon espace > Mes partages de propriétés" 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_claim_ownership_direct.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | L'utilisateur %%SCREEN_NAME%% vous a partagé la propriété du document %%DOC_ID%% ( %%DOC_URL%% ) 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_claim_ownership_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%%, version %%DOC_VERSION%% a été refusée par %%SCREEN_NAME%% . 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_claim_ownership_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%%, version %%DOC_VERSION%% a été acceptée par %%SCREEN_NAME%% . 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_deleted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%% 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_file_access_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) du dépôt %%DOC_ID%% ( %%DOC_URL%% ) a été refusée par %%REFUSEDBY%% 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%% 9 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_file_access_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) pour le document %%DOC_ID%% ( %%DOC_URL%% ) a été accepté par %%ACCEPTEDBY%% 4 | Le fichier vous est maintenant accessible en consultant %%DOC_URL%% en étant connecté ou directement via cette URL : %%DOC_FILE_URL%% 5 | 6 | Cordialement, 7 | 8 | ----------------- 9 | L'équipe %%PORTAIL%% 10 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, 4 | votre dépôt %%DOC_ID%%, "%%DOC_TITLE%%" 5 | a été remplacé par le dépôt %%REPLACEID%%, "%%REPLACE_TITLE%%". 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_give_ownership.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | %%DOC_CONTRIBUTOR%% vient de vous donner accès au fichier associé au document %%DOC_ID%%, version %%DOC_VERSION%% ( %%DOC_URL%% ). 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_refused.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%%\ 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_submitted_online.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Les informations concernant votre nouveau dépôt sur %%PORTAIL%% ( %%DOC_URL%% ) sont : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | identifiant : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | mot de passe : %%DOC_PWD%% 10 | date de soumission : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Ces informations vous seront nécessaires lors de vos éventuelles modifications sur cet article. 14 | 15 | Cordialement, 16 | 17 | ----------------- 18 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_toupdate.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Merci de bien vouloir apporter les corrections suivantes à votre document %%DOC_ID%% (version %%DOC_VERSION%%) en vous connectant au serveur %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | %%MSG_MODERATEUR%% 5 | 6 | Sans modification ou réponse de votre part dans les 5 mois (vous pouvez utiliser la fonctionnalité "Annoter/Répondre à la demande de modification"), ce document sera supprimé du serveur. 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/document_toupdate_reminder.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | 4 | Ce message est une relance, une action de votre part est requise. 5 | 6 | Votre dépôt ne peut pas être mis en ligne en l'état. 7 | Merci de bien vouloir apporter les corrections suivantes à ce document %%DOC_ID%%, version %%DOC_VERSION%% en vous connectant au portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ) 8 | 9 | titre : %%DOC_TITLE%% 10 | 11 | Informations données par le modérateur: 12 | --- 13 | %%MSG_MODERATEUR%% 14 | --- 15 | Apporter ces corrections en utilisant l'action "Modifier" ou "Répondre" dans l'espace "Documents en attente de modification" de la page Mes dépôts. 16 | 17 | Cordialement, 18 | 19 | -- 20 | L'équipe du portail %%PORTAIL%% 21 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/es/emails/notice_submitted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Les informations concernant votre nouvelle notice sur %%PORTAIL%% ( %%PORTAIL_URL%% ) sont : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | identifiant : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | mot de passe : %%DOC_PWD%% 10 | date de soumission : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Ces informations vous seront nécessaires lors de vos éventuelles modifications sur cet article. 14 | 15 | Cordialement, 16 | 17 | ----------------- 18 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/account_create.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Vous venez de créer un compte sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | 5 | Pour activer votre nouveau compte et pouvoir vous authentifier au système, merci de bien vouloir cliquer sur le lien 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | 15 | -------------------------------------------------------------------------------- /application/languages/eu/email/account_lost_login.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La liste des noms d'utilisateurs liés à votre adresse de messagerie a été demandée. 4 | 5 | Voici la liste des noms d'utilisateur trouvés pour votre compte : 6 | 7 | %%MAIL_ACCOUNT_USERNAME_LIST%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | -------------------------------------------------------------------------------- /application/languages/eu/email/account_lost_pwd.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La réinitialisation de votre mot de passe a été demandée . Si vous n'êtes pas à l'origine de cette demande vous pouvez ignorer ce message. 4 | 5 | Sinon vous pouvez cliquer sur le lien suivant pour changer votre mot de passe : 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD 13 | 14 | -------------------------------------------------------------------------------- /application/languages/eu/email/alert_corresp_author_document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Nouveau dépôt sur le portail ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | identifiant : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | déposant : %%DOC_CONTRIBUTOR%% 9 | date de soumission : %%DOC_DATE%% 10 | titre : %%DOC_TITLE%% 11 | auteur(s) : %%DOC_AUTHORS%% 12 | laboratoire(s) : %%DOC_LABOS%% 13 | domaine(s) : %%DOC_DOMAINS%% 14 | ------------------------------------------------------------------------------ 15 | 16 | Merci de vérifier ce document en vous connectant sur %%PORTAIL_URL%% 17 | 18 | ----------------- 19 | L'équipe %%PORTAIL%%/CCSD 20 | -------------------------------------------------------------------------------- /application/languages/eu/email/alert_moderator_new_submission.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Nouveau dépôt sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | identifiant : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | déposant : %%DOC_CONTRIBUTOR%% 9 | date de soumission : %%DOC_DATE%% 10 | type de document : %%DOC_TYPDOC%% 11 | titre : %%DOC_TITLE%% 12 | auteur(s) : %%DOC_AUTHORS%% 13 | laboratoire(s) : %%DOC_LABOS%% 14 | domaine(s) : %%DOC_DOMAINS%% 15 | ------------------------------------------------------------------------------ 16 | 17 | Merci de vérifier ce document en vous connectant sur %%PORTAIL_URL%% 18 | 19 | ----------------- 20 | L'équipe %%PORTAIL%%/CCSD 21 | -------------------------------------------------------------------------------- /application/languages/eu/email/alert_user_search.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Ce message automatique vous indique les nouveaux documents disponibles correspondant à votre alerte : %%ALERT_NAME%% 4 | La fréquence de votre alerte est : %%ALERT_FREQ%% 5 | Il y a %%ALERT_NUM_DOCS%% documents correspondant à votre critère d'abonnement. 6 | Voici le lien pour accéder à votre recherche dans l'interface de HAL : %%ALERT_SEARCH_URL%% 7 | Vous pouvez modifier vos alertes en ligne à l'adresse : https://hal.archives-ouvertes.fr/user/search 8 | 9 | ------------------------------------------------------------------------------ 10 | %%ALERT_DOC_LIST%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Fin de la liste. 14 | 15 | -- 16 | L'équipe %%PORTAIL%%/CCSD 17 | -------------------------------------------------------------------------------- /application/languages/eu/email/document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%%. 6 | %%MSG_MODERATEUR%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_accepted_arxiv.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%%. 6 | 7 | Ce dépôt a été transféré sur arXiv et son identifiant arXiv définitif sera automatiquement ajouté à HAL dès que celui-ci sera validé par arXiv. 8 | 9 | %%MSG_MODERATEUR%% 10 | 11 | Cordialement, 12 | 13 | ----------------- 14 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_claim_ownership.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Une demande de partage de propriété a été faite pour votre document %%DOC_ID%%, version %%DOC_VERSION%% par %%REQUEST_USER%% (%%REQUEST_USER_EMAIL%%). 4 | 5 | Pour répondre à cette demande, vous devez aller sur %%PORTAIL%% ( %%PORTAIL_URL%% ) dans la page "Mon espace > Mes partages de propriétés" 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_claim_ownership_direct.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | L'utilisateur %%SCREEN_NAME%% vous a partagé la propriété du document %%DOC_ID%% ( %%DOC_URL%% ) 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_claim_ownership_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%%, version %%DOC_VERSION%% a été refusée par %%SCREEN_NAME%% . 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_claim_ownership_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%%, version %%DOC_VERSION%% a été acceptée par %%SCREEN_NAME%% . 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_deleted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%% 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_file_access_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) du dépôt %%DOC_ID%% ( %%DOC_URL%% ) a été refusée par %%REFUSEDBY%% 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%% 9 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_file_access_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) pour le document %%DOC_ID%% ( %%DOC_URL%% ) a été accepté par %%ACCEPTEDBY%% 4 | Le fichier vous est maintenant accessible en consultant %%DOC_URL%% en étant connecté ou directement via cette URL : %%DOC_FILE_URL%% 5 | 6 | Cordialement, 7 | 8 | ----------------- 9 | L'équipe %%PORTAIL%% 10 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, 4 | votre dépôt %%DOC_ID%%, "%%DOC_TITLE%%" 5 | a été remplacé par le dépôt %%REPLACEID%%, "%%REPLACE_TITLE%%". 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_give_ownership.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | %%DOC_CONTRIBUTOR%% vient de vous donner accès au fichier associé au document %%DOC_ID%%, version %%DOC_VERSION%% ( %%DOC_URL%% ). 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_refused.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le serveur %%PORTAIL%% ( %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%%\ 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_submitted_online.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Les informations concernant votre nouveau dépôt sur %%PORTAIL%% ( %%DOC_URL%% ) sont : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | identifiant : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | mot de passe : %%DOC_PWD%% 10 | date de soumission : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Ces informations vous seront nécessaires lors de vos éventuelles modifications sur cet article. 14 | 15 | Cordialement, 16 | 17 | ----------------- 18 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_toupdate.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Merci de bien vouloir apporter les corrections suivantes à votre document %%DOC_ID%% (version %%DOC_VERSION%%) en vous connectant au serveur %%PORTAIL%% ( %%PORTAIL_URL%% ) 4 | %%MSG_MODERATEUR%% 5 | 6 | Sans modification ou réponse de votre part dans les 5 mois (vous pouvez utiliser la fonctionnalité "Annoter/Répondre à la demande de modification"), ce document sera supprimé du serveur. 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/document_toupdate_reminder.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | 4 | Ce message est une relance, une action de votre part est requise. 5 | 6 | Votre dépôt ne peut pas être mis en ligne en l'état. 7 | Merci de bien vouloir apporter les corrections suivantes à ce document %%DOC_ID%%, version %%DOC_VERSION%% en vous connectant au portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ) 8 | 9 | titre : %%DOC_TITLE%% 10 | 11 | Informations données par le modérateur: 12 | --- 13 | %%MSG_MODERATEUR%% 14 | --- 15 | Apporter ces corrections en utilisant l'action "Modifier" ou "Répondre" dans l'espace "Documents en attente de modification" de la page Mes dépôts. 16 | 17 | Cordialement, 18 | 19 | -- 20 | L'équipe du portail %%PORTAIL%% 21 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/eu/email/notice_submitted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Les informations concernant votre nouvelle notice sur %%PORTAIL%% ( %%PORTAIL_URL%% ) sont : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | identifiant : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | mot de passe : %%DOC_PWD%% 10 | date de soumission : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Ces informations vous seront nécessaires lors de vos éventuelles modifications sur cet article. 14 | 15 | Cordialement, 16 | 17 | ----------------- 18 | L'équipe %%PORTAIL%%/CCSD -------------------------------------------------------------------------------- /application/languages/fr/elements_form.php: -------------------------------------------------------------------------------- 1 | 'Identifiant (DOI, etc...)', 5 | 'Ccsd_Form_Element_Thesaurus' => 'Liste/Arborescence (avancée)', 6 | 'Ccsd_Form_Element_MultiTextAreaLang' => 'Zone de texte multivaluées (Langues)', 7 | 'Ccsd_Form_Element_MultiTextArea' => 'Zone de texte multivaluées', 8 | 'Ccsd_Form_Element_MultiTextSimpleLang' => 'Champs text multivalués (Langues)', 9 | 'Ccsd_Form_Element_MultiTextSimple' => 'Champs text multivalués', 10 | 'Ccsd_Form_Element_Select' => 'Liste', 11 | 'Ccsd_Form_Element_Date' => 'Date', 12 | 'Ccsd_Form_Element_Text' => 'Champs text', 13 | 'Ccsd_Form_Element_Textarea' => 'Zone de texte', 14 | ); -------------------------------------------------------------------------------- /application/languages/fr/emails/account_create.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Vous venez de créer un compte sur le portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ) 4 | 5 | Pour activer votre nouveau compte et pouvoir vous authentifier au système, merci de bien vouloir cliquer sur le lien 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Si le lien ne fonctionne pas depuis votre logiciel de messagerie, nous vous invitons à le copier-coller dans la barre d'adresse de votre navigateur. 10 | 11 | 12 | Cordialement, 13 | 14 | -- 15 | L'équipe du portail %%PORTAIL%% 16 | HAL CCSD 17 | 18 | 19 | -------------------------------------------------------------------------------- /application/languages/fr/emails/account_init.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Un compte viens d'etre cree sur le portail ( %%PORTAIL%% %%PORTAIL_URL%% ) 4 | 5 | Pour activer votre nouveau compte et pouvoir initialiser votre mot de passe, merci de bien vouloir cliquer sur le lien 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Si le lien ne fonctionne pas depuis votre logiciel de messagerie, nous vous invitons à le copier-coller dans la barre d'adresse de votre navigateur. 10 | 11 | Cordialement, 12 | 13 | -- 14 | L'équipe du portail %%PORTAIL%% 15 | 16 | -------------------------------------------------------------------------------- /application/languages/fr/emails/account_lost_login.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La liste des noms d'utilisateurs liés à votre adresse de messagerie a été demandée. 4 | 5 | Voici la liste des noms d'utilisateur trouvés pour votre compte : 6 | 7 | %%MAIL_ACCOUNT_USERNAME_LIST%% 8 | 9 | Cordialement, 10 | 11 | -- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD 14 | 15 | -------------------------------------------------------------------------------- /application/languages/fr/emails/account_lost_pwd.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | La réinitialisation de votre mot de passe a été demandée. Si vous n'êtes pas à l'origine de cette demande vous pouvez ignorer ce message. 4 | 5 | Sinon vous pouvez cliquer sur le lien suivant pour changer votre mot de passe : 6 | 7 | %%TOKEN_VALIDATION_LINK%% 8 | 9 | Cordialement, 10 | 11 | -- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD 14 | 15 | -------------------------------------------------------------------------------- /application/languages/fr/emails/alert_corresp_author_document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Nouveau dépôt sur le portail ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | ------------------------------------------------------------------------------ 6 | identifiant : %%DOC_ID%% 7 | version : %%DOC_VERSION%% 8 | déposant : %%DOC_CONTRIBUTOR%% 9 | date de soumission : %%DOC_DATE%% 10 | titre : %%DOC_TITLE%% 11 | auteur(s) : %%DOC_AUTHORS%% 12 | laboratoire(s) : %%DOC_LABOS%% 13 | domaine(s) : %%DOC_DOMAINS%% 14 | ------------------------------------------------------------------------------ 15 | 16 | Merci de vérifier ce document. 17 | 18 | ----------------- 19 | L'équipe du portail %%PORTAIL%% 20 | HAL CCSD 21 | -------------------------------------------------------------------------------- /application/languages/fr/emails/document_accepted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur le portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%% 6 | %%MSG_MODERATEUR%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_accepted_arxiv.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% est maintenant en ligne sur le portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | Le lien pour visualiser votre article est : %%DOC_URL%% 6 | 7 | Ce dépôt a été transféré sur arXiv et son identifiant arXiv définitif sera automatiquement ajouté à HAL dès que celui-ci sera validé par arXiv. 8 | 9 | %%MSG_MODERATEUR%% 10 | 11 | Cordialement, 12 | 13 | ----------------- 14 | L'équipe du portail %%PORTAIL%% 15 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_adminmodify.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre document %%DOC_ID%%, version %%DOC_VERSION%% va à nouveau être contrôlé. 4 | Les modifciations demandées ont été effectuées par %%ADMIN%% Administrateur du portail %%PORTAIL%%. 5 | 6 | Cordialement, 7 | 8 | ----------------- 9 | L'équipe du portail %%PORTAIL%% 10 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_alert_admin.phtml: -------------------------------------------------------------------------------- 1 | %%MAIL_TO_FULLNAME%%, 2 | 3 | Un nouveau document a été mis en ligne sur le portail dont vous êtes administrateur : 4 | 5 | %%DOC_REF%% 6 | 7 | 8 | Sincères salutations, 9 | -- 10 | Message automatique du %%MAIL_SIGNATURE%% 11 | 12 | P.S. : Le document peut être inaccessible car celui-ci doit être indexé par nos machines. 13 | 14 | Je ne souhaite plus recevoir ce type de mail. -------------------------------------------------------------------------------- /application/languages/fr/emails/document_alert_refstruct.phtml: -------------------------------------------------------------------------------- 1 | %%MAIL_TO_FULLNAME%%, 2 | 3 | Un nouveau document est en ligne sur HAL : 4 | %%DOC_REF%% 5 | 6 | 7 | L'un des auteurs est affilié à la structure %%STRUCTNAME%% dont vous êtes référent. 8 | 9 | En tant que référent, vous avez les droits de propriété sur ce document : vous pouvez compléter les métadonnées, ajouter un fichier ou une nouvelle version. 10 | 11 | 12 | Sincères salutations, 13 | -- 14 | Message automatique du %%MAIL_SIGNATURE%% 15 | 16 | P.S. : Le document peut être inaccessible car celui-ci doit être indexé par nos machines. 17 | 18 | Je ne souhaite plus recevoir ce type de mail. -------------------------------------------------------------------------------- /application/languages/fr/emails/document_claim_ownership.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Une demande de partage de propriété a été faite pour votre document %%DOC_ID%% ( %%DOC_URL%% ). 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Voici la demande de %%REQUEST_USER%% (%%REQUEST_USER_EMAIL%%) : 9 | %%REQUEST_MESSAGE%% 10 | 11 | Pour répondre à cette demande, vous devez aller sur %%PORTAIL%% ( %%PORTAIL_URL%%/user/docowner ) dans la page "Mon espace > Mes partages de propriétés" 12 | 13 | Cordialement, 14 | 15 | ----------------- 16 | L'équipe du portail %%PORTAIL%% 17 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_claim_ownership_direct.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | L'utilisateur %%SCREEN_NAME%% vous a partagé la propriété du document %%DOC_ID%% ( %%DOC_URL%% ) 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_claim_ownership_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%% ( %%DOC_URL%% ) a été refusée par %%SCREEN_NAME%% 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_claim_ownership_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande de partage de propriété pour le document %%DOC_ID%% ( %%DOC_URL%% ) a été acceptée par %%SCREEN_NAME%% 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | Cordialement, 9 | 10 | ----------------- 11 | L'équipe du portail %%PORTAIL%% 12 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_deleted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | titre : %%DOC_TITLE%% 6 | auteur(s) : %%DOC_AUTHORS%% 7 | 8 | %%MSG_MODERATEUR%% 9 | 10 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 11 | 12 | Cordialement, 13 | 14 | ----------------- 15 | L'équipe du portail %%PORTAIL%% 16 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_file_access_ko.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) du dépôt %%DOC_ID%% ( %%DOC_URL%% ) a été refusée par %%REFUSEDBY%% 4 | 5 | Cordialement, 6 | 7 | ----------------- 8 | L'équipe du portail %%PORTAIL%% 9 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_file_access_ok.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre demande d'accès au fichier sous embargo (%%DOC_FILENAME%%) pour le document %%DOC_ID%% ( %%DOC_URL%% ) a été accepté par %%ACCEPTEDBY%% 4 | Le fichier vous est maintenant accessible en consultant %%DOC_URL%% en étant connecté ou directement via cette URL : %%DOC_FILE_URL%% 5 | Ce fichier est placé sous embargo. Il ne peut être utilisé qu'à usage personnel et ne doit pas être divulgué. 6 | 7 | Cordialement, 8 | 9 | ----------------- 10 | L'équipe du portail %%PORTAIL%% 11 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_fusion.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Suite à une opération de dédoublonnage, 4 | votre dépôt %%DOC_ID%%, "%%DOC_TITLE%%" 5 | a été remplacé par le dépôt %%REPLACEID%%, "%%REPLACE_TITLE%%". 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_refused.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Malheureusement, votre document (%%DOC_ID%%, version %%DOC_VERSION%%) ne peut pas être accepté sur le portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ). 4 | 5 | %%MSG_MODERATEUR%% 6 | 7 | Si vous désirez des informations complémentaires concernant la validation scientifique de ce dépôt, veuillez écrire à hal.support@ccsd.cnrs.fr 8 | 9 | Cordialement, 10 | 11 | ----------------- 12 | L'équipe du portail %%PORTAIL%% 13 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_toupdate.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Votre dépôt ne peut pas être mis en ligne en l'état. 4 | Merci de bien vouloir apporter les corrections suivantes à ce document %%DOC_ID%%, version %%DOC_VERSION%% en vous connectant au portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ) 5 | 6 | titre : %%DOC_TITLE%% 7 | 8 | Informations données par le modérateur: 9 | --- 10 | %%MSG_MODERATEUR%% 11 | --- 12 | Apporter ces corrections en utilisant l'action "Modifier" ou "Répondre" dans l'espace "Documents en attente de modification" de la page Mes dépôts. 13 | 14 | Cordialement, 15 | 16 | -- 17 | L'équipe du portail %%PORTAIL%% 18 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/document_toupdate_reminder.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | 4 | Ce message est une relance, une action de votre part est requise. 5 | 6 | Votre dépôt ne peut pas être mis en ligne en l'état. 7 | Merci de bien vouloir apporter les corrections suivantes à ce document %%DOC_ID%%, version %%DOC_VERSION%% en vous connectant au portail HAL ( %%PORTAIL%% %%PORTAIL_URL%% ) 8 | 9 | titre : %%DOC_TITLE%% 10 | 11 | Informations données par le modérateur: 12 | --- 13 | %%MSG_MODERATEUR%% 14 | --- 15 | Apporter ces corrections en utilisant l'action "Modifier" ou "Répondre" dans l'espace "Documents en attente de modification" de la page Mes dépôts. 16 | 17 | Cordialement, 18 | 19 | -- 20 | L'équipe du portail %%PORTAIL%% 21 | HAL CCSD -------------------------------------------------------------------------------- /application/languages/fr/emails/notice_submitted.phtml: -------------------------------------------------------------------------------- 1 | Bonjour %%USER%%, 2 | 3 | Les informations concernant votre nouvelle notice sur le portail de HAL (%%PORTAIL%% %%PORTAIL_URL%% ) sont : 4 | 5 | %%DOC_REF%% 6 | ------------------------------------------------------------------------------ 7 | identifiant : %%DOC_ID%% 8 | version : %%DOC_VERSION%% 9 | mot de passe : %%DOC_PWD%% 10 | date de soumission : %%DOC_DATE%% 11 | ------------------------------------------------------------------------------ 12 | 13 | Ces informations vous seront nécessaires lors de vos éventuelles modifications sur ce dépôt. 14 | 15 | Cordialement, 16 | 17 | ----------------- 18 | L'équipe du portail %%PORTAIL%% 19 | HAL CCSD -------------------------------------------------------------------------------- /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/emails/ref_structure_modification.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_modification.phtml -------------------------------------------------------------------------------- /application/languages/fr/emails/ref_structure_suppression.phtml: -------------------------------------------------------------------------------- 1 | ../../../../application-aurehal/languages/fr/emails/ref_structure_suppression.phtml -------------------------------------------------------------------------------- /application/languages/fr/validation_forms.php: -------------------------------------------------------------------------------- 1 | "Veuillez compléter cette information", 5 | 6 | ); 7 | -------------------------------------------------------------------------------- /application/views/layouts/common/breadcrumbs.phtml: -------------------------------------------------------------------------------- 1 | breadcrumbs($this->nav()->getContainer())->setMinDepth(0)->setLinkLast(false)->renderPartial(null, 'common/breadcrumbs/render.phtml'); -------------------------------------------------------------------------------- /application/views/layouts/common/errors.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |

Erreur de connexion

4 |

Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.

5 | Retourner à l'accueil 6 |

7 |
-------------------------------------------------------------------------------- /application/views/layouts/common/mail.phtml: -------------------------------------------------------------------------------- 1 | 4 | ​
5 | 6 | mail->getSubjectText();?> 7 |
8 | translate("De");?> : mail->getFrom();?>
9 | translate("À");?> : mail->getRecipients());?>
10 |
11 |

mail->getBody();?>

12 | 13 |
-------------------------------------------------------------------------------- /application/views/scripts/administrate/batch.phtml: -------------------------------------------------------------------------------- 1 | render . '.phtml'; -------------------------------------------------------------------------------- /application/views/scripts/administrate/batch/data.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | data as $value => $nb) { ?> 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
ValeurNombre de documents
19 | -------------------------------------------------------------------------------- /application/views/scripts/administrate/batch/index.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
-------------------------------------------------------------------------------- /application/views/scripts/administrate/delete.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageDescription = $this->translate("description description")?> -------------------------------------------------------------------------------- /application/views/scripts/administrate/documents-document.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |

document->getId() . ', ' . $this->translate('version') . ' ' . $this->document->getVersion() ?>

5 | 6 |
-------------------------------------------------------------------------------- /application/views/scripts/administrate/reply.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate('Répondre à la demande de modification'); 3 | ?> 4 | 5 | 9 | 10 | form; ?> -------------------------------------------------------------------------------- /application/views/scripts/administrate/users-account.phtml: -------------------------------------------------------------------------------- 1 | jQuery()->addJavascriptFile(CCSDLIB . "/js/bootstrap-typeahead.js")->addJavascriptFile(CCSDLIB . '/js/jquery/ui/autocomplete.html.js'); 3 | $this->layout()->breadcrumbs = $this->user->getFullName(); 4 | $this->layout()->pageDescription = $this->translate("Modification du compte utilisateur"); 5 | 6 | echo $this->form; -------------------------------------------------------------------------------- /application/views/scripts/ajax/ref/index.phtml: -------------------------------------------------------------------------------- 1 | json = array (); 4 | $this->json[] = array ('id' => 0, 'label' => $this->translate('Nouveau') . '...'); 5 | 6 | $classname = $this->classname; 7 | 8 | 9 | $res = $classname::search($this->term); 10 | if ($res && is_array ($res)) { 11 | foreach ($res as $doc) { 12 | $this->json[] = array ("id" => $doc['docid'], "label" => $doc['label_html']); 13 | } 14 | } 15 | 16 | echo Zend_Json::encode ( $this->json ); -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 | 7 | 8 | 9 | domainTree !== false) { 13 | $this->jQuery() 14 | 15 | ->addJavascriptFile(CCSDLIB . "/js/bootstrap-typeahead.js"); 16 | echo $this->domainTree; 17 | } else { 18 | 19 | echo '

'; 20 | echo $this->translate("Pas de données pour l'instant."); 21 | echo '

'; 22 | } 23 | 24 | ?> 25 | 26 |
27 |
28 | -------------------------------------------------------------------------------- /application/views/scripts/browse/index.phtml: -------------------------------------------------------------------------------- 1 | INDEX -------------------------------------------------------------------------------- /application/views/scripts/browse/scollection.phtml: -------------------------------------------------------------------------------- 1 | collections) { 4 | $nbGroup = count($this->collections) ; 5 | 6 | foreach($this->collections as $group => $collections) { 7 | if ($nbGroup > 1) { 8 | ?> 9 |

translate($group) ?>

10 | 13 | 20 | data)) { 4 | ?> 5 |
6 |

' . $this->translate('Documents avec texte intégral') . ' : ' . '' . $this->data['file'] ?>

7 |

' . $this->translate('Références bibliographiques') . ' : ' . '' . $this->data['notice'] ?>

8 |

' . $this->translate('Notices avec annexe') . ' : ' . '' . $this->data['annex'] ?>

9 |
10 | layout()->pageDescription = $this->translate("Duplication de collections")?> 2 | 9 | form->setActions(true)->createSubmitButton(); 11 | echo $this->form; 12 | ?> 13 | -------------------------------------------------------------------------------- /application/views/scripts/document/form-reference.phtml: -------------------------------------------------------------------------------- 1 | form; 18 | -------------------------------------------------------------------------------- /application/views/scripts/document/widget-citation.phtml: -------------------------------------------------------------------------------- 1 | document doit exister et etre un objet Hal_Document 9 | * 10 | */ 11 | 12 | ?> 13 |
14 |

translate('Citation') ?>

15 |
16 | document->getCitation('full'); ?> 17 |
18 |
19 | -------------------------------------------------------------------------------- /application/views/scripts/error/collectionnotfound.phtml: -------------------------------------------------------------------------------- 1 |
2 | 3 |

translate("La collection que vous demandez n'existe pas !") ?>

4 | description)){ ?> 5 |

description; ?>

6 | 7 |

 

8 |

translate("Retourner à l'accueil");?>

9 |
-------------------------------------------------------------------------------- /application/views/scripts/error/pagenotfound.phtml: -------------------------------------------------------------------------------- 1 |
2 |

translate("Ressource manquante"); ?>

3 | 4 |

translate("La page que vous demandez n'existe pas!"); ?>

5 |

6 | 7 |

translate("Retourner à l'accueil"); ?>

8 |
-------------------------------------------------------------------------------- /application/views/scripts/file/video.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $this->document->getMainTitle(); ?> 6 | jQuery()->addJavascriptFile('https://cdn.jwplayer.com/libraries/jI7CRvpx.js'); 8 | echo $this->jQuery()->setLocalPath(CCSDLIB . '/js/jquery/min.1.9.1.js')->enable(); 9 | ?> 10 | 11 | 12 | 13 | $this->document->getMainTitle(), 16 | 'src' => $this->file->getPath(true)]; 17 | ?> 18 |
19 | jwplayer($options)->play(); ?> 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /application/views/scripts/page/ajaxgetwidget.phtml: -------------------------------------------------------------------------------- 1 | widget($this->settings); -------------------------------------------------------------------------------- /application/views/scripts/search/filters.phtml: -------------------------------------------------------------------------------- 1 | layout ()->pageTitle = $this->translate ( 'Filtres de recherche par défaut' ); 3 | 4 | $this->layout ()->pageDescription = $this->translate ( 'Liste des filtres appliqués aux pages consultation/recherche' ); 5 | 6 | if ($this->filters) { 7 | echo '
    '; 8 | foreach ( $this->filters as $filter ) { 9 | echo '
  1. ' . $filter . '
  2. '; 10 | } 11 | echo '
'; 12 | } else { 13 | echo ''; 14 | } -------------------------------------------------------------------------------- /application/views/scripts/settings/domain.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/application/views/scripts/settings/domain.phtml -------------------------------------------------------------------------------- /application/views/scripts/settings/files.phtml: -------------------------------------------------------------------------------- 1 | 10 | layout()->pageDescription = $this->translate('Gestion fichiers de configuration')?> 11 | 12 | form ?> 13 | 14 | 15 | 28 | -------------------------------------------------------------------------------- /application/views/scripts/settings/row-metadata.phtml: -------------------------------------------------------------------------------- 1 | 2 | code ?> 3 | 4 | traduction; ?> 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /application/views/scripts/settings/submit.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageDescription = $this->translate("description description")?> -------------------------------------------------------------------------------- /application/views/scripts/stat/ajax-nodata.phtml: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |  translate('Aucune donnée à afficher'); ?> 5 |
6 |
7 |
-------------------------------------------------------------------------------- /application/views/scripts/stat/ajax-provenance.phtml: -------------------------------------------------------------------------------- 1 | category . '-' . $this->view . '.phtml'; 3 | 4 | 5 | -------------------------------------------------------------------------------- /application/views/scripts/stat/ajaxnbdoc.phtml: -------------------------------------------------------------------------------- 1 | data)) { 3 | ?> 4 |

' . $this->translate('Nombre de ressources répondant aux critères') . ' : ' . '' . number_format($this->data, 0, '.', ' '); ?>

5 | errors as $name => $msgs) { 4 | 5 | if (!is_array($msgs)) 6 | $msgs = [$msgs]; 7 | 8 | foreach ($msgs as $i => $msg) { 9 | 10 | ?> 11 |

translate ($name)." : ";?>translate ($msg);?>

12 | -------------------------------------------------------------------------------- /application/views/scripts/submit/step-author/author-add-from-structure-list.phtml: -------------------------------------------------------------------------------- 1 | authors as $authorid => $fullname) { ?> 2 |
3 | 6 |
7 | 8 | -------------------------------------------------------------------------------- /application/views/scripts/submit/step-file/index.phtml: -------------------------------------------------------------------------------- 1 | 2 | submitType == Hal_Settings::SUBMIT_INIT) { ?> 5 | translate("submit_file_header");?> 6 |
7 |
8 | 9 | submitType == Hal_Settings::SUBMIT_UPDATE) { 12 | include __DIR__ . '/update.phtml'; 13 | } else if (Hal_Settings::SUBMIT_MODE_DETAILED == $this->filemode) { 14 | include __DIR__ . '/detailed.phtml'; 15 | } else { 16 | include __DIR__ . '/simple.phtml'; 17 | } 18 | 19 | ?> 20 | 21 | -------------------------------------------------------------------------------- /application/views/scripts/submit/step-file/update.phtml: -------------------------------------------------------------------------------- 1 |
2 |

3 | translate('Vous ne pouvez pas modifier les fichiers déposés.');?> 4 |

5 | 12 |
13 | 14 | 15 | -------------------------------------------------------------------------------- /application/views/scripts/submit/step-recap/moderation-msg.phtml: -------------------------------------------------------------------------------- 1 |
2 |

translate("Souhaitez-vous laisser un message au modérateur ?"); ?>

3 | 4 |

5 |
-------------------------------------------------------------------------------- /application/views/scripts/user/activate.phtml: -------------------------------------------------------------------------------- 1 | layout()->title = $this->translate('Activation de votre compte'); 4 | $this->layout()->pageTitle = $this->layout()->title; 5 | 6 | if ($this->errorMessage) { 7 | echo $this->message($this->errorMessage, 'danger'); 8 | } 9 | 10 | -------------------------------------------------------------------------------- /application/views/scripts/user/ajaxdocowner.phtml: -------------------------------------------------------------------------------- 1 | userDocids as $i => $doc) { 2 | $document = Hal_Document::find($doc['docid']); ?> 3 | 4 | 5 | 6 | getTypeSubmit() == Hal_Document::FORMAT_FILE || $document->getTypeSubmit() == Hal_Document::FORMAT_ANNEX) { ?> 7 |   8 | 9 | getCitation('full'); ?> 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /application/views/scripts/user/changepassword.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate("Changer le mot de passe de votre compte CCSD"); 7 | $this->layout()->pageTitle = $this->layout()->pageTitle; 8 | 9 | $this->layout()->pageDescription = $this->translate('Changement de mot de passe'); 10 | 11 | if ($this->resultMessage) { 12 | echo $this->resultMessage; 13 | } 14 | 15 | ?> 16 | 17 | form) { 20 | echo $this->form; 21 | } 22 | 23 | ?> 24 | 25 | jQuery()->addJavascriptFile(CCSDLIB . "/js/bootstrap-typeahead.js")->addJavascriptFile(CCSDLIB . '/js/jquery/ui/autocomplete.html.js'); 3 | $this->layout()->pageTitle = $this->translate("Modification de votre compte"); 4 | $this->layout()->pageDescription = $this->translate("Vous pouvez modifier ici vos informations personnelles"); 5 | 6 | if (Ccsd_User_Models_User::ACCOUNT_EDIT_FAILURE == $this->resultMessage) { 7 | echo '
'; 8 | echo $this->translate('La modification du compte a échoué. Merci de ré-essayer.'); 9 | echo '
'; 10 | } 11 | 12 | if ($this->form) { 13 | echo $this->form; 14 | } 15 | ?> -------------------------------------------------------------------------------- /application/views/scripts/user/editprefmail.phtml: -------------------------------------------------------------------------------- 1 | jQuery()->addJavascriptFile(CCSDLIB . "/js/bootstrap-typeahead.js")->addJavascriptFile(CCSDLIB . '/js/jquery/ui/autocomplete.html.js'); 3 | $this->layout()->pageTitle = $this->translate("Modification de votre compte"); 4 | $this->layout()->pageDescription = $this->translate("Vous pouvez modifier ici vos préférences de courriel"); 5 | 6 | if (Ccsd_User_Models_User::ACCOUNT_EDIT_FAILURE == $this->resultMessage) { 7 | echo '
'; 8 | echo $this->translate('La modification du compte a échoué. Merci de ré-essayer.'); 9 | echo '
'; 10 | } 11 | 12 | 13 | if ($this->form) { 14 | echo $this->form; 15 | } 16 | 17 | ?> 18 | -------------------------------------------------------------------------------- /application/views/scripts/user/form_edit.phtml: -------------------------------------------------------------------------------- 1 | jQuery()->addJavascriptFile('/js/user/user.js'); ?> 2 | 3 |
4 | 5 |
6 | 7 | 8 | 9 |

translate($this->element->getLegend()); ?>

10 | setElement($this->element); 14 | 15 | echo $decorator->render(""); 16 | 17 | ?> 18 |
19 | 20 | -------------------------------------------------------------------------------- /application/views/scripts/user/form_editpref.phtml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | translate($this->element->getLegend()); ?> 5 | 6 |
translate($this->element->getDescription()); ?>
7 | setElement($this->element); 11 | 12 | echo $decorator->render(""); 13 | 14 | ?> 15 |
-------------------------------------------------------------------------------- /application/views/scripts/user/login.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate("Connexion"); 3 | 4 | if ($this->form) { 5 | $this->layout()->pageDescription = $this->translate("Saisissez votre nom de connexion et votre mot de passe."); 6 | echo $this->form; 7 | } else { 8 | echo $this->DisplayFlashMessages('success', false); 9 | } 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /application/views/scripts/user/lostlogin.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate("Login oublié ?"); 3 | 4 | if ($this->form) { 5 | $this->layout()->pageDescription = $this->translate("Saisissez votre adresse de courriel. Nous vous enverrons un courriel avec votre nom d'utilisateur."); 6 | echo $this->form; 7 | } else { 8 | echo $this->DisplayFlashMessages('success', false); 9 | } 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /application/views/scripts/user/lostpassword.phtml: -------------------------------------------------------------------------------- 1 | layout ()->pageTitle = $this->translate ( "Mot de passe oublié ?" ); 3 | 4 | 5 | 6 | if ($this->form) { 7 | $this->layout ()->pageDescription = $this->translate ( "Saisissez votre nom d'utilisateur. Nous vous enverrons un courriel avec un lien vers une page où vous pourrez facilement créer un nouveau mot de passe." ); 8 | echo $this->form; 9 | } else { 10 | echo $this->DisplayFlashMessages('success', false); 11 | } 12 | -------------------------------------------------------------------------------- /application/views/scripts/user/reply.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageTitle = $this->translate('Répondre à la demande de modification'); 3 | ?> 4 | 5 | 9 | 10 | form; ?> -------------------------------------------------------------------------------- /application/views/scripts/user/resetpassword.phtml: -------------------------------------------------------------------------------- 1 | layout()->title = $this->translate('Changer le mot de passe'); 3 | 4 | 5 | if ($this->resultMessage) { 6 | echo $this->resultMessage; 7 | } 8 | 9 | if ($this->form) { 10 | echo $this->form; 11 | } 12 | -------------------------------------------------------------------------------- /application/views/scripts/user/stat.phtml: -------------------------------------------------------------------------------- 1 | layout()->pageDescription = $this->translate("description description")?> -------------------------------------------------------------------------------- /application/views/scripts/view/file.phtml: -------------------------------------------------------------------------------- 1 | layout()->description = $this->translate("Configuration générale du site"); 3 | 4 | if (!is_null($this->piwik)) { 5 | ?> 6 |
7 | 8 |
9 | 10 |
11 |
12 |
13 | form; 17 | -------------------------------------------------------------------------------- /application/views/scripts/website/edit.phtml: -------------------------------------------------------------------------------- 1 | jQuery() 3 | ->addStylesheet("/css/bootstrap-wysihtml5.css") 4 | ->addJavascriptFile("/js/wysihtml5-0.js") 5 | ->addJavascriptFile("/js/bootstrap-wysihtml5.js"); 6 | ?> 7 | 10 | 11 |
12 |
13 | 14 | 15 |
16 |
17 | 18 | -------------------------------------------------------------------------------- /application/views/scripts/website/style.phtml: -------------------------------------------------------------------------------- 1 | jQuery()->addStylesheet(CCSDLIB . "/css/colorpicker.css")->addJavascriptFile(CCSDLIB . "/js/bootstrap-colorpicker.js")->addJavascriptFile(CCSDLIB . "/js/colorpicker.js"); 3 | 4 | $this->layout()->pageDescription = $this->translate("Personnalisation de l'apparence du site. Trois solutions sont proposées :
5 | - En un clic : Vous sélectionnez une apparence existante;
6 | - Simple : Vous remplissez le formulaire ci-dessous. Le système créera automatiquement la feuille de style du site;
7 | - Avancée : Vous éditez directement la feuille de style du site."); 8 | 9 | echo $this->form; 10 | -------------------------------------------------------------------------------- /application/views/scripts/widget/cloud.phtml: -------------------------------------------------------------------------------- 1 | tags)) { 5 | $content = '
'; 6 | //Récupération des 20 premiers mots pour le nuage 7 | foreach (Ccsd_Tools::prepareWordCloud(array_slice($this->tags, 0, 100), 10) as $word => $coef) { 8 | $content .= '' . $word . ' '; 9 | } 10 | $content .= '
'; 11 | 12 | echo $content; 13 | } -------------------------------------------------------------------------------- /application/views/scripts/widget/count.phtml: -------------------------------------------------------------------------------- 1 |

nb, 0, '.', ' '); ?>

-------------------------------------------------------------------------------- /application/views/scripts/widget/search.phtml: -------------------------------------------------------------------------------- 1 | fq != '' ) { 4 | $url .= '/?'.$this->fq; 5 | } 6 | ?> 7 |
8 |
9 |
10 |
11 | 12 | 13 | 14 | 15 |
16 |
17 |
18 |
-------------------------------------------------------------------------------- /application/views/scripts/widget/stats.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | data) { 8 | $i = 0; 9 | $graphData = array(); 10 | foreach ($this->data as $key => $row) { 11 | $i++; 12 | 13 | if ($key === '') continue; 14 | 15 | if (!is_array($row)) { 16 | $row = array((string)$key, ($i==1) ? (string)$row : (int)$row); 17 | } 18 | $graphData[] = $row; 19 | } 20 | echo $this->chart(array('container' => $id, 'content' => $graphData, 'options' => array('legend' => array('position' => 'none'))), $this->chart, true); 21 | } 22 | 23 | 24 | -------------------------------------------------------------------------------- /application/views/xsl/document.xsl: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 |
8 |
9 | 10 |
11 | 12 |
13 | 14 |
15 |
16 |
17 | 18 | 19 | 20 | Titre de l'article 21 | 22 | 23 |
24 | -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/composer.phar -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- 1 | sass_dir = "public/scss" 2 | css_dir = "public/css" 3 | 4 | -------------------------------------------------------------------------------- /config/collection/index.en.html: -------------------------------------------------------------------------------- 1 |
{"type": "last", "title": "Last submissions", "limit": 20}
{"type": "count", "title": "Number of fulltext", "format" : ["file"]}{"type": "count", "title": "Number of reference", "format" : ["notice", "annex"]}{"type": "stats", "title": "Submissions evolution", "format": "evol"}{"type": "stats", "title": "Submissions distribution by document type", "format": "typdoc"}
-------------------------------------------------------------------------------- /config/collection/index.fr.html: -------------------------------------------------------------------------------- 1 |
{"type": "last", "title": "Derniers dépôts", "limit": 20}
{"type": "count", "title": "Nombre de documents", "format" : ["file"]}{"type": "count", "title": "Nombre de notices", "format" : ["notice", "annex"]}{"type": "stats", "title": "Evolution des dépôts", "format": "evol"}{"type": "stats", "title": "Répartition des dépôts par type de document", "format": "typdoc"}
-------------------------------------------------------------------------------- /config/collection/navigation.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "label" : "Accueil", 3 | "controller" : "index", 4 | "action" : "index", 5 | "resource" : "index-index" 6 | }] -------------------------------------------------------------------------------- /config/licences.json: -------------------------------------------------------------------------------- 1 | {"Liste des domaines": 2 | {"http://creativecommons.org/licenses/by/":[],"http://creativecommons.org/licenses/by-nc/":[]}} -------------------------------------------------------------------------------- /config/portail/halspm-meta.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/config/portail/halspm-meta.ini -------------------------------------------------------------------------------- /config/portail/solr.hal.checkedFilters.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter_dt" : "ART,COMM,OUV,COUV,DOUV,REPORT,OTHER,THESE,HDR,LECTURE,UNDEFINED", 3 | "filter_st": "file" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /config/portail/solr.hal.returnedFields.json: -------------------------------------------------------------------------------- 1 | {"returnedFields" : "docid,title_s,docType_s,citationRef_s,authIdHalFullName_fs,halId_s,linkExtUrl_s,linkExtId_s,label_coins,version_i,thumbId_i"} 2 | -------------------------------------------------------------------------------- /config/templates/template-basic.cnf: -------------------------------------------------------------------------------- 1 | ##### 2 | # Template des paramètres basiques pour la plateforme de HAL 3 | # 4 | ##### 5 | DocumentRoot /var/www/hal/sarah/public 6 | 7 | SetEnv APPLICATION_ENV development 8 | SetEnv CACHE_ROOT /var/www/cache/hal 9 | SetEnv DATA_ROOT /var/www/data/hal 10 | SetEnv DOCS_ROOT /var/www/docs 11 | 12 | AliasMatch ^/[A-Z0-9_-]+/default/(.*)$ /var/www/data/hal/development/collection/shared/public/$1 13 | AliasMatch ^/([A-Z0-9_-]+)/public/(.*)$ /var/www/data/hal/development/collection/$1/public/$2 14 | Alias /default /var/www/hal/data/portail/default/public 15 | ErrorLog "/var/log/halv3.local-error.log" 16 | CustomLog "/var/log/halv3.local.log" common 17 | -------------------------------------------------------------------------------- /config/templates/template.hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | 127.0.0.1 halv3-local.ccsd.cnrs.fr 3 | 127.0.0.1 cv-local.ccsd.cnrs.fr 4 | 127.0.0.1 halms-local.ccsd.cnrs.fr 5 | -------------------------------------------------------------------------------- /confighalspm/atinternet.suivi.json: -------------------------------------------------------------------------------- 1 | [{ 2 | "controller": "index", "action" : "index", "menulabel" : "menu-label-0","follow" : "yes" 3 | }, { 4 | "controller" : "search", "action" : "index", "menulabel" : "menu-label-1", "follow" : "yes" 5 | }, { 6 | "controller" : "browse", "action" : "structure", "menulabel" : "menu-label-3", "follow" : "yes" 7 | }, { 8 | "controller" : "browse", "action" : "doctype", "menulabel" : "menu-label-4", "follow" : "yes" 9 | }, { 10 | "controller" : "browse", "action" : "domain", "menulabel" : "menu-label-5", "follow" : "yes" 11 | }, { 12 | "controller" : "view", "action" : "index", "menulabel" : "","follow" : "yes" 13 | }] -------------------------------------------------------------------------------- /confighalspm/collection/index.en.html: -------------------------------------------------------------------------------- 1 |
{"type": "last", "title": "Last submissions", "limit": 20}
{"type": "count", "title": "Number of fulltext", "format" : ["file"]}{"type": "count", "title": "Number of reference", "format" : ["notice", "annex"]}{"type": "stats", "title": "Submissions evolution", "format": "evol"}{"type": "stats", "title": "Submissions distribution by document type", "format": "typdoc"}
-------------------------------------------------------------------------------- /confighalspm/collection/index.fr.html: -------------------------------------------------------------------------------- 1 |
{"type": "last", "title": "Derniers dépôts", "limit": 20}
{"type": "count", "title": "Nombre de documents", "format" : ["file"]}{"type": "count", "title": "Nombre de notices", "format" : ["notice", "annex"]}{"type": "stats", "title": "Evolution des dépôts", "format": "evol"}{"type": "stats", "title": "Répartition des dépôts par type de document", "format": "typdoc"}
-------------------------------------------------------------------------------- /confighalspm/collection/navigation.json: -------------------------------------------------------------------------------- 1 | [ { 2 | "label" : "Accueil", 3 | "controller" : "index", 4 | "action" : "index", 5 | "resource" : "index-index" 6 | }] -------------------------------------------------------------------------------- /confighalspm/licences.json: -------------------------------------------------------------------------------- 1 | {"Liste des domaines": 2 | {"http://creativecommons.org/licenses/by/":[],"http://creativecommons.org/licenses/by-nc/":[]}} -------------------------------------------------------------------------------- /confighalspm/portail/solr.hal.checkedFilters.json: -------------------------------------------------------------------------------- 1 | { 2 | "filter_dt" : "ART,COMM,OUV,COUV,DOUV,REPORT,OTHER,THESE,HDR,LECTURE,UNDEFINED", 3 | "filter_st": "file" 4 | } 5 | 6 | -------------------------------------------------------------------------------- /confighalspm/portail/solr.hal.returnedFields.json: -------------------------------------------------------------------------------- 1 | {"returnedFields" : "docid,title_s,docType_s,citationRef_s,authIdHalFullName_fs,halId_s,linkExtUrl_s,linkExtId_s,label_coins,version_i,thumbId_i,producedDate_s"} 2 | -------------------------------------------------------------------------------- /confighalspm/templates/template-basic.cnf: -------------------------------------------------------------------------------- 1 | ##### 2 | # Template des paramètres basiques pour la plateforme de HAL 3 | # 4 | ##### 5 | DocumentRoot /var/www/hal/sarah/public 6 | 7 | SetEnv APPLICATION_ENV development 8 | SetEnv CACHE_ROOT /var/www/cache/hal 9 | SetEnv DATA_ROOT /var/www/data/hal 10 | SetEnv DOCS_ROOT /var/www/docs 11 | 12 | AliasMatch ^/[A-Z0-9_-]+/default/(.*)$ /var/www/data/hal/development/collection/shared/public/$1 13 | AliasMatch ^/([A-Z0-9_-]+)/public/(.*)$ /var/www/data/hal/development/collection/$1/public/$2 14 | Alias /default /var/www/hal/data/portail/default/public 15 | ErrorLog "/var/log/halv3.local-error.log" 16 | CustomLog "/var/log/halv3.local.log" common 17 | -------------------------------------------------------------------------------- /confighalspm/templates/template.hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | 127.0.0.1 halv3-local.ccsd.cnrs.fr 3 | 127.0.0.1 cv-local.ccsd.cnrs.fr 4 | 127.0.0.1 halms-local.ccsd.cnrs.fr 5 | -------------------------------------------------------------------------------- /install/confs_templates/api-instance.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | Include ${ROOTWWW}/config/ApacheConf-basics.cnf 4 | ErrorLog "/var/log/apache2/${API_NAME}.error.log" 5 | CustomLog "/var/log/apache2/${API_NAME}.access.log" common 6 | ServerName ${API_NAME}.${DOMAIN} 7 | SetEnv APPLICATION_DIR "application-api" 8 | 9 | 10 | -------------------------------------------------------------------------------- /install/confs_templates/aurehal-instance.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | Include ${ROOTWWW}/config/ApacheConf-basics.cnf 4 | ServerName ${AUREHAL_NAME}.${DOMAIN} 5 | ErrorLog "/var/log/apache2/${AUREHAL_NAME}.error.log" 6 | CustomLog "/var/log/apache2/${AUREHAL_NAME}.access.log" common 7 | SetEnv APPLICATION_ENV ${ENV} 8 | SetEnv APPLICATION_DIR "application-aurehal" 9 | 10 | 11 | -------------------------------------------------------------------------------- /install/confs_templates/cv-instance.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | Include ${ROOTWWW}/config/ApacheConf-basics.cnf 4 | ServerName ${CV_NAME}.${DOMAIN} 5 | ErrorLog "/var/log/apache2/${CV_NAME}.error.log" 6 | CustomLog "/var/log/apache2/${CV_NAME}.access.log" common 7 | SetEnv APPLICATION_DIR "application-cv" 8 | 9 | 10 | -------------------------------------------------------------------------------- /install/confs_templates/hal-instance.conf: -------------------------------------------------------------------------------- 1 | 2 | 3 | Include ${ROOTWWW}/config/ApacheConf-basics.cnf 4 | ServerName ${URL} 5 | ErrorLog "/var/log/apache2/${URL}.error.log" 6 | CustomLog "/var/log/apache2/${URL}.access.log" common 7 | SetEnv PORTAIL ${PORTAIL} 8 | Alias /public ${DATA}/${PORTAIL}/${ENV}/portail/${PORTAIL}/public 9 | Alias /data ${DATA}/${PORTAIL}/${ENV} 10 | Alias /cache ${CACHE}/${PORTAIL}/${ENV} 11 | 12 | 13 | -------------------------------------------------------------------------------- /install/halInitDB.tag.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/install/halInitDB.tag.gz -------------------------------------------------------------------------------- /install/initialData.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/install/initialData.tgz -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.save 3 | *.new 4 | *.old 5 | \#* 6 | CAS 7 | CAS.php 8 | Ccsd 9 | pdfbox 10 | public 11 | scripts 12 | Solarium 13 | ZendX 14 | Zend 15 | Symfony 16 | -------------------------------------------------------------------------------- /library/Hal/Arxiv/Exception.php: -------------------------------------------------------------------------------- 1 | dbstats->toArray(); 23 | return parent::getAdapter(); 24 | } 25 | } -------------------------------------------------------------------------------- /library/Hal/Db/Adapter/config/stats.ini: -------------------------------------------------------------------------------- 1 | [production] 2 | 3 | ; Adapteur de la base de donnée de stats 4 | dbstats.adapter = Pdo_MySQL 5 | dbstats.persistent = false 6 | dbstats.host = STATS_HOST 7 | dbstats.port = STATS_PORT 8 | dbstats.dbname = STATS_NAME 9 | dbstats.username = STATS_USER 10 | dbstats.password = STATS_PWD 11 | dbstats.charset = "utf8" 12 | dbstats.profiler.enabled = false 13 | dbstats.driver_options.1002 = "SET NAMES utf8" 14 | dbstats.driver_options.20 = true 15 | 16 | [preprod : production] 17 | 18 | [demo : production] 19 | 20 | [testing : preprod] 21 | 22 | [development : testing] 23 | -------------------------------------------------------------------------------- /library/Hal/Default/index.en.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {"type": "last", "title": "Last submissions", "limit": 20} 4 |
5 |
6 | {"type": "count", "title": "Number of fulltext", "format" : ["file"]} 7 | {"type": "count", "title": "Number of reference", "format" : ["notice", "annex"]} 8 | {"type": "stats", "title": "Submissions evolution", "format": "evol"} 9 | {"type": "stats", "title": "Submissions distribution by document type", "format": "typdoc"} 10 |
11 |
-------------------------------------------------------------------------------- /library/Hal/Default/index.fr.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | {"type": "last", "title": "Derniers dépôts", "limit": 20} 4 |
5 |
6 | {"type": "count", "title": "Nombre de documents", "format" : ["file"]} 7 | {"type": "count", "title": "Nombre de notices", "format" : ["notice", "annex"]} 8 | {"type": "stats", "title": "Evolution des dépôts", "format": "evol"} 9 | {"type": "stats", "title": "Répartition des dépôts par type de document", "format":"typdoc"} 10 |
11 |
-------------------------------------------------------------------------------- /library/Hal/Default/menu.en.php: -------------------------------------------------------------------------------- 1 | "Home", 4 | "menu-label-2" => "Submit", 5 | "menu-label-3" => "Browse", 6 | "menu-label-4" => "By doctype", 7 | "menu-label-5" => "Browse by author", 8 | "menu-label-6" => "Search", 9 | ); -------------------------------------------------------------------------------- /library/Hal/Default/menu.fr.php: -------------------------------------------------------------------------------- 1 | "Accueil", 4 | "menu-label-2" => "Dépôt", 5 | "menu-label-3" => "Consulter", 6 | "menu-label-4" => "Par type de publication", 7 | "menu-label-5" => "Consultation par auteur", 8 | "menu-label-6" => "Recherche", 9 | ); -------------------------------------------------------------------------------- /library/Hal/Default/navigation.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `WEBSITE_NAVIGATION` (`SID`, `PAGEID`, `TYPE_PAGE`, `CONTROLLER`, `ACTION`, `LABEL`, `PARENT_PAGEID`, `PARAMS`) VALUES 2 | (%SID%, 1, 'Hal_Website_Navigation_Page_Index', 'index', 'index', 'menu-label-1', 0, ''), 3 | (%SID%, 2, 'Hal_Website_Navigation_Page_Submit', 'submit', 'index', 'menu-label-2', 0, ''), 4 | (%SID%, 3, 'Hal_Website_Navigation_Page_Folder', 'section', 'browse', 'menu-label-3', 0, 'a:1:{s:9:"permalien";s:6:"browse";}'), 5 | (%SID%, 4, 'Hal_Website_Navigation_Page_Doctype', 'browse', 'doctype', 'menu-label-4', 3, ''), 6 | (%SID%, 5, 'Hal_Website_Navigation_Page_Author', 'browse', 'author', 'menu-label-5', 3, 'a:1:{s:5:"field";s:6:"author";}'), 7 | (%SID%, 6, 'Hal_Website_Navigation_Page_Search', 'search', 'index', 'menu-label-6', 0, ''); 8 | -------------------------------------------------------------------------------- /library/Hal/Default/vhost.conf: -------------------------------------------------------------------------------- 1 | 2 | ServerName %PORTAIL_URL% 3 | RedirectPermanent / https://%PORTAIL_URL%/ 4 | 5 | 6 | Define PORTAIL %PORTAIL_NAME% 7 | ServerName %PORTAIL_URL% 8 | %PORTAIL_ALIAS% 9 | RewriteEngine On 10 | RewriteRule ^/([A-Z0-9_-]+/)?robots.txt https://%PORTAIL_URL%/$1robots 11 | #CustomLog "| /opt/apache2/bin/rotatelogs -f -l /sites/logs/halv3/%PORTAIL_NAME%.%Y-%m-%d.access 86400" combined 12 | # PHP 13 | php_admin_value error_log /sites/php/error/hal/%PORTAIL_NAME%.log 14 | Include /sites/conf/halv3/basic%PORTAIL_ENV%.cnf 15 | Include /sites/conf/halv3/ssl.cnf 16 | -------------------------------------------------------------------------------- /library/Hal/Document/Exception.php: -------------------------------------------------------------------------------- 1 | _errors = $errors; 19 | } 20 | 21 | public function getErrors() 22 | { 23 | return $this->_errors; 24 | } 25 | 26 | } -------------------------------------------------------------------------------- /library/Hal/Document/Meta/Anrprojectgroup.php: -------------------------------------------------------------------------------- 1 | _value = []; 15 | 16 | if (!isset($value)) 17 | return; 18 | 19 | $this->_value[$group] = new Hal_Document_Meta_Anrproject($key, $value, $group, $source, $uid, $status); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /library/Hal/Document/Meta/Boolean.php: -------------------------------------------------------------------------------- 1 | _value == '' || in_array($this->_value, Hal_Settings::getKnownLicences())); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /library/Hal/Document/Meta/Researchdata.php: -------------------------------------------------------------------------------- 1 | _setAdapter(Zend_Db_Table_Abstract::getDefaultAdapter()); 17 | } 18 | 19 | } 20 | 21 | -------------------------------------------------------------------------------- /library/Hal/Document/createSip.php: -------------------------------------------------------------------------------- 1 | formatOutput = true; 4 | $xml->substituteEntities = true; 5 | $xml->preserveWhiteSpace = false; 6 | $root = $xml->createElement('SIP'); 7 | $xml->appendChild($root); 8 | 9 | $root->appendChild($xml->createElement('doc', $this->_identifiant)); 10 | -------------------------------------------------------------------------------- /library/Hal/Document/pdfbox-app-1.8.7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/library/Hal/Document/pdfbox-app-1.8.7.jar -------------------------------------------------------------------------------- /library/Hal/Evaluation/Moderation/Message.php: -------------------------------------------------------------------------------- 1 | _context == "HAL") { 8 | $this->addPrefixPath('Hal_Form_Element','Hal/Form/Element', Zend_Form::ELEMENT); 9 | $this->addPrefixPath('Hal_Form_Decorator', 'Hal/Form/Decorator', Zend_Form::DECORATOR); 10 | } 11 | } 12 | 13 | } -------------------------------------------------------------------------------- /library/Hal/Instance/Hal.php: -------------------------------------------------------------------------------- 1 | ''], parent::getCountry($locale, $orderList, $separator)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /library/Hal/Meta.php: -------------------------------------------------------------------------------- 1 | 'DOI', 10 | 'bibcode' => 'Bibcode', 11 | 'arxiv' => 'Arxiv', 12 | 'pmb' => 'PubMedID' 13 | ); 14 | } 15 | } -------------------------------------------------------------------------------- /library/Hal/Model.php: -------------------------------------------------------------------------------- 1 | status = $status; 20 | $this -> debug = $debug; 21 | $this -> tracking = $tracking; 22 | } 23 | } -------------------------------------------------------------------------------- /library/Hal/View/Helper/Gi.php: -------------------------------------------------------------------------------- 1 | '; 20 | if ($srOnly !='') { 21 | $res.='' . $srOnly . ''; 22 | } 23 | return $res; 24 | } 25 | } -------------------------------------------------------------------------------- /library/Hal/View/Helper/JQuery/Layout.php: -------------------------------------------------------------------------------- 1 | _roles = array( 22 | self::ROLE_GUEST => null, 23 | self::ROLE_MEMBER => self::ROLE_GUEST, 24 | self::ROLE_ADMINHALMS => self::ROLE_MEMBER 25 | ); 26 | parent::__construct(); 27 | 28 | } 29 | 30 | } -------------------------------------------------------------------------------- /library/Halms/Mail.php: -------------------------------------------------------------------------------- 1 | setPath ( CCSD_MAIL_PATH ); 10 | 11 | $this->setFrom ( HALMS_MAIL, HALMS_USERNAME ); 12 | $this->setReplyTo ( $this->getFrom () ); 13 | $this->setReturnPath ( $this->getFrom () ); 14 | $this->addHeader ( 'X-Mailer', HALMS_USERNAME ); 15 | } 16 | } -------------------------------------------------------------------------------- /library/Thesaurus/hceres.json: -------------------------------------------------------------------------------- 1 | {"SHS":{"SHS1":{"SHS1_1":[],"SHS1_2":[]},"SHS2":{"SHS2_1":[],"SHS2_2":[],"SHS2_3":[],"SHS2_4":[],"SHS2_5":[]},"SHS3":{"SHS3_1":[],"SHS3_2":[],"SHS3_3":[]},"SHS4":{"SHS4_1":[],"SHS4_2":[],"SHS4_3":[],"SHS4_4":[]},"SHS5":{"SHS5_1":[],"SHS5_2":[],"SHS5_3":[],"SHS5_4":[]},"SHS6":{"SHS6_1":[],"SHS6_2":[],"SHS6_3":[]}},"ST":{"ST1":[],"ST2":[],"ST3":[],"ST4":[],"ST5":[],"ST6":[]},"SVE":{"SVE1":[],"SVE2":[],"SVE3":[],"SVE4":[],"SVE5":[],"SVE6":[]}} -------------------------------------------------------------------------------- /migrations/20160314_base_user.sql: -------------------------------------------------------------------------------- 1 | -- requetes SQL pour modification BdD pour Laboratoire User 2 | -- table USER 3 | 4 | ALTER TABLE USER ADD COLUMN LABORATORY_OLD VARCHAR(255) NULL AFTER DEFAULT_AUTHOR; 5 | 6 | UPDATE USER SET LABORATORY_OLD = LABORATORY; 7 | 8 | UPDATE USER SET LABORATORY = ''; -------------------------------------------------------------------------------- /migrations/20160627_base_ref_struct.sql: -------------------------------------------------------------------------------- 1 | -- requetes SQL pour modification BdD pour Ref Structure 2 | -- table REF_STRUCTURE 3 | 4 | ALTER TABLE REF_STRUCTURE ADD COLUMN LOCKED BOOLEAN NOT NULL AFTER VALID; -------------------------------------------------------------------------------- /migrations/20160830_add_column_in_document.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Objectif: Mettre à jour la nouvelle colonne "TEXTAVAILABLE" de la table DOCUMENT de la base HALV3 3 | -- 4 | 5 | -- Cas où le document est un de type 'FILE' ou a un ARXIV ID ou un PUBMEDCENTRAL ID 6 | UPDATE `DOCUMENT` SET TEXTAVAILABLE='1' WHERE FORMAT='file' OR (FORMAT='notice' AND EXISTS (SELECT * FROM `DOC_HASCOPY` WHERE DOCUMENT.DOCID=DOC_HASCOPY.DOCID AND (DOC_HASCOPY.code='arxiv' OR DOC_HASCOPY.code='pubmedcentral'))) -------------------------------------------------------------------------------- /migrations/20170103_file_source.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `DOC_FILE` ADD `SOURCE` ENUM('author','compilation','converted','unzipped') NOT NULL DEFAULT 'author' AFTER `FILESOURCE`; -------------------------------------------------------------------------------- /migrations/20170213_NewColumns_DocMetadatas.sql: -------------------------------------------------------------------------------- 1 | -- Ajout de 2 colonnes dans la table Doc_Metadata 2 | -- table DOC_METADATA 3 | 4 | SELECT '!!!!!!!!! - ATTENTION, IL FAUDRA SUPPRIMER LE CACHE DES DOCUMENTS - !!!!!!!!!'; 5 | SELECT '!!!!!!!!! find /cache/hal/testing/docs -name "*.phps" | xargs rm !!!!!!!!!'; 6 | 7 | ALTER TABLE `DOC_METADATA` ADD `SOURCE` VARCHAR(25) NOT NULL DEFAULT 'web' AFTER `METAGROUP`; 8 | ALTER TABLE `DOC_METADATA` ADD `UID` INT NOT NULL DEFAULT '0' AFTER `SOURCE`; 9 | 10 | ALTER TABLE `DOC_HASCOPY` ADD `SOURCE` VARCHAR(25) NOT NULL DEFAULT 'web' AFTER `LOCALID`; 11 | ALTER TABLE `DOC_HASCOPY` ADD `UID` INT NOT NULL DEFAULT '0' AFTER `SOURCE`; 12 | -------------------------------------------------------------------------------- /migrations/20170401_PREF_DEPOT.sql: -------------------------------------------------------------------------------- 1 | -- Ajout de la table USER_PREF_DEPOT 2 | 3 | CREATE TABLE `USER_PREF_DEPOT` ( 4 | `PREFID` int(11) NOT NULL AUTO_INCREMENT, 5 | `UID` int(11) NOT NULL, 6 | `PREF` varchar(255) NOT NULL, 7 | `VALUE` varchar(255) NOT NULL, 8 | PRIMARY KEY (`PREFID`) 9 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ; 10 | 11 | SELECT '!!!!!!!!! - UNE FOIS LA TABLE CRÉÉE : 20170402_Migration_PrefDepot.php - !!!!!!!!!'; 12 | -------------------------------------------------------------------------------- /migrations/20170403_DEL_COL_USER.sql: -------------------------------------------------------------------------------- 1 | -- On supprime les colonnes qui ne servent plus dans USER 2 | 3 | 4 | SELECT '!!!!!!!!! - UNE FOIS QU A TOURNÉ : migrationPrefDepot.php - !!!!!!!!!'; 5 | 6 | ALTER TABLE `USER` DROP COLUMN `LABORATORY`; 7 | ALTER TABLE `USER` DROP COLUMN `DOMAIN`; 8 | ALTER TABLE `USER` DROP COLUMN `DEFAULT_AUTHOR`; 9 | ALTER TABLE `USER` DROP COLUMN `LABORATORY_OLD`; -------------------------------------------------------------------------------- /migrations/20170504_PREF_MAIL.sql: -------------------------------------------------------------------------------- 1 | -- Ajout de la table USER_PREF_MAIL 2 | 3 | CREATE TABLE `USER_PREF_MAIL` ( 4 | `PREFMID` int(25) NOT NULL AUTO_INCREMENT, 5 | `UID` int(25) NOT NULL, 6 | `RIGHTID` varchar(20) NOT NULL, 7 | `STRUCTID` int(25) NULL, 8 | `SEND` tinyint(1) NOT NULL, 9 | PRIMARY KEY (`PREFMID`) 10 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 11 | 12 | -------------------------------------------------------------------------------- /migrations/20170725_add_owner_token.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Structure de la table `OWNER_TOKENS` 3 | -- 4 | 5 | CREATE TABLE `OWNER_TOKENS` ( 6 | `TID` int(10) UNSIGNED NOT NULL, 7 | `UID` int(10) UNSIGNED NOT NULL, 8 | `DOCID` int(10) UNSIGNED NOT NULL, 9 | `TOKEN` varchar(40) NOT NULL, 10 | `TIME_MODIFIED` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, 11 | `USAGE` enum('UNSHARE') NOT NULL 12 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 13 | 14 | -- 15 | -- Index pour la table `OWNER_TOKENS` 16 | -- 17 | ALTER TABLE `OWNER_TOKENS` 18 | ADD PRIMARY KEY (`TID`); 19 | 20 | -- 21 | -- AUTO_INCREMENT pour la table `OWNER_TOKENS` 22 | -- 23 | ALTER TABLE `OWNER_TOKENS` 24 | MODIFY `TID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -------------------------------------------------------------------------------- /migrations/20171113_DOC_LINKEXT.sql: -------------------------------------------------------------------------------- 1 | -- 2 | -- Structure de la table `DOC_LINKEXT` 3 | -- 4 | 5 | CREATE TABLE `DOC_LINKEXT` ( 6 | `LINKEXTID` int(11) UNSIGNED NOT NULL, 7 | `LINKID` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, 8 | `URL` varchar(500) DEFAULT NULL 9 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8; 10 | 11 | -- 12 | -- Index pour la table `DOC_LINKEXT` 13 | -- 14 | ALTER TABLE `DOC_LINKEXT` 15 | ADD PRIMARY KEY (`LINKEXTID`), 16 | ADD UNIQUE KEY `LINKID` (`LINKID`) USING BTREE, 17 | ADD KEY `URL` (`URL`(100)) USING BTREE; 18 | 19 | -- 20 | -- AUTO_INCREMENT pour la table `DOC_LINKEXT` 21 | -- 22 | ALTER TABLE `DOC_LINKEXT` 23 | MODIFY `LINKEXTID` int(11) UNSIGNED NOT NULL AUTO_INCREMENT; -------------------------------------------------------------------------------- /migrations/20171220_addLogAction.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `DOC_LOG` CHANGE `LOGACTION` `LOGACTION` ENUM('create','annotate','discussion','askmodif','modif','validate','moderate','update','online','version','addfile','copy','jref','domain','tampon','addtampon','deltampon','hide','delete','related','notice','share','remod','request','editmoderation') CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT 'create'; -------------------------------------------------------------------------------- /migrations/2018-07_composer: -------------------------------------------------------------------------------- 1 | Lors du passage a composer: 2 | Modifier les application.ini qui contiennent CCSDLIB_SRC pour APPLICATION_PATH '/../vendor/ccsd/library/public/' -------------------------------------------------------------------------------- /migrations/20180115_add_SWH: -------------------------------------------------------------------------------- 1 | -- -*- sql -*- 2 | -- Initialisation de la table pour SoftwareHeritage 3 | 4 | -- Suis globalement le meme schema que DOC_IDARXIV 5 | 6 | DROP TABLE IF EXISTS `DOC_SWH`; 7 | CREATE TABLE `DOC_SWH` ( 8 | `DOCID` int(10) unsigned NOT NULL, 9 | `REMOTEID` varchar(50) DEFAULT NULL, 10 | `PENDING` varchar(255) DEFAULT NULL, 11 | `MODIFIED` date DEFAULT NULL, 12 | PRIMARY KEY (`DOCID`), 13 | KEY `RemoteIDidx` (`REMOTEID`) 14 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 15 | -------------------------------------------------------------------------------- /migrations/20180206_MAJ_REF_IDHAL_CV.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE REF_IDHAL_CV ADD THEME VARCHAR(200) NOT NULL, CONVERT TO CHARACTER SET utf8 -------------------------------------------------------------------------------- /migrations/20180222_ADD_COLUMN.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE `USER_MODER_TMP` ADD `ACTION` VARCHAR(255) NOT NULL AFTER `IP`; -------------------------------------------------------------------------------- /migrations/20180391_USER_MERGE_TOKEN.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `HALV3_DEV`.`USER_MERGE_TOKEN` ( `TID` INT NOT NULL AUTO_INCREMENT , `UIDFROM` INT NOT NULL , `UIDTO` INT NOT NULL , `TOKEN` VARCHAR(40) NOT NULL , `DATE_CREATION` DATE NOT NULL, PRIMARY KEY (`TID`)) ENGINE = InnoDB; -------------------------------------------------------------------------------- /migrations/20181219_USER_ID_ASSOCIATION: -------------------------------------------------------------------------------- 1 | 2 | -- 3 | -- Structure de la table `USER_ID_ASSOCIATION` 4 | -- 5 | 6 | CREATE TABLE `USER_ID_ASSOCIATION` ( 7 | `uid` varchar(100) NOT NULL, 8 | `federation` varchar(250) NOT NULL, 9 | `id_federation` varchar(250) NOT NULL, 10 | `uidCcsd` varchar(15) NOT NULL, 11 | `nom` varchar(150) NULL, 12 | `prenom` varchar(150) NULL, 13 | `email` varchar(250) NULL, 14 | `valid` boolean NOT NULL, 15 | PRIMARY KEY(uid,federation,id_federation) 16 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; 17 | 18 | DROP TABLE IF EXISTS REF_IDHAL_IDP; -------------------------------------------------------------------------------- /migrations/2019-07-12.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `DB_PATCHES` ( `FILE` VARCHAR(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL , `DATE` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE = InnoDB; 2 | UPDATE SITE SET ID="hal-" WHERE SITE.SITE = 'cel' OR SITE.SITE = 'medihal'; 3 | 4 | -- Patche mark as applied: must be elsewhere... but now... 5 | INSERT INTO DB_PATCHES (`FILE`) VALUES ('2019-07-12.sql'); 6 | -------------------------------------------------------------------------------- /migrations/2019-09-01-PatrolTable.sql: -------------------------------------------------------------------------------- 1 | -- Add PATROL table to take pattrolling into account 2 | 3 | CREATE TABLE `DOC_PATROL` ( 4 | `IDENTIFIANT` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '', 5 | `SID` int(10) UNSIGNED NOT NULL DEFAULT '1', 6 | `PSTATUS` tinyint(3) UNSIGNED NOT NULL DEFAULT '0', 7 | `UID` int(11) NOT NULL DEFAULT '0', 8 | `PDATE` datetime DEFAULT NULL, 9 | `PVERSION` tinyint(3) UNSIGNED DEFAULT NULL 10 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; 11 | 12 | -- Patche mark as applied: must be elsewhere... but now... 13 | INSERT INTO DB_PATCHES (`FILE`) VALUES ('2019-09-01-PatrolTable.sql'); 14 | -------------------------------------------------------------------------------- /migrations/20190417_DOC_RESEARCHDATA.sql: -------------------------------------------------------------------------------- 1 | -- -*- mysql -*- 2 | CREATE TABLE `DOC_RESEARCHDATA` ( `RESEARCHDATAID` int(10) unsigned NOT NULL AUTO_INCREMENT, `DATAID` varchar(100) NOT NULL, `SOURCE` varchar(100) DEFAULT NULL, `TITLE` varchar(255) NOT NULL, `PUBLISHER` varchar(255) NOT NULL, `DATE` year(4) DEFAULT NULL, PRIMARY KEY (`RESEARCHDATAID`), UNIQUE KEY `DATAID` (`DATAID`), KEY `SOURCE` (`SOURCE`) ) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8; 3 | -------------------------------------------------------------------------------- /migrations/LOG_PATH: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /migrations/add_base_no_arxiv.sql: -------------------------------------------------------------------------------- 1 | -- requetes SQL pour modification BdD pour blacklister certains utilisateur du transfert arXiv 2 | 3 | CREATE TABLE NO_ARXIV (UID INT PRIMARY KEY NOT NULL, DATEBL DATE, COMMENT VARCHAR(255)) -------------------------------------------------------------------------------- /migrations/update_base_user.sql: -------------------------------------------------------------------------------- 1 | -- requetes SQL pour modification BdD pour modération 2 | -- table USER 3 | 4 | ALTER TABLE USER ADD COLUMN NBDOCVIS INT NOT NULL DEFAULT 0 AFTER DOMAIN; 5 | 6 | ALTER TABLE USER ADD COLUMN NBDOCSCI INT NOT NULL DEFAULT 0 AFTER DOMAIN; 7 | 8 | ALTER TABLE USER ADD COLUMN NBDOCREF INT NOT NULL DEFAULT 0 AFTER DOMAIN; -------------------------------------------------------------------------------- /public/crossdomain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/css/api.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | .footer { 3 | background: url(/img/footer-bg.jpg) no-repeat 10px 10px #9a9b9c; 4 | height: 140px; 5 | margin-top: 30px; 6 | } 7 | .footer .footer-contact { 8 | margin-left: 300px; 9 | padding-top: 25px; 10 | } 11 | .footer .footer-contact h4, .footer .footer-contact a { 12 | color: #dadadb; 13 | } 14 | .footer .footer-contact h4 { 15 | text-transform: uppercase; 16 | font-weight: normal; 17 | } 18 | .footer .footer-ccsd { 19 | float: right; 20 | margin-top: -70px; 21 | margin-right: 50px; 22 | } 23 | 24 | 25 | code { 26 | color:black; 27 | white-space: normal; 28 | } -------------------------------------------------------------------------------- /public/css/templates/tpl1.css: -------------------------------------------------------------------------------- 1 | @CHARSET "UTF-8"; 2 | 3 | body { 4 | background-color: #c0deed; 5 | } 6 | 7 | a { 8 | } 9 | 10 | h1, h2, h3 { 11 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 12 | font-size: 10; 13 | } 14 | #container{ 15 | background-color: #ffffff; 16 | padding: 10px 10px 50px; 17 | border: 1px solid #cccccc; 18 | box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); 19 | margin-bottom: 50px; 20 | min-height: 600px; 21 | } 22 | div, table,label, input, button, select, textarea { 23 | font-family: Verdana, Geneva, sans-serif; 24 | font-size: 10; 25 | } -------------------------------------------------------------------------------- /public/css/widget-gallery.css: -------------------------------------------------------------------------------- 1 | .my-gallery { 2 | width: 100%; 3 | text-align: center; 4 | } 5 | .my-gallery img { 6 | width: 100%; 7 | height: auto; 8 | } 9 | .my-gallery figure { 10 | display: inline-block; 11 | margin: 0 5px 5px 0; 12 | width: 100px; 13 | } 14 | .my-gallery figcaption { 15 | display: none; 16 | } 17 | 18 | .toggle-gallery { 19 | float:right; 20 | } -------------------------------------------------------------------------------- /public/fonts/arialnb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/fonts/arialnb.ttf -------------------------------------------------------------------------------- /public/fonts/ariblk.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/fonts/ariblk.ttf -------------------------------------------------------------------------------- /public/img/arxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/arxiv.png -------------------------------------------------------------------------------- /public/img/aurehal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/aurehal.png -------------------------------------------------------------------------------- /public/img/background_fond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/background_fond.png -------------------------------------------------------------------------------- /public/img/ccsd.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/ccsd.logo.png -------------------------------------------------------------------------------- /public/img/ccsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/ccsd.png -------------------------------------------------------------------------------- /public/img/charts/BarChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/BarChart.png -------------------------------------------------------------------------------- /public/img/charts/ColumnChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/ColumnChart.png -------------------------------------------------------------------------------- /public/img/charts/GeoChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/GeoChart.png -------------------------------------------------------------------------------- /public/img/charts/LineChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/LineChart.png -------------------------------------------------------------------------------- /public/img/charts/PieChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/PieChart.png -------------------------------------------------------------------------------- /public/img/charts/SteppedAreaChart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/SteppedAreaChart.png -------------------------------------------------------------------------------- /public/img/charts/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/charts/table.png -------------------------------------------------------------------------------- /public/img/default-skin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/default-skin.png -------------------------------------------------------------------------------- /public/img/defaultThumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/defaultThumb.jpg -------------------------------------------------------------------------------- /public/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/favicon.png -------------------------------------------------------------------------------- /public/img/file_shadow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/file_shadow.jpg -------------------------------------------------------------------------------- /public/img/filters.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/img/flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/flags.png -------------------------------------------------------------------------------- /public/img/footer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/footer-bg.jpg -------------------------------------------------------------------------------- /public/img/hal-ao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/hal-ao.jpg -------------------------------------------------------------------------------- /public/img/hal.body.bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/hal.body.bg.png -------------------------------------------------------------------------------- /public/img/hal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/hal.png -------------------------------------------------------------------------------- /public/img/hal_selcuk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/hal_selcuk.png -------------------------------------------------------------------------------- /public/img/hallinkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/hallinkout.png -------------------------------------------------------------------------------- /public/img/halms-1-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-1-large.png -------------------------------------------------------------------------------- /public/img/halms-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-1.png -------------------------------------------------------------------------------- /public/img/halms-2-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-2-large.png -------------------------------------------------------------------------------- /public/img/halms-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-2.png -------------------------------------------------------------------------------- /public/img/halms-3-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-3-large.png -------------------------------------------------------------------------------- /public/img/halms-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-3.png -------------------------------------------------------------------------------- /public/img/halms-4-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-4-large.png -------------------------------------------------------------------------------- /public/img/halms-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-4.png -------------------------------------------------------------------------------- /public/img/halms-5-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-5-large.png -------------------------------------------------------------------------------- /public/img/halms-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-5.png -------------------------------------------------------------------------------- /public/img/halms-6-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-6-large.png -------------------------------------------------------------------------------- /public/img/halms-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms-6.png -------------------------------------------------------------------------------- /public/img/halms.html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms.html.png -------------------------------------------------------------------------------- /public/img/halms.pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/halms.pdf.png -------------------------------------------------------------------------------- /public/img/heloise.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/heloise.gif -------------------------------------------------------------------------------- /public/img/icon-mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/icon-mail.png -------------------------------------------------------------------------------- /public/img/icon-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/icon-pdf.png -------------------------------------------------------------------------------- /public/img/icon-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/icon-phone.png -------------------------------------------------------------------------------- /public/img/licences/by.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/by.large.png -------------------------------------------------------------------------------- /public/img/licences/by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/by.png -------------------------------------------------------------------------------- /public/img/licences/cc.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/cc.large.png -------------------------------------------------------------------------------- /public/img/licences/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/cc.png -------------------------------------------------------------------------------- /public/img/licences/etalab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/etalab.png -------------------------------------------------------------------------------- /public/img/licences/nc-eu.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc-eu.large.png -------------------------------------------------------------------------------- /public/img/licences/nc-eu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc-eu.png -------------------------------------------------------------------------------- /public/img/licences/nc-jp.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc-jp.large.png -------------------------------------------------------------------------------- /public/img/licences/nc-jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc-jp.png -------------------------------------------------------------------------------- /public/img/licences/nc.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc.large.png -------------------------------------------------------------------------------- /public/img/licences/nc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nc.png -------------------------------------------------------------------------------- /public/img/licences/nd.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nd.large.png -------------------------------------------------------------------------------- /public/img/licences/nd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/nd.png -------------------------------------------------------------------------------- /public/img/licences/pd.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/pd.large.png -------------------------------------------------------------------------------- /public/img/licences/pd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/pd.png -------------------------------------------------------------------------------- /public/img/licences/remix.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/remix.large.png -------------------------------------------------------------------------------- /public/img/licences/remix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/remix.png -------------------------------------------------------------------------------- /public/img/licences/sa.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sa.large.png -------------------------------------------------------------------------------- /public/img/licences/sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sa.png -------------------------------------------------------------------------------- /public/img/licences/sampling.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sampling.large.png -------------------------------------------------------------------------------- /public/img/licences/sampling.plus.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sampling.plus.large.png -------------------------------------------------------------------------------- /public/img/licences/sampling.plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sampling.plus.png -------------------------------------------------------------------------------- /public/img/licences/sampling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/sampling.png -------------------------------------------------------------------------------- /public/img/licences/share.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/share.large.png -------------------------------------------------------------------------------- /public/img/licences/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/share.png -------------------------------------------------------------------------------- /public/img/licences/zero.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/zero.large.png -------------------------------------------------------------------------------- /public/img/licences/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/licences/zero.png -------------------------------------------------------------------------------- /public/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/loading.gif -------------------------------------------------------------------------------- /public/img/logo-arxiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-arxiv.png -------------------------------------------------------------------------------- /public/img/logo-ccsd-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-ccsd-footer.jpg -------------------------------------------------------------------------------- /public/img/logo-ccsd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-ccsd.png -------------------------------------------------------------------------------- /public/img/logo-hal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-hal.png -------------------------------------------------------------------------------- /public/img/logo-istex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-istex.png -------------------------------------------------------------------------------- /public/img/logo-openaccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-openaccess.png -------------------------------------------------------------------------------- /public/img/logo-pubmedcentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/logo-pubmedcentral.png -------------------------------------------------------------------------------- /public/img/portail-hal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/portail-hal.gif -------------------------------------------------------------------------------- /public/img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/preloader.gif -------------------------------------------------------------------------------- /public/img/pubmedcentral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/pubmedcentral.jpg -------------------------------------------------------------------------------- /public/img/sherpa-romeo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/sherpa-romeo.gif -------------------------------------------------------------------------------- /public/img/social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/social/facebook.png -------------------------------------------------------------------------------- /public/img/social/google_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/social/google_plus.png -------------------------------------------------------------------------------- /public/img/social/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/social/linkedin.png -------------------------------------------------------------------------------- /public/img/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/social/twitter.png -------------------------------------------------------------------------------- /public/img/softwareheritage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/softwareheritage.png -------------------------------------------------------------------------------- /public/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/spacer.gif -------------------------------------------------------------------------------- /public/img/submit-step-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/submit-step-file.png -------------------------------------------------------------------------------- /public/img/tampon-hal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/tampon-hal.jpg -------------------------------------------------------------------------------- /public/img/tamponHal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/tamponHal.png -------------------------------------------------------------------------------- /public/img/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/triangle.png -------------------------------------------------------------------------------- /public/img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/user.png -------------------------------------------------------------------------------- /public/img/videhal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/videhal.png -------------------------------------------------------------------------------- /public/img/vignette-hal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/vignette-hal.jpg -------------------------------------------------------------------------------- /public/img/ws-struct.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/public/img/ws-struct.jpg -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- 1 | bootstrap() 19 | ->run(); 20 | -------------------------------------------------------------------------------- /public/js/api/api.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | $('a[data-toggle="tooltip"]').tooltip(); 4 | //$('td[data-toggle="tooltip"]').tooltip(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/js/browse/browse.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('a[data-toggle="tooltip"]').tooltip(); 3 | 4 | // checkbox redirect 5 | $("input[type='checkbox']").change(function() { 6 | var item = $(this); 7 | if (item.data("target")) { 8 | window.location.href = item.data("target"); 9 | } 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /public/js/document/document.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Récupération de l'historique d'un dépôt 3 | * @param docid 4 | * @param div 5 | */ 6 | function getDocHistory(docid, div) 7 | { 8 | $.ajax({ 9 | url: '/view/history', 10 | type: "post", 11 | data: {docid:docid, limit:"moderate"}, 12 | success: function(data) { 13 | $(div).find('.result').html(data); 14 | } 15 | }); 16 | } -------------------------------------------------------------------------------- /public/js/form/decorator/identifiers/init.js: -------------------------------------------------------------------------------- 1 | function %%FCT_NAME%% (elm, name) { 2 | var code = $(elm).attr('val'); 3 | var libelle = $(elm).html(); 4 | 5 | if ($(elm).closest('li').hasClass('disabled')) { 6 | return false; 7 | } 8 | 9 | $(elm).closest(".btn-group").find("button").val(code); 10 | var textNode = $(elm).closest(".btn-group").find("button").contents().first(); 11 | textNode.replaceWith(libelle); 12 | 13 | $(elm).closest('.input-group').find('input').attr('lang', code); 14 | $(elm).closest('.input-group').find('input').attr('name', name + "[" + code + "]"); 15 | 16 | return false; 17 | } -------------------------------------------------------------------------------- /public/js/submit/domain.js: -------------------------------------------------------------------------------- 1 | function domainChanged () 2 | { 3 | var postData = $("#form_meta").serializeArray(); 4 | postData.push({name: "isdomainchange", value: 1}); 5 | 6 | ajaxrequestsubmit({url: '/submit/ajaxchangemeta', data: postData, success: function () { 7 | $(document.body).find('> .tooltip').remove(); 8 | $(document.body).tooltip({ selector: '[data-toggle="tooltip"]' , html: true, container: 'body'}); 9 | }, dataType: 'json', 10 | error: function(msg) { 11 | showErrorContent("#error-zone-meta", msg.responseText); 12 | } 13 | }, 'rechargeForm'); 14 | } -------------------------------------------------------------------------------- /public/js/translations.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | function translate ($key) { 22 | if (translations[$key] == undefined) { 23 | return $key; 24 | } 25 | return translations[$key]; 26 | } 27 | -------------------------------------------------------------------------------- /public/js/user/user.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | $("#delete-photo").click(function() { 4 | var ajax = $.ajax({ 5 | url : "/user/ajaxdeletephoto", 6 | type : "POST", 7 | dataType : "html", 8 | data: {uid: $(this).attr('attr-uid')}, 9 | success : function(data) { 10 | if (data == '1') { 11 | $(".user-photo-normal, .user-photo-thumb").fadeOut("slow"); 12 | } 13 | $(".user-photo").fadeOut("slow"); 14 | $("#delete-photo").addClass('hidden'); 15 | message('Photo supprimée.', 'alert-success'); 16 | }, 17 | error : message('La suppression a échoué.', 'alert-danger') 18 | }); 19 | return false; 20 | }); 21 | 22 | }); 23 | -------------------------------------------------------------------------------- /public/landing-page/robots.txt: -------------------------------------------------------------------------------- 1 | # Nothing to see here M. Robot 2 | User-agent: * 3 | Disallow: / -------------------------------------------------------------------------------- /public/scss/submit/_step-meta.scss: -------------------------------------------------------------------------------- 1 | #form_meta label { 2 | font-weight:normal; 3 | } 4 | #form_meta label.required { 5 | font-weight:bold; 6 | } 7 | 8 | #iconMetas { 9 | font-size:14px; 10 | } 11 | 12 | #iconMetas.glyphicon-ok, .green { 13 | color:#3A9D23; 14 | } 15 | 16 | #iconMetas.glyphicon-remove, .red { 17 | color:#CF0A1D; 18 | } 19 | 20 | #panel-body-meta input[type='checkbox'] { 21 | width: auto; 22 | } 23 | 24 | #error-zone-meta { 25 | display:none; 26 | } 27 | 28 | #meta-footer-note { 29 | font-style:italic; 30 | margin-top:15px; 31 | } 32 | 33 | #map { 34 | padding-bottom:20px; 35 | } 36 | 37 | #map-canvas { 38 | width:100%; 39 | height:350px; 40 | display:block; 41 | } 42 | 43 | #error-zone-meta { 44 | margin-top: 20px; 45 | } -------------------------------------------------------------------------------- /scripts/loadZendHeader.php: -------------------------------------------------------------------------------- 1 | setFallbackAutoloader(true); 13 | 14 | $session = new Zend_Session_Namespace(); 15 | -------------------------------------------------------------------------------- /scripts/ponctuel/inversionNP_Literature.php: -------------------------------------------------------------------------------- 1 | 'Docid du document à traiter', 5 | ); 6 | 7 | require_once __DIR__.'/../loadHalHeader.php'; 8 | 9 | 10 | $docid = $opts->docid; 11 | 12 | 13 | $docrefs = new Hal_Document_References($docid); 14 | $docrefs->revertPrenomNomInXML(); 15 | 16 | -------------------------------------------------------------------------------- /scripts/references/loop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while getopts n:p:s: option 3 | do 4 | case "${option}" 5 | in 6 | n) Number=$((OPTARG));; 7 | p) PATH=${OPTARG};; 8 | s) PHP=${OPTARG};; 9 | esac 10 | done 11 | 12 | counter=1 13 | while [ $counter -le $Number ] 14 | do 15 | $PHP $PATH & 16 | ((counter++)) 17 | done 18 | wait 19 | exit 1 20 | -------------------------------------------------------------------------------- /scripts/updateSWH.php: -------------------------------------------------------------------------------- 1 | 'Mode test', 4 | ); 5 | 6 | require_once __DIR__ . '/loadHalHeader.php'; 7 | 8 | $test = isset($opts->t); 9 | 10 | Hal_Transfert_SoftwareHeritage::check_all_pending_status(true); 11 | 12 | -------------------------------------------------------------------------------- /tests/Hal/TestConfig.php: -------------------------------------------------------------------------------- 1 | getOption('tarteaucitron.domain'); 17 | $this->assertEquals('.archives-ouvertes.fr', $opts); 18 | } 19 | 20 | 21 | } -------------------------------------------------------------------------------- /tests/application/hal/controllers/IndexControllerTest.php: -------------------------------------------------------------------------------- 1 | bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_INI); 11 | 12 | parent::setUp(); 13 | } 14 | 15 | /** TODO: delete this function when you add test 16 | * Its just a placeholder to avoid Warning of phpunit*/ 17 | public function testFoo() { 18 | $this->assertTrue(true); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /tests/library/Hal/Document/Validity_Test.php: -------------------------------------------------------------------------------- 1 | setTypdoc('ART'); 25 | $document->setMetas(['language'=>'fr', 'title'=>['fr'=>'test'], 'domain'=>['shs'], 'journal'=>'1', 'date'=>'2017']); 26 | 27 | 28 | self::assertEquals(true, Hal_Document_Validity::isValidMeta ($document)); 29 | 30 | 31 | } 32 | } -------------------------------------------------------------------------------- /tests/library/Hal/Meta_Test.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 9 | } 10 | 11 | } -------------------------------------------------------------------------------- /tests/ressources/ART-WithDOI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/ART-WithDOI.pdf -------------------------------------------------------------------------------- /tests/ressources/ART.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/ART.pdf -------------------------------------------------------------------------------- /tests/ressources/ART_TEST.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/ART_TEST.zip -------------------------------------------------------------------------------- /tests/ressources/Brazil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/Brazil.jpg -------------------------------------------------------------------------------- /tests/ressources/DirTree/dir1/dir3/File3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/DirTree/dir1/dir3/File3 -------------------------------------------------------------------------------- /tests/ressources/DirTree/dir1/dir3/otherFile_pruned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/DirTree/dir1/dir3/otherFile_pruned -------------------------------------------------------------------------------- /tests/ressources/DirTree/dir2/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/DirTree/dir2/file2 -------------------------------------------------------------------------------- /tests/ressources/DirTree/dir2/filePruned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/DirTree/dir2/filePruned.txt -------------------------------------------------------------------------------- /tests/ressources/DirTree/dir2/filePruned2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/DirTree/dir2/filePruned2.txt -------------------------------------------------------------------------------- /tests/ressources/FR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/FR.pdf -------------------------------------------------------------------------------- /tests/ressources/Test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/Test.pdf -------------------------------------------------------------------------------- /tests/ressources/krakow.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/krakow.doc -------------------------------------------------------------------------------- /tests/ressources/rdf/anr-1.rdf: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Quelles interventions publiques et privées pour réduire l'utilisation des traitements phytosanitaires dans le secteur du vin ? 5 | 2005 6 | Programme fédérateur Agriculture et Développement Durable 7 | VIN 8 | ANR-05-PADD-0001 9 | 10 | 11 | -------------------------------------------------------------------------------- /tests/ressources/rtf/serialBiblio.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCSDForge/FinHal/b267c9824444600374f475792c703f8438f21290/tests/ressources/rtf/serialBiblio.rtf -------------------------------------------------------------------------------- /tests/ressources/rtf/wget-log: -------------------------------------------------------------------------------- 1 | --2018-03-22 14:58:10-- http://api.archives-ouvertes.fr/search/index/?q=marmol+bruno 2 | Résolution de api.archives-ouvertes.fr (api.archives-ouvertes.fr)… 193.48.96.36 3 | Connexion à api.archives-ouvertes.fr (api.archives-ouvertes.fr)|193.48.96.36|:80… connecté. 4 | requête HTTP transmise, en attente de la réponse… 403 Forbidden 5 | 2018-03-22 14:58:10 erreur 403 : Forbidden. 6 | 7 | -------------------------------------------------------------------------------- /tests/ressources/tei/ineris-01596485.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | --------------------------------------------------------------------------------