Commit Graph

339 Commits

Author SHA1 Message Date
Andrea Bollini
641c37b3f2 [maven-release-plugin] rollback the release of dspace-1.5.2-rc2
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3691 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-08 21:33:37 +00:00
Andrea Bollini
64d6918173 [maven-release-plugin] prepare release dspace-1.5.2-rc2
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3690 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-08 21:12:48 +00:00
Mark Diggory
49187ebe24 [DS-155] Maven war plugin changes cause war to include libraries as well
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3685 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-06 23:46:14 +00:00
Graham Triggs
65e064f0f5 Fix various critical bugs identified by Findbugs.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3684 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-06 22:52:38 +00:00
Mark Diggory
979bbdc026 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3683 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-06 22:15:05 +00:00
Mark Diggory
3032423006 [maven-release-plugin] prepare release dspace-parent-1.5.2-rc1
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3681 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-04-06 22:14:11 +00:00
Richard Jones
542377fea9 SWORD version 1.3.1 supporting the sword standard version 1.3.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3528 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-03-05 22:42:52 +00:00
Richard Jones
fdb1c37023 Remove existing common sword code; This will temporarily break the build, but is necessary to smooth the path to including the new code...
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3527 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-03-05 22:23:33 +00:00
Mark Diggory
d3d54747ad Artifactory considers this to be an incorrect format for Maven identifiers.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3526 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2009-03-05 17:41:05 +00:00
Stuart Lewis
54fc94d9f3 Fix for SF Bug #1968082 SWORD Service Document fails if Collection is untitled
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3340 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-12-18 20:05:53 +00:00
Stuart Lewis
90071e2528 Patch for SF bug #2016130 checksum checker can not retrieve very large bitstream
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3339 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-12-18 20:04:31 +00:00
Mark Diggory
05bb88b693 Publish maven docs to the appropriate location
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3125 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-09-10 22:57:49 +00:00
Mark Diggory
095c7eb020 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3123 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-09-10 17:48:21 +00:00
Mark Diggory
36ce082b42 [maven-release-plugin] prepare release dspace-1_5_1
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3121 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-09-10 17:35:43 +00:00
Mark Diggory
b7439f253c Move DSpace Initialization Code to Share DSpaceContextListener in dspace-api. add deprecation to Existing InitServlets and remove obsolete initialization cases from web.xml.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3055 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-08-29 03:03:15 +00:00
Mark Diggory
b5c880176a [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3047 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-08-15 04:59:05 +00:00
Mark Diggory
d487cb194c [maven-release-plugin] prepare release dspace-1_5_1-beta
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3045 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-08-15 04:57:05 +00:00
Graham Triggs
ff790eb38a Fix problem with SWORD not accepting multiple concurrent submissions
- DSpaceSWORDServer as originally written was not re-entrant (DSpace Context was stored as a member variable)

As the deposit / servicedocument servlets maintained a handle to an *instance* of the DSpaceSWORDServer as a private member,
this had the effect of making all concurrent requests use the same instance of DSpaceSWORDServer.

Each attempt to get the servicedocument or make a deposit would therefore overwrite the Context,
so requests currently processing would be attempting to use the wrong Context insance.

This revision moves the Context to variables within the servicedocument / deposit methods.
These are passed as parameters to the called private methods, making this class re-entrant.


git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2976 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-07-02 13:03:48 +00:00
Stuart Lewis
c67034d6d4 (Stuart Lewis) Changed SWORD config key from server-class to sword-server-class to bring it in line with the master SWORD code in the SWORD-APP SVN repository.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2975 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-06-26 05:51:57 +00:00
Stuart Lewis
d82d24c3ba (Zuki Ebetsu / Stuart Lewis) [1990660] SWORD Service Document are malformed / Corrected Atom publishing MIME types
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2960 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-06-11 11:11:05 +00:00
Stuart Lewis
aa2df4c39b Stuart Lewis - [ 1947036 ] Patch for SF Bug1896960 SWORD authentication and LDAP + [ 1989874 ] LDAPAuthentication pluggable method broken for current users
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2959 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-06-11 09:40:51 +00:00
Graham Triggs
cc604e0ed3 Added cleanup listeners. Updated Fileupload and IO dependencies to fix occassional upload problems, and improve application cleanup.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2951 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-05-28 15:22:31 +00:00
Mark Diggory
7a3def94c5 Drop the use of pluginRepository from 1.5.x Branch to eliminate warning in build process.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2943 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-05-22 23:45:53 +00:00
Scott Phillips
5e7cdaf467 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2869 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-25 02:26:55 +00:00
Scott Phillips
7961f0676b [maven-release-plugin] prepare release dspace-1_5
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2867 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-25 02:25:48 +00:00
Scott Phillips
c4328172a9 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2857 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-18 18:51:15 +00:00
Scott Phillips
6d3b14a693 [maven-release-plugin] prepare release dspace-1_5-rc1
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2855 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-18 18:48:27 +00:00
Mark Diggory
a1c7729e2b Adjust all modules to be under a simpler naming convention so that rebranding does not have to be of the war/webapp names themselves.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2845 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-17 21:14:40 +00:00
Scott Phillips
fe4a46e112 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2803 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-11 02:00:23 +00:00
Scott Phillips
4b9822844a [maven-release-plugin] prepare release dspace-1.5-beta2
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2801 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-11 01:59:40 +00:00
Mark Diggory
ada9621329 1.) Moving language-packs to dspace-sandbox. See: http://dspace-sandbox.googlecode.com/svn/modules/dspace-api-lang/trunk/
2.) Adjusting dependencies and dspace-api-lang project name
3.) Cleaning up versioning in poms, removing uneccessary dependencies and version tag
4.) consolidating wars generated so that dspace-xxx-webapp wars are skinny by default.

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2798 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-03-10 23:45:36 +00:00
Mark Diggory
62bb59178c Replace all Windows linefeeds found in source with unix linefeeds.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2752 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-28 15:23:41 +00:00
Mark Diggory
365e6b8758 Use dspace-assembly-plugin version 1.1 in these projects.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2672 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-14 00:03:45 +00:00
Scott Phillips
4c0a043933 [maven-release-plugin] prepare for next development iteration
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2671 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-13 21:36:32 +00:00
Scott Phillips
96fd10b9bb [maven-release-plugin] prepare release dspace-1_5-beta1
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2669 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-13 21:35:51 +00:00
Mark Diggory
f16f5129bd Correct some reporitory settings in POM so the dspace and snapshot repos are not always consulted.
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2665 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-13 19:22:07 +00:00
Mark Diggory
729af4b97c correct pom inheritance and dependency management
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2603 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-07 18:29:03 +00:00
Mark Diggory
ac9129535d Add skinny war generation to dspace-sword-webapp to support overlays
git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2599 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-07 18:12:19 +00:00
Richard Jones
f2c42fea07 Add the new SWORD module to the 1.5.x branch. This includes the SWORD code, re-structured to meet the standards already laid out for the 1.5 release (top level project, with sub api and webapp projects). In addition to this the following additions have been made to the main part of DSpace, which will need to be removed again if SWORD is modularised out again:
- sword-swap-ingest.xsl has been included into config/crosswalks
- sword configuration has been added to dspace.cfg
- loading of the required fields for swap ingest has been added to the main build.xml
- references to dspace-sword have been added to all the relevant pom.xml files in the main for DSpace

Furthermore, this commit includes the source code for the common sword libraries.  These need really to be in the main maven repository, which I will work on as soon as possible before the 1.5 beta release.

This module has been tested to work previously, so it has not been extensively tested again.  Dependency issues in the build system may remain, which have notyet been discovered.

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@2598 9c30dcfa-912a-0410-8fc2-9e0234be79fd
2008-02-07 14:04:21 +00:00