This repository has been archived by the owner on Mar 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:anusharanganathan/RDFDatabank
Code commit after rewrite of databank auth
- Loading branch information
Showing
222 changed files
with
8,742 additions
and
12,217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
The MIT License | ||
|
||
Copyright (c) 2012, University of Oxford | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
The Debian Package databank | ||
---------------------------- | ||
|
||
Comments regarding the Package | ||
|
||
-- Anusha Ranganathan <[email protected]> Fri, 09 Mar 2012 17:08:50 +0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
databank (0.2) unstable; urgency=low | ||
|
||
* Added message workers | ||
* Databank root set to /var/lib/databank | ||
|
||
-- Anusha Ranganathan <[email protected]> Fri, 09 Mar 2012 17:08:50 +0000 | ||
|
||
|
||
databank (0.1) unstable; urgency=low | ||
|
||
* Initial Release. | ||
|
||
-- Anusha Ranganathan <[email protected]> Tue, 21 Feb 2012 17:08:50 +0000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/sh -e | ||
|
||
# Source debconf library. | ||
. /usr/share/debconf/confmodule | ||
|
||
# Admin email? | ||
db_input critical databank/email || true | ||
db_go | ||
|
||
# SMTP server? | ||
db_input high databank/smtpserver || true | ||
db_go | ||
|
||
# Storgae area? | ||
db_input high databank/store || true | ||
db_go | ||
|
||
# Databank URI? | ||
db_input critical databank/uri || true | ||
db_go | ||
|
||
#Configure SOLR | ||
db_input high databank/confsolr || true | ||
db_go | ||
|
||
#Note on configuring SOLR | ||
#db_input high databank/nosolrconf || true | ||
#db_go | ||
|
||
# Password? | ||
#db_input critical databank/password || true | ||
#db_go | ||
|
||
# Note on Password | ||
db_input critical databank/passwdnote || true | ||
db_go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Source: databank | ||
Section: web | ||
Priority: extra | ||
Maintainer: Anusha Ranganathan <[email protected]> | ||
Build-Depends: debhelper (>= 7) | ||
Standards-Version: 3.9.2 | ||
Vcs-Git: git://github.com/dataflow/RDFDatabank.git | ||
Homepage: https://github.com/dataflow/RDFDatabank | ||
Uploaders: Anusha Ranganathan <[email protected]> | ||
XS-Python-Version: >= 2.6 | ||
|
||
Package: databank | ||
Architecture: all | ||
Depends: python, | ||
python-pylons, | ||
python-repoze.who, | ||
python-repoze.who-friendlyform, | ||
python-rdflib, | ||
python-dateutil, | ||
python-libxml2, | ||
python-libxslt1, | ||
python-pairtree, | ||
python-recordsilo, | ||
python-solrpy, | ||
python-redis, | ||
unzip, | ||
apache2, | ||
apache2-utils, | ||
libapache2-mod-wsgi, | ||
redis-server, | ||
supervisor, | ||
debconf, | ||
openjdk-6-jre | ||
Recommends: solr-tomcat | ||
Description: RDF-enhanced, pairtree-backed storage API | ||
Databank is a simple, RDF-enhanced storage API which is backed by pairtree, | ||
for the safe storage of and access to data. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
This work was packaged for Debian by: | ||
|
||
Anusha Ranganathan <[email protected]> on Fri, 09 Mar 2012 17:08:50 +0000 | ||
|
||
It was downloaded from: | ||
|
||
https://github.com/dataflow/RDFDatabank | ||
|
||
Upstream Author(s): | ||
|
||
Anusha Ranganathan <[email protected]> | ||
Ben O'Steen <[email protected]> | ||
|
||
Copyright: | ||
|
||
Copyright (C) 2012 University of Oxford | ||
|
||
License: | ||
|
||
MIT | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
|
||
The Debian packaging is: | ||
|
||
Copyright (C) 2012 University of Oxford | ||
and is licensed under the MIT License. See above. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
docs/apache_config/databank_wsgi /etc/default/databank/ | ||
docs/solr_config/conf/schema.xml /etc/default/databank/ | ||
production.ini /etc/default/databank/ | ||
development.ini /etc/default/databank/ | ||
MANIFEST.in /var/lib/databank/ | ||
mod_wsgi /var/lib/databank/ | ||
message_workers/ /var/lib/databank/ | ||
passwd-default /var/lib/databank/ | ||
rdfdatabank/ /var/lib/databank/ | ||
rdfdatabank.egg-info/ /var/lib/databank | ||
test.ini /var/lib/databank/ | ||
who.ini /var/lib/databank/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
LICENCE.txt | ||
README.txt | ||
requirements.txt | ||
docs/assigning_dois | ||
docs/Databank_VM_Installation.txt | ||
docs/Dependencies.pdf | ||
docs/using_databank_api |
Oops, something went wrong.