[Dspace-tech] A question about embargo

2014-05-16 Thread M . Àngels Pulido Medina
Hello,
My question is about the embargo in DSpace version 1.7.2
I have an item now in my repository that has a embargo until 06/24/14
I should change it and put a embargo to another date.
My question is: I can change the content of the metadata dc.embargo.terms and 
dc.embargo.lift of this record and will work well?

According to this explanation below I understand (probably wrongly) a record 
that is already in the repository is not possible to change it.

Someone can help me? Thanks in advance.

https://wiki.duraspace.org/display/DSDOC17/Embargo:

In DSpace terminology, when an Item has exited the last of any workflow steps 
(or if none have been defined for it), it is said to be 'installed' into the 
repository. At this precise time, the 'interpretation' of the terms occurs, and 
a computed 'lift date' is assigned, which like the terms is recorded in a 
configurable metadata field. It is important to understand that this 
interpretation happens only once, (just like the installation), and cannot be 
revisited later. Thus, although an administrator can assign a new value to the 
metadata field holding the terms after the item has been installed, this will 
have no effect on the embargo, whose 'force' now resides entirely in the 'lift 
date' value. For this reason, you cannot embargo content already in your 
repository (at least using standard tools).

--
Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free.
http://p.sf.net/sfu/SauceLabs___
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] A question about Scopus Integration (Cited-By Count API)

2014-04-23 Thread M. Àngels Pulido

Hello,

I'm trying to implement the code Scopus Integration (Cited-By Count API) 
in my repository: DSPace 1.7.2.


Nemiz, Elvi, kindly, shared it for us here, in dspace-tech, some days 
ago. Below is the message...


The code works fine but I have a problem. In our repository 
http://repositori.uvic.cat/handle/10854/2307?show=full, all records 
have de metadata dc.identifier.doi like this example:


http://dx.doi.org/10.1093/bioinformatics/btt249

with***http://**dx.doi.org/ *before the number DOI.

and of course, the code does not work.

I guess you should change something here but I do not know how...

//setting search query
xsl:text disable-output-escaping=yesvar strQuery = 
DOI(/xsl:textxsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='doi']/xsl:text disable-output-escaping=yes);


Someone can help me?

Thank you in advance.


 Nemiz, Elvi esne...@seafdec.org.ph 2014/02/13 03:59 PM 
Hello Solomon,


I'm sorry if I can't pinpoint what's causing that error but here's what 
I did in our repository. In your item-view.xsl, locate this line of code:


xsl:template name=itemSummaryView-DIM
!-- Generate the info about the item from the metadata section --
xsl:apply-templates 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim

mode=itemSummaryView-DIM/

After that piece of code, copy paste these javascript code:

script type=text/javascript
xsl:text disable-output-escaping=yes
document.write('lt;script type=text/javascript 
src=http://api.elsevier.com/javascript/scopussearch.jspgt; lt;/' + 
'scriptgt;');


callbackCitedbycount = function(){
if (sciverse.areSearchResultsValid()) {
var resultObj = sciverse.getSearchResults();
if (resultObj.returnedResults gt;0) {
citedbycount = resultObj.results[0].citedbycount;
eid = resultObj.results[0].eid;
if (citedbycount gt; 0) {
citeHtml = 'lt;span class=boldgt;Cited:lt;/spangt; ';

if (eid != null) {
citeHtml += 'lt;a 
href=http://www.scopus.com/scopus/search/submit/citedby.url?src=samp;origin=recordpageamp;eid=';

citeHtml += eid;
citeHtml += ' class=citing-link target=_new title=View citing 
articles in Scopusgt;';

citeHtml += citedbycount;
citeHtml += 'lt;/agt;#160;times in lt;span 
class=boldgt;Scopuslt;/spangt;';

}

articleLink = resultObj.results[0].inwardurl;

if (articleLink != null) {
citeHtml += '#160;#160;lt;smallgt;(lt;a href=';
citeHtml += articleLink;
citeHtml += ' class=article-link target=_new title=View record in 
Scopus gt;';

citeHtml += 'View record in Scopus';
citeHtml += 'lt;/agt;)lt;/smallgt;';
}
/xsl:text
var citecountsScopus = $(#citecounts-scopus);
citecountsScopus.html(citeHtml);
citecountsScopus.removeClass('hidden');
citecountsScopus.show('blind');
$(#citecounts-scopus a.citing-link).click(function(){
if (_gaq != null) {
_gaq.push(['_trackEvent', 'Citecount links','Scopus citing 
items','xsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='uri']/']);

}
});
$(#citecounts-scopus a.article-link).click(function(){
if (_gaq) {
_gaq.push(['_trackEvent','Citecount links','Scopus 
article','xsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='uri']/']);

}
});
}
}
}
}

runSearch = function() {
//setting defaults
sciverse.setApiKey(*REPLACE-THIS-WITH-YOUR-SCOPUS-API-KEY*);
sciverse.setCallback(callbackCitedbycount);

//setting search query
xsl:text disable-output-escaping=yesvar strQuery = 
DOI(/xsl:textxsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='doi']/xsl:text disable-output-escaping=yes);


var varSearchObj = new searchObj();
varSearchObj.setSearch(strQuery);
varSearchObj.setNumResults('1');

//launching search
try {
sciverse.runSearch(varSearchObj);
} catch(err) {}
};
runAfterJSImports.add(runSearch);
/xsl:text
/script

And then paste the code in *bold* where you want the scopus citation 
count to appear. In our case, I put it under the citation field (I 
assumed that you already knew how to customize what fields to display in 
simple item view):


!-- Citation row --
xsl:when test=$clause = 9 and (dim:field[@element='identifier' and 
@qualifier='citation' and descendant::text()])
*div id=citecounts-scopus class=simple-item-view-other citecounts 
hidden#160;/div*

*
*
*
*
Hoped this helps,

P.S. Please take note that I have created a custom tag, 
dc.identifier.doi that holds the value for the item's DOI (without the 
http://dx.doi.org/). Feel free to 'view page source' items in our 
repository that have DOIs for example: 
http://repository.seafdec.org.ph/handle/10862/1737 for your reference.


Regards,
Elvi
--

*M. Àngels Pulido Medina*
Biblioteca - Servei de Recursos Informàtics
Logo UVic
*Universitat de Vic*
C. Sagrada Família, 7
08500 Vic
Tel. 938 816 170 (8333)
m.angels.pul

[Dspace-tech] {Disarmed} A question about Scopus Integration (Cited-By Count API)

2014-04-23 Thread M. Àngels Pulido

Hello,

I'm trying to implement the code Scopus Integration (Cited-By Count API) 
in my repository: DSPace 1.7.2.


Nemiz, Elvi, kindly, shared it for us here, in dspace-tech, some days 
ago. Below is the message...


The code works fine but I have a problem. In our repository 
http://repositori.uvic.cat/handle/10854/2307?show=full, all records 
have de metadata dc.identifier.doi like this example:


http://dx.doi.org/10.1093/bioinformatics/btt249

with***http://**dx.doi.org/ *before the number DOI.

and of course, the code does not work.

I guess you should change something here but I do not know how...

//setting search query
xsl:text disable-output-escaping=yesvar strQuery = 
DOI(/xsl:textxsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='doi']/xsl:text disable-output-escaping=yes);


Someone can help me?

Thank you in advance.


 Nemiz, Elvi esne...@seafdec.org.ph 2014/02/13 03:59 PM 
Hello Solomon,


I'm sorry if I can't pinpoint what's causing that error but here's what 
I did in our repository. In your item-view.xsl, locate this line of code:


xsl:template name=itemSummaryView-DIM
!-- Generate the info about the item from the metadata section --
xsl:apply-templates 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim

mode=itemSummaryView-DIM/

After that piece of code, copy paste these javascript code:

script type=text/javascript
xsl:text disable-output-escaping=yes
document.write('lt;script type=text/javascript 
src=http://api.elsevier.com/javascript/scopussearch.jspgt; lt;/' + 
'scriptgt;');


callbackCitedbycount = function(){
if (sciverse.areSearchResultsValid()) {
var resultObj = sciverse.getSearchResults();
if (resultObj.returnedResults gt;0) {
citedbycount = resultObj.results[0].citedbycount;
eid = resultObj.results[0].eid;
if (citedbycount gt; 0) {
citeHtml = 'lt;span class=boldgt;Cited:lt;/spangt; ';

if (eid != null) {
citeHtml += 'lt;a 
href=http://www.scopus.com/scopus/search/submit/citedby.url?src=samp;origin=recordpageamp;eid=';

citeHtml += eid;
citeHtml += ' class=citing-link target=_new title=View citing 
articles in Scopusgt;';

citeHtml += citedbycount;
citeHtml += 'lt;/agt;#160;times in lt;span 
class=boldgt;Scopuslt;/spangt;';

}

articleLink = resultObj.results[0].inwardurl;

if (articleLink != null) {
citeHtml += '#160;#160;lt;smallgt;(lt;a href=';
citeHtml += articleLink;
citeHtml += ' class=article-link target=_new title=View record in 
Scopus gt;';

citeHtml += 'View record in Scopus';
citeHtml += 'lt;/agt;)lt;/smallgt;';
}
/xsl:text
var citecountsScopus = $(#citecounts-scopus);
citecountsScopus.html(citeHtml);
citecountsScopus.removeClass('hidden');
citecountsScopus.show('blind');
$(#citecounts-scopus a.citing-link).click(function(){
if (_gaq != null) {
_gaq.push(['_trackEvent', 'Citecount links','Scopus citing 
items','xsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='uri']/']);

}
});
$(#citecounts-scopus a.article-link).click(function(){
if (_gaq) {
_gaq.push(['_trackEvent','Citecount links','Scopus 
article','xsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='uri']/']);

}
});
}
}
}
}

runSearch = function() {
//setting defaults
sciverse.setApiKey(*REPLACE-THIS-WITH-YOUR-SCOPUS-API-KEY*);
sciverse.setCallback(callbackCitedbycount);

//setting search query
xsl:text disable-output-escaping=yesvar strQuery = 
DOI(/xsl:textxsl:value-of 
select=./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim/dim:field[@element='identifier' 
and @qualifier='doi']/xsl:text disable-output-escaping=yes);


var varSearchObj = new searchObj();
varSearchObj.setSearch(strQuery);
varSearchObj.setNumResults('1');

//launching search
try {
sciverse.runSearch(varSearchObj);
} catch(err) {}
};
runAfterJSImports.add(runSearch);
/xsl:text
/script

And then paste the code in *bold* where you want the scopus citation 
count to appear. In our case, I put it under the citation field (I 
assumed that you already knew how to customize what fields to display in 
simple item view):


!-- Citation row --
xsl:when test=$clause = 9 and (dim:field[@element='identifier' and 
@qualifier='citation' and descendant::text()])
*div id=citecounts-scopus class=simple-item-view-other citecounts 
hidden#160;/div*

*
*
*
*
Hoped this helps,

P.S. Please take note that I have created a custom tag, 
dc.identifier.doi that holds the value for the item's DOI (without the 
http://dx.doi.org/). Feel free to 'view page source' items in our 
repository that have DOIs for example: 
http://repository.seafdec.org.ph/handle/10862/1737 for your reference.


Regards,
Elvi
--

*M. Àngels Pulido Medina*
Biblioteca - Servei de Recursos Informàtics
Logo UVic
*Universitat de Vic*
C. Sagrada Família, 7
08500 Vic
Tel. 938 816 170 (8333)
m.angels.pul

[Dspace-tech] {Disarmed} OAI: sets through metadata?

2014-01-30 Thread M. Àngels Pulido

  
  
 
Hello,

I work with Dspace 1.7.2.

  In my repository
I have some items that are closed access. This means that they have the
metadata dc.rights.accesRights
= info: eu-repo/semantics/closedAccess.
The institution
  that collect our data through OAI-ORE (harvesting) just needs collect our open access
items (dc.rights.accesRights
  = info: eu-repo/semantics/openAccess).

  
  


  What changes should I make in
  my OAI settings to ensure that these items
  (closedAccess) will not be exported by my OAI ? Is this possible? How I can do this? What files do
  I need to
modify?


  I've been reading about this topic and I suppose the solution is:
"Offer sets through metadata"

but

it's difficult for me to
know how to begin work on this problem...


  Can someone help me?


Thanks in advance.
   

  
-- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat
  
  www.uvic.cat
  

  

--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
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] {Disarmed} OAI: sets through metadata?

2014-01-30 Thread M. Àngels Pulido

  
  

  Hello Helix and Emilio,

Thank you both for the reply. 
  
I have only one question. This addon also works if
  this
institution is harvesting our data with OAI-ORE, not OAI-PMH? 
  
I have read now this:
https://jira.duraspace.org/i#browse/DS-829
  
  

  and specifies
OAI-PMH
  


  

  

  You advise me
  to try?

Thanks again.
  


  


  El 30/01/2014 13:22, helix84 escribió:


  Well, the OAI-Extended addon is the predecessor of the new OAI in
DSpace 3.0. Same concepts, different implementation.


Regards,
~~helix84

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




-- 
  
M. Àngels Pulido Medina
  Biblioteca - Servei de Recursos
Informàtics
  
  Universitat de Vic
  C. Sagrada Família, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
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] {Disarmed} OAI: sets through metadata?

2014-01-30 Thread M. Àngels Pulido

  
  

Thank you very much. I'll try it


  El 30/01/2014 13:59, helix84 escribió:


  On Thu, Jan 30, 2014 at 1:42 PM, "M. Àngels Pulido"
m.angels.pul...@uvic.cat wrote:

  
I have only one question. This addon also works if this institution is harvesting our data with OAI-ORE, not OAI-PMH?

  
  
Yes, this is supported even out of the box:
http://dspace.uvic.cat:/oai/request?verb=ListMetadataFormats
http://dspace.uvic.cat:/xmlui/metadata/handle/10854/2217/ore.xml


Regards,
~~helix84

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





-- 
  
    M. Àngels Pulido Medina
  Biblioteca - Servei de Recursos
Informàtics
  
  Universitat de Vic
  C. Sagrada Família, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
WatchGuard Dimension instantly turns raw network data into actionable 
security intelligence. It gives you real-time visual feedback on key
security issues and trends.  Skip the complicated setup - simply import
a virtual appliance and go from zero to informed in seconds.
http://pubads.g.doubleclick.net/gampad/clk?id=123612991iu=/4140/ostg.clktrk___
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] bulkedit.ignore -on -export is not working

2014-01-24 Thread M. Àngels Pulido

  
  
Hi,

  I work with Dspace
1.7.2.
  


I have a problem when export a .csv file from my repository:


  1. The parameter bulkedit.ignore
-on -export is not working. I have this in my dspace.cfg :
  
bulkedit.ignore -on- export = dc.date.accessioned ,
dc.date.available , \
dc.date.updated , dc.description.provenance
  
  

  2.
But the .csv file extracted
displays the following fields:

 id,collection,dc.contributor,dc.contributor.author,dc.contributor.author[],dc.contributor.other[],dc.contributor[],dc.contributor[cat],dc.date.accessioned,dc.date.accessioned[],dc.date.available,dc.date.available[],dc.date.created,dc.date.created[],dc.date.issued,dc.date.issued[],dc.description.abstract[ca_ES],dc.description.abstract[cat],dc.description.abstract[eng],dc.description.abstract[spa],dc.description.provenance[en],dc.description.version[],dc.description[],dc.description[ca_ES],dc.embargo.terms[ca_ES],dc.format.extent[],dc.format.extent[ca],dc.format.extent[ca_ES],dc.format.extent[cat],dc.identifier.citation[],dc.identifier.citation[ca_ES],dc.identifier.doi,dc.identifier.!
 doi[],dc.
identifier.isbn,dc.identifier.isbn[],dc.identifier.issn,dc.identifier.issn[],dc.identifier.uri,dc.identifier.uri[],dc.language.iso[],dc.language.iso[ca],dc.language.iso[ca_ES],dc.language.iso[cat],dc.publisher[],dc.publisher[ca_ES],dc.relation.isformatof[],dc.relation.publisherversion[],dc.rights.accesRights[],dc.rights.accesRights[ca_ES],dc.rights.uri[],dc.rights.uri[ca_ES],dc.rights[],dc.rights[ca_ES],dc.subject.other[],dc.subject.other[ca_ES],dc.title[],dc.title[ca],dc.title[ca_ES],dc.title[cat],dc.type[],dc.type[ca],dc.type[ca_ES],dc.type[cat]



  
  

  Can
  someone
  help me
with this problem?


Thanks in advance.
  



-- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
CenturyLink Cloud: The Leader in Enterprise Cloud Services.
Learn Why More Businesses Are Choosing CenturyLink Cloud For
Critical Workloads, Development Environments  Everything In Between.
Get a Quote or Start a Free Trial Today. 
http://pubads.g.doubleclick.net/gampad/clk?id=119420431iu=/4140/ostg.clktrk___
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] Remove the box My account only from home

2013-06-20 Thread M. Àngels Pulido

  
  

  Hello
everbody,

  How I can remove the box "My Account" only
from home? because I need it in other contexts
  ...
  
I put this
code in
navigation.xsl but the box disappears from all contexts:
  
  xsl:template
match="dri:list[@id='aspect.viewArtifacts.Navigation.list.account']"
/xsl:template

Is it possible to achieve this? How? Can anyone help me?
  
I have DSpace 1.7.2 with Mirage theme

Thanks in advance.


  
  


  

-- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
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] Hide bitstreams with restricted access?

2013-06-18 Thread M. Àngels Pulido

  
  

  Yes
  Helix, to us this approach
  works because we want to hide the bitstream
  that is a
  .pdf where the user put the
permission to publish their work: article, book, etc.  in our repository and therefore, this document contains
  personal data.
  So we are
interested that are not indexed in the search engines
  and is a
  document that
  can only access
  the
administrators.
  
I'm not sure if this is what
Jessica
hopes ...
  
  Regards.



  

  
  



  

El 18/06/2013 11:44, helix84 escribió:


  On Tue, Jun 18, 2013 at 11:13 AM, "M. Àngels Pulido"
m.angels.pul...@uvic.cat wrote:

  
If you select "Metadata files", when you "Upload a new bitstream", this
bitstream is not visible.

  
  
That's right, files in other bundles than ORIGINAL or CONTENT will be
hidden by default. The problems with this approach are:
1) They will not be displayed even to the user/group that has access to them
2) They will probably not be indexed and therefore not fulltext-searchable


Regards,
~~helix84

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



    
    
    -- 
  
M. Àngels Pulido Medina
  Biblioteca - Servei de Recursos
Informàtics
  
  Universitat de Vic
  C. Sagrada Família, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
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] Hide 4 collections in collection-list.xsl

2013-03-13 Thread M. Àngels Pulido

  
  
Hello Helix and Hugh,

  
Thank you very much for your help and for your
  solutions. Everything works fine now: 

  the four
  collections
  are not
displayed:


http://dspace.uvic.cat:/xmlui/handle/10854/2
  


Cheers.


El 13/03/2013 8:45, helix84 escribió:

I see, you probably had that template already
  customized and this reverted your changes. Do yo still have the
  old template? It might be enough to comment out this new one. Then
  the only thing you really need to add is the condition.
  

  
  In case it's in another template, find the file name of one
of those images in all the xsl files and send the template. But
it may also contain an id and the image can be defined in css.


Regards,
~~helix84

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

  


-- 
  
M. Àngels Pulido Medina
  Biblioteca - Servei de Recursos
Informàtics
  
  Universitat de Vic
  C. Sagrada Família, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar___
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] Hide 4 collections in collection-list.xsl

2013-03-12 Thread M. Àngels Pulido

  
  
Hello everybody,

  
I work with
Dspace
1.7.2 and Mirage theme.
I need to hide 4 collections
  that have the following
names and handles:

  X - Formulari -
Llibres
(http://dspace.uvic.cat:/xmlui/handle/10854/1945)
X - Formulari - Captols de llibres
(http://dspace.uvic.cat:/xmlui/handle/10854/1946)
X - Formulari - Article de revista
(http://dspace.uvic.cat:/xmlui/handle/10854/2040)
X - Formulari - Conferncies, Proceedings, Psters
de Congressos no publicats
http://dspace.uvic.cat:/xmlui/handle/10854/2041)

  

  In the file
collection-list.xsl, I created
  this
code 
  that
follows by which I have succeeded
in eliminating the title, "[",
  number of items, etc.

Please
  see:
http://dspace.uvic.cat:/xmlui/handle/10854/2
 
But... I do not know
  how
to removethe
"points" () from the list
only for these four collections.
  

  Can anyone help me, please ?
  

Thanks in advance.

  Sorry for my
inexperience in programming
  xsl :-(
  

  

  



 xsl:template name="collectionSummaryList-DIM"
 xsl:variable name="data"
select="./mets:dmdSec/mets:mdWrap/mets:xmlData/dim:dim"/
 a href="" 
 xsl:choose 
 xsl:when
test="contains($data/dim:field[@element='title'],'Formulari')"
 
 xsl:text
/xsl:text 
 /xsl:when
 
 
 xsl:otherwise
 xsl:value-of
select="$data/dim:field[@element='title'][1]"/ 
 /xsl:otherwise
 /xsl:choose 
 /a
 
   
  
xsl:choose 
 xsl:when
test="($data/dim:field[@element='format'][@qualifier='extent'])=
0"
 xsl:text /xsl:text
 /xsl:when
 
 
 xsl:otherwise
 xsl:text [/xsl:text
xsl:value-of
select="$data/dim:field[@element='format'][@qualifier='extent'][1]"/

xsl:text]/xsl:text
 /xsl:otherwise
 /xsl:choose
 /xsl:template
-- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester  
Wave(TM): Endpoint Security, Q1 2013 and remains a good choice in the  
endpoint security space. For insight on selecting the right partner to 
tackle endpoint security challenges, access the full report. 
http://p.sf.net/sfu/symantec-dev2dev___
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] Hide box My account in the home page

2013-02-07 Thread M. Àngels Pulido

  
  

  Hello everybody,
  
I work with DSpace 1.7.2 XMLUI Mirage theme

We need
our users
  do not have
  any link to authenticate
  or register
  in the home page
  of our repository. 
  
  

  They should only be
  able
to authenticate when they click in a
restricted
  document. 
  


For now, I could hide the link to log in to in the
  header in the file page-structure.xsl butI do not know how to hide the box "My Account" in the home page.
  
It is possible
  to do this in
  DSpace? 

Can anybody help me how to?

Thanks in advance !!!
  


  -- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
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] LDAP authentication in v3

2013-02-06 Thread M. Àngels Pulido

  
  
Hello Dale,
I recently had a similar problem with ldap hierarchical. But we have
Dspace 1.7.2. I do not know the version 3.0 but... we fixed the
problem filling this parameter in dspace.cfg:
ldap.netid_email_domain = @ uvic.cat (your domain)
But do not know if this parameter is also in version 3.0
I hope I can help !

El 07/02/2013 2:34, Poulter, Dale
  escribi:


  After doing some additional research and testing it appears that a missing "/" at the end of the provider was causing the problem.  What is so perplexing is that it was still authenticating but just not bringing in the data.  

Thanks for the help.

-Original Message-
From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of helix84
Sent: Wednesday, February 06, 2013 3:16 PM
To: Poulter, Dale
Cc: Dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] LDAP authentication in v3

I assume you do have search.user/password set.

Nothing in your config strikes me as odd. So if you look at the eperson table on the row that was just added, what are the values of the individual fields?


Regards,
~~helix84

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

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb
___
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




-- 
  
M. ngels Pulido Medina
  Biblioteca - Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
Free Next-Gen Firewall Hardware Offer
Buy your Sophos next-gen firewall before the end March 2013 
and get the hardware for free! Learn more.
http://p.sf.net/sfu/sophos-d2d-feb___
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] Discovery search results displaying in opposite order

2012-12-20 Thread M. Àngels Pulido

  
  

  Hello
  everybody:
  I'm working with
  DSpace 1.7.2 with XMLUI.

  By default, the search results sorts the records
  in ascending order
  when you search. So first you see the records that have less relevance. I am interested to order the records in descending order to
  see first records that are most relevant. 

I performed all the steps explained here:

  http://dspace.2283337.n4.nabble.com/Change-default-sorting-in-search-results-td3637278.html

  I have
  been recompiled
  and completely reindex but nothing has
changed ...
  
Can anybody help me?
  thanks.



-- 
  
M. ngels Pulido Medina
  Biblioteca. Servei de Recursos
Informtics
  
  Universitat de Vic
  C. Sagrada Famlia, 7
  08500 Vic
  Tel. 938 816 170 (8333)
  m.angels.pul...@uvic.cat 
  www.uvic.cat
  

  

--
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d___
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