Re: [Dspace-tech] xmlui in dspace 1.8.2 not working

2012-10-10 Thread Kai Bjørnenak
I found the error, I didn't have a a xmlui-context path in ../tomcat/conf/server.xml, after I put in: !-- DEFINE A CONTEXT PATH FOR DSpace XMLUI User Interface -- Context path=/xmlui docBase=/usr/local/dspace/webapps/xmlui debug=99 reloadable=true

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
helix84, Thank you for your patience with me on this. I have made changes to the xsl when I can find the place to make the change. But in genera, my problem is finding the place to put my change. For example, every time I need to change something for the item display, I got to item-view.xsl,

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
Hi Jose, I assume you know what is DRI and how to view it for each page (speak up if you don't). There are basically two ways how you can add/change things in XSLT: 1) you find the content you want to replace or add something before/after it 2) you find something specific in DRI and create a

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
If you tell me where exactly you want your label element to appear, I can walk you through it by example. Regards, ~~helix84 -- Don't let slow site performance ruin your business. Deploy New Relic APM Deploy New Relic

[Dspace-tech] Batch import error

2012-10-10 Thread Steve Kiarie
Greetings I have created a Dublin Core file and a contents file with the following UCU10020100216B.pdf statement and put them inside one folder together with a pdf file name UCU10020100216B.pdf and run the batch import command and i get the following error root@debian:/opt/dspace/dspace/bin#

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
OK, That would be great. I want to REPLACE p class=ds-paragraph Sort by: select xmlns:i18n= http://apache.org/cocoon/i18n/2.1; xmlns=http://www.w3.org/1999/xhtml; id=aspect_artifactbrowser_ConfigurableBrowse_field_sort_by class=ds-select-field name=sort_by WITH label for=sort_by

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
Which page is that? Can you send me the relevant DRI fragment? You will find it by searching for something like xmlui.ArtifactBrowser.ConfigurableBrowse or sort_by. Seems you have Discovery disabled, right (judging from the ConfigurableBrowse aspect)? I have it enabled everywhere so I can't

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
Here is the DRI fragment: p - Sort by: - field id=aspect.artifactbrowser.ConfigurableBrowse.field.sort_by n=sort_by type=select params/ option returnValue=2issue date/option option returnValue=1title/option option returnValue=3deposit date/option value type=option option=1/ /field Order: -

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
I haven't tested it, but try this: Add this new template to any .xsl stylesheet in your theme (I use the themename.xsl file): xsl:template name=add_label-sort_by match=dri:field[@id='aspect.artifactbrowser.ConfigurableBrowse.field.sort_by'] label for=\sort_by\ style=\display:none\Sort

[Dspace-tech] Help one 1.8.2 Items/books import

2012-10-10 Thread girma tememe
Hello Every one My Name is Girma From University of Gondar, Ethiopia and we are New for DSpace and we already configure DSpace 1.8.2 with oracle database for our Digital library. We can add items/Books one by one but we need to import all the books using Excel Sheet and we try to follow the

[Dspace-tech] metadata wasnt transferred successfully

2012-10-10 Thread Priya S
Hi, I am using Dryad version. using Datacite metadata Store to mint DOIs register associated metadata. Noticed in datacite.org that metadata files are missing for some of the DOIs. The metadata are entered into the system the submission happened successfully. So I don't understand why the

Re: [Dspace-tech] Problem with Handle

2012-10-10 Thread Carlos Walter Blandon Alvarez
Hi helix84.I killed running instance. I checked init.d scripts and handle isn't launched.With or without handle launched we don't have URI access: http://hdl.handle.net/10784/73Any other suggestions?Regards,-- Walter BlandónAnalista TécnicoCentro Cultural Biblioteca Luis Echavarría VillegasTel:

Re: [Dspace-tech] Problem with Handle

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 5:51 PM, Carlos Walter Blandon Alvarez cblan...@eafit.edu.co wrote: I killed running instance. I checked init.d scripts and handle isn't launched. With or without handle launched we don't have URI access: http://hdl.handle.net/10784/73 I see, so I probably

Re: [Dspace-tech] Help one 1.8.2 Items/books import

2012-10-10 Thread helix84
Hi Girma, this excellent presentation by Maureen Walsh will explain everything about this particular method of import. https://kb.osu.edu/dspace/bitstream/handle/1811/47279/WalshMaureenP_SPARC-DSUG_2010-slides.pdf Just to add a few notes of my own: * the spreadsheet needs to have a specific

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
This worked with a few exception. (1)I had to get rid of xsl:apply-templates / because it was putting extra stuff by the label. (2) It complaint about for - I think it need to make a it an attribute using xslt. (3) I have one more question. How did you come up with the path

Re: [Dspace-tech] metadata wasnt transferred successfully

2012-10-10 Thread Priya S
Hi Ryan, Thanks very much for the reply. Please let me know once you have it working fine. Thanks regards Priya On Wed, Oct 10, 2012 at 6:10 PM, Ryan Scherle rsche...@nescent.org wrote: Hi Priya, The Dryad codebase has never been 100% functional regarding DOI metadata registration. We

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
Actually, I just noticed, it's not quite showing the select widget, it shows the selection choices but not the widget. Going to keep looking. Very close now. On Wed, Oct 10, 2012 at 12:15 PM, Jose Blanco blan...@umich.edu wrote: This worked with a few exception. (1)I had to get rid of

Re: [Dspace-tech] Help one 1.8.2 Items/books import

2012-10-10 Thread emilio lorenzo
Hi Girma The tool that helix refers to is called BME, Batch metadata editing. I think the best aproach to figure out the tool characteristics (apart the important notes from Maureen Walsh presentation and helix comments) is going through a complete process of export-edit-import items. Just

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 6:15 PM, Jose Blanco blan...@umich.edu wrote: This worked with a few exception. (1)I had to get rid of xsl:apply-templates / because it was putting extra stuff by the label. From what I see from the DRI fragment, it should be generating a the select tag you want

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
helix, after experimenting with this a bit more, I see that if I leave out the apply-template, the label completely replaces the select, but if I leave it in, the select widget is removed and the options are output - on the browser it looks like this: Sort by: Sort By: deposit date issue date

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 7:19 PM, Jose Blanco blan...@umich.edu wrote: helix, after experimenting with this a bit more, I see that if I leave out the apply-template, the label completely replaces the select, but if I leave it in, the select widget is removed and the options are output Yes, just

Re: [Dspace-tech] Help one 1.8.2 Items/books import

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 6:55 PM, emilio lorenzo elore...@arvo.es wrote: I think the best aproach to figure out the tool characteristics (apart the important notes from Maureen Walsh presentation and helix comments) is going through a complete process of export-edit-import items. Yes, that's a

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
Ok, by adding the select tags where you indicate I get what I want. But I don't quite understand why. Why would another match on the same tag be allowed to execute. I don't completely know what this: xsl:apply-templates / does. It seems like it says, look for any other matches like the one I

Re: [Dspace-tech] metadata wasnt transferred successfully

2012-10-10 Thread Ryan Scherle
Hi Priya, The Dryad codebase has never been 100% functional regarding DOI metadata registration. We went through a few iterations and we eventually had to rewrite a large piece, because DataCite's field/value system couldn't contain all of the metadata we wanted to register. We now submit

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread helix84
Jose, those are very good questions. You may need to read the answer more than once before it starts making sense. On Wed, Oct 10, 2012 at 7:46 PM, Jose Blanco blan...@umich.edu wrote: Ok, by adding the select tags where you indicate I get what I want. But I don't quite understand why. Why

[Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread George S Kozak
Hi... I was asked to turn on the Google Scholar Metadata Mappings feature in our DSpace 1.8.2 setup (I am using JSPUI). I set the flag: google-metadata.enable = true The DSpace documentation, then states: Once the feature is enabled, the mapping is configured by a separate configuration file

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 8:20 PM, George S Kozak g...@cornell.edu wrote: The DSpace documentation, then states: “Once the feature is enabled, the mapping is configured by a separate configuration file located here: ${dspace.dir}/config/google-metadata.properties” Hi George, that was correct

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread George S Kozak
Helix: Got it! Thanks! George Kozak Digital Library Specialist Cornell University Library Information Technologies (CUL-IT) 501 Olin Library Cornell University Ithaca, NY 14853 607-255-8924 -Original Message- From: ivan.ma...@gmail.com [mailto:ivan.ma...@gmail.com] On Behalf Of

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread George S Kozak
Hi... One additional question: So I have the flag set; I have the google-metdata.properties file defined; I have tomcat restarted, but I don't see the meta tags in the HTML headers for the item fields. Is there something else that I'm missing? Do I need to do a maven rebuild or an ant

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread helix84
On Wed, Oct 10, 2012 at 8:44 PM, George S Kozak g...@cornell.edu wrote: One additional question: So I have the flag set; I have the google-metdata.properties file defined; I have tomcat restarted, but I don't see the meta tags in the HTML headers for the item fields. Is there something

[Dspace-tech] Announcing The DSpace 3.0 Test-A-Thon!

2012-10-10 Thread Sands Alden Fish
DSpace Development never stops! DSpace 3.0https://wiki.duraspace.org/display/DSPACE/DSpace+Release+3.0+Notes is almost here, and with it arrives numerous new features, improvements, bug-fixes, changes, etc. We ask that you take a few minutes of your time in these coming weeks to help us fully

Re: [Dspace-tech] from aspect to html

2012-10-10 Thread Jose Blanco
Thank you! This is very good info. I will print it out and try to hammer it in. XSL at fist glance seems so easy, but it can be quite complicated. I plan t do a more advanced tutorial. The one I did last time was too easy. Thank you very much, you really know your stuff!!! On Wed, Oct 10, 2012

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread George S Kozak
Helix: Yes, I updated [dspace]/config/crosswalks/google-metadata.properties. I guess I will do another restart and see what I get. George Kozak Digital Library Specialist Cornell University Library Information Technologies (CUL-IT) 501 Olin Library Cornell University Ithaca, NY 14853

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread helix84
That's strange. It sounds like you did everything that was necessary. I checked the source code for JSPUI. I do not see any errors in the log files. Any ideas, anyone? Exactly, if the google-metadata.config wasn't loaded, you'd see an ERROR message:

Re: [Dspace-tech] Problem with Handle

2012-10-10 Thread Carlos Walter Blandon Alvarez
That's correct helix84. We want to access our repository through Handle.Regards,Walter BlandónAnalista TécnicoCentro Cultural Biblioteca Luis Echavarría VillegasTel: (57) (4) 2619500, extensión 9365E-mail: cblan...@eafit.edu.coUniversidad EAFIT, Medellín, ColombiaEl 10/10/12, helix84

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread George S Kozak
Helix (et al.): I think I figured out my problem! If I go to my xmlui interface (which I am not officially using), the metadata tags DO appear in the HTML headers. So, it appears that the JSPUI is not displaying the google metadata tags but the XMLUI is. We made a bunch of changes to the

Re: [Dspace-tech] Question about Google Scholar Metadata Mappings

2012-10-10 Thread helix84
Yeah, your modifications again! I'll remember to blame all issues people come here with on their modifications first, I'll have a much higher FCR (First Call Resolution). Just kidding :) Regards, ~~helix84 -- Don't let

[Dspace-tech] dspace feed into SSRN?

2012-10-10 Thread Stuart Yeates
We have a pair of feeds from http://researcharchive.vuw.ac.nz/ into RePEc ( http://ideas.repec.org/s/vuw/vuwecf.html and http://ideas.repec.org/s/vuw/vuwcpf.html ). I have been wondering whether it's possible to get similar feeds set up for SSRN http://www.ssrn.com/ Has anyone tried this