[dspace-tech] Re: Bitstream header problem using REST API

2017-04-07 Thread Mehrdad Pedram
Any update on this? I'm having the same issue.

On Wednesday, February 10, 2016 at 2:53:20 PM UTC+3:30, Elektronac wrote:
>
> Hi,
>
> I have a problem with DSpace REST service when i upload bitstream file.
> When I upload file, additional header is embedded inside of that bitstream 
> file. 
> Because of that embedded header I am not able to view file from DSpace.
> When I download bitstream file from DSpace, open it and erase header (from 
> notepad) i can view content of this file. 
>
> Do you have any sugestion how can I solve this problem?
>
>
> Code for calling the DSpace REST service:
>
>
> HttpPost post = new HttpPost(base_url + 
> "items/1/bitstreams?name=image.png=myTestiImage");
>
> post.setHeader("rest-dspace-token",token);
> post.addHeader("Content-Type", "multipart/form-data");
> post.addHeader("Accept", "image/png");
>
>
> MultipartEntity builder = new 
> MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
>
> String path = "D:/image.png";
> File postFile = new File(path);
> FileBody cbFile = new FileBody(postFile);
>
> builder.addPart("data", cbFile);
>
> post.setEntity(builder);
> System.out.println("executing request " + post.getRequestLine());
>
> HttpResponse response = client.execute(post);
>
> ...
>
> File header before upload:
>
> ‰PNG
> ...
>
>
> Bitstream file header after uopload:
>
> --AueSc1EQFoTUiaqVs7YQOgeVdx3wqdf2E0
> Content-Disposition: form-data; name="someName"; filename="image.png"
> Content-Type: image/png
> Content-Transfer-Encoding: binary
>
> ‰PNG
> ...
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] UNIweb / DSpace Integration

2017-04-07 Thread Cameron, Jacob
Hi Everyone,

Has any work been done on finding a way to integrate a list of publications 
from DSpace into UNIweb?  I haven't seen anything but we just got setup for 
UNIweb so I'm sure the questions will start being asked soon.

Jake

--
Jake Cameron, BCS(UNB)
Systems Support Specialist III
Information Systems and Technical Services University of Lethbridge Library
Phone:(403)329-2756

This e-mail, including any and all attachments, is only for the use of the 
intended recipient(s) and may contain information that is confidential or 
privileged. If you are not the intended recipient, you are advised that any 
dissemination, copying or other use of this e-mail is prohibited. Please notify 
the sender of the error in communication by return e-mail and destroy all 
copies of this e-mail.  Thank you.

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Shibboleth problems in DSpace 6.0

2017-04-07 Thread Hardy Pottinger
Hi, George, I haven't run into that particular error with Shibboleth,
however, I can confirm that we have Shib working for one of our instances
of DSpace, which is running a fork of 6_x. Here is the commit that contains
the relevant configs:
https://github.com/UCLALibrary/DSpace/commit/b97047e13987a7fe1785929a51bcfee12693dcaf

Note that we did not elect to use stackable authentication. We are only
using Shib.

--Hardy

On Fri, Apr 7, 2017 at 1:34 PM, George Kozak  wrote:

> Hi...
> I upgraded to DSpace 6.0 from DSpace 5.5 (modified Mirage2 theme), and we
> discovered that we are having a Shibboleth login problem.  The login works,
> but we end up with a message: "Authentication Failed".
> In the DSpace logs, I see:
> 2017-04-07 14:05:51,604 ERROR org.dspace.authenticate.ShibAuthentication
> @ Unable to successfully authenticate using shibboleth for user because of
> an exception.java.lang.IllegalStateException: Unable to aquire dispatcher
> named default
> at org.dspace.event.EventServiceImpl.getDispatcher(
> EventServiceImpl.java:120)
> at org.dspace.core.Context.dispatchEvents(Context.java:421)
>at 
> org.dspace.authenticate.ShibAuthentication.updateEPerson(ShibAuthentication.java:848)
>at org.dspace.authenticate.ShibAuthentication.authenticate(
> ShibAuthentication.java:225)
> at org.dspace.authenticate.AuthenticationServiceImpl.
> authenticateInternal(AuthenticationServiceImpl.java:111)
> at org.dspace.authenticate.AuthenticationServiceImpl.authenticate(
> AuthenticationServiceImpl.java:81)
> at org.dspace.app.xmlui.utils.AuthenticationUtil.authenticate(
> AuthenticationUtil.java:120)
> etc...
>
> Has anyone ever encountered this before?
> --
> ***
> George Kozak
> Digital Library Specialist
> Cornell University Library - IT
> 218 Olin Library
> Cornell University
> Ithaca, NY 14853
> 607-255-8924 <(607)%20255-8924>
> g...@cornell.edu
>
> --
> You received this message because you are subscribed to the Google Groups
> "DSpace Technical Support" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to dspace-tech+unsubscr...@googlegroups.com.
> To post to this group, send email to dspace-tech@googlegroups.com.
> Visit this group at https://groups.google.com/group/dspace-tech.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Shibboleth problems in DSpace 6.0

2017-04-07 Thread George Kozak
Hi...
I upgraded to DSpace 6.0 from DSpace 5.5 (modified Mirage2 theme), and we
discovered that we are having a Shibboleth login problem.  The login works,
but we end up with a message: "Authentication Failed".
In the DSpace logs, I see:
2017-04-07 14:05:51,604 ERROR org.dspace.authenticate.ShibAuthentication @
Unable to successfully authenticate using shibboleth for user because of an
exception.java.lang.IllegalStateException: Unable to aquire dispatcher
named default
at
org.dspace.event.EventServiceImpl.getDispatcher(EventServiceImpl.java:120)
at org.dspace.core.Context.dispatchEvents(Context.java:421)
   at
org.dspace.authenticate.ShibAuthentication.updateEPerson(ShibAuthentication.java:848)
   at
org.dspace.authenticate.ShibAuthentication.authenticate(ShibAuthentication.java:225)
at
org.dspace.authenticate.AuthenticationServiceImpl.authenticateInternal(AuthenticationServiceImpl.java:111)

at
org.dspace.authenticate.AuthenticationServiceImpl.authenticate(AuthenticationServiceImpl.java:81)

at
org.dspace.app.xmlui.utils.AuthenticationUtil.authenticate(AuthenticationUtil.java:120)
etc...

Has anyone ever encountered this before?
-- 
***
George Kozak
Digital Library Specialist
Cornell University Library - IT
218 Olin Library
Cornell University
Ithaca, NY 14853
607-255-8924
g...@cornell.edu

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] setSpec OAI filter

2017-04-07 Thread Gonzalo Faramiñan
I add the following:

dspace/config/modules/oai.cfg

# Storage: solr | database
storage=solr

So I'm using the getQuery() method


2017-04-07 11:35 GMT-03:00 Gonzalo Faramiñan :

> Hello DSpacers,
>
> I've created a new OAI context and can populate it fine using metadata
> filters (such as DSpaceAtLeastOneMetadataFilter). But I cannot make it
> trough items values such as  from record's header. I'm running
> Dspace 4 at the moment.
>
> I've tried both DspaceSetSpecFilter and SolrFilterResult with no good
> results.
>
> To be honest, I guess I'm failing on syntax when trying to pass params to
> the class.
>
> I've been trying something like this:
>
> 
>org.dspace.xoai.filter.DspaceSetSpecFilter
> col_123456789_2630
> 
> 
>
> I'll appreciate any hints!
>
> Gonzalo
>
>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "DSpace Technical Support" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/dspace-tech/GpyFoFrjGU4/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> dspace-tech+unsubscr...@googlegroups.com.
> To post to this group, send email to dspace-tech@googlegroups.com.
> Visit this group at https://groups.google.com/group/dspace-tech.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Where in DSpace are ORCIDs stored?

2017-04-07 Thread helix84
On Fri, Apr 7, 2017 at 5:29 PM, Chris Gray  wrote:

> That clears some of this up for me.  I'm still a little mystified by what
> you say about backing up the Solr authority index.  I know that Solr
> indexes are just files.  I'll have to learn how to back up and restore of
> Solr indexes.
>

Yes, you can back up the index files. To be 100% safe, you shouldn't do
that while Solr is running.

Another way is CSV exports of Solr (--index-name authority):

https://wiki.duraspace.org/display/DSDOC5x/SOLR+Statistics+Maintenance#
SOLRStatisticsMaintenance-ExportSOLRstatistics,
forbackupandmovingtoanotherserver



When you say you can deduplicate with CSV export, do you mean a CSV export
> from Solr?  How would you get the CSV back in to Solr?  Again my ignorance
> of Solr may be showing.
>
> As I understand the DSpace metadata export and import via CSV, there is no
> provision for specifying authority values.  That would be an "unattended"
> submission, which then has to be corrected via metadata editing in the UI.
> Metadata editing in the UI is the only method I've been able to find for
> deduplicating authors.
>

In this case, I meant Batch Metadata Editing which does allow you to
specify authority keys for authors:

https://wiki.duraspace.org/display/DSDOC5x/ORCID+
Integration#ORCIDIntegration-EditingexistingitemsusingBatchCSVEditing



Regards,
~~helix84

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

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Where in DSpace are ORCIDs stored?

2017-04-07 Thread Chris Gray
Thanks, Helix,

That clears some of this up for me.  I'm still a little mystified by what 
you say about backing up the Solr authority index.  I know that Solr 
indexes are just files.  I'll have to learn how to back up and restore of 
Solr indexes.

When you say you can deduplicate with CSV export, do you mean a CSV export 
from Solr?  How would you get the CSV back in to Solr?  Again my ignorance 
of Solr may be showing.

As I understand the DSpace metadata export and import via CSV, there is no 
provision for specifying authority values.  That would be an "unattended" 
submission, which then has to be corrected via metadata editing in the UI.  
Metadata editing in the UI is the only method I've been able to find for 
deduplicating authors.

On Friday, April 7, 2017 at 11:08:09 AM UTC-4, helix84 wrote:
>
> Hi Chris,
>
>
> The bad news is that Solr authority is treated as a persistent store, so 
> you have to back it up, too. If you lost it, you'd have to de-duplicate 
> your authors again. Also, there is currently no UI for deduplication (you 
> can use CSV export and deduplicate manually).
>
>
> There are currently some improvements to ORCID lookup in the pipeline (but 
> not to the aforementioned design) in case you want to review them:
> https://github.com/DSpace/DSpace/pull/1698
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Where in DSpace are ORCIDs stored?

2017-04-07 Thread helix84
Hi Chris,

that's correct. ORCID ID is only stored in the authority index.

The design is such that ORCID is not used as authority key in DSpace. When
you're using SolrAuthority, a UUID is generated and used as the authority
key (in the DB and in Solr authority; not sure if in Solr search, too - I
don't currently have such an index in front of me).

Such design is sound - it makes it possible to store not only an ORCID ID
for an author, but potentially other external identifiers, too.

The bad news is that Solr authority is treated as a persistent store, so
you have to back it up, too. If you lost it, you'd have to de-duplicate
your authors again. Also, there is currently no UI for deduplication (you
can use CSV export and deduplicate manually).


There are currently some improvements to ORCID lookup in the pipeline (but
not to the aforementioned design) in case you want to review them:
https://github.com/DSpace/DSpace/pull/1698


Regards,
~~helix84

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

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] Where in DSpace are ORCIDs stored?

2017-04-07 Thread Chris Gray
I've been poking around in DSpace 5 and ORCIDs don't seem to be stored 
anywhere in the database.  They only seem to turn up in the Solr authority 
index.  They don't appear in the Solr discovery (search) index.

So my guess at this point is that the ORCID and some information from the 
ORCID database at orcid.org is saved in the authority index as a result of 
the choice made when submitting an item or editing it's metadata.  
Furthermore, the choice management method is the only way to get ORCIDs 
into DSpace.  So submission forms, work flows, and metadata editing in the 
UI are the only ways to enter this data.

I suppose this also means that if you ever delete the authority index and 
rebuild it from scratch, much of the data associated with an authority 
record will be lost.  This is why there is no -b option for the bin/dspace 
index-authority command.

Am I correct or am I missing something?

-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


[dspace-tech] setSpec OAI filter

2017-04-07 Thread Gonzalo Faramiñan
Hello DSpacers, 

I've created a new OAI context and can populate it fine using metadata 
filters (such as DSpaceAtLeastOneMetadataFilter). But I cannot make it 
trough items values such as  from record's header. I'm running 
Dspace 4 at the moment.

I've tried both DspaceSetSpecFilter and SolrFilterResult with no good 
results. 

To be honest, I guess I'm failing on syntax when trying to pass params to 
the class.

I've been trying something like this:


   org.dspace.xoai.filter.DspaceSetSpecFilter
col_123456789_2630 


I'll appreciate any hints!

Gonzalo



-- 
You received this message because you are subscribed to the Google Groups 
"DSpace Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] DSpace automatically loads in English although non-English default.locale setting value

2017-04-07 Thread Claudia Jürgen

Hello Peter,

the default.locale is the one chosen, if no other preference can be
found (user active choice, logged in eperson preference, browser).
So if your browser is set to English and you got it in
webui.supported.locales it will be used if you access your DSpace instance.
The config setting default.language got nothing to do with this, it is
used to populate the metadata language qualifiers.

Hope this helps

Claudia Jürgen

Am 06.04.2017 um 19:53 schrieb admin:

Hello,


I noticed that my DSpace automatically loads in English (when entering the
base url), although default.locale setting points to other language.
Does it have something with default.language setting, which is actually
English? Or maybe with web browser language (English as well)?



Thanks,

Peter



--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
claudia.juer...@tu-dortmund.de
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
You received this message because you are subscribed to the Google Groups "DSpace 
Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] How to set the value of external metadata via harvest?

2017-04-07 Thread Claudia Jürgen

Hello Brendow,

you may configure the metadata formats used and what to do with unknown
fields (ignore, add, fail)
see
https://wiki.duraspace.org/display/DSDOC5x/OAI#OAI-OAI-PMH/OAI-OREHarvesterConfiguration

Hope this helps

Claudia Jürgen


Am 06.04.2017 um 20:47 schrieb Brendow Adriel:

*Because externally collected metadata may have a different meaning than
the metadata stored by the submission form, etc.*


Example:


 (harvested externally)*dc.subject* = (local)*dc.subject.other*

or

 (harvested externally)*dc.contributor* = (local)*dc.course*



--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
claudia.juer...@tu-dortmund.de
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
You received this message because you are subscribed to the Google Groups "DSpace 
Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] Re: [Dspace-tech] Default settings for items per page and ascending/descending sorting

2017-04-07 Thread Claudia Jürgen

Hello David,

there is a config setting in dspace.cfg
webui.collectionhome.perpage
to specify how many items are listed in the collection home page.

As for browsing the user can change the the resulty per page via the UI.

Hope this helps

Claudia Jürgen


Am 07.04.2017 um 00:29 schrieb David Brian Holt:

What's the current state of this?  Is there an easy way to change the
number of items to display while browsing?

David



--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
claudia.juer...@tu-dortmund.de
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
You received this message because you are subscribed to the Google Groups "DSpace 
Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.


Re: [dspace-tech] When embargo period ends is the item available to anonymous users

2017-04-07 Thread Claudia Jürgen

Hi Lewatle,

what version of DSpace with which Embargo are you using?
Assuming you are using the Embargo introduced with DSpace 3.0 and the
simple embargo
Documentation: https://wiki.duraspace.org/display/DSDOC5x/Embargo

The rights (unless specified in the advanced mode) will be the default
rights inherited from the collection
(DEFAULT_ITEM_READ, DEFAULT_BITSTREAM_READ) and take effect from the day
specified in the embargo.
This might be anonymous read or something else.
There will be no notification about the resource policy taking effect on
embargo date.
For bitstream level embargo there has been a change in the item display
since 6.0 displaying the embargo and it's end date
see https://jira.duraspace.org/browse/DS-2547

Hope this helps

Claudia Jürgen



Am 07.04.2017 um 10:05 schrieb Lewatle Johannes Phaladi:

Hi,

I have few items submitted with embargo of 3 years, my question is that
when the embargo period finish is the item become available to users
without logins or is the item remain restricted. Is there any email that
will be send to the submitter of the item or administrator of the
collection.

Regards,
Lewatle



--
Claudia Juergen
Eldorado

Technische Universität Dortmund
Universitätsbibliothek
Vogelpothsweg 76
44227 Dortmund

Tel.: +49 231-755 40 43
Fax: +49 231-755 40 32
claudia.juer...@tu-dortmund.de
www.ub.tu-dortmund.de

Wichtiger Hinweis: Die Information in dieser E-Mail ist vertraulich. Sie ist 
ausschließlich für den Adressaten bestimmt. Sollten Sie nicht der für diese 
E-Mail bestimmte Adressat sein, unterrichten Sie bitte den Absender und 
vernichten Sie diese Mail. Vielen Dank.
Unbeschadet der Korrespondenz per E-Mail, sind unsere Erklärungen 
ausschließlich final rechtsverbindlich, wenn sie in herkömmlicher Schriftform 
(mit eigenhändiger Unterschrift) oder durch Übermittlung eines solchen 
Schriftstücks per Telefax erfolgen.

Important note: The information included in this e-mail is confidential. It is 
solely intended for the recipient. If you are not the intended recipient of 
this e-mail please contact the sender and delete this message. Thank you. 
Without prejudice of e-mail correspondence, our statements are only legally 
binding when they are made in the conventional written form (with personal 
signature) or when such documents are sent by fax.

--
You received this message because you are subscribed to the Google Groups "DSpace 
Technical Support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dspace-tech+unsubscr...@googlegroups.com.
To post to this group, send email to dspace-tech@googlegroups.com.
Visit this group at https://groups.google.com/group/dspace-tech.
For more options, visit https://groups.google.com/d/optout.