Re: [Dspace-tech] Expose DSpace as Tomcat ROOT application (was Re:First name, family name order)

2007-07-19 Thread Jayan Chirayath Kurian
Hi! Jim,

After renaming the ROOT directory, Could you please suggest how to make the 
link from the dspace directory to ROOT to avoid copying contents. Is this using 
the context parameter.

In the tomcat server.XML I was trying with context but was not getting through.

HOST

Context path=/ docBase=webapps/dspace 
crossContext=false debug=0 reloadable=false 
/Context

/HOST

Jayan

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Rutherford
Sent: Monday, July 16, 2007 9:43 PM
To: Arnkell Logi Pétursson
Cc: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Expose DSpace as Tomcat ROOT application (was Re:First 
name, family name order)

The easiest way to do this (and I should probably be responding to the
original email) is to move the ROOT directory out of the way (to
ROOT.bak or similar) and make a link from the dspace directory to ROOT.

cheers,

Jim

On Mon, Jul 16, 2007 at 01:38:13PM -, Arnkell Logi Pétursson wrote:
 Hi Jayan,
  
 There is supposed to be a way to do this in some easy way. I tried lots of 
 stuff and never got it to work. In the end I simply copied all the files and 
 folders of the Dspace folder that gets created in the Webapps of Tomcat and 
 moved them to the ROOT f
older. Simple as that, but probably not the right way to do it.
  
 best regards, Logi
  
 
 
 
 From: Jayan Chirayath Kurian [mailto:[EMAIL PROTECTED] 
 Sent: 16. júlí 2007 13:29
 To: Arnkell Logi Pétursson
 Subject: RE: [Dspace-tech] First name, family name order
 
 
 hi!  Logi,
  
 can you please let me know the configuration that you have made to Tomcat to 
 enable dspace access at http://skemman.khi.is 
 https://webmail.ntu.edu.sg/exchweb/bin/redir.asp?URL=http://skemman.khi.is  
 rather than http://skemman.khi.is/dspace. i configu
red to port 80 and removed the default 8080, but could not remove the dspace 
parameter for access. please suggest.
  
 thanks
 jayan
 
 
 
 From: [EMAIL PROTECTED] on behalf of Arnkell Logi Pétursson
 Sent: Mon 7/16/2007 9:23 PM
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] First name, family name order
 
 
 Hi all,
  
 I've set up Dspace 1.4.1 for our university and all went well. We run it 
 using Win2003, Postgresql and Tomcat6. You can see it here: 
 http://skemman.khi.is http://skemman.khi.is/ 
  
 I've done some modifications to the code and for instance implemented a 
 locking mechanism so that during submission, users can decide that parts or 
 all of their work will become open to the public at a certain time (say June 
 2010). I  also completely r
ewrote the LDAP connector to work with our strange AD setup. 
  
 One thing is still not working. How do I change the way names are displayed 
 in the system? I basically want to get rid of the comma inserted between the 
 first name and family name. You can see it here: 
 http://skemman.khi.is/browse-author . Here in Icel
and we have patronyms (http://en.wikipedia.org/wiki/Patronymic) and names are 
always displayed in the order firsname familyname (patronym) with no comma in 
between. 
  
 Does anybody know how I can fix this?
  
 best regards, Logi
  
  
  
 
  
 
  
 
  
 
  
 
  
 
  
 
  
 
 Tölvupóstskeyti þetta og viðhengi þess kunna að innihalda 
 trúnaðarupplýsingar. Hafi tölvupósturinn ekki verið ætlaður þér 
 heldur borist fyrir misgáning er þess óskað að þú gætir fyllsta 
 trúnaðar.
 Tilkynnið sendanda tafarlaust og eyðið tölvupóstinum. Misbrestur getur 
 varðað bótaábyrgð og refsingu. Sjá nánar lög um fjarskipti nr. 
 81/2003.
 Tölvupósturinn er á ábyrgð sendanda ef hann tengist ekki starfsemi 
 Kennaraháskóla Íslands. 
 
 
 
 This message including attachments may contain information which is 
 confidential. If you are not the intended recipient and have received the 
 message through mistake,
 you are kindly requested to treat it in strict confidence and to notify us 
 without delay, as well as to delete the message. Failure may entail civil and 
 criminal liability.
 See act no. 81/2003 in Telecommunications.
 The message is at the responsibility of the sender if it is not connected 
 with the operations of Iceland University of Education.
 

 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  

Re: [Dspace-tech] Expose DSpace as Tomcat ROOT application (was Re:First name, family name order)

2007-07-19 Thread Christian Voelker
 Hello,

 what I did is simply rename the the dspace.war in the
 build_wars target in the build.xml to ROOT.war (with
 uppercase letters). You can even edit this manually
 after doing your ant update and before copying the
 .war file to webapps. It gets unpacked to the right
 directory.

Am 19.07.2007 um 11:55 schrieb Jayan Chirayath Kurian:

 I mean

   !--  
 = --
   !-- Build the .war  
 files  --
   !--  
 = --

   target name=build_wars
   depends=compile
   description=Build the .war files

 could you please suggest.

Yes, go on, down the line. There is some clearly readable
structure in an ant file just as in any XML file. That is
what XML was designed for in the first place. The comments
are also a great help for understanding what is going on.
You are searching for the war-tag inside the target:

   !-- Build the .war files   
--
...
   target name=build_wars
...
 !-- Build DSpace UI .war --
...
 !-- Make sure jsp/local exists --
...
 !-- Copy original JSPs, then copy localised versions on top --
...
 !-- Build DSpace Web UI .war --
 war destfile=build/dspace.war
  webxml=build/dspace-web.xml
...
 /war
 !-- Build DSpace OAI-PMH .war --
 copy file=etc/oai-web.xml
...
 war destfile=build/dspace-oai.war
  webxml=build/oai-web.xml
...
 /war
   /target

There are two of them, just as the two .war files created
for the frontend and the harvester, the first of them being
of interest here. The war-tag encloses other tags and
carries two attributes. The second attribute specifies
the webxml file to use and is named as such, but the
first one is called destfile for destination file name.
This is the one you are looking for. You could have come
there just as easy by using your editors search function
searching for dspace.war. Now do the following change:

old:war destfile=build/dspace.war
new:war destfile=build/ROOT.war

Thats all.

 Using a symbolic link is also fine but I doubt that
 it will work with Windows shortcuts. At least on
 MacOS X which is a full-fledged Unix system, Java makes
 a distinction between symbolic links created the Unix
 way (which are followed as intended) and so called Aliases
 which are the MacOS kind of shortcuts created from the
 Finder and which dont work with Java apps although they
 look completely the same from a Finder perspective
 (translate Finder to Windows Explorer for your under-
 standing).

 I believe my solution is kind of dirty if you are very
 nitty gritty, but it is simple and serves me well. I try
 not make many changes to configurations all over the
 system because I dont have them all under version control
 locally and want to stay able to move my installation
 to another machine quickly. This is why I prefer to
 make changes to build.xml (which is in my svn) as to
 changes in tomcats server.xml.

 Bye, Christian


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] DSpace System Requirements ....Scalability

2007-07-19 Thread Gayatri Doctor
The Institutional Repository, [EMAIL PROTECTED] installation is implemented 
using 
Fedora Core 4 Linux, Apache Tomcat 5.5.17, Apache Ant 1.6.5, J2EE 1.4 SDK
Java platform, Postgres SQL 8.1.3, and DSpace Version 1.3.2. 
This is installed on a machine with a configuration as follows : 
P4 @ 2.4 GHz, 256 MB RAM, 40GB HDD
 
There are currently 182 records in the IR. 
I have taken a backup of 
(1) asseststore  from /dspace  using the command tar -cvf assetstore.tar
assetstore/
  Size = 244 MB   
(2) database from /dspace using the command /usr/local/pgsql/bin/pg_dump
dspace  era-data 
  Size = 1.56 MB 
(3) dspace.cfg file from /dspace/config 
This I gather is enough to restore DSpace to its current state in case of a
crash.
 
DSpace scalability depends on hardware  storage 
-- no of concurrent users, amount of storage large objects etc. 
 
I am curious to know as to what would be the maximum number of records that
I would be able to handle on this machine ? how many concurrent users doing
search, upload are handled comfortably? Before what size of Database would I
need to upgrade the machine ? 
 
Thanking you
 
Gayatri Doctor
ICFAI Business School
Ahmedabad 380054
[EMAIL PROTECTED]
[EMAIL PROTECTED]IMSTP.gifBackGrnd.jpg-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Dspace as metadata harvester?

2007-07-19 Thread mfrodrigues



  Hello,

  I was wondering if it's possible for Dspace to have a collection  
imported from another OAI repository? Because I need only one  
collection from another OAI repository, and it's not suitable at the  
moment the creation of a portal with a metadata harvest engine.


  In concrete terms, i would like to know if Dspace can also act as a  
metadata harvester?


  Does anyone know if Dspace is somehow prepared for this?

Thanks,

  Marcelo
-
Reitoria/IRICUP - Universidade do Porto
www.reit.up.pt


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Tomcat Exception to SMTP host

2007-07-19 Thread James Rutherford
On Thu, Jul 19, 2007 at 09:24:59AM -0400, Jeffrey Trimble wrote:
 We upgraded our server's o/s to a newer version (SLES 8 to SLES 10)  
 and I think
 something is not right.  We've not noticed this until now.  It's been  
 4 weeks since the upgrade.
 
 Did I miss something in Tomcat configuration?

No, I don't think so. I'd test the connection to the SMTP server to make
sure it's running.

cheers,

Jim

-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  RG12 1HN.
[EMAIL PROTECTED]   |  Registered No: 690597 England

The contents of this message and any attachments to it are confidential and
may be legally privileged. If you have received this message in error, you
should delete it from your system immediately and advise the sender. To any
recipient of this message within HP, unless otherwise stated you should
consider this message and attachments as HP CONFIDENTIAL.

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace System Requirements ....Scalability

2007-07-19 Thread Jayan Chirayath Kurian
here we have dspace 1.4.1, tomcat 6.0, postgres 8  on windows 2003, 300 GB HD, 
1 GB RAM.
170,000 items were uploaded and the disk was almost full.



From: [EMAIL PROTECTED] on behalf of Gayatri Doctor
Sent: Thu 7/19/2007 7:16 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] DSpace System Requirements Scalability


The Institutional Repository, [EMAIL PROTECTED] installation is implemented 
using 
Fedora Core 4 Linux, Apache Tomcat 5.5.17, Apache Ant 1.6.5, J2EE 1.4 SDK Java 
platform, Postgres SQL 8.1.3, and DSpace Version 1.3.2. 
This is installed on a machine with a configuration as follows : 
P4 @ 2.4 GHz, 256 MB RAM, 40GB HDD
 
There are currently 182 records in the IR. 
I have taken a backup of 
(1) asseststore  from /dspace  using the command tar -cvf assetstore.tar 
assetstore/
  Size = 244 MB   
(2) database from /dspace using the command /usr/local/pgsql/bin/pg_dump dspace 
 era-data 
  Size = 1.56 MB 
(3) dspace.cfg file from /dspace/config 
This I gather is enough to restore DSpace to its current state in case of a 
crash.
 
DSpace scalability depends on hardware  storage 
-- no of concurrent users, amount of storage large objects etc. 
 
I am curious to know as to what would be the maximum number of records that I 
would be able to handle on this machine ? how many concurrent users doing 
search, upload are handled comfortably? Before what size of Database would I 
need to upgrade the machine ? 
 
Thanking you
 
Gayatri Doctor
ICFAI Business School
Ahmedabad 380054
[EMAIL PROTECTED]
[EMAIL PROTECTED]

 http://www.incredimail.com/index.asp?id=409lang=9 
IMSTP.gifBackGrnd.jpg-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Dorothea Salo
+1 for file identifiers; we do it already.

Use case (one of many): Professor is writing a print textbook, is
putting sample code in repository, wants permanent URLs for the
component files that can be printed in the book.

Dorothea

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Adding CC license during item edit?

2007-07-19 Thread Dorothea Salo
I have a collection admin who wants to add a Creative Commons license
to an item in the collection after deposit, and finding that DSpace
tells him he does not have appropriate permissions to do that.

Is this correct? Is the DSpace Administrator the only person who can
add CC licenses after the fact? Or is something wonky with our system,
and if so, what?

Dorothea

-- 
Dorothea Salo[EMAIL PROTECTED]
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Mark Diggory
Jim,

Just for clarification to the group... Its unclear what your  
requesting a vote on: Anyone can assign an external identifier to a  
Bitstream in an external identification system. Can you answer the  
two following questions for the group?

1.) Are you suggesting that we will support an infrastructure in  
DSpace to assign those via an external identifier service (currently  
the Handle System in 1.5, ExternalIdentifierManager in 1.6)?

2.) Are you suggesting that Internal Identifiers (currently sequence  
id's) will be structured differently in 1.6 such that one can assign  
one to a bitstream independent of the parent items identifier?

Feeding the fire,
Mark



On Jul 19, 2007, at 5:51 AM, James Rutherford wrote:

 Hi all,

 As part of my work on the identification mechanisms employed by DSpace
 (both internal and externally managed identifiers) I've decided that
 it's better to assign external identifiers to files than to not (which
 is the current policy). Whether or not external identifiers are used
 (and if so, which ones) will be configurable, but what I would like to
 know is whether anyone has a problem with assigning external  
 identifiers
 to files at all.

 If possible, could we keep this to a +/- 1 system (+1 to assign  
 them to
 files, -1 to not). I definitely don't want to turn this into a
 discussion about identification systems more generally otherwise we'll
 be here until next year. Also, if you vote -1 a short explanation  
 about
 why would be useful.

 cheers,

 Jim

 -- 
 James Rutherford  |  Hewlett-Packard Limited registered  
 Office:
 Research Engineer |  Cain Road,
 HP Labs   |  Bracknell,
 Bristol, UK   |  Berks
 +44 117 312 7066  |  RG12 1HN.
 [EMAIL PROTECTED]   |  Registered No: 690597 England

 The contents of this message and any attachments to it are  
 confidential and
 may be legally privileged. If you have received this message in  
 error, you
 should delete it from your system immediately and advise the  
 sender. To any
 recipient of this message within HP, unless otherwise stated you  
 should
 consider this message and attachments as HP CONFIDENTIAL.

 -- 
 ---
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

~
Mark R. Diggory - DSpace Systems Manager
MIT Libraries, Systems and Technology Services
Massachusetts Institute of Technology
Office: E25-131
Phone: (617) 253-1096



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread James Rutherford
On Thu, Jul 19, 2007 at 11:14:15AM -0400, Mark Diggory wrote:
 Just for clarification to the group... Its unclear what your  
 requesting a vote on: Anyone can assign an external identifier to a  
 Bitstream in an external identification system. Can you answer the  
 two following questions for the group?

Only if I can answer them in the wrong order :)

 2.) Are you suggesting that Internal Identifiers (currently sequence  
 id's) will be structured differently in 1.6 such that one can assign  
 one to a bitstream independent of the parent items identifier?

Yes, definitely. At the moment, files get UUIDs, which are used in the
URL space instead of sequence ids etc. For example, the following url
points to a pdf in my testing repository:

[my_base_url]/dspace/resource/uuid:d0875067-6853-4c54-9d72-ff7888e43c42

 1.) Are you suggesting that we will support an infrastructure in  
 DSpace to assign those via an external identifier service (currently  
 the Handle System in 1.5, ExternalIdentifierManager in 1.6)?

It would work exactly the same for Bitstreams as it currently does for
Items. This is purely about enlarging the scope (and expanding the
flexibility) of what we're currently doing, not necessarily about
changing the way we do it (at least not yet).

cheers,

Jim

-- 
James Rutherford  |  Hewlett-Packard Limited registered Office:
Research Engineer |  Cain Road,
HP Labs   |  Bracknell,
Bristol, UK   |  Berks
+44 117 312 7066  |  RG12 1HN.
[EMAIL PROTECTED]   |  Registered No: 690597 England

The contents of this message and any attachments to it are confidential and
may be legally privileged. If you have received this message in error, you
should delete it from your system immediately and advise the sender. To any
recipient of this message within HP, unless otherwise stated you should
consider this message and attachments as HP CONFIDENTIAL.

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Zhiwu Xie
Then what will happen if I remove one file from an item and add
another file? Will the new file get the old handle or a new one or I
can choose?

Thanks,

Zhiwu



On 7/19/07, James Rutherford [EMAIL PROTECTED] wrote:
 On Thu, Jul 19, 2007 at 11:14:15AM -0400, Mark Diggory wrote:
  Just for clarification to the group... Its unclear what your
  requesting a vote on: Anyone can assign an external identifier to a
  Bitstream in an external identification system. Can you answer the
  two following questions for the group?

 Only if I can answer them in the wrong order :)

  2.) Are you suggesting that Internal Identifiers (currently sequence
  id's) will be structured differently in 1.6 such that one can assign
  one to a bitstream independent of the parent items identifier?

 Yes, definitely. At the moment, files get UUIDs, which are used in the
 URL space instead of sequence ids etc. For example, the following url
 points to a pdf in my testing repository:

 [my_base_url]/dspace/resource/uuid:d0875067-6853-4c54-9d72-ff7888e43c42

  1.) Are you suggesting that we will support an infrastructure in
  DSpace to assign those via an external identifier service (currently
  the Handle System in 1.5, ExternalIdentifierManager in 1.6)?

 It would work exactly the same for Bitstreams as it currently does for
 Items. This is purely about enlarging the scope (and expanding the
 flexibility) of what we're currently doing, not necessarily about
 changing the way we do it (at least not yet).

 cheers,

 Jim

 --
 James Rutherford  |  Hewlett-Packard Limited registered Office:
 Research Engineer |  Cain Road,
 HP Labs   |  Bracknell,
 Bristol, UK   |  Berks
 +44 117 312 7066  |  RG12 1HN.
 [EMAIL PROTECTED]   |  Registered No: 690597 England

 The contents of this message and any attachments to it are confidential and
 may be legally privileged. If you have received this message in error, you
 should delete it from your system immediately and advise the sender. To any
 recipient of this message within HP, unless otherwise stated you should
 consider this message and attachments as HP CONFIDENTIAL.

 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Graham Triggs
On Thu, 2007-07-19 at 12:03 -0400, Robert Tansley wrote:
 +1 on ability to assign arbitrary external IDs to bitstreams.
 
 +1 on ability to assign 'hierarchical' external IDs to bitstreams (for
 graceful fallback if files are deleted etc).

Minor point, but you don't actually need a hierarchical external ID to
do this. The external id is associated with the file, not part of it,
and so deleting the file doesn't mean that the external id is or has to
be deleted. So, entirely possible for the external id to be retained by
the system, but reassigned to a 'graceful fallback' state.

 -1 on assigning Handles to bitstreams in 'out of the box' config.

Essentially, agree with the voting.

G
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Graham Triggs
On Thu, 2007-07-19 at 10:06 -0600, Zhiwu Xie wrote:
 Then what will happen if I remove one file from an item and add
 another file? Will the new file get the old handle or a new one or I
 can choose?
 

How deletion of objects assigned external ids is not something that
DSpace should force on to a repository, although it would need to have
some kind of sensible default.

Although it isn't even the case that a repository can or should have a
single way of dealing with removal of an externally identified file -
the appropriate course of action would be influenced by the factors that
led to the removal / replacement.

Possibilities that should be supportable:

* reassigning the existing id (handle) to a new file
* provide a fallback mapping - for example, to the item
* reporting that the id is invalid



G
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Dspace as metadata harvester?

2007-07-19 Thread Robert Tansley
The China Digital Museum Project developed a DSpace add-on that can
use OAI-PMH to harvest metadata + content referred to in the metadata
from another repository.  I don't know what the state of the code is
now but Jim Rutherford at HP should know.

Rob

On 19/07/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


 Hello,

 I was wondering if it's possible for Dspace to have a collection imported
 from another OAI repository? Because I need only one collection from another
 OAI repository, and it's not suitable at the moment the creation of a portal
 with a metadata harvest engine.

 In concrete terms, i would like to know if Dspace can also act as a metadata
 harvester?

 Does anyone know if Dspace is somehow prepared for this?


 Thanks,

 Marcelo
 -
 Reitoria/IRICUP - Universidade do Porto
 www.reit.up.pt
 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] MySQL in Dspace

2007-07-19 Thread Blanco, Jose
I checked the tech archive to find out if there have been any
discussions about using MySQL in Dspace and found none, so I will pose
my question.

I know Dspace is setup to be able to connect and work with either
Postgres or Oracle, but has any one tried using DSpace with MySQL?  Or
are there any plans to make it work with MySQL?

We have been using Postgres exclusively for our Dspace instance just
fine, but most of our expertise is in MySQL and all our other
applications use MySQL.  It would be nice not have to maintain two DB
engines and develop expertise in both.  So I know that if we could
transition to MySQL, we would.  Are there any thoughts on this?

Thank you!
Jose

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] [vote] Do we want to assign external identifiers (Handles) to files?

2007-07-19 Thread Larry Stone
+1   assign external identifiers to files

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Running DSpace in read-only mode.

2007-07-19 Thread Weinberg, Ben
 Does anyone know how I can set dspace temporarily to be a read only
system. I will need a quick reversion to a read-write system.
We're basically looking to provide access to dspace while we migrate the
database and assetstore to another system.
Thanks,
Ben Weinberg
HP Labs Digital Library
Palo Alto, CA

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Running DSpace in read-only mode.

2007-07-19 Thread Kyle Brentnell
Hi Ben,

Two possiblities come to mind right away.  Others may have more elegant
solutions, that do not require DB or coding changes.

1) In the EPerson table set the can_log_in column to false for all
users(except the Administrator).  This assumes anonymous users can not make
any changes to items (default Dspace behaviour).  To allow access reset the
can_log_in flag to the original values.

2) Change the authenticateInternal method in the AuthenticationManager.java
class to always return BAD_ARGS or NO_SUCH_USER, etc. to prevent users
from logging into Dspace.  To allow access again, restore the original
authenticateInternal code (and compile and deploy of course).

Kyle



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Weinberg,
Ben
Sent: July 19, 2007 5:41 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Running DSpace in read-only mode.

 Does anyone know how I can set dspace temporarily to be a read only system.
I will need a quick reversion to a read-write system.
We're basically looking to provide access to dspace while we migrate the
database and assetstore to another system.
Thanks,
Ben Weinberg
HP Labs Digital Library
Palo Alto, CA

-
This SF.net email is sponsored by: Microsoft Defy all challenges.
Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Handler

2007-07-19 Thread Jayan Chirayath Kurian
Hi! 

 

I am working on setting up handle for DSpace 1.4.1 (windows 2003). 

Run /dspace/bin/dsrun net.handle.server.SimpleSetup
/dspace/handle-server

 

In the question section, 

(1) Enter the TCP/UDP port no this server will listen to [2641]

(2) What port no will the HTTP interface be listening to [8000] 

(3) Would you like to disable UDP services (y/n) [N]

 

For Q(1), can I give 80. In tomcat server.xml, I have Connector
port=80 protocol=HTTP/1.1 

For Q(2), I think I have to give 80

For Q(3), is it fine to disable the UDP service?

 

Please suggest.

 

Thanks,

Jayan

 

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech