[Dspace-tech] Assetstore on remote system.

2012-05-16 Thread nitesh kumar
Hi All,

I'm using Dspace. My application is running on one machine and Dspace is
running on different maching. But I'm storing document to dspace by import
tool through application(Machine 1). So I want to give assetsotre directory
path of machine 2(where Dspace is running).Please suggest me what and how to
do this.

 

Regards,

Nitesh

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Setup for Proxy that Requires Authentication

2012-05-16 Thread Hassan Rasheed
Hello Everyone,

I am using the latest Dspace 1.8.2 installed on Windows 2008 Server and
Java SE 6 Update 26.

I have been able to get everything up and running so far, but I noticed
some errors in the dspace log that seem to indicate I am getting some proxy
errors. Perhaps these are related to sending mail through SMTP?

The problem is that the proxy server on our network requires authentication
and the documentation only describes how to specify the basic parameters
(http.proxy.host and http.proxy.port).

Question: How should I specify the username and password required by my
proxy server in the dspace.cfg file?

Thanks.
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Assetstore on remote system.

2012-05-16 Thread helix84
On Wed, May 16, 2012 at 8:58 AM, nitesh kumar nitesh.ku...@knimbus.com wrote:
 I’m using Dspace. My application is running on one machine and Dspace is
 running on different maching. But I’m storing document to dspace by import
 tool through application(Machine 1). So I want to give assetsotre directory
 path of machine 2(where Dspace is running).Please suggest me what and how to
 do this.

Hi Nitesh,

since from the point of view of DSpace the assetstore is just a
directory on the filesystem, you can use any method for mounting a
directory remotely. Normal NFS or SMB will work just fine.

The second possible method of accessing assetstore is SRB, but I don't
know it first hand. You can read the documentation here:
https://wiki.duraspace.org/display/DSPACE/DspaceSrbIntegration

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Filtering fields in full item view

2012-05-16 Thread Saqib Ilyas
Hi everyone
Please excuse my xsl-newbiness. In DIM-Handler.xsl, full item view, I would
like to show only some of the fields. I have the following statements there:

 xsl:template match=dim:field mode=itemDetailView-DIM

xsl:if test=not(@element='description' and
@qualifier='provenance') and not(@element='date' and
@qualifier='accessioned') and not(@element='date' and
@qualifier='available') and not(@element='identifier' and
@qualifier='uri')

The first one was there to begin with and picks all fields. The other one,
I added to filter out some of the fields. However, with this solution, one
can't rely on the position() function to use different styles for odd and
even rows.
My question is, how does one combine a logical test on element and
qualifier values with the match attribute in xsl:template match?

Thanks and best regards

-- 
Muhammad Saqib Ilyas
PhD Student, Computer Science and Engineering
Lahore University of Management Sciences
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Filtering fields in full item view

2012-05-16 Thread helix84
Hi Saqib,

In this case you cannot calculate odd/even rows from the element
position() in DRI because you're not changing the input XML (so
position() doesn't change, either), you're only filtering some
elements. What I would do is remove odd/even coloring from XSL and do
it in CSS. Of course it could be done in XSL, but this is much
simpler.

http://www.w3.org/Style/Examples/007/evenodd.en.html

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Viewing input to XSL stylesheets in themes

2012-05-16 Thread Ben Ryan
Hi,
IS it possible to view the input to the XSL stylesheets e.g. 
item-viewer.xsl in the same way that the DRI document can be viewed by 
appending ?XML to the end of a URL?

Regards,
Ben--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Filtering fields in full item view

2012-05-16 Thread Claudia Jürgen
Hello Saqib,

there is a config option to hide metadata from display in dspace.cfg:

# This default configuration hides the dc.description.provenance field,
# since that usually contains email addresses which ought to be kept
# private and is mainly of interest to administrators:
metadata.hide.dc.description.provenance = true

Thus only logged in administrators will be able to see the metadata. The 
dc.description.provenance is hidden by default.

Hope that helps

Claudia Jürgen


Am 16.05.2012 11:23, schrieb Saqib Ilyas:
 Hi everyone
 Please excuse my xsl-newbiness. In DIM-Handler.xsl, full item view, I would
 like to show only some of the fields. I have the following statements there:

   xsl:template match=dim:field mode=itemDetailView-DIM

  xsl:if test=not(@element='description' and
 @qualifier='provenance') and not(@element='date' and
 @qualifier='accessioned') and not(@element='date' and
 @qualifier='available') and not(@element='identifier' and
 @qualifier='uri')

 The first one was there to begin with and picks all fields. The other one,
 I added to filter out some of the fields. However, with this solution, one
 can't rely on the position() function to use different styles for odd and
 even rows.
 My question is, how does one combine a logical test on element and
 qualifier values with the match attribute in xsl:template match?

 Thanks and best regards




 --
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond. Discussions
 will include endpoint security, mobile security and the latest in malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/



 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-- 
Claudia Juergen
Universitaetsbibliothek Dortmund
Eldorado
0231/755-4043
https://eldorado.tu-dortmund.de/

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Viewing input to XSL stylesheets in themes

2012-05-16 Thread helix84
On Wed, May 16, 2012 at 12:32 PM, Ben Ryan ben.r...@hotmail.co.uk wrote:
     IS it possible to view the input to the XSL stylesheets e.g.
 item-viewer.xsl in the same way that the DRI document can be viewed by
 appending ?XML to the end of a URL?

Hi Ben,

DRI _is_ the input to the XSLT stylesheets. All the individual XSLT
files of a template are processing the same input document (unless you
explicitly include another one via the document() function and
explicitly match it). They are either imported or included in the main
XSLT file of the template, which is in turn specified in template's
sitemap.xmap (map:transform src={global:theme-name}.xsl/).

Other important XML files processed by the XSLT templates apart from
DRI are the METS files, which are always referenced in DRI and pulled
in via document(). Their format is
/metadata/handle/123456789/123/mets.xml

Is there a particular reason why you're asking?

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] metadata projects

2012-05-16 Thread Valorie Hollister

Apologies for the cross-posting -

The metadata projects below were identified by the community survey on 
improving metadata support  
(https://wiki.duraspace.org/download/attachments/30217377/Metadata+Support+Survey+Final.pdf?version=1modificationDate=1328709175068)
 which was authored by the DSpace Community Advisory Team 
(https://wiki.duraspace.org/display/cmtygp/DSpace+Community+Advisory+Team) at 
the request of the DSpace Committers/Developers. 

Working with a few committers, DCAT has summarized and interpreted the 
information gathered from the survey, establishing the project priority as well 
as estimating the level of effort required (see wiki links below for more 
detail). To move forward each project needs to have interested volunteers to 
define requirements and work on writing the code. Project teams would benefit 
greatly by having metadata experts or repository managers clearly identifying 
what needs to be changed/updated/describe how it should work. If any of the 
projects are of interest to you, please identify yourself as a volunteer for 
the project in the Comment section on the appropriate wiki project page. 
In addition, any DSpace community members should feel free to add more detailed 
explanation/examples to further flesh out the changes/requirements they would 
like to see on any of the project pages. 


METADATA PROJECTS (under Development Proposal wiki page 
https://wiki.duraspace.org/display/DSPACE/Development+Proposals)

1) Updating the Qualified Dublin Core registry in DSpace to the latest 
standards of the DCMI
https://wiki.duraspace.org/display/DSPACE/Updating+the+Qualified+Dublin+Core+registry+in+DSpace+to+the+latest+standards+of+the+DCMI

2) Standardizing the default namespaces
https://wiki.duraspace.org/display/DSPACE/Standardizing+the+default+namespaces

3) Adding metadata authority controls/vocabularies to the data model
https://wiki.duraspace.org/display/DSPACE/Adding+metadata+authority+controls+and+vocabularies+to+the+data+model

4) Moving metadata related configurations from dspace.cfg to the database
https://wiki.duraspace.org/display/DSPACE/Moving+metadata+related+configurations+from+dspace.cfg+to+the+database

5) Develop support for additional metadata standards (use the Other field to 
specify which standards)
https://wiki.duraspace.org/display/DSPACE/Develop+support+for+additional+metadata+standards

6) Improved (or more transparent) flexibility
https://wiki.duraspace.org/display/DSPACE/Improved+or+more+transparent+metadata+flexibility

7) Enhancing the metadata available for Communities, Collections and Files 
(bitstreams)
https://wiki.duraspace.org/display/DSPACE/Enhancing+the+metadata+available+for+Communities%2C+Collections+and+Files



Sent on behalf of DCAT
Valorie Hollister
Director of Community Programs 
DuraSpace
vhollis...@duraspace.org

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech