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.
Updated code with downstream changes
- Loading branch information
Anusha Ranganathan
committed
May 28, 2012
1 parent
e37400c
commit 509f002
Showing
27 changed files
with
1,066 additions
and
411 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 |
---|---|---|
|
@@ -3,4 +3,4 @@ The Debian Package databank | |
|
||
Comments regarding the Package | ||
|
||
-- Anusha Ranganathan <[email protected]> Mon, 09 Apr 2012 17:08:50 +0000 | ||
-- Anusha Ranganathan <[email protected]> Thu, 03 May 2012 09: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 |
---|---|---|
@@ -1,3 +1,22 @@ | ||
databank (0.3rc3) unstable; urgency=low | ||
|
||
* Mod-wsgi and metadata update fixes to Sword server | ||
* Minor user interface changes | ||
|
||
-- Anusha Ranganathan <[email protected]> Thu, 03 May 2012 09:08:50 +0000 | ||
|
||
databank (0.3rc2) unstable; urgency=low | ||
|
||
* Extended API to post a file without first having to create a data package | ||
* New Databank authentication and authorization module. | ||
- Designed to work with repoze.what and sqlalchemy. | ||
- User and membership information stored in a mysql database | ||
* Databank API extended to administer silos, users, and user membership | ||
- Databank ui has new adminstration pages in line with api functionality | ||
* Sword server packaged with databank | ||
|
||
-- Anusha Ranganathan <[email protected]> Fri, 27 Apr 2012 09:08:50 +0000 | ||
|
||
databank (0.3rc1) unstable; urgency=low | ||
|
||
* Basic support for sword deposit | ||
|
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
This work was packaged for Debian by: | ||
|
||
Anusha Ranganathan <[email protected]> on Mon, 09 Apr 2012 17:08:50 +0000 | ||
Anusha Ranganathan <[email protected]> on Thu, 03 May 2012 09:08:50 +0000 | ||
|
||
It was downloaded from: | ||
|
||
|
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 |
---|---|---|
@@ -1,15 +1,18 @@ | ||
docs/apache_config/databank_wsgi /etc/default/databank/ | ||
docs/apache_config/databank_ve26_wsgi /etc/default/databank/ | ||
docs/apache_config/databank_ve27_wsgi /etc/default/databank/ | ||
docs/solr_config/conf/schema.xml /etc/default/databank/ | ||
production.ini /etc/default/databank/ | ||
development.ini /etc/default/databank/ | ||
sss.conf.json /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/ | ||
sss.conf.json /var/lib/databank/ | ||
sss/ /var/lib/databank/ | ||
add_user.py /var/lib/databank/ | ||
persisted_state.json /var/lib/databank/ | ||
setup_db.py /var/lib/databank/ | ||
persisted_state.json /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,4 @@ | ||
/usr/share/databank | ||
usr/share/dbconfig-common/data/databank/install/mysql | ||
usr/share/dbconfig-common/data/databank/upgrade/mysql | ||
/etc/default/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
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 |
---|---|---|
@@ -1,8 +1,22 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# Source debconf library. | ||
. /usr/share/debconf/confmodule | ||
if [ -f /usr/share/debconf/confmodule ]; then | ||
. /usr/share/debconf/confmodule | ||
fi | ||
if [ -f /usr/share/dbconfig-common/dpkg/postrm.mysql ]; then | ||
. /usr/share/dbconfig-common/dpkg/postrm.mysql | ||
dbc_go databank $@ | ||
fi | ||
|
||
if [ "$1" = "purge" ]; then | ||
rm -f /etc/default/databank/db.sh | ||
if which ucf >/dev/null 2>&1; then | ||
ucf --purge /etc/default/databank/db.sh | ||
ucfr --purge databank /etc/default/databank/db.sh | ||
fi | ||
fi | ||
|
||
|
||
# Remove my changes to the db. | ||
db_purge |
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,10 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
#set -x | ||
|
||
. /usr/share/debconf/confmodule | ||
. /usr/share/dbconfig-common/dpkg/prerm.mysql | ||
dbc_go 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
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
Oops, something went wrong.