Skip to content

Commit 56fde4f

Browse files
committed
Add Cyprus University of Technology OAI provider
1 parent 9d5b667 commit 56fde4f

File tree

8 files changed

+59
-0
lines changed

8 files changed

+59
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ ENV/
128128
/br.*/
129129
/ca.*/
130130
/ch.*/
131+
/cy.*/
131132
/com.*/
132133
/edu.*/
133134
/es.*/

project/settings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@
9797
'providers.ca.umontreal',
9898
'providers.ca.uwo',
9999
'providers.ch.cern',
100+
'providers.cy.ac.cut',
100101
'providers.com.biomedcentral',
101102
'providers.com.dailyssrn',
102103
'providers.com.figshare',

providers/cy/ac/cut/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
default_app_config = 'providers.cy.ac.cut.apps.AppConfig'

providers/cy/ac/cut/apps.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from share.provider import OAIProviderAppConfig
2+
3+
4+
class AppConfig(OAIProviderAppConfig):
5+
name = 'providers.cy.ac.cut'
6+
version = '0.0.1'
7+
title = 'cut'
8+
long_title = 'Cyprus University of Technology'
9+
home_page = 'http://ktisis.cut.ac.cy/'
10+
url = 'http://ktisis.cut.ac.cy/oai/request'

providers/cy/ac/cut/favicon.ico

1.12 KB
Binary file not shown.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.7 on 2017-03-16 15:14
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
import share.robot
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('share', '0001_initial'),
13+
('djcelery', '0001_initial'),
14+
]
15+
16+
operations = [
17+
migrations.RunPython(
18+
code=share.robot.RobotUserMigration('cy.ac.cut'),
19+
),
20+
migrations.RunPython(
21+
code=share.robot.RobotOauthTokenMigration('cy.ac.cut'),
22+
),
23+
migrations.RunPython(
24+
code=share.robot.RobotScheduleMigration('cy.ac.cut'),
25+
),
26+
]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9.7 on 2017-03-16 15:14
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
import share.robot
7+
8+
9+
class Migration(migrations.Migration):
10+
11+
dependencies = [
12+
('cy.ac.cut', '0001_initial'),
13+
('share', '0018_store_favicons'),
14+
]
15+
16+
operations = [
17+
migrations.RunPython(
18+
code=share.robot.RobotFaviconMigration('cy.ac.cut'),
19+
),
20+
]

providers/cy/ac/cut/migrations/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)