Re: [Dspace-tech] Submission to be made public

2012-02-14 Thread van Hoek, Wilko
Hello All,

the idea of using easydeposit to bypass the authentication needed for the 
submission-process seems not to be the best solution for our case. I would 
prefer if someone could give me some hints were to change the authentication 
for submission within dspace. Most convenient would be a way to handle the 
different collections individually. Meaning  if someone tries to submit to a 
certain collection there is no login needed or he is automatically logged in as 
user "webuser".
Could someone give me some pointers to where in dspace the authentication for 
the submission-process is handled?

Thanks,
Wilko


Von: emilio lorenzo [mailto:elore...@arvo.es]
Gesendet: Dienstag, 7. Februar 2012 19:32
An: dspace-tech@lists.sourceforge.net
Betreff: Re: [Dspace-tech] Submission to be made public

Hello Wilko
despite the possible risks of allowing not-identified users to deposit into 
your repository, a possible aproach would be use SWORD-deposit. A year ago, in 
a project we used the application EASY-deposit (developed by Stuart Lewis, 
thanks again Stuart) to allow general users to send materials to DSPACE.  
Easy-Deposit is deployed as a web app, and is your task to provide access 
restrictions, if any..., although an LDAP-integration is available

 Another smart app of Stuarts allows using a mail-client to  make 
almost-depositsAnother possible direction of your investigations.

With easy-deposit, the users can be anonymous and the material is sent in 
behalf the EASY-Deposit Application... Some drawbacks arise related with 
destination-collections, metadata completeness, revision-workflow and so on 
but in some particular scenarios,  the benefits can outperform the 
inconvenients.

thanks,

Emilio


El 07/02/2012 14:36, van Hoek, Wilko escribió:

Hello everyone,

I would like to pick up a topic that has been discussed briefly in 2003. 
Currently we are migrating our repository-system to dspace 1.8 . What we need 
is the possibility for web-users (that are unknown to the system) to submit in 
some of our collection. If someone uses the "submission link", he should be 
directed to the submission form without logging in or registering.

Does someone has a good idea how this could be achieved or even has a solution 
implemented we could use?



Many thanks in advance,

Wilko



Wilko van Hoek / GESIS - Leibniz Institute for the Social Sciences  / 
http://www.gesis.org







--

Keep Your Developer Skills Current with LearnDevNow!

The most comprehensive online learning library for Microsoft developers

is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,

Metro Style Apps, more. Free future releases when you subscribe now!

http://p.sf.net/sfu/learndevnow-d2d





___

DSpace-tech mailing list

DSpace-tech@lists.sourceforge.net

https://lists.sourceforge.net/lists/listinfo/dspace-tech
--
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Customizing Search Module in DSpace

2012-02-14 Thread Peter Dietz
Hi Masha,

For JSPUI, you can follow the same process I showed you. Do a string search
over the DSpace code-base, for each piece that your looking for, and look
for where the hit is used. It helps if you check out the DSpace code into
an IDE such as Intellij, NetBeans, or Eclipse. Otherwise, if your on *nix,
you can grep it, otherwise, just Google it.

For JSPUI, here's the first hit you can start chasing:
https://github.com/DSpace/DSpace/blob/master/dspace-api/src/main/resources/Messages.properties#L821


To log all of these empty-queries to a database, well, you could do that.
You'd need to make a new table, add a class to interact with that table,
have some setters and getters. You could also build a reporting page to
show your empty queries, or just manipulate this data raw from SQL.

I would probably just log that there was no results, fire a usage event,
have Spring wire up a listener to that event, and perhaps log that event
into something like Solr, or elastic search. Or, just write to the
dspace.log, and build a cronjob that parses your dspace.log each night, and
throws all the entries for "No search results for query: quijibo" into
whatever datastore you want from there.




Peter Dietz



On Mon, Feb 13, 2012 at 11:10 PM, Masha Watts  wrote:

> Hi Peter,
>
> Sorry I forgot to mention, I'm using JSPUI. I think the way it works is
> different in JSPUI. Any Idea?
>
> Also I need to record no result searches in the database for reporting
> purposes.
>
> Masha
>
>
> On Tue, Feb 14, 2012 at 1:54 AM, Peter Dietz  wrote:
>
>> Hi Masha,
>>
>> Here's one way to find where in the code this happens.
>>
>> Search for your fake string, and find the exact string it says for no
>> search results.
>>
>> "Search produced no results."
>>
>> Look for this string in the code.
>>
>> Search
>> produced no results.
>>
>> https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/i18n/messages.xml#L94
>>
>> Then look for usages of xmlui.ArtifactBrowser.AbstractSearch.no_results
>> in the code.
>> private static final Message T_no_results =
>> message("xmlui.ArtifactBrowser.AbstractSearch.no_results");
>>
>> https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui/aspect/artifactbrowser/AbstractSearch.java#L84
>>
>> Then, find usages of T_no_results in that class.
>> else
>> {
>> results.addPara(T_no_results);
>> }
>>
>> https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui/aspect/artifactbrowser/AbstractSearch.java#L326
>>
>> You then have your entry point where you have a chance to do an action
>> where there are no results. For starters, you can write a message to
>> log.info.
>>
>>
>>
>> Peter Dietz
>>
>>
>>
>> On Mon, Feb 13, 2012 at 2:42 AM, Masha Watts wrote:
>>
>>>
>>> Dear All,
>>>
>>> I'm new to DSpace and I have a requirement of record and display zero
>>> search results. Eg:- If you search items by "Test", if the search result is
>>> zero, I have to record it and should be able to generate a report.
>>>
>>> Any possibility of doing that with configurations or is there any one
>>> developed such kind of a module? Please Help.
>>>
>>> Best Regards,
>>>
>>> Masha
>>>
>>>
>>>
>>> --
>>> Try before you buy = See our experts in action!
>>> The most comprehensive online learning library for Microsoft developers
>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>>> Metro Style Apps, more. Free future releases when you subscribe now!
>>> http://p.sf.net/sfu/learndevnow-dev2
>>> ___
>>> DSpace-tech mailing list
>>> DSpace-tech@lists.sourceforge.net
>>> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>>>
>>>
>>
>
--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] XMLUI themes

2012-02-14 Thread Peter Dietz
Jose,

I don't think we run into the situation where we *have* to change the Java
(aspect) to accomplish what we want to, it more of a trade-off.

But times when we alter the aspect would be when it is a really simple
change, and we want to target a specific page. Or when it would be so much
easier to change the Java, and make a simple one-liner, verse having to
reverse engineer the DRI in XSL, and do some horrible, hacky, painful
process to extrapolate data.

A clear example is that we've altered the Edit Collection
controllers/aspects to make it so that you only see the Curate tab if you
are a super admin. A really easy if(AuthorizeManager.isSuperAdmin(context)
{ ... }, compared to some mess of XSL to do the same.


An example of our per-collection theme modifications is that many themes
have different needs for which metadata fields need to display in the item
view. Our thesis collections show the advisor in the metadata, where as
some of our collections about a specific location, will have the location
metadata in the simple metadata page.

One feature that we've added, but haven't yet deployed to production, is
the ability to display mathematical symbols graphically. We still have
unanswered questions about which encoding standards to use to store the
text version of the formulas, and we have questions about how to display to
the user (MathML in-browser rendering, replace the formula with an image on
the fly...). And further, the community/collection discussions needed to
convert features we've developed, with needs of the end users. i.e. Would
you like us to enable the feature of displaying your formulas graphically?

[image: screenshot_044.png]




Peter Dietz



On Tue, Feb 14, 2012 at 10:04 AM, Blanco, Jose  wrote:

> Hey Brian,  We're in the process of making that transition from jspui to
> xmlui, and I'm wondering if all the changes you made to get the image
> collection up and going involved the themes, or did you have to make
> changes to the aspects also?
>
> -Jose
>
> -Original Message-
> From: Brian Stamper [mailto:brnst...@gmail.com]
> Sent: Tuesday, February 14, 2012 9:45 AM
> To: dspace-tech@lists.sourceforge.net
> Subject: [Dspace-tech] XMLUI themes
>
> Hello all,
>
> At Ohio State we have been running Manakin for about a year now, which we
> switched to after having used the JSP interface for many years. One of the
> key reasons that we made the switch was the potential to create themes
> which may be applied individually to certain communities and collections.
>
> We have had some success in this. For example, we created a "gallery"
> theme that we applied to some image collections.[1]
>
> However, we would like to do more. As such, we are interested in what
> other institutions are doing. Here are some of the things we would like to
> know:
>
> 1.  If you have made use of themes for individual communities or
> collections, how so? Do you use themes for styling for a particular
> community, e.g. branding, color, font? Do you use themes to present a
> particular content type in a way that is specific to some collection?
> 2.  Have there been things that you wanted to do, but proved too
> difficult
> to implement? Obviously time and budget constraints emerge, but had you
> encountered other unforeseen barriers to development?
> 3.  Has the capacity to create themes been a selling point for your
> repository? What types of things have you found that communities would
> want in a theme?
>
> We're looking for examples of how people have used this capability, so if
> you have, please share a link! We've been looking at many DSpace instances,
> and it appears that theming individual communities or collections is a rare
> phenomenon.
>
> We would greatly appreciate any discussions that may develop from these
> questions.
>
>
> Thank you,
>
> Brian Stamper
> The Ohio State University Libraries
> Scholarly Resources Integration
> 320 Science and Engineering Library
> 175 West 18th Avenue
> Columbus, OH 43210
> (614) 247-8415
>
> The Knowledge Bank at OSU
> https://kb.osu.edu/dspace/
>
>
> [1] Some nice examples of our gallery theme in use:
> The Steven Enich Serbian Orthodox Culture Slide Collection:
> http://hdl.handle.net/1811/37112
> John H. Glenn Archives Photo Gallery: 
> http://hdl.handle.net/1811/50311Ukrainian Immigration to Columbus, Ohio:
> http://hdl.handle.net/1811/36653
>
>
> --
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers is
> just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro
> Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d
> ___
> DSpace-tech mailing list
> DSpace-tech@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-tech
>
>
> ---

Re: [Dspace-tech] class file org.apache.lucene.analysis.hi.HindiNormalizationFilter

2012-02-14 Thread Claudia Jürgen
Hello,

this is part of lucene-analyzers-[version] not core, see
http://repo1.maven.org/maven2/org/apache/lucene/lucene-analyzers/3.5.0/

Hope this helps

Claudia Jürgen


Am 14.02.2012 14:01, schrieb Abhishek Raval:
> Hello all,
>
>
>  I m in search of this class file
> *org.apache.lucene.analysis.hi.HindiNormalizationFilter
> *which will help me for hindi language search in dspace. I searched for
> this in lucene-core-3.2.0 and lucene-core-3.4.0 but didnt find. Can any one
> help me on this ?
>
>
>
>
>
> --
> Keep Your Developer Skills Current with LearnDevNow!
> The most comprehensive online learning library for Microsoft developers
> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
> Metro Style Apps, more. Free future releases when you subscribe now!
> http://p.sf.net/sfu/learndevnow-d2d
>
>
>
> ___
> 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/

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] DSpace blocks not appearing in Matlab-simulink

2012-02-14 Thread Claudia Jürgen
Hello Balmukund,

you are asking this question on the wrong list.

This list is concernd with the DSpace software, a software for 
institutional repositories or to put it simply document servers.

We do know nothing about dSPACE and your Matlab problem. Best check the 
knowledge base etc. on the dSPACE site 
http://www.dspace.de/en/pub/home.cfm.

DSpace and dSPACE are completely different things.

Claudia Jürgen


Am 14.02.2012 15:57, schrieb Balmukund Agarwal:
> Hi,
>
> Thanks for response. I went to that link but could not find anything useful.
>
> My matlab version is 7.4.0 (R2007a)
>
> Regards,
> Balmukund
>
>
> - Original Message -
> From: "Claudia Jürgen"
> To: dspace-tech@lists.sourceforge.net
> Sent: Monday, February 13, 2012 9:55:21 AM GMT -05:00 US/Canada Eastern
> Subject: Re: [Dspace-tech] DSpace blocks not appearing in Matlab-simulink
>
> Hello Balmukund,
>
> you posted your question to the list related to the repository software
> DSpace see https://wiki.duraspace.org/display/DSPACE/Home
>
> You most likely meant dSPACE http://www.dspace.de.
> Here is a list of search results related to Matlab compatability issues
> with dSPACE
> http://tinyurl.com/6pgtfr6
>
> Hope that helps
>
> Claudia Jürgen
>
>
>
> Am 13.02.2012 15:40, schrieb Balmukund Agarwal:
>> Dear All,
>>
>> I am a student from Michigan Tech University and we will be using Dspace for 
>> HEV Car Competition.
>>
>> I was given a Dell laptop installed with Matlab 7.4.0(R2007a) version. 
>> However after opening Matlab I cannot see any Dspace Blocks in Simulink. 
>> aLSO, i get the following message :
>>
>> [Configuring dSPACE Software for MATLAB 7.4.0.287 (R2007a) ...
>>
>> Warning: Name is nonexistent or not a directory: c:\dspace\matlab\dssimulink.
>>> In path at 110
>> In addpath at 89
>> In dspace_setup at 280
>> In dspacerc at 21
>> In matlabrc at 276
>> DSSIMULINKControlDesk to Simulink Interface2.8   
>> 29-May-2006okay
>>
>> dSPACE configuration okay.]
>>
>> Should I uninstall this version and get a new version from Library.
>>
>> Please help.
>>
>> Regards,
>> Balmukund
>>
>> --
>> Try before you buy = See our experts in action!
>> The most comprehensive online learning library for Microsoft developers
>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
>> Metro Style Apps, more. Free future releases when you subscribe now!
>> http://p.sf.net/sfu/learndevnow-dev2
>> ___
>> 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/

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] XMLUI themes

2012-02-14 Thread Blanco, Jose
Hey Brian,  We're in the process of making that transition from jspui to xmlui, 
and I'm wondering if all the changes you made to get the image collection up 
and going involved the themes, or did you have to make changes to the aspects 
also?

-Jose

-Original Message-
From: Brian Stamper [mailto:brnst...@gmail.com] 
Sent: Tuesday, February 14, 2012 9:45 AM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] XMLUI themes

Hello all,

At Ohio State we have been running Manakin for about a year now, which we 
switched to after having used the JSP interface for many years. One of the key 
reasons that we made the switch was the potential to create themes which may be 
applied individually to certain communities and collections.

We have had some success in this. For example, we created a "gallery"  
theme that we applied to some image collections.[1]

However, we would like to do more. As such, we are interested in what other 
institutions are doing. Here are some of the things we would like to
know:

1.  If you have made use of themes for individual communities or  
collections, how so? Do you use themes for styling for a particular community, 
e.g. branding, color, font? Do you use themes to present a particular content 
type in a way that is specific to some collection?
2.  Have there been things that you wanted to do, but proved too difficult  
to implement? Obviously time and budget constraints emerge, but had you 
encountered other unforeseen barriers to development?
3.  Has the capacity to create themes been a selling point for your  
repository? What types of things have you found that communities would want in 
a theme?

We're looking for examples of how people have used this capability, so if you 
have, please share a link! We've been looking at many DSpace instances, and it 
appears that theming individual communities or collections is a rare phenomenon.

We would greatly appreciate any discussions that may develop from these 
questions.


Thank you,

Brian Stamper
The Ohio State University Libraries
Scholarly Resources Integration
320 Science and Engineering Library
175 West 18th Avenue
Columbus, OH 43210
(614) 247-8415

The Knowledge Bank at OSU
https://kb.osu.edu/dspace/


[1] Some nice examples of our gallery theme in use:
The Steven Enich Serbian Orthodox Culture Slide Collection:  
http://hdl.handle.net/1811/37112
John H. Glenn Archives Photo Gallery: http://hdl.handle.net/1811/50311 
Ukrainian Immigration to Columbus, Ohio: http://hdl.handle.net/1811/36653

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers is just 
$99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style 
Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] XMLUI themes

2012-02-14 Thread Brian Stamper
Hello all,

At Ohio State we have been running Manakin for about a year now, which we  
switched to after having used the JSP interface for many years. One of the  
key reasons that we made the switch was the potential to create themes  
which may be applied individually to certain communities and collections.

We have had some success in this. For example, we created a "gallery"  
theme that we applied to some image collections.[1]

However, we would like to do more. As such, we are interested in what  
other institutions are doing. Here are some of the things we would like to  
know:

1.  If you have made use of themes for individual communities or  
collections, how so? Do you use themes for styling for a particular  
community, e.g. branding, color, font? Do you use themes to present a  
particular content type in a way that is specific to some collection?
2.  Have there been things that you wanted to do, but proved too difficult  
to implement? Obviously time and budget constraints emerge, but had you  
encountered other unforeseen barriers to development?
3.  Has the capacity to create themes been a selling point for your  
repository? What types of things have you found that communities would  
want in a theme?

We're looking for examples of how people have used this capability, so if  
you have, please share a link! We've been looking at many DSpace  
instances, and it appears that theming individual communities or  
collections is a rare phenomenon.

We would greatly appreciate any discussions that may develop from these  
questions.


Thank you,

Brian Stamper
The Ohio State University Libraries
Scholarly Resources Integration
320 Science and Engineering Library
175 West 18th Avenue
Columbus, OH 43210
(614) 247-8415

The Knowledge Bank at OSU
https://kb.osu.edu/dspace/


[1] Some nice examples of our gallery theme in use:
The Steven Enich Serbian Orthodox Culture Slide Collection:  
http://hdl.handle.net/1811/37112
John H. Glenn Archives Photo Gallery: http://hdl.handle.net/1811/50311
Ukrainian Immigration to Columbus, Ohio: http://hdl.handle.net/1811/36653

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] class file org.apache.lucene.analysis.hi.HindiNormalizationFilter

2012-02-14 Thread Abhishek Raval
Hello all,


I m in search of this class file
*org.apache.lucene.analysis.hi.HindiNormalizationFilter
*which will help me for hindi language search in dspace. I searched for
this in lucene-core-3.2.0 and lucene-core-3.4.0 but didnt find. Can any one
help me on this ?


-- 
Thanks in advance
Abhishek Raval
Ph no.-+919601077584
--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-14 Thread bodnar_robert
Dear Sirs,

Thank you very much for your answers!

I found a very simple and effective way to solve my problem.
I write it down, maybe it could be useful for someone:
I exported the metadata for a collection through the interface in cvs,
opened it in Bluefish and used Replace All.
Then imported the cvs back in DSpace.
That`s it.

Thank you! Have a nice day!

-- 

With best regards,
Bodnár Róbert

--
BIBLIOTECA CENTRALA UNIVERSITARA "LUCIAN BLAGA"
INTERNATIONAL EXCHANGES/ DIGITAL LIBRARY
Str. Clinicilor Nr. 2
46 Cluj-Napoca
Romania
e-mail: bodnar_rob...@bcucluj.ro
web: www.bcucluj.ro




--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-14 Thread bodnar_robert
> I believe you have to upgrade to at least dspace 1.7.2 in order to make
> the changes
>
>

Multumesc Sergiu.

We have exactly DSpace 1.7.2, but I still don`t know how to do this.

Regards,
B. Robert


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech