[Dspace-tech] How create a Authority Control service?

2014-03-10 Thread royopa
Hi I need to implement an application that provides data to the control
authority of DSpace.
It goes like this, I have a base of employees and need to use the control
authorities of DSpace to prevent the user to enter this data and I have
consistent data.
My idea is to develop an external application that receives the DSpace
search parameters and returns the format that DSpace uses for process
control authority.
Would anyone tell me what procedures to do this process? Actually need to
see the parameters sent and the results display that uses DSpace process
(xml, json, I do not know ...)
thank you

-- 
Rodrigo Prado de Jesus
http://about.me/royopa
roy...@gmail.com
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Recent submissions external integration

2014-03-10 Thread helix84
On Mon, Mar 10, 2014 at 9:39 PM, helix84  wrote:
> Regarding access control, here's what you need:
> https://wiki.duraspace.org/display/DSPACE/Solr#Solr-Tomcat-specificinstructions

But yes, you will need to do server-side processing of the Solr
response if you don't want to open Solr to the world (which you
shouldn't). What I meant is that you can add the IP (IPv4) of your PHP
server if it's different from your DSpace server.

A simple pass-through of the JSON response should do and you don't
need to give the PHP script itself any fancy parameters.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Recent submissions external integration

2014-03-10 Thread helix84
Please, always reply to the mailing list.

Regarding access control, here's what you need:
https://wiki.duraspace.org/display/DSPACE/Solr#Solr-Tomcat-specificinstructions


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


On Mon, Mar 10, 2014 at 7:18 PM, Shaun Donovan  wrote:
> Ah, never mind, my stupidity. I was using wget to test and did not put the
> url in quotations. It works fine.
>
> But I have just hit another snag. If I do this through JQuery (which I now
> wanted to do), I have to open my SOLR access to the world. It would probably
> be better if I just did it in a php script.
>
>
> On 03/10/2014 08:09 PM, helix84 wrote:
>>
>> &wt=json should work in DSpace as is (tested in 3 and 4). What is your
>> complete query and what is your response header? Didn't you
>> accidentally specify two different wt parameters?
>>
>>
>> On Mon, Mar 10, 2014 at 7:02 PM, Shaun Donovan 
>> wrote:
>>>
>>> As always Helix, you are a star.
>>>
>>> One thing I would like to change from your example is to use JSON instead
>>> of
>>> XML. The documentation says add &wt=json to the url, but this has no
>>> effect
>>> on the output (documentation also states that JSON is supported on the
>>> search core). Any ideas why?
>>>
>>> I am busy implementing the XML, but JSON would be nice.
>>>
>>>
>>> On 03/10/2014 01:20 PM, helix84 wrote:

 Hi Shaun,

 why, DSpace has a RESTful API perfectly suited for this purpose.
 You'll find all the details you need on connecting, allowing access
 and making queries at [1]. The query you want to use is:



 http://localhost:8080/solr/search/select/?q=search.resourcetype:2&sort=dc.date.accessioned_dt%20desc&start=0&rows=10&indent=on

 [1] https://wiki.duraspace.org/display/DSPACE/Solr


 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
>>>
>>>
>

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


[Dspace-tech] embargo at collection level

2014-03-10 Thread Bill Tantzen
DSpace 4.1, xmlui...

Is it possible to enable embargo on per collection level?  That is,
users uploading to Collection A will be presented with the embargo
options, while users uploading to Collection B will NOT see those
options?

Or can embargo only be applied on a site-wide basis?

>From the docs, it looks as if the latter is true, but I would like to verify 
>it!

Thanks!
Bill

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Recent submissions external integration

2014-03-10 Thread helix84
&wt=json should work in DSpace as is (tested in 3 and 4). What is your
complete query and what is your response header? Didn't you
accidentally specify two different wt parameters?


On Mon, Mar 10, 2014 at 7:02 PM, Shaun Donovan  wrote:
> As always Helix, you are a star.
>
> One thing I would like to change from your example is to use JSON instead of
> XML. The documentation says add &wt=json to the url, but this has no effect
> on the output (documentation also states that JSON is supported on the
> search core). Any ideas why?
>
> I am busy implementing the XML, but JSON would be nice.
>
>
> On 03/10/2014 01:20 PM, helix84 wrote:
>>
>> Hi Shaun,
>>
>> why, DSpace has a RESTful API perfectly suited for this purpose.
>> You'll find all the details you need on connecting, allowing access
>> and making queries at [1]. The query you want to use is:
>>
>>
>> http://localhost:8080/solr/search/select/?q=search.resourcetype:2&sort=dc.date.accessioned_dt%20desc&start=0&rows=10&indent=on
>>
>> [1] https://wiki.duraspace.org/display/DSPACE/Solr
>>
>>
>> Regards,
>> ~~helix84
>>
>> Compulsory reading: DSpace Mailing List Etiquette
>> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
>
>

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Error installing 4.1 on Windows 7

2014-03-10 Thread Gord Ripley
Hi:

So, FYI, there's a solution to my problem at 
https://jira.duraspace.org/browse/DS-1940

There appears to be a bug causing an error in [dspace-source]/pom.xml in the 
target name value at line 124. (/*.properties is not a valid path name). 
Replacing the target with "native2ascii-utf8" solved the problem, and mvn ran 
successfully.

Gord Ripley,
Research and Development Librarian,
Bata Library, Trent University
Voice : 705- 748-1011 ext. 7517
Web : http://people.trentu.ca/gripley/

From: Gord Ripley [mailto:grip...@trentu.ca]
Sent: Monday, March 10, 2014 11:07 AM
To: DSpace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Error installing 4.1 on Windows 7

Hi:
I'm repeatedly getting the following error attempting to install version 4.1 on 
Windows 7. We've had 3.2 running on XP for some time. Does this ring a bell 
with anyone?
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:
run (native2ascii-utf8) on project dspace-parent: Error executing ant tasks: C:\
dspace-4.1\target\antrun\build-Encode any UTF-8 chars in [src]\*.properties.xml
(The filename, directory name, or volume label syntax is incorrect) -> [Help 1]

Gord

Gord Ripley,
Research and Development Librarian,
Bata Library, Trent University
Voice : 705- 748-1011 ext. 7517
Web : http://people.trentu.ca/gripley/

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] Error installing 4.1 on Windows 7

2014-03-10 Thread Gord Ripley
Hi:
I'm repeatedly getting the following error attempting to install version 4.1 on 
Windows 7. We've had 3.2 running on XP for some time. Does this ring a bell 
with anyone?
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-antrun-plugin:1.7:
run (native2ascii-utf8) on project dspace-parent: Error executing ant tasks: C:\
dspace-4.1\target\antrun\build-Encode any UTF-8 chars in [src]\*.properties.xml
(The filename, directory name, or volume label syntax is incorrect) -> [Help 1]

Gord

Gord Ripley,
Research and Development Librarian,
Bata Library, Trent University
Voice : 705- 748-1011 ext. 7517
Web : http://people.trentu.ca/gripley/

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] DSpace Development Process

2014-03-10 Thread Michal Josífko
Hi,

I'm quite new to DSpace and have been working on DSpace customizations 
for about one month.
However I'm still struggling with the development process. Could someone 
from the core developers briefly describe their own development 
setup/process?

My setup is as follows. I'm using Eclipse Kepler with remote java 
application debugging and catalina jpda which works fine. I'm using 
FileSync eclipse plugin to copy resource files (such as XSL templates) 
to installation directory on the fly, which enables to see changes in 
XSLT transformations immediately for _some_ of the XMLUI parts.

The thing that bothers me the most is the necessity of restarting tomcat 
(or reloading web application) after deploy and thus losing user session 
state in XMLUI. I thought about trying JRebel to overcome this issue, 
does anyone use it for development of DSpace?

I would be very grateful for any hints or tips on how to ease the 
development. Thanks.

Best regards,

Michal

---
Michal Josífko
LINDAT/CLARIN Repository 

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] upgrading from DSpace 3.1 to 4.1: POM and maven error

2014-03-10 Thread Alain Tschanz
mvn -version
Apache Maven 3.0.4 (r1232337; 2012-01-17 03:44:56-0500)
Maven home: /usr/local/apache-maven-3.0.4
Java version: 1.7.0_10, vendor: Oracle Corporation
Java home: /usr/java/jdk1.7.0_10/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "2.6.32-431.5.1.el6.x86_64", arch: "amd64", family: 
"unix"





-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: Monday, March 10, 2014 9:24 AM
To: Alain Tschanz
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] upgrading from DSpace 3.1 to 4.1: POM and maven error

Output of mvn -version?


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] upgrading from DSpace 3.1 to 4.1: POM and maven error

2014-03-10 Thread helix84
Output of mvn -version?


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Handle server configuración

2014-03-10 Thread Hilton Gibson
Hi Regars

This is what I have:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server
Hope it helps.

Cheers



*Hilton Gibson*
Ubuntu Linux Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://scholar.sun.ac.za
http://bit.ly/goodir
http://library.sun.ac.za
http://za.linkedin.com/in/hiltongibson


On 10 March 2014 14:50, Dspace P  wrote:

> Good Morning.
> I have in my test dspace 3.2 , that is not conected to internet, several
> items with handles diferents. I sent some items that have the handle I can
> see in dspace.cfg (for example 123456). I imported some items from other
> dspace. His dspace has other handle (for example 123456.1).
> I would like the handle server of my new dspace 3.2 can resolve items with
> this two handles. In config.dct i write in server_admins:
> "server_admins" = (
> "300:0.NA/123456.1 "
> "300:0.NA/123456.2 "
> )
> But whe i go to http://myIP:8000 and try to get the url of one of my
> items, handle-server only resolve when i look for a item with the same
> handle i have in dspace.cfg of my dspace 3.2. If i look for a item with a
> handle diferent, handle- server do not resolve. In both case items exist in
> dspace 3.2.
> Any idea?
> Some doc for help ?
> Regars
>
>
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/13534_NeoTech
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
> List Etiquette:
> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
>
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

[Dspace-tech] Handle server configuración

2014-03-10 Thread Dspace P
Good Morning.
I have in my test dspace 3.2 , that is not conected to internet, several
items with handles diferents. I sent some items that have the handle I can
see in dspace.cfg (for example 123456). I imported some items from other
dspace. His dspace has other handle (for example 123456.1).
I would like the handle server of my new dspace 3.2 can resolve items with
this two handles. In config.dct i write in server_admins:
"server_admins" = (
"300:0.NA/123456.1 "
"300:0.NA/123456.2 "
)
But whe i go to http://myIP:8000 and try to get the url of one of my items,
handle-server only resolve when i look for a item with the same handle i
have in dspace.cfg of my dspace 3.2. If i look for a item with a handle
diferent, handle- server do not resolve. In both case items exist in dspace
3.2.
Any idea?
Some doc for help ?
Regars
--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] OAI Harvester much improved in 4.1, still unable to handle deletions though

2014-03-10 Thread helix84
Thanks, I'll try to test it sometime this week.


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Recent submissions external integration

2014-03-10 Thread helix84
Hi Shaun,

why, DSpace has a RESTful API perfectly suited for this purpose.
You'll find all the details you need on connecting, allowing access
and making queries at [1]. The query you want to use is:

http://localhost:8080/solr/search/select/?q=search.resourcetype:2&sort=dc.date.accessioned_dt%20desc&start=0&rows=10&indent=on

[1] https://wiki.duraspace.org/display/DSPACE/Solr


Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


[Dspace-tech] Recent submissions external integration

2014-03-10 Thread Shaun Donovan
Hi All.

I am trying to integrate "Recent Submissions" into an external web site 
and am looking at ways to do this. Web services would be a nice way to 
go, but it seems that there are none for DSpace, and all I need is a 
list of the recent submissions as presented on the home page.

I can use ajax and a request to the DSpace instance to extract this 
information, but am a bit stumped as to how to extract just the "Recent 
Submissions".

I believe that I should be able to create a new XSL based aspect that 
will return just the recent submissions, but I cannot find documentation 
pertaining to how to do this.

I thought that I might create a xslt template for a specific page like 
"http://dspace.instance.com/recent";, but I know that I would need to map 
this somewhere in an xml file to a specific aspect.

My question is thus twofold.
1) Is there any documentation on how to create a new aspect. I have 
found plenty of documentation on aspects and the whole xmlui interface, 
but none of them that I have found actually tell me how to do it.
2) Is there a better way to do this?

I am running DSpace 3.2 using XMLUI (Mirage) and discovery is enabled.

Kind Regards.

Shaun Donovan


--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] OAI Harvester much improved in 4.1, still unable to handle deletions though

2014-03-10 Thread Thanos Kyritsis
On Thu, Mar 6, 2014 at 5:31 PM, helix84  wrote:
> On Thu, Mar 6, 2014 at 4:27 PM, Thanos Kyritsis  wrote:
>
>> I'm currently thinking of a different/faster "hack" to let you test it
>> properly. I can add a php script on the same test Data Provider (i.e.
>> oai/foobar.php) that upon request modifies the delete status (on and
>> off) of that particular "item 2" (and its datestamp of course). You
>> could then hit it with curl or something, make it re-appear on
>> ListRecords, then hit it again with curl after a few minutes (will set
>> it to deleted) and run the harvester. And so on, repeating the steps
>> as you'd like in order to test it multiple times.
>>
>> How does that sound ? :)
>
> Sounds good. I hope I'll be able to do something with it, I mean get
> DSpace to recognize the status and delete the item :)

Hello again,

I've put that little script in place. It is located at:
http://eclass30-test.gunet.gr/modules/oai/reqdel.php

This script alternates the status of a particular item between deleted
and not deleted, accordingly updating the datestamp as well. The
particular item is this one:
http://eclass30-test.gunet.gr/modules/oai/oai2.php?verb=GetRecord&metadataPrefix=oai_dc&identifier=8b1fcb90-872d-4d7d-a745-fbc37d4561b9

As you'll see, dspace 4.1 harvester processes the whole data provider
as it should when the above item is not deleted. But when it is
deleted, the collection ends up at "Internal Error" and the harvester
stops processing it. At that point, if you try reseting the delete
status of the item and the harvester status, that collection's
harvesting will become functional, until another deletion comes
forward.

--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette