Commit | Line | Data |
---|---|---|
0cc5f772 CR |
1 | # -*- encoding: utf-8 -*- |
2 | ||
3 | ### Configuration de SEP | |
4 | ||
5 | # Configuration générale | |
6 | DB_URI = '' | |
7 | ||
8 | ||
9 | # Sources de données | |
10 | RESOURCES = { | |
11 | 'CRITAOI': { | |
12 | 'type': 'oai', | |
13 | 'acces': 'generic', | |
14 | 'url': 'http://biblio.critaoi.auf.org/' | |
15 | }, | |
16 | 'Archives ouvertes du Moyen-Orient': { | |
17 | 'type': 'oai', | |
18 | 'acces': 'generic', | |
19 | 'url': 'http://hal-confremo.archives-ouvertes.fr/' | |
20 | }, | |
21 | 'CECA': { | |
22 | 'type': 'oai', | |
23 | 'acces': 'generic', | |
24 | 'url': 'http://ceca.auf.org/', | |
25 | }, | |
26 | 'Bibliothèque Numérique de Ouagadougou': { | |
27 | 'type': 'oai', | |
28 | 'acces': 'generic', | |
29 | 'server': 'greenstone.refer.bf', | |
30 | 'port': 80, | |
31 | 'base_url': '/', # Finir par / | |
32 | }, | |
33 | 'Revue-signes': { | |
34 | 'type': 'lodel', | |
35 | 'acces': 'html', | |
36 | 'server': 'www.revue-signes.info', | |
37 | 'port': 80, | |
38 | 'base_url': '/', | |
39 | }, | |
40 | 'ERGI': { | |
41 | 'type': 'lodel', | |
42 | 'acces': 'html', | |
43 | 'server': 'www.revue-genie-industriel.info', | |
44 | 'port': 80, | |
45 | 'base_url': '/', | |
46 | }, | |
47 | 'e-Santé': { | |
48 | 'type': 'lodel', | |
49 | 'acces': 'html', | |
50 | 'server': 'www.revue-esante.info', | |
51 | 'port': 80, | |
52 | 'base_url': '/', | |
53 | }, | |
54 | 'Radisma': { | |
55 | 'type': 'lodel', | |
56 | 'acces': 'html', | |
57 | 'server': 'www.radisma.info', | |
58 | 'port': 80, | |
59 | 'base_url': '/', | |
60 | }, | |
61 | 'RMNSci.net': { | |
62 | 'type': 'lodel', | |
63 | 'acces': 'html', | |
64 | 'server': 'www.rmnsci.net', | |
65 | 'port': 80, | |
66 | 'base_url': '/', | |
67 | }, | |
68 | 'Urbamag': { | |
69 | 'type': 'lodel', | |
70 | 'acces': 'html', | |
71 | 'server': 'www.urbamag.net', | |
72 | 'port': 80, | |
73 | 'base_url': '/', | |
74 | }, | |
75 | 'Afrique Science': { | |
76 | 'type': 'lodel', | |
77 | 'acces': 'html', | |
78 | 'server': 'www.afriquescience.info', | |
79 | 'port': 80, | |
80 | 'base_url': '/', | |
81 | }, | |
82 | 'e-Ti': { | |
83 | 'type': 'lodel', | |
84 | 'acces': 'html', | |
85 | 'server': 'www.revue-eti.net', | |
86 | 'port': 80, | |
87 | 'base_url': '/', | |
88 | }, | |
89 | 'Taloha': { | |
90 | 'type': 'lodel', | |
91 | 'acces': 'html', | |
92 | 'server': 'www.taloha.info', | |
93 | 'port': 80, | |
94 | 'base_url': '/', | |
95 | }, | |
96 | 'TDR': { | |
97 | 'type': 'lodel', | |
98 | 'acces': 'html', | |
99 | 'server': 'www.revue-tice.info', | |
100 | 'port': 80, | |
101 | 'base_url': '/', | |
102 | }, | |
103 | 'Exchorésis': { | |
104 | 'type': 'lodel', | |
105 | 'acces': 'html', | |
106 | 'server': 'exchoresis.refer.ga', | |
107 | 'port': 80, | |
108 | 'base_url': '/', | |
109 | }, | |
110 | 'Annales des sciences agronomiques du Bénin': { | |
111 | 'type': 'lodel', | |
112 | 'acces': 'html', | |
113 | 'server': 'www.annales-fsa.bj.refer.org', | |
114 | 'port': 80, | |
115 | 'base_url': '/', | |
116 | }, | |
117 | 'Bulletin des OSCB': { | |
118 | 'type': 'lodel', | |
119 | 'acces': 'html', | |
120 | 'server': 'www.osc.bj.refer.org', | |
121 | 'port': 80, | |
122 | 'base_url': '/', | |
123 | }, | |
124 | 'Bibliothèque Numérique de Ouagadougou': { | |
125 | 'type': 'oai', | |
126 | 'acces': 'generic', | |
127 | 'url': 'http://greenstone.bf.refer.org/' | |
128 | }, | |
129 | } | |
130 | ||
131 |