-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyHAL_docType.php
More file actions
83 lines (81 loc) · 1.95 KB
/
MyHAL_docType.php
File metadata and controls
83 lines (81 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/*
* MyHAL - Vérifiez votre liste de publications - Check your paper list
*
* Copyright (C) 2023 Olivier Troccaz (olivier.troccaz@cnrs.fr) and Laurent Jonchère (laurent.jonchere@univ-rennes.fr)
* Released under the terms and conditions of the GNU General Public License (https://www.gnu.org/licenses/gpl-3.0.txt)
*
* Liste des docTypes HAL - List of HAL docTypes
*/
//liste des docTypes HAL
$DOCTYPE_LISTE = array(
'ART' =>'Journal articles',
'COMM' =>'Conference papers',
'COUV' =>'Book chapters',
'DOUV' =>'Proceedings, Book Editions',
'ETABTHESE' =>'Theses',
'HDR' =>'HDR',
'IMG' =>'Images',
'ISSUE' =>'Special Issues',
'OTHER' =>'Others',
'LECTURE' =>'Lectures',
'MAP' =>'Maps',
'MEM' =>'Dissertations',
'NOTE' =>'Notes',
'OTHERREPORT' =>'Other reports',
'OUV' =>'Books',
'PATENT' =>'Patents',
'POSTER' =>'Posters',
'PRESCONF' =>'Conference papers (Files)',
'REPACT' =>'Annual reports',
'REPORT' =>'Reports',
'SOFTWARE' =>'Softwares',
'SON' =>'Sounds',
'SYNTHESE' =>'Syntheses',
'THESE' =>'PhD Theses',
'UNDEFINED' =>'Preprints',
'VIDEO' =>'Videos'
);
/*
$DOCTYPE_LISTE = array(
'ART' =>'Articles',
'COMM' =>'Communications',
'COUV' =>'Book chapter',
'DOUV' =>'Project management',
'ETABTHESE' =>'EtabThese ???',
'HDR' =>'Empowerment to direct research',
'IMG' =>'Picture',
'LECTURE' =>'Lecture ???',
'MAP' =>'Map',
'MEM' =>'Mem ???',
'NOTE' =>'Note',
'OTHER' =>'Other',
'OTHERREPORT' =>'Other report',
'OUV' =>'Book',
'PATENT' =>'Patent',
'POSTER' =>'Poster',
'PRESCONF' =>'Presconf ???',
'REPACT' =>'???',
'REPORT' =>'???',
'REPORT_COOR' =>'???',
'REPORT_DOCT' =>'???',
'REPORT_ETAB' =>'???',
'REPORT_FORM' =>'???',
'REPORT_FPROJ' =>'???',
'REPORT_GLICE' =>'???',
'REPORT_GMAST' =>'???',
'REPORT_LABO' =>'???',
'REPORT_LICE' =>'???',
'REPORT_LPRO' =>'???',
'REPORT_MAST' =>'???',
'REPORT_RETABINT' =>'???',
'REPORT_RFOINT' =>'???',
'SOFTWARE' =>'Software',
'SON' =>'Sound ???',
'SYNTHESE' =>'Synthesis',
'THESE' =>'PhD',
'UNDEFINED' =>'Undefined',
'VIDEO' =>'Video'
);
*/
?>