|
| 1 | +from share.provider import OAIProviderAppConfig |
| 2 | + |
| 3 | + |
| 4 | +class AppConfig(OAIProviderAppConfig): |
| 5 | + name = 'providers.info.ssoar' |
| 6 | + version = '0.0.1' |
| 7 | + title = 'ssoar' |
| 8 | + long_title = 'Social Science Open Access Repository' |
| 9 | + home_page = 'http://www.ssoar.info/en/home.html' |
| 10 | + url = 'http://www.ssoar.info/OAIHandler/request' |
| 11 | + # http://www.ssoar.info/ssoar/search-filter?field=documentType |
| 12 | + type_map = { |
| 13 | + 'journal article': 'article', |
| 14 | + 'festschrift': 'publication', |
| 15 | + 'final report': 'report', |
| 16 | + 'company report': 'report', |
| 17 | + 'research report': 'report', |
| 18 | + 'expert report': 'report', |
| 19 | + 'abridged report': 'report', |
| 20 | + 'literature report': 'report', |
| 21 | + 'annual report': 'report', |
| 22 | + 'interim report': 'report', |
| 23 | + 'report from institution/organization': 'report', |
| 24 | + 'm.a. thesis': 'thesis', |
| 25 | + 'master thesis': 'thesis', |
| 26 | + 'phd thesis': 'thesis', |
| 27 | + 'conference paper': 'conferencepaper', |
| 28 | + 'working paper': 'workingpaper', |
| 29 | + 'other': 'creativework' |
| 30 | + } |
0 commit comments