[dspace-tech] 8080 port number in url

2016-07-05 Thread Allen Clayton
Greetings,

We have been trying for two days to track down a solution to a problem with 
no luck. We are trying to change the url being output from DSpace. 
Specifically we want to erase the 8080 port number from the url. We are 
running 3x on a server running Ubuntu 12.04. I tracked down the instance in 
DSpace.cfg but the 8080 port is still showing up in our url.  Can anyone 
tell me where the treasures are hidden so I can fix this for good? Thanks 
for your help.

Allen Clayton
Digital Collections Librarian
The University of Texas at Dallas

-- 
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] Citation Generation for article items

2016-07-05 Thread George Kozak
Monika:

I am using DSpace 5.5 XMLUI (modified Mirage 2) and created a citation to
be displayed for datasets (only).  However, one of our librarians is having
me tweak the citations, so it is still not totally complete.  If you want
to check out what we display, go to: http://hdl.handle.net/1813/42437 or
http://hdl.handle.net/1813/11216
 The work is done in xsl/aspect/artifactbrowser/itemview.xsl

George Kozak

Digital Library Specialist

Cornell University Library Information Technologies (CUL-IT)

218 Olin Library

Cornell University

Ithaca, NY 14853

607-255-8924

On Tue, Jul 5, 2016 at 10:39 AM, Monika Mevenkamp  wrote:

> We are planning to bring up an DSPACE instance with faculty publications
> only. Proper citation information will be useful to have.  Hence the
> following questions:
>
> Did anybody build a an item page enhancement that generates a properly
> formatted citation for an article item based on the item’s metadata and
> includes that in the item page’s display  ?
>
> and
>
> Did anybody build an feature that generates downloadable citations for
> Items ?
> I am envisioning something along the lines of what you see on publisher
> pages - where you choose format such as BibTex, EndNote, RefWorks and a
> properly formatted citation is generated
>
>
> Monika
>
>
> ——
> Monika Mevenkamp
> Digital Repository Infrastructure Developer
> Princeton University
> Phone: 609-258-4161
> Skype: mo-meven
>
>
>
>
>
> --
> 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.
>



-- 
***
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.


[dspace-tech] Select element not serializable?

2016-07-05 Thread Gabriel Martins
I got a strange error when I changed the text element in form of 
UploadStep.java for a select.

Here's the code:

Text description = upload.addItem().addText("description");
description.setLabel(T_description);
description.setHelp(T_description_help);

for:

Select description = upload.addItem().addSelect("description");
description.setLabel(T_description);
upload.addItem(T_description_help);
description.addOption("article", "Article");
description.addOption("book", "Book");
description.addOption("presentation", "Presentation");

It's works fine, but for some reason I get stuck in upload step while doing 
a submission.
Tomcat show this error:

Cannot serialize session attribute FOM JavaScript GLOBAL 
SCOPE/resource://aspects/Submission/sitemap.xmap for session 
046207AB32F258732CBDC5650510C39A
java.io.NotSerializableException: java.lang.Object
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at 
org.mozilla.javascript.ScriptableObject.writeObject(ScriptableObject.java:2361)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteFields(Unknown Source)
at java.io.ObjectOutputStream.defaultWriteObject(Unknown Source)
at 
org.mozilla.javascript.ScriptableObject.writeObject(ScriptableObject.java:2348)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at java.io.ObjectStreamClass.invokeWriteObject(Unknown Source)
at java.io.ObjectOutputStream.writeSerialData(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at 
org.apache.catalina.session.StandardSession.writeObject(StandardSession.java:1694)
at 
org.apache.catalina.session.StandardSession.writeObjectData(StandardSession.java:1092)
at 
org.apache.catalina.session.StandardManager.doUnload(StandardManager.java:405)
at 
org.apache.catalina.session.StandardManager.unload(StandardManager.java:323)
at 
org.apache.catalina.session.StandardManager.stopInternal(StandardManager.java:493)
at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:224)
at 
org.apache.catalina.core.StandardContext.stopInternal(StandardContext.java:5806)
at org.apache.catalina.util.LifecycleBase.stop(LifecycleBase.java:224)
at 
org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1587)
at 
org.apache.catalina.core.ContainerBase$StopChild.call(ContainerBase.java:1576)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Can someone help me at this?
Thank you very much.

-- 
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] static page on Mirage2 DSpace 5.1

2016-07-05 Thread Copeland, Matthew M

We’ve done this, but we made some modifications along the way to get it to do 
some other things that we wanted.  (We wanted it to load a different file.)  
For Mirage2, the page-structure.xsl file is the one that loads the about page 
information, but it looks for page/about.  (See 
https://github.com/DSpace/DSpace/blob/dspace-5.2/dspace-xmlui-mirage2/src/main/webapp/xsl/core/page-structure.xsl
 line 
275).
   The built-in version utilizes 
xmlui.mirage2.page-structure.aboutThisRepository.

Once it’s in place, you just need to add a link in the appropriate xsl or xml 
doc for where you want your “About this site” link to show up and point it at 
http://repository.uneca.org/page/about, assuming you don’t want to modify the 
source.  If you are interested in seeing how it turned out for us, you can see 
the link to the about page, just about our Communities list at 
https://kuscholarworks.ku.edu/ or go to  directly to 
https://kuscholarworks.ku.edu/page/about .

Matthew Copeland



From: dspace-tech@googlegroups.com [mailto:dspace-tech@googlegroups.com] On 
Behalf Of Sisay Webshet
Sent: Tuesday, July 05, 2016 3:00 AM
To: DSpace Technical Support 
Subject: [dspace-tech] static page on Mirage2 DSpace 5.1

Hi All,


We want to add static page like this http://repository.uneca.org/about

can anyone share his experience on this ?

Thanks,Sisay
--
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.


Re: [dspace-tech] DSpace collection policy and permissions

2016-07-05 Thread Monika Mevenkamp
Pierre

unfortunately changing the permissions that relate to a collection’s items  
affect only the items that will be created after the change
The items that are already exist are not affected

In the JSPUI you can use the Advanced Policy Manager to do bulk changes on 
existing items. I am not sure what the equivalent tool is called in XMLUI

Monika

—
Monika Mevenkamp
Digital Repository Infrastructure Developer
Princeton University
Phone: 609-258-4161
Skype: mo-meven



> On Jul 5, 2016, at 9:33 AM, Pierre Lasou  wrote:
> 
> Bonjour,
>  
> I am seeking your advice on collection policy.
>  
> I want to achieve this: specific staff must be able to modify, update, delete 
> metadata elements of every item in a collection (but not bytstreams).
>  
> I create a specific Group and give it WRITE permissions in the collection 
> policy. However, when testing, people were not able either modify, update or 
> delete metadata elements on items. So I wonder, is WRITE the right 
> permission? Should I use another one (REMOVE, ADMIN)?
>  
> I cannot find in Dspace doc complete definition on DSpace permissions (WRITE, 
> REMOVE, ADMIN, etc.). Are they defined somewhere?
>  
> Thank you very much for your help!
>  
> Best,
> Pierre
>  
>  
> 
> Pierre Lasou
> Bibliothécaire - Communications savantes
> Bibliothèque de l'Université Laval
> Téléphone : 418-656-2131 poste : 12522
> Jean-Charles Bonenfant
> Télécopieur : 418-656-7897
> 2345, allée des Bibliothèques
> pierre.la...@bibl.ulaval.ca
> Local, 3142
> www.bibl.ulaval.ca/ 
> Québec (Québec) G1V 0A6
> _
> Avis relatif à la confidentialité / Notice of Confidentiality 
> 
>  
>  
> 
> -- 
> 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] DSpace collection policy and permissions

2016-07-05 Thread Pierre Lasou
Bonjour,

I am seeking your advice on collection policy.

I want to achieve this: specific staff must be able to modify, update, delete 
metadata elements of every item in a collection (but not bytstreams).

I create a specific Group and give it WRITE permissions in the collection 
policy. However, when testing, people were not able either modify, update or 
delete metadata elements on items. So I wonder, is WRITE the right permission? 
Should I use another one (REMOVE, ADMIN)?

I cannot find in Dspace doc complete definition on DSpace permissions (WRITE, 
REMOVE, ADMIN, etc.). Are they defined somewhere?

Thank you very much for your help!

Best,
Pierre


[http://www.bibl.ulaval.ca/images/bibli_logo_120_78.gif]

Pierre Lasou

Bibliothécaire - Communications savantes

Bibliothèque de l'Université Laval

Téléphone : 418-656-2131 poste : 12522

Jean-Charles Bonenfant

Télécopieur : 418-656-7897

2345, allée des Bibliothèques

pierre.la...@bibl.ulaval.ca

Local, 3142

www.bibl.ulaval.ca/

Québec (Québec) G1V 0A6


_

Avis relatif à la confidentialité / Notice of 
Confidentiality



-- 
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] static page on Mirage2 DSpace 5.1

2016-07-05 Thread Sisay Webshet
Hi All,


We want to add static page like this http://repository.uneca.org/about

can anyone share his experience on this ?

Thanks,Sisay

-- 
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.