[Dspace-tech] Manakin, collection name

2015-02-26 Thread Anja Radoicic

Dear all,

I was hoping you could help me with something. We are trying to change 
the item view page in our DSpace. We have been rearranging the page by 
changing the order of dc metadata fields and it worked wonderfully. But 
now we have come to a moment where we need to use the name of the 
collection and sometimes even the name of the subcommunity (that the 
item belongs to). Is there a way to access the appropriate collection 
name from XSL page? I see this name that I need in head trail 
(breadcrumbs) but that component is being made in some of the aspects. I 
also see the name of the collection in the bottom part (this item 
appears in the following collection). The code looks something like this:


xsl:variable name=data 
select=./mets:dmdSec/mets:mdWrap/mets:xmlData/dim:dim/

a href={@OBJID}
xsl:choose
xsl:when 
test=string-length($data/dim:field[@element='title'][1]) gt; 0
xsl:value-of 
select=$data/dim:field[@element='title'][1]/

/xsl:when
xsl:otherwise
i18n:textxmlui.dri2xhtml.METS-1.0.no-title/i18n:text
/xsl:otherwise
/xsl:choose
/a

When I try to use that code snippet in item view page it doesn't show 
the collection name. It says Untitled. Is there something I need to 
change in order for this to work?


Thanks ahead,
Anja



smime.p7s
Description: S/MIME Cryptographic Signature
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
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] Manakin, collection name

2015-02-26 Thread Anja Radoicic

Hi Anja :)

I think you are right. Can you please give me an example how to access 
trail part from item-view.xsl. Until now I have only been accessing 
metadata fields and it was through dim:field. For example, I was using: 
xsl:value-of 
select=dim:field[@element='description'][@qualifier='tableofcontents']/child::node() 
/. Is there a way to access trail element in similar fashion?


Thank you very much ahead,
Anja

On 2/26/2015 12:23 PM, Anja Le Blanc wrote:

Hi Anja

If you go to your item page and add '?XML'
(http://[URL]/xmlui/[handle]?XML) to the URL you can see which data you
can access. The content of trail... might be what you are after.

Best regards,
Anja






smime.p7s
Description: S/MIME Cryptographic Signature
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
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] Manakin, collection name

2015-02-26 Thread Anja Le Blanc
Hi Anja

I don't know a lot about XLST ...

I think the path to the data should be something like

/dri:document/dri:meta/dri:pageMeta/dri:trail

But I am sure there are other people on this list who can help you further.

Best regards
Anja

-- 
Anja Le Blanc
Software Developer
University of Manchester Library

On 26/02/2015 11:42, Anja Radoicic wrote:
 Hi Anja :)

 I think you are right. Can you please give me an example how to access
 trail part from item-view.xsl. Until now I have only been accessing
 metadata fields and it was through dim:field. For example, I was using:
 xsl:value-of
 select=dim:field[@element='description'][@qualifier='tableofcontents']/child::node()
 /. Is there a way to access trail element in similar fashion?

 Thank you very much ahead,
 Anja

 On 2/26/2015 12:23 PM, Anja Le Blanc wrote:
 Hi Anja

 If you go to your item page and add '?XML'
 (http://[URL]/xmlui/[handle]?XML) to the URL you can see which data you
 can access. The content of trail... might be what you are after.

 Best regards,
 Anja





 --
 Dive into the World of Parallel Programming The Go Parallel Website, sponsored
 by Intel and developed in partnership with Slashdot Media, is your hub for all
 things parallel software development, from weekly thought leadership blogs to
 news, videos, case studies, tutorials and more. Take a look and join the
 conversation now. http://goparallel.sourceforge.net/



 ___
 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


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
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] Manakin, collection name

2015-02-26 Thread helix84
Hi Anja,

save it in a variable outside any template, then you can use it even in any
dim template.

xsl:variable name='trail'xsl:copy-of
select=/dri:document/dri:meta/dri:pageMeta/dri:trail//xsl:variable



Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
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] Manakin, collection name

2015-02-26 Thread Anja Radoicic


Hi helix84 :)

This helps me save the trail variable. Now I have to somehow acces the 
fourth or fifth element of the trail. Is there a way to do that?


Also, this is just a workaround to access the collection name. Is there 
another way that you would suggest to get to a collection name or 
community name from xsl file?


We are new to DSpace so your help is very much appreciated, thanks once 
more,

Anja

On 2/26/2015 12:59 PM, helix84 wrote:

Hi Anja,

save it in a variable outside any template, then you can use it even 
in any dim template.


xsl:variable  name='trail'xsl:copy-of  
select=/dri:document/dri:meta/dri:pageMeta/dri:trail//xsl:variable


Regards,
~~helix84

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





smime.p7s
Description: S/MIME Cryptographic Signature
--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
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] Manakin, collection name

2015-02-26 Thread Andrea Schweer

  
  
Hi,

On 27/02/15 01:16, Anja Radoicic wrote:


  
  This helps me save the trail variable. Now I have to somehow acces
  the fourth or fifth element of the trail. Is there a way to do
  that? 
  
  Also, this is just a workaround to access the collection name. Is
  there another way that you would suggest to get to a collection
  name or community name from xsl file?


There is, it's just one more step. Look at this item here, on the
demo server: http://demo.dspace.org/xmlui/handle/10673/93
Add ?XML to look at the XML, like you did for the trail:
http://demo.dspace.org/xmlui/handle/10673/93?XML
Then look at this section here:

referenceSet
  id="aspect.artifactbrowser.ItemViewer.referenceSet.collection-viewer"
  type="summaryView" n="collection-viewer"
      reference repositoryID="10673" type="DSpace Item"
  url=""
          referenceSet type="itemPageSummaryList"
  rend="hierarchy"
              reference repositoryID="10673" type="DSpace
  Collection" url=""/
          /referenceSet
      /reference
  /referenceSet

The hierarchy tells you which collection this item is in. It gives
you the link to the collection's mets.xml. So have a look at that
one http://demo.dspace.org/xmlui//metadata/handle/10673/22/mets.xml
and you will see the title here:
dim:field mdschema="dc" element="title"The scramble for and
Partition of Africa/dim:field

Now, to put this all together -- in the same spot where you are
assigning the trail to a variable, instead do this:
obtain the URL of the collection's mets.xml file from the snippet
above
load that mets file via the XSL document function
(http://www.w3schools.com/xsl/func_document.asp)
from the loaded document, select the title metadata (and/or whatever
else you want, eg identifier for the link).

then assign _that_ to a variable and pass it into item-view.xsl

I hope this makes sense, I don't have time to go into more detail
right now, sorry.

cheers,
Andrea

-- 
Dr Andrea Schweer
IRR Technical Specialist, ITS Information Systems
The University of Waikato, Hamilton, New Zealand
  


--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/___
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] Manakin Browse List

2012-08-07 Thread helix84
Hi Shaun,

I believe you're getting the old pages from Cocoon cache (cached
before you changed the configuration). Try this:

https://wiki.duraspace.org/display/DSPACE/TechnicalFaq#TechnicalFaq-ClearingCocoon%28XMLUI%29cache

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] Manakin customization

2011-09-16 Thread Miguel Pizarro
Dear Dspace team:

 

Anyone know how to remove and rename fields in the manakin interface?

 

My Dspace version is 1.6.2

 

Example 1:

 




How remove or hide link?

  
Remove or hide link

 

 

 

 




How rename title?

  
Example 2:

 




How remove field?

  


 

 

 

Thanks for your help.

 

 

Miguel Pizarro

Soporte Tecnológico

Alerta al Conocimiento

Fono: 56 (2) 233 79 08

Santiago de Chile

image009.pngimage010.pngimage011.pngimage012.pngimage013.pngimage014.pngimage015.pngimage016.png--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin customization

2011-09-16 Thread Alvaro Sandoval


  
  
Hi Miguel:

In order to remove or hide a link, you need to custom your manakin
theme. Or if you prefer, create a new one:
https://wiki.duraspace.org/display/DSPACE/Create+a+new+theme+%28Manakin%29

If you need to change a label, you can do it editing this file:

[dspace]/webapps/xmlui/i18n/messages_es.xml

Regards,
Alvaro Sandoval


El 16/09/11 10:56, Miguel Pizarro escribi:

  
  
  
  
  
Dear Dspace team:

Anyone
  know how
  to remove and rename
fields in the manakin
interface?

My Dspace version is
1.6.2

Example 1:



  

  
  

  

  
How
remove or hide link?
  
  
  

  


  

  






  

  
  

  

  
How rename title?
  
  
  

  


  

  Example 2:


  

  
  

  

  
How remove field?
  
  
  

  


  

  



Thanks
  for your help.


Miguel Pizarro
Soporte Tecnolgico
Alerta al Conocimiento
Fono: 56 (2) 233 79 08
Santiago de Chile
  
  

--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2
  

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




-- 
lvaro Sandoval Pizarro

BCN, Biblioteca del Congreso Nacional de Chile
Ingeniera y Desarrollo
Fono (5632) 226 3981

http://www.bcn.cl/

  

--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin: expanding and collapsing interface code package?

2010-08-05 Thread Deng, Sai
Hi, everybody,

Thanks for the help from this community, we started to customize our Manakin 
interface for DSpace 1.6.2. Now we've only done with the header, footer, some 
minor structural changes, modifying and applying local themes and adding the 
image gallery theme by following various documentations.  We still would like 
to implement Add expanding and collapsing interface to community-list 
hierarchy (Manakin) as shown at : 
https://wiki.duraspace.org/pages/viewpage.action?pageId=19006695 Who would like 
to share the menus.js file or a file package for easier implementation of this 
feature? Thank you.

Your help is very much appreciated!
Sophie


--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: expanding and collapsing interface code package?

2010-08-05 Thread Sands Alden Fish
Perhaps jQuery UI's Accordian.  v1.2 of jQuery is included in the Kubrick theme 
but if developing new functionality with it, the newest should be included, 
which is 1.4.2:

  http://jquery.com/
  http://docs.jquery.com/UI/Accordion


--
sands fish
Software Engineer
MIT Libraries
Technology Research  Development
sa...@mit.edumailto:sa...@mit.edu
E25-131




On Aug 5, 2010, at 10:51 AM, Deng, Sai wrote:

Hi, everybody,

Thanks for the help from this community, we started to customize our Manakin 
interface for DSpace 1.6.2. Now we’ve only done with the header, footer, some 
minor structural changes, modifying and applying local themes and adding the 
image gallery theme by following various documentations.  We still would like 
to implement “Add expanding and collapsing interface to community-list 
hierarchy (Manakin)” as shown at 
:https://wiki.duraspace.org/pages/viewpage.action?pageId=19006695 Who would 
like to share the menus.js file or a file package for easier implementation of 
this feature? Thank you.

Your help is very much appreciated!
Sophie


ATT1..cATT2..c

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share
of $1 Million in cash or HP Products. Visit us here for more details:
http://p.sf.net/sfu/dev2dev-palm___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-30 Thread Deng, Sai
Hi Hilton,
Thanks for the link (http://ir.sun.ac.za/wiki/index.php/Asset_Presentation). 
Nice documentation and examples, more detailed than what we can find in the 
DSpace 1.6.2 official one.

We followed and compared several documentations and made our initial changes. 
There is still one thing that is not working: our news doesn't show up although 
we modified [DSpace-source]/dspace/config/news-xmlui.xml. I don't understand 
what's said in the official documentation: it is localized by inserting 'i18n' 
callouts into the text areas. I did use xref tag to construct links (don't 
know much about DRI schema). What's missing here? Why the system still shows 
the default news Welcome to the new Manakin interface...

Thank you for any help!

Sophie

P.S. Thanks Hardy and others who provided help too!

Date: Wed, 28 Jul 2010 09:59:43 +0200
From: Hilton Gibson hilton.gib...@gmail.com
Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
To: dspace-tech@lists.sourceforge.net
Message-ID: 4c4fe36f.8070...@gmail.com
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Also try: http://ir.sun.ac.za/wiki/index.php/Asset_Presentation


On 27/07/2010 23:42, Pottinger, Hardy J. wrote:
 That would work as well, although that is code that is very likely in use by 
 tomcat. But you can certainly copy from there.

 --Hardy


 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Tuesday, July 27, 2010 4:22 PM
 To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 Thank you, Hardy!
 We installed the release version. We found that our templates are
 located under /dspace/webapps/xmlui/themes (different from the directory
 you provided). We'll start from there. This should be all right, right?

 Sophie


 
 From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
 Sent: Tuesday, July 27, 2010 4:05 PM
 To: Deng, Sai; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 It sounds to me like you're actually using the release version, not the
 source version. For the release versions, you put your themes under:

 dspace/dspace/modules/xmlui/src/main/webapp/themes/

 Wheredspace  is wherever you have your working directory for dspace
 (not where you're publishing it, which is generally /dspace).

 The sample themes for the release are easiest to find after you've run a
 mvn build successfully (someone please correct me if there's a better
 way to find them). You can find the example code in the target folder:

 dspace/dspace/target/dspace-1.6.2-build.dir/webapps/xmlui/themes/

 (note that the specific folder will vary, based on what version you're
 building).

 There's also a pretty good presentation by Tim Donohue, written for
 DSpace 1.5, but applicable to 1.6, which covers the new way of doing
 things that came along with the switch to the mvn build tool. Here's one
 copy of it, there are a few other versions:

 http://www.slideshare.net/tdonohue/making-dspace-15-your-own-
 customizations-via-overlays

 My advice, if you're just starting out, you may want to switch to using
 the source version... Down the road, if you run into issues and come to
 the dspace-tech list for help, many times people will give you paths to
 files based on their own installations, and many people here use the
 source version. So, you'll save yourself some headaches if you just go
 with the source install.

 I'm in the process of migrating from a 1.5.1 release install, to a 1.6.2
 source install, for this reason. Which is why I have the paths at the
 tips of my fingers. :-)

 --Hardy

  
 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Tuesday, July 27, 2010 3:40 PM
 To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 Hardy,
 Thanks for the reply!
 We don't have dspace-xmlui directory under dspace-source, is there
 anything wrong with the installation? Can I copy the dspace-xmlui

 folder
  
 (or just the theme templates) from DSpace 1.5 (a test machine) to

 DSpace
  
 1.6.2?

 Sophie
 
 From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
 Sent: Tuesday, July 27, 2010 3:29 PM
 To: Deng, Sai; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 Hi, Sophie, if you're using the source distribution, the themes folder
 can be found here:

 dspace-1.6.2-src-release/dspace-xmlui/dspace-xmlui-
 webapp/src/main/webapp/themes

 There are a few example themes in there. I've had pretty good luck
 starting with just the template theme, but if you want to start

 closer
  
 to a finished product, the Kubrick and Reference themes are

 alternatives
  
 to the Classic theme that is configured by default.

 Lots of great advice can be found in the Manakin

Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-30 Thread Pottinger, Hardy J.
Hi, Sophie, you need to either manually copy (shh, you didn't hear that from 
me) the news-xmlui.xml file from your working folder to the live folder (under 
/dspace/config, typically), or you need to rebuild using mvn and then change to 
the target folder for that build and run ant init_configs.

--Hardy

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Friday, July 30, 2010 11:30 AM
 To: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 
 Hi Hilton,
 Thanks for the link
 (http://ir.sun.ac.za/wiki/index.php/Asset_Presentation). Nice
 documentation and examples, more detailed than what we can find in the
 DSpace 1.6.2 official one.
 
 We followed and compared several documentations and made our initial
 changes. There is still one thing that is not working: our news doesn't
 show up although we modified [DSpace-source]/dspace/config/news-
 xmlui.xml. I don't understand what's said in the official documentation:
 it is localized by inserting 'i18n' callouts into the text areas. I
 did use xref tag to construct links (don't know much about DRI schema).
 What's missing here? Why the system still shows the default news
 Welcome to the new Manakin interface...
 
 Thank you for any help!
 
 Sophie
 
 P.S. Thanks Hardy and others who provided help too!
 
 Date: Wed, 28 Jul 2010 09:59:43 +0200
 From: Hilton Gibson hilton.gib...@gmail.com
 Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 To: dspace-tech@lists.sourceforge.net
 Message-ID: 4c4fe36f.8070...@gmail.com
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 
 Also try: http://ir.sun.ac.za/wiki/index.php/Asset_Presentation
 
 
 On 27/07/2010 23:42, Pottinger, Hardy J. wrote:
  That would work as well, although that is code that is very likely in
 use by tomcat. But you can certainly copy from there.
 
  --Hardy
 
 
  -Original Message-
  From: Deng, Sai [mailto:sai.d...@wichita.edu]
  Sent: Tuesday, July 27, 2010 4:22 PM
  To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
  Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
  Thank you, Hardy!
  We installed the release version. We found that our templates are
  located under /dspace/webapps/xmlui/themes (different from the
 directory
  you provided). We'll start from there. This should be all right,
 right?
 
  Sophie
 
 
  
  From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
  Sent: Tuesday, July 27, 2010 4:05 PM
  To: Deng, Sai; dspace-tech@lists.sourceforge.net
  Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
  It sounds to me like you're actually using the release version, not
 the
  source version. For the release versions, you put your themes under:
 
  dspace/dspace/modules/xmlui/src/main/webapp/themes/
 
  Wheredspace  is wherever you have your working directory for dspace
  (not where you're publishing it, which is generally /dspace).
 
  The sample themes for the release are easiest to find after you've
 run a
  mvn build successfully (someone please correct me if there's a better
  way to find them). You can find the example code in the target
 folder:
 
  dspace/dspace/target/dspace-1.6.2-build.dir/webapps/xmlui/themes/
 
  (note that the specific folder will vary, based on what version
 you're
  building).
 
  There's also a pretty good presentation by Tim Donohue, written for
  DSpace 1.5, but applicable to 1.6, which covers the new way of doing
  things that came along with the switch to the mvn build tool. Here's
 one
  copy of it, there are a few other versions:
 
  http://www.slideshare.net/tdonohue/making-dspace-15-your-own-
  customizations-via-overlays
 
  My advice, if you're just starting out, you may want to switch to
 using
  the source version... Down the road, if you run into issues and come
 to
  the dspace-tech list for help, many times people will give you paths
 to
  files based on their own installations, and many people here use the
  source version. So, you'll save yourself some headaches if you just
 go
  with the source install.
 
  I'm in the process of migrating from a 1.5.1 release install, to a
 1.6.2
  source install, for this reason. Which is why I have the paths at the
  tips of my fingers. :-)
 
  --Hardy
 
 
  -Original Message-
  From: Deng, Sai [mailto:sai.d...@wichita.edu]
  Sent: Tuesday, July 27, 2010 3:40 PM
  To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
  Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
  Hardy,
  Thanks for the reply!
  We don't have dspace-xmlui directory under dspace-source, is there
  anything wrong with the installation? Can I copy the dspace-xmlui
 
  folder
 
  (or just the theme templates) from DSpace 1.5 (a test machine) to
 
  DSpace
 
  1.6.2?
 
  Sophie
  
  From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
  Sent: Tuesday, July 27, 2010 3:29 PM
  To: Deng, Sai; dspace

Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-30 Thread Deng, Sai
Thanks, Hardy! It works.
Another question: I followed some documentation to add a dri2xhtml folder under 
my local theme folder and copied /dri2xhtml/structual.xsl to this folder. Then 
I modified sitemap.xmap (under my local theme folder) from:
map:transform src=../dri2xhtml.xsl/
To
map:transform src=./dri2xhtml/structural.xsl/
But the structural change is not showing up. How do you normally do this?

Thanks very much,

Sophie
(Metadata Librarian)


-Original Message-
From: Pottinger, Hardy J. [mailto:pottinge...@umsystem.edu]
Sent: Friday, July 30, 2010 2:54 PM
To: Deng, Sai; dspace-tech@lists.sourceforge.net
Subject: RE: Manakin customization for 1.4.2 to 1.6.2

Hi, Sophie, you need to either manually copy (shh, you didn't hear that from 
me) the news-xmlui.xml file from your working folder to the live folder (under 
/dspace/config, typically), or you need to rebuild using mvn and then change to 
the target folder for that build and run ant init_configs.

--Hardy

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Friday, July 30, 2010 11:30 AM
 To: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

 Hi Hilton,
 Thanks for the link
 (http://ir.sun.ac.za/wiki/index.php/Asset_Presentation). Nice
 documentation and examples, more detailed than what we can find in the
 DSpace 1.6.2 official one.

 We followed and compared several documentations and made our initial
 changes. There is still one thing that is not working: our news doesn't
 show up although we modified [DSpace-source]/dspace/config/news-
 xmlui.xml. I don't understand what's said in the official documentation:
 it is localized by inserting 'i18n' callouts into the text areas. I
 did use xref tag to construct links (don't know much about DRI schema).
 What's missing here? Why the system still shows the default news
 Welcome to the new Manakin interface...

 Thank you for any help!

 Sophie

 P.S. Thanks Hardy and others who provided help too!

 Date: Wed, 28 Jul 2010 09:59:43 +0200
 From: Hilton Gibson hilton.gib...@gmail.com
 Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 To: dspace-tech@lists.sourceforge.net
 Message-ID: 4c4fe36f.8070...@gmail.com
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed

 Also try: http://ir.sun.ac.za/wiki/index.php/Asset_Presentation


 On 27/07/2010 23:42, Pottinger, Hardy J. wrote:
  That would work as well, although that is code that is very likely in
 use by tomcat. But you can certainly copy from there.
 
  --Hardy
 
 
  -Original Message-
  From: Deng, Sai [mailto:sai.d...@wichita.edu]
  Sent: Tuesday, July 27, 2010 4:22 PM
  To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
  Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
  Thank you, Hardy!
  We installed the release version. We found that our templates are
  located under /dspace/webapps/xmlui/themes (different from the
 directory
  you provided). We'll start from there. This should be all right,
 right?
 
  Sophie
 
 
  
  From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
  Sent: Tuesday, July 27, 2010 4:05 PM
  To: Deng, Sai; dspace-tech@lists.sourceforge.net
  Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
  It sounds to me like you're actually using the release version, not
 the
  source version. For the release versions, you put your themes under:
 
  dspace/dspace/modules/xmlui/src/main/webapp/themes/
 
  Wheredspace  is wherever you have your working directory for dspace
  (not where you're publishing it, which is generally /dspace).
 
  The sample themes for the release are easiest to find after you've
 run a
  mvn build successfully (someone please correct me if there's a better
  way to find them). You can find the example code in the target
 folder:
 
  dspace/dspace/target/dspace-1.6.2-build.dir/webapps/xmlui/themes/
 
  (note that the specific folder will vary, based on what version
 you're
  building).
 
  There's also a pretty good presentation by Tim Donohue, written for
  DSpace 1.5, but applicable to 1.6, which covers the new way of doing
  things that came along with the switch to the mvn build tool. Here's
 one
  copy of it, there are a few other versions:
 
  http://www.slideshare.net/tdonohue/making-dspace-15-your-own-
  customizations-via-overlays
 
  My advice, if you're just starting out, you may want to switch to
 using
  the source version... Down the road, if you run into issues and come
 to
  the dspace-tech list for help, many times people will give you paths
 to
  files based on their own installations, and many people here use the
  source version. So, you'll save yourself some headaches if you just
 go
  with the source install.
 
  I'm in the process of migrating from a 1.5.1 release install, to a
 1.6.2
  source install, for this reason. Which is why I have the paths at the
  tips of my fingers. :-)
 
  --Hardy

Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-30 Thread Pottinger, Hardy J.
I actually just copy pieces of the structural.xsl that I want to customize, to 
my theme's main xsl file (name of theme.xsl). That way I've got a record of 
exactly what I'm changing, and I don't have to keep maintaining the entire 
structural.xsl file.

Here's a good example: I copied the template for producing the styles for 
headers, and took out all the variable sizing code, so I could tame the CSS for 
headers. I instead just use the humble H tag and CSS.

xsl:template match=dri:div/dri:head priority=3
xsl:variable name=head_count select=count(ancestor::dri:div)/
xsl:element name=h{$head_count}
xsl:call-template name=standardAttributes
xsl:with-param name=classds-div-head/xsl:with-param
/xsl:call-template
xsl:apply-templates /
/xsl:element
/xsl:template

--Hardy

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Friday, July 30, 2010 3:27 PM
 To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 Thanks, Hardy! It works.
 Another question: I followed some documentation to add a dri2xhtml
 folder under my local theme folder and copied /dri2xhtml/structual.xsl
 to this folder. Then I modified sitemap.xmap (under my local theme
 folder) from:
 map:transform src=../dri2xhtml.xsl/
 To
 map:transform src=./dri2xhtml/structural.xsl/
 But the structural change is not showing up. How do you normally do
 this?

 Thanks very much,

 Sophie
 (Metadata Librarian)


 -Original Message-
 From: Pottinger, Hardy J. [mailto:pottinge...@umsystem.edu]
 Sent: Friday, July 30, 2010 2:54 PM
 To: Deng, Sai; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2

 Hi, Sophie, you need to either manually copy (shh, you didn't hear that
 from me) the news-xmlui.xml file from your working folder to the live
 folder (under /dspace/config, typically), or you need to rebuild using
 mvn and then change to the target folder for that build and run ant
 init_configs.

 --Hardy

  -Original Message-
  From: Deng, Sai [mailto:sai.d...@wichita.edu]
  Sent: Friday, July 30, 2010 11:30 AM
  To: dspace-tech@lists.sourceforge.net
  Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 
  Hi Hilton,
  Thanks for the link
  (http://ir.sun.ac.za/wiki/index.php/Asset_Presentation). Nice
  documentation and examples, more detailed than what we can find in the
  DSpace 1.6.2 official one.
 
  We followed and compared several documentations and made our initial
  changes. There is still one thing that is not working: our news
 doesn't
  show up although we modified [DSpace-source]/dspace/config/news-
  xmlui.xml. I don't understand what's said in the official
 documentation:
  it is localized by inserting 'i18n' callouts into the text areas. I
  did use xref tag to construct links (don't know much about DRI
 schema).
  What's missing here? Why the system still shows the default news
  Welcome to the new Manakin interface...
 
  Thank you for any help!
 
  Sophie
 
  P.S. Thanks Hardy and others who provided help too!
 
  Date: Wed, 28 Jul 2010 09:59:43 +0200
  From: Hilton Gibson hilton.gib...@gmail.com
  Subject: Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
  To: dspace-tech@lists.sourceforge.net
  Message-ID: 4c4fe36f.8070...@gmail.com
  Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 
  Also try: http://ir.sun.ac.za/wiki/index.php/Asset_Presentation
 
 
  On 27/07/2010 23:42, Pottinger, Hardy J. wrote:
   That would work as well, although that is code that is very likely
 in
  use by tomcat. But you can certainly copy from there.
  
   --Hardy
  
  
   -Original Message-
   From: Deng, Sai [mailto:sai.d...@wichita.edu]
   Sent: Tuesday, July 27, 2010 4:22 PM
   To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
   Subject: RE: Manakin customization for 1.4.2 to 1.6.2
  
   Thank you, Hardy!
   We installed the release version. We found that our templates are
   located under /dspace/webapps/xmlui/themes (different from the
  directory
   you provided). We'll start from there. This should be all right,
  right?
  
   Sophie
  
  
   
   From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
   Sent: Tuesday, July 27, 2010 4:05 PM
   To: Deng, Sai; dspace-tech@lists.sourceforge.net
   Subject: RE: Manakin customization for 1.4.2 to 1.6.2
  
   It sounds to me like you're actually using the release version, not
  the
   source version. For the release versions, you put your themes
 under:
  
   dspace/dspace/modules/xmlui/src/main/webapp/themes/
  
   Wheredspace  is wherever you have your working directory for
 dspace
   (not where you're publishing it, which is generally /dspace).
  
   The sample themes for the release are easiest to find after you've
  run a
   mvn build successfully (someone please correct me if there's

[Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-27 Thread Deng, Sai
Hi list,
We have upgraded our DSpace from 1.4.2 JSP to 1.6.2 Manakin. We are not sure 
how to customize the Manakin interface. We didn't find any template in 
DSpace-source directory. We tried to find some documentation, but the 1.6.2 
documentation assumes that we already have themes from 1.5.2, which we don't 
have. Can anyone point us to some useful documentation or give us a clear 
description on the steps? Examples of themes would be great help as well.

Thanks very much,

Sophie

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-27 Thread Deng, Sai
Hardy,
Thanks for the reply!
We don't have dspace-xmlui directory under dspace-source, is there anything 
wrong with the installation? Can I copy the dspace-xmlui folder (or just the 
theme templates) from DSpace 1.5 (a test machine) to DSpace 1.6.2?

Sophie

From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
Sent: Tuesday, July 27, 2010 3:29 PM
To: Deng, Sai; dspace-tech@lists.sourceforge.net
Subject: RE: Manakin customization for 1.4.2 to 1.6.2

Hi, Sophie, if you're using the source distribution, the themes folder can be 
found here:

dspace-1.6.2-src-release/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes

There are a few example themes in there. I've had pretty good luck starting 
with just the template theme, but if you want to start closer to a finished 
product, the Kubrick and Reference themes are alternatives to the Classic 
theme that is configured by default.

Lots of great advice can be found in the Manakin Theme Tutorial, which is 
available at:
https://wiki.duraspace.org/display/DSPACE/Manakin+theme+tutorial


--Hardy

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Tuesday, July 27, 2010 3:09 PM
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

 Hi list,
 We have upgraded our DSpace from 1.4.2 JSP to 1.6.2 Manakin. We are not
 sure how to customize the Manakin interface. We didn't find any template
 in DSpace-source directory. We tried to find some documentation, but the
 1.6.2 documentation assumes that we already have themes from 1.5.2,
 which we don't have. Can anyone point us to some useful documentation or
 give us a clear description on the steps? Examples of themes would be
 great help as well.

 Thanks very much,

 Sophie

 
 --
 The Palm PDK Hot Apps Program offers developers who use the
 Plug-In Development Kit to bring their C/C++ apps to Palm for a share
 of $1 Million in cash or HP Products. Visit us here for more details:
 http://ad.doubleclick.net/clk;226879339;13503038;l?
 http://clk.atdmt.com/CRS/go/247765532/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-27 Thread Pottinger, Hardy J.
Hi, Sophie, if you're using the source distribution, the themes folder can be 
found here:

dspace-1.6.2-src-release/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes

There are a few example themes in there. I've had pretty good luck starting 
with just the template theme, but if you want to start closer to a finished 
product, the Kubrick and Reference themes are alternatives to the Classic 
theme that is configured by default.

Lots of great advice can be found in the Manakin Theme Tutorial, which is 
available at:
https://wiki.duraspace.org/display/DSPACE/Manakin+theme+tutorial


--Hardy 

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Tuesday, July 27, 2010 3:09 PM
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 
 Hi list,
 We have upgraded our DSpace from 1.4.2 JSP to 1.6.2 Manakin. We are not
 sure how to customize the Manakin interface. We didn't find any template
 in DSpace-source directory. We tried to find some documentation, but the
 1.6.2 documentation assumes that we already have themes from 1.5.2,
 which we don't have. Can anyone point us to some useful documentation or
 give us a clear description on the steps? Examples of themes would be
 great help as well.
 
 Thanks very much,
 
 Sophie
 
 
 --
 The Palm PDK Hot Apps Program offers developers who use the
 Plug-In Development Kit to bring their C/C++ apps to Palm for a share
 of $1 Million in cash or HP Products. Visit us here for more details:
 http://ad.doubleclick.net/clk;226879339;13503038;l?
 http://clk.atdmt.com/CRS/go/247765532/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2

2010-07-27 Thread Pottinger, Hardy J.
It sounds to me like you're actually using the release version, not the source 
version. For the release versions, you put your themes under:

dspace/dspace/modules/xmlui/src/main/webapp/themes/

Where dspace is wherever you have your working directory for dspace (not 
where you're publishing it, which is generally /dspace).

The sample themes for the release are easiest to find after you've run a mvn 
build successfully (someone please correct me if there's a better way to find 
them). You can find the example code in the target folder:

dspace/dspace/target/dspace-1.6.2-build.dir/webapps/xmlui/themes/ 

(note that the specific folder will vary, based on what version you're 
building).

There's also a pretty good presentation by Tim Donohue, written for DSpace 1.5, 
but applicable to 1.6, which covers the new way of doing things that came along 
with the switch to the mvn build tool. Here's one copy of it, there are a few 
other versions:

http://www.slideshare.net/tdonohue/making-dspace-15-your-own-customizations-via-overlays

My advice, if you're just starting out, you may want to switch to using the 
source version... Down the road, if you run into issues and come to the 
dspace-tech list for help, many times people will give you paths to files based 
on their own installations, and many people here use the source version. So, 
you'll save yourself some headaches if you just go with the source install.

I'm in the process of migrating from a 1.5.1 release install, to a 1.6.2 source 
install, for this reason. Which is why I have the paths at the tips of my 
fingers. :-)  

--Hardy 

 -Original Message-
 From: Deng, Sai [mailto:sai.d...@wichita.edu]
 Sent: Tuesday, July 27, 2010 3:40 PM
 To: Pottinger, Hardy J.; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
 Hardy,
 Thanks for the reply!
 We don't have dspace-xmlui directory under dspace-source, is there
 anything wrong with the installation? Can I copy the dspace-xmlui folder
 (or just the theme templates) from DSpace 1.5 (a test machine) to DSpace
 1.6.2?
 
 Sophie
 
 From: Pottinger, Hardy J. [pottinge...@umsystem.edu]
 Sent: Tuesday, July 27, 2010 3:29 PM
 To: Deng, Sai; dspace-tech@lists.sourceforge.net
 Subject: RE: Manakin customization for 1.4.2 to 1.6.2
 
 Hi, Sophie, if you're using the source distribution, the themes folder
 can be found here:
 
 dspace-1.6.2-src-release/dspace-xmlui/dspace-xmlui-
 webapp/src/main/webapp/themes
 
 There are a few example themes in there. I've had pretty good luck
 starting with just the template theme, but if you want to start closer
 to a finished product, the Kubrick and Reference themes are alternatives
 to the Classic theme that is configured by default.
 
 Lots of great advice can be found in the Manakin Theme Tutorial, which
 is available at:
 https://wiki.duraspace.org/display/DSPACE/Manakin+theme+tutorial
 
 
 --Hardy
 
  -Original Message-
  From: Deng, Sai [mailto:sai.d...@wichita.edu]
  Sent: Tuesday, July 27, 2010 3:09 PM
  To: dspace-tech@lists.sourceforge.net
  Subject: [Dspace-tech] Manakin customization for 1.4.2 to 1.6.2
 
  Hi list,
  We have upgraded our DSpace from 1.4.2 JSP to 1.6.2 Manakin. We are
 not
  sure how to customize the Manakin interface. We didn't find any
 template
  in DSpace-source directory. We tried to find some documentation, but
 the
  1.6.2 documentation assumes that we already have themes from 1.5.2,
  which we don't have. Can anyone point us to some useful documentation
 or
  give us a clear description on the steps? Examples of themes would be
  great help as well.
 
  Thanks very much,
 
  Sophie
 
  --
 --
  --
  The Palm PDK Hot Apps Program offers developers who use the
  Plug-In Development Kit to bring their C/C++ apps to Palm for a share
  of $1 Million in cash or HP Products. Visit us here for more details:
  http://ad.doubleclick.net/clk;226879339;13503038;l?
  http://clk.atdmt.com/CRS/go/247765532/direct/01/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
The Palm PDK Hot Apps Program offers developers who use the
Plug-In Development Kit to bring their C/C++ apps to Palm for a share 
of $1 Million in cash or HP Products. Visit us here for more details:
http://ad.doubleclick.net/clk;226879339;13503038;l?
http://clk.atdmt.com/CRS/go/247765532/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin UI - International Date Format?

2010-06-21 Thread Patrick Etienne
DSpace Community -

I'm working with a manakin problem and was hoping the community might have
some feedback related to the issue (it seems like it'd be a popular enough
issue). The specific problem is that the dates being displayed within the
mankin UI (for example, the browse by date page) are an all numeric u.s.
format. Everything there is displaying properly, however because the format
is all numeric, some dates could be considered ambiguous when comparing it
to an international format. For example, there is a record with the date: 
1911-12-01 this could be read as either December 1st, 1911 or January 12th,
1911.

My question is,
Is there something built into manakin that would allow for a more
international display of dates? Or would this be something that I'd need to
code in on an xslt level?

Any tips, hints, suggestions, or resources would be greatly appreciated!

 - Patrick E.

-- 
Patrick K. Etienne
Systems Analyst
Georgia Institute of Technology
Library  Information Center
(404) 385-8121
--
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] MANAKIN/XMLUI with Internet Explorer 8 - style sheet CSS

2010-05-07 Thread Magnus Norberg

Hi erveryone,

I wonder if anyone knows anything about MANAKIN/XMLUI with Internet Explorer 8 
- style sheet CSS, at least my DSpace version doesn't seem to come with a CSS 
file for IE8. Is there any? Or any instructions on how to make one?

Thank you very much!

/Magnus Norberg, Sweden
  
_
Vårfina smileys till Messenger här!
http://springpack.msn.se--

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


Re: [Dspace-tech] MANAKIN/XMLUI with Internet Explorer 8 - style sheet CSS

2010-05-07 Thread Fabio N. Kepler
Hi Magnus,

IE8 is able to render things correctly the same way as Firefox/Chrome do if
you (in IE8) activate some option like Compatibility mode (I'm in Ubuntu
so I can't check the exact term right now).

Or, seems like a page can tell IE8 to render it in compatibility mode. Try
adding the following line in the head section of your pages (through your
XSLT theme, probably in the 'buildHead' template):

meta http-equiv=X-UA-Compatible content=IE=EmulateIE7/

Regards,

Fabio


On Fri, May 7, 2010 at 06:22, Magnus Norberg mango_pa...@hotmail.comwrote:

  Hi erveryone,

 I wonder if anyone knows anything about MANAKIN/XMLUI with Internet
 Explorer 8 - style sheet CSS, at least my DSpace version doesn't seem to
 come with a CSS file for IE8. Is there any? Or any instructions on how to
 make one?

 Thank you very much!

 /Magnus Norberg, Sweden

 --
 Chatta från inkorgen. Se möjligheterna med Hotmail! Klicka 
 här!http://springpack.msn.se


 --


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


--

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


Re: [Dspace-tech] Manakin Theme - Heading Font Sizes (XSL)

2010-03-09 Thread Teresa Burón

Hi Patrick,

Font sizes are also defined in the style.css 
file. I've also had a problem with the font sizes 
because there was some span labels which didn't close properly.


At 21:55 08/03/2010, you wrote:

DSpace Users,

I'm attempting to modify font sizes for the page 
headings (ie - h1/ tags etc). There is a 
utility programmed into the structural.xsl 
stylesheet which purports to build these tags at 
appropriate sizes based on content (see template).


(code from DSpace 1.5.2)
xsl:template match=dri:div/dri:head priority=3
xsl:variable name=head_count select=count(ancestor::dri:div)/
!-- with the help of the font-sizing 
variable, the font-size of our header text is 
made continuously variable based on the character count --
xsl:variable name=font-sizing 
select=365 - $head_count * 80 - string-length(current())/xsl:variable

xsl:element name=h{$head_count}
!-- in case the chosen size is 
less than 120%, don't let it go below. Shrinking stops at 120% --

xsl:choose
xsl:when test=$font-sizing lt; 120
xsl:attribute 
name=stylefont-size: 120%;/xsl:attribute

/xsl:when
xsl:otherwise
xsl:attribute 
name=stylefont-size: xsl:value-of select=$font-sizing/%;/xsl:attribute

/xsl:otherwise
/xsl:choose
xsl:call-template name=standardAttributes
xsl:with-param name=classds-div-head/xsl:with-param
/xsl:call-template
xsl:apply-templates /
/xsl:element
/xsl:template

The problem I'm having is that regardless of 
edits I do to this template, the font sizes 
always come out to 252%. The mystifying part is 
that the resulting html tags contain a 
ds-div-head class and looking this class up in 
the xsl yields only one result. Specifically the 
reference contained in the above template. My 
question is, if the above template is the only 
source for a ds-div-head class, and the template 
is commented out altogether, but the style still 
comes out as a font-size of 252%, from where is 
this styling directive coming? Or if I've 
somehow missed the actual source of the 252% 
font-sizing, where else might it be coming from?


 - Patrick E.

---
Patrick K. Étienne
Systems Analyst
Library and Information Center
Georgia Institute of Technology
email: 
mailto:patrick.etie...@library.gatech.edupatrick.etie...@library.gatech.edu

phone: 404.385.8121

Mediocre Writers Borrow; Great Writers Steal - T.S. Eliot

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Teresa Burón Álvarez

Servicio de Informática y Comunicaciones
Universidad de León
Correo-e.: teresa.bu...@unileon.es
Tel.: +34 987291901
Fax.: +34 987291158
CRAI-TIC, segunda planta
Campus de Vegazana, S/N
24071 - León
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin Theme - Heading Font Sizes (XSL)

2010-03-08 Thread Patrick Etienne

DSpace Users,

I'm attempting to modify font sizes for the page headings (ie - h1/  
tags etc). There is a utility programmed into the structural.xsl  
stylesheet which purports to build these tags at appropriate sizes  
based on content (see template).


(code from DSpace 1.5.2)
xsl:template match=dri:div/dri:head priority=3
xsl:variable name=head_count  
select=count(ancestor::dri:div)/
!-- with the help of the font-sizing variable, the font-size  
of our header text is made continuously variable based on the  
character count --
xsl:variable name=font-sizing select=365 - $head_count *  
80 - string-length(current())/xsl:variable

xsl:element name=h{$head_count}
!-- in case the chosen size is less than 120%, don't let  
it go below. Shrinking stops at 120% --

xsl:choose
xsl:when test=$font-sizing lt; 120
xsl:attribute name=stylefont-size: 120%;/ 
xsl:attribute

/xsl:when
xsl:otherwise
xsl:attribute name=stylefont-size: xsl:value- 
of select=$font-sizing/%;/xsl:attribute

/xsl:otherwise
/xsl:choose
xsl:call-template name=standardAttributes
xsl:with-param name=classds-div-head/xsl:with- 
param

/xsl:call-template
xsl:apply-templates /
/xsl:element
/xsl:template

The problem I'm having is that regardless of edits I do to this  
template, the font sizes always come out to 252%. The mystifying part  
is that the resulting html tags contain a ds-div-head class and  
looking this class up in the xsl yields only one result. Specifically  
the reference contained in the above template. My question is, if the  
above template is the only source for a ds-div-head class, and the  
template is commented out altogether, but the style still comes out as  
a font-size of 252%, from where is this styling directive coming? Or  
if I've somehow missed the actual source of the 252% font-sizing,  
where else might it be coming from?


 - Patrick E.

---
Patrick K. Étienne
Systems Analyst
Library and Information Center
Georgia Institute of Technology
email: patrick.etie...@library.gatech.edu
phone: 404.385.8121

Mediocre Writers Borrow; Great Writers Steal - T.S. Eliot

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-05 Thread Anita P
Woooh It worked.
I had docBase=\usr\local\webapps\xmlui\ and now changed it to the
dspace-config parameter as per your suggestion and rebuild it. It worked
Thanks a lot Larry.

Anita


On Thu, Mar 4, 2010 at 3:15 PM, Palmquist, Larry E l-palmqu...@ku.eduwrote:

  Anita,

 What do you have in (tomcat's) server.xml, now?
  On our dev server, the only place we have xmlui, we have (just before the
 closing /Host /Engine /Service /Server tags)

 Context path=/xmlui 
Parameter name=dspace-config value=/dspace/config/dspace.cfg
 description=Path to DSpace config file /
 /Context


 I'm assuming you've removed the symbolic links, and the
 docBase=\usr\local\dspace\webapps\xmlui parameter, because all of the bits
 are in Tomcat's webapps tree.

 After a successful build, I copy everything from dspace.dir/webapps/xmlui
 to $CATALINA_HOME/webapps/xmlui  (i.e.cp -pR /dspace/webapps/xmlui/*
 $CATALINA_HOME/webapps/xmlui ).

 Which looks like it would be   cp -pR  /usr/local/dspace/webapps/xmlui/*
 /svr/fedora/tomcat/webapps/xmlui
 on your machine (assuming dspace.dir=/usr/local/dspace  and
 $CATALINA_HOME=/svr/fedora/tomcat
 so dspace-config would have value=/usr/local/dspace/config/dspace.cfg

 Everything (in both trees)  belongs to our dspace user.

 Is there any indication in Tomcat logs (catalina.out) about what may have
 happened to xmlui?

 Hope this helps.

 Larry Palmquist
 Application Administration
 Information Services
 University of Kansas


 -Original Message-
 *From:* Anita P [mailto:digla...@gmail.com]
 *Sent:* Thursday, March 04, 2010 2:26 PM
 *To:* dspace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Manakin Installation

 I still haven't figured out why my xmlui won't work but jspui does. Can
 someone share the list of files in there xmlui folder. The only thing I can
 think of is that the build got messed up for the xmlui. Here are the list of
 my files in xmlui


 fc-test:/srv/fedora/tomcat/webapps/xmlui # l
 total 60
 drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
 drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
 -rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
 drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
 -rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
 drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
 drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/

 Am I missing any files/folders???

 Anita


 On Wed, Mar 3, 2010 at 11:14 AM, Anita P digla...@gmail.com wrote:

 Yes I am confident /srv/fedora/tomcat/webapps is the correct one. We are
 testing out fedora too and hence tomcat was installed in that directory.


 And with respect to permissions, although we should not have done this but
 tomcat does run as the root and it is a test server so for now that is fine.

 To rule out that there is another webapps tomcat running the jspui here is
 what i got from find -name for jspui and xmlui. So if jspui is running
 somewhere other than /srv/fedora/tomcat/webapps my assumption it that it
 would have shown up here and all it shows is that it is running from that
 directory.  Any thing else I could be missing???


 fc-test:/ # find -name xmlui
 ./root/.m2/repository/org/dspace/xmlui
 *./srv/fedora/tomcat/work/Catalina/localhost/xmlui
 ./srv/fedora/tomcat/webapps/xmlui
 *
 ./srv/fedora/tomcat/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
 ./home/dspace/.m2/repository/org/dspace/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/target/classes/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/src/main/java/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/target/classes/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/xmlui

 ./usr/local/dspace/webapps/xmlui
 ./usr/local/dspace/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui

 fc-test:/ # find -name jspui
 *./srv/fedora/tomcat/work/Catalina/localhost/jspui
 ./srv/fedora/tomcat/webapps/jspui
 *
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui/META-INF/maven/org.dspace.modules/jspui
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/jspui

 ./usr/local/dspace/webapps/jspui
 ./usr/local/dspace/webapps/jspui/META-INF/maven/org.dspace.modules

Re: [Dspace-tech] Manakin Installation

2010-03-04 Thread Anita P
I still haven't figured out why my xmlui won't work but jspui does. Can
someone share the list of files in there xmlui folder. The only thing I can
think of is that the build got messed up for the xmlui. Here are the list of
my files in xmlui


fc-test:/srv/fedora/tomcat/webapps/xmlui # l
total 60
drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
-rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
-rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/

Am I missing any files/folders???

Anita


On Wed, Mar 3, 2010 at 11:14 AM, Anita P digla...@gmail.com wrote:

 Yes I am confident /srv/fedora/tomcat/webapps is the correct one. We are
 testing out fedora too and hence tomcat was installed in that directory.


 And with respect to permissions, although we should not have done this but
 tomcat does run as the root and it is a test server so for now that is fine.

 To rule out that there is another webapps tomcat running the jspui here is
 what i got from find -name for jspui and xmlui. So if jspui is running
 somewhere other than /srv/fedora/tomcat/webapps my assumption it that it
 would have shown up here and all it shows is that it is running from that
 directory.  Any thing else I could be missing???


 fc-test:/ # find -name xmlui
 ./root/.m2/repository/org/dspace/xmlui
 *./srv/fedora/tomcat/work/Catalina/localhost/xmlui
 ./srv/fedora/tomcat/webapps/xmlui
 *./srv/fedora/tomcat/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
 ./home/dspace/.m2/repository/org/dspace/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/target/classes/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/src/main/java/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/target/classes/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/xmlui

 ./usr/local/dspace/webapps/xmlui
 ./usr/local/dspace/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui

 fc-test:/ # find -name jspui
 *./srv/fedora/tomcat/work/Catalina/localhost/jspui
 ./srv/fedora/tomcat/webapps/jspui
 *
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui

 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui/META-INF/maven/org.dspace.modules/jspui
 ./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/jspui

 ./usr/local/dspace/webapps/jspui
 ./usr/local/dspace/webapps/jspui/META-INF/maven/org.dspace.modules/jspui






 On Wed, Mar 3, 2010 at 10:50 AM, Pablo Olivares pablo...@gmail.comwrote:

 mm.. /srv/fedora/tomcat/webapps/ , do you verify that this directory is
 currently using  for Tomcat??,
 *
 *
 your error sounds like exist another webapps where tomcat are currently
 point...

 another issue is that permissons  for [tomcat]/webapps/xmlui are set to
 root... i think yor must set to tomcat user

 El Pablo.


 On Wed, Mar 3, 2010 at 10:27 AM, Anita P digla...@gmail.com wrote:

 @ El Pablo: Yes I am on a linux machine and did a ln -s (symbolic link)
 for both xmlui and jspui  and here is how it looked
 lrwxrwxrwx  1 root root   31 2010-03-02 14:55 jspui -
 /usr/local/dspace/webapps/jspui/
 lrwxrwxrwx  1 root root   29 2010-03-02 14:56 oai -
 /usr/local/dspace/webapps/oai/
 lrwxrwxrwx  1 root root   28 2010-03-02 14:57 xmlui -
 /usr/local/dspace/webapps/xmlui/

 Now. I now copied the whole folder in my [dspace]/webapps/xmlui to my
 tomcat webapps. Here is what i have

 */srv/fedora/tomcat/webapps/xmlui #* l
 total 60
 drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
 drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
 -rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
 drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
 -rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
 drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
 drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/


 That did not work. And I also added the following in the server.xml
 Context path=/xmlui 

Re: [Dspace-tech] Manakin Installation

2010-03-04 Thread Pablo Olivares
Hi..

I checked my folder [tomcat]/webapps  and i have the same files..

That version of tomcat was installed for your? or is the version of Fedora??
 Im not using a preinstalled Tomcat..


Do you tried  to make again the build or your xmlui??


El  Pablo.



On Thu, Mar 4, 2010 at 2:25 PM, Anita P digla...@gmail.com wrote:

 I still haven't figured out why my xmlui won't work but jspui does. Can
 someone share the list of files in there xmlui folder. The only thing I can
 think of is that the build got messed up for the xmlui. Here are the list of
 my files in xmlui


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Anita P

 Thanks for pointing out to the manual. For some weird reason I thought I
 had to install manakin separately.


The jspui portion works perfectly but when i try to access the xmlui portion
it gives me a the following error
 HTTP Status 404 - /xmlui/
--

*type* Status report

*message* */xmlui/*

*description* *The requested resource (/xmlui/) is not available.*
--
Apache Tomcat/5.5.26
I have dspace 1.5.2 installed. From what I understand, you really don't have
to make any modification for the basic page to show up. I understand that
there is more configuration of themes and everything else if you want to
customize it. But my understanding is that http://localhost:8080/jspui would
take you to jspui interface and http://localhost:8080/xmlui would take you
to the manakin interface. Am i understanding this wrong?? Do I need to make
any changes? My dspace.cfg looks like this

# DSpace installation directory
dspace.dir = /usr/local/dspace

# DSpace base URL.  Include port number etc., but NOT trailing slash
# Change to xmlui if you wish to use the xmlui as the default, or remove
# /jspui and set webapp of your choice as the ROOT webapp in
# the servlet engine.
dspace.url = http://localhost:8080/xmlui   (I did this to make sure xmlui is
the main interface)

# DSpace host name - should match base URL.  Do not include port number
dspace.hostname = localhost

# Name of the site
dspace.name = DSpace at My University

and so on...


I made links in  my tomcat/webapps link to /usr/local/dspace/webapps/jspui
and /usr/local/dspace/webapps/xmlui

Am I missing something?

Thanks,
Anita.
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Claudia Jürgen

Hello Anita,

did you deploy the xmlui by either pointing tomcat to
[dspace]/webapps/xmlui
or by copying
[dspace]/webapps/xmlui
to
[tomcat]/webapps
?

Hope that helps

Claudia Jürgen


Am 03.03.2010 16:42, schrieb Anita P:


Thanks for pointing out to the manual. For some weird reason I thought I
had to install manakin separately.



The jspui portion works perfectly but when i try to access the xmlui portion
it gives me a the following error
  HTTP Status 404 - /xmlui/
--

*type* Status report

*message* */xmlui/*

*description* *The requested resource (/xmlui/) is not available.*
--
Apache Tomcat/5.5.26
I have dspace 1.5.2 installed. From what I understand, you really don't have
to make any modification for the basic page to show up. I understand that
there is more configuration of themes and everything else if you want to
customize it. But my understanding is that http://localhost:8080/jspui would
take you to jspui interface and http://localhost:8080/xmlui would take you
to the manakin interface. Am i understanding this wrong?? Do I need to make
any changes? My dspace.cfg looks like this

# DSpace installation directory
dspace.dir = /usr/local/dspace

# DSpace base URL.  Include port number etc., but NOT trailing slash
# Change to xmlui if you wish to use the xmlui as the default, or remove
# /jspui and set webapp of your choice as the ROOT webapp in
# the servlet engine.
dspace.url = http://localhost:8080/xmlui   (I did this to make sure xmlui is
the main interface)

# DSpace host name - should match base URL.  Do not include port number
dspace.hostname = localhost

# Name of the site
dspace.name = DSpace at My University

and so on...


I made links in  my tomcat/webapps link to /usr/local/dspace/webapps/jspui
and /usr/local/dspace/webapps/xmlui

Am I missing something?

Thanks,
Anita.




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev



___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
attachment: Claudia_Juergen.vcf--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Pablo Olivares
Hi!

Do you  make links mm..on Linux or Unix??

I think your have to verify  the file server.xml.

  Example of configuration to point  xmlui

Context path=/xmlui docBase=[dspace]\webapps\xmlui debug=0

reloadable=true cachingAllowed=false
allowLinking=true/

I you dont want modify server.xml  then copy your [dspace]/webapps to
 [tomcat]/webapps
mm..i remember that on Linux or Unix the links is not recognized for
Tomcat.. it need  phisical reference..

Hope this help!

El Pablo.

On Wed, Mar 3, 2010 at 9:42 AM, Anita P digla...@gmail.com wrote:

 Thanks for pointing out to the manual. For some weird reason I thought I
 had to install manakin separately.


 The jspui portion works perfectly but when i try to access the xmlui
 portion it gives me a the following error
  HTTP Status 404 - /xmlui/
 --

 *type* Status report

 *message* */xmlui/*

 *description* *The requested resource (/xmlui/) is not available.*
 --
 Apache Tomcat/5.5.26

 I made links in  my tomcat/webapps link to /usr/local/dspace/webapps/jspui
 and /usr/local/dspace/webapps/xmlui


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Anita P
@ El Pablo: Yes I am on a linux machine and did a ln -s (symbolic link) for
both xmlui and jspui  and here is how it looked
lrwxrwxrwx  1 root root   31 2010-03-02 14:55 jspui -
/usr/local/dspace/webapps/jspui/
lrwxrwxrwx  1 root root   29 2010-03-02 14:56 oai -
/usr/local/dspace/webapps/oai/
lrwxrwxrwx  1 root root   28 2010-03-02 14:57 xmlui -
/usr/local/dspace/webapps/xmlui/

Now. I now copied the whole folder in my [dspace]/webapps/xmlui to my tomcat
webapps. Here is what i have

*/srv/fedora/tomcat/webapps/xmlui #* l
total 60
drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
-rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
-rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/


That did not work. And I also added the following in the server.xml
Context path=/xmlui docBase=\usr\local\dspace\webapps\xmlui debug=0
reloadable=true cachingAllowed=false allowLinking=true/

but i still get the same error for xmlui. What puzzles me is how come jspui
works perfectly without any changes.

Anita



2010/3/3 Claudia Jürgen claudia.juer...@ub.tu-dortmund.de

 Hello Anita,

 did you deploy the xmlui by either pointing tomcat to
 [dspace]/webapps/xmlui
 or by copying
 [dspace]/webapps/xmlui
 to
 [tomcat]/webapps

 ?

 Hope that helps

 Claudia Jürgen




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Pablo Olivares
mm.. /srv/fedora/tomcat/webapps/ , do you verify that this directory is
currently using  for Tomcat??,
*
*
your error sounds like exist another webapps where tomcat are currently
point...

another issue is that permissons  for [tomcat]/webapps/xmlui are set to
root... i think yor must set to tomcat user

El Pablo.


On Wed, Mar 3, 2010 at 10:27 AM, Anita P digla...@gmail.com wrote:

 @ El Pablo: Yes I am on a linux machine and did a ln -s (symbolic link) for
 both xmlui and jspui  and here is how it looked
 lrwxrwxrwx  1 root root   31 2010-03-02 14:55 jspui -
 /usr/local/dspace/webapps/jspui/
 lrwxrwxrwx  1 root root   29 2010-03-02 14:56 oai -
 /usr/local/dspace/webapps/oai/
 lrwxrwxrwx  1 root root   28 2010-03-02 14:57 xmlui -
 /usr/local/dspace/webapps/xmlui/

 Now. I now copied the whole folder in my [dspace]/webapps/xmlui to my
 tomcat webapps. Here is what i have

 */srv/fedora/tomcat/webapps/xmlui #* l
 total 60
 drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
 drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
 -rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
 drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
 -rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
 drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
 drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/


 That did not work. And I also added the following in the server.xml
 Context path=/xmlui docBase=\usr\local\dspace\webapps\xmlui debug=0
 reloadable=true cachingAllowed=false allowLinking=true/

 but i still get the same error for xmlui. What puzzles me is how come jspui
 works perfectly without any changes.

 Anita




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-03 Thread Anita P
Yes I am confident /srv/fedora/tomcat/webapps is the correct one. We are
testing out fedora too and hence tomcat was installed in that directory.


And with respect to permissions, although we should not have done this but
tomcat does run as the root and it is a test server so for now that is fine.

To rule out that there is another webapps tomcat running the jspui here is
what i got from find -name for jspui and xmlui. So if jspui is running
somewhere other than /srv/fedora/tomcat/webapps my assumption it that it
would have shown up here and all it shows is that it is running from that
directory.  Any thing else I could be missing???


fc-test:/ # find -name xmlui
./root/.m2/repository/org/dspace/xmlui
*./srv/fedora/tomcat/work/Catalina/localhost/xmlui
./srv/fedora/tomcat/webapps/xmlui
*./srv/fedora/tomcat/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
./home/dspace/.m2/repository/org/dspace/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/target/classes/org/dspace/app/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-wing/src/main/java/org/dspace/app/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/target/classes/org/dspace/app/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-api/src/main/java/org/dspace/app/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui
./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/xmlui
./usr/local/dspace/webapps/xmlui
./usr/local/dspace/webapps/xmlui/META-INF/maven/org.dspace.modules/xmlui

fc-test:/ # find -name jspui
*./srv/fedora/tomcat/work/Catalina/localhost/jspui
./srv/fedora/tomcat/webapps/jspui
*
./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui
./usr/local/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.dir/webapps/jspui/META-INF/maven/org.dspace.modules/jspui
./usr/local/dspace/dspace-1.5.2-src-release/dspace/modules/jspui
./usr/local/dspace/webapps/jspui
./usr/local/dspace/webapps/jspui/META-INF/maven/org.dspace.modules/jspui





On Wed, Mar 3, 2010 at 10:50 AM, Pablo Olivares pablo...@gmail.com wrote:

 mm.. /srv/fedora/tomcat/webapps/ , do you verify that this directory is
 currently using  for Tomcat??,
 *
 *
 your error sounds like exist another webapps where tomcat are currently
 point...

 another issue is that permissons  for [tomcat]/webapps/xmlui are set to
 root... i think yor must set to tomcat user

 El Pablo.


 On Wed, Mar 3, 2010 at 10:27 AM, Anita P digla...@gmail.com wrote:

 @ El Pablo: Yes I am on a linux machine and did a ln -s (symbolic link)
 for both xmlui and jspui  and here is how it looked
 lrwxrwxrwx  1 root root   31 2010-03-02 14:55 jspui -
 /usr/local/dspace/webapps/jspui/
 lrwxrwxrwx  1 root root   29 2010-03-02 14:56 oai -
 /usr/local/dspace/webapps/oai/
 lrwxrwxrwx  1 root root   28 2010-03-02 14:57 xmlui -
 /usr/local/dspace/webapps/xmlui/

 Now. I now copied the whole folder in my [dspace]/webapps/xmlui to my
 tomcat webapps. Here is what i have

 */srv/fedora/tomcat/webapps/xmlui #* l
 total 60
 drwxr-xr-x  8 root root  4096 2010-03-03 10:12 ./
 drwxr-xr-x 19 root root  4096 2010-03-03 10:12 ../
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 aspects/
 -rw-r--r--  1 root root  6805 2010-03-03 10:12 exception2html.xslt
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 i18n/
 drwxr-xr-x  3 root root  4096 2010-03-03 10:12 META-INF/
 -rw-r--r--  1 root root 17983 2010-03-03 10:12 sitemap.xmap
 drwxr-xr-x  2 root root  4096 2010-03-03 10:12 static/
 drwxr-xr-x  7 root root  4096 2010-03-03 10:12 themes/
 drwxr-xr-x  5 root root  4096 2010-03-03 10:12 WEB-INF/


 That did not work. And I also added the following in the server.xml
 Context path=/xmlui docBase=\usr\local\dspace\webapps\xmlui debug=0
 reloadable=true cachingAllowed=false allowLinking=true/

 but i still get the same error for xmlui. What puzzles me is how come
 jspui works perfectly without any changes.

 Anita




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-02 Thread Claudia Jürgen

Hello Anita,

Manakin the XMLUI of DSpace is documented in the DSpace documentation:
http://dspace.org/1_5_2Documentation/DSpace-Manual.pdf

Manakin is no project anymore but part of DSpace and you can install it 
by following the DSpace installation instructions. The webapplication to 
be deployed will be in [dspace]/webapps along with the JSPUI, OAI etc.


For customization see chapter 5.5 5.5. XMLUI Interface Customizations 
(Manakin) of the documentation.


Hope that helps

Claudia Jürgen



Am 01.03.2010 18:36, schrieb Anita P:

Can anyone direct me to a working link for Manakin
installation/documentation. All google searches I goto do not have the
document, they just point me to a digital library at Texas AM and searching
there library wont give me any documents related to Manakin installation.

Thanks
Anita




--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev



___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
attachment: Claudia_Juergen.vcf--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin Installation

2010-03-01 Thread Anita P
Can anyone direct me to a working link for Manakin
installation/documentation. All google searches I goto do not have the
document, they just point me to a digital library at Texas AM and searching
there library wont give me any documents related to Manakin installation.

Thanks
Anita
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Installation

2010-03-01 Thread Stuart Lewis
Hi Anita,

 Can anyone direct me to a working link for Manakin 
 installation/documentation. All google searches I goto do not have the 
 document, they just point me to a digital library at Texas AM and searching 
 there library wont give me any documents related to Manakin installation.

Hopefully a lot of the information you need will be in the DSpace manual:

 - http://dspace.org/1_5_2Documentation/DSpace-Manual.pdf

I hope that helps,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: 64 9 373-7599 x81928
http://www.library.auckland.ac.nz/


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin question

2010-02-17 Thread Matt Cleveland
Hello all,

I'm working on installing Manakin on a dSpace installation we have here and
have run in to some troubles.  When compiling Manakin with ANT, it appears
as if my CLASSPATH env variable is not set properly, as I'm getting the
typical class not found errors.  I've tried setting my CLASSPATH to a
variety of locations but to no avail.  Where should this be pointing or do I
have an entirely different problem here (not me, personally, my installation
:) )?   Thanks!

matt
--
SOLARIS 10 is the OS for Data Centers - provides features such as DTrace,
Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW
http://p.sf.net/sfu/solaris-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin issue: i cant hidden front-page-search

2010-01-21 Thread Pablo Olivares
Hi..

I  have Dspace 1.5 and   use Manakin for Web Display.


In the first page of  my installation (i.e http:/localhost:9090/xmlui)
 always appear  in the bottom of the page * * communities list i want to
hidden
that list, i saw one example  and make this on my Reference.xsl:


xsl:template match=dri:d...@n='community-list']
#160;
/xsl:template

and works!

But if i click on the left option list Comminities and Colections  the
list is hidden too!!! the page is empty :-(


then i try to identity some flag or parameter  for know when  is the case
of the first page  and  i try this:

 xsl:template match=dri:d...@n='community-list']

 xsl:if
test=/dri:document/dri:meta/dri:pageMeta/dri:metada...@element='request']...@qualifier='URI']!='community-list'
#160;
   /xsl:if
/xsl:template 

but dont work!

mm..exist one easy solution for this??


thanks for your help!!!..


greetings!

--El Pablo.
--
Throughout its 18-year history, RSA Conference consistently attracts the
world's best and brightest in the field, creating opportunities for Conference
attendees to learn about information security's most important issues through
interactions with peers, luminaries and emerging and established companies.
http://p.sf.net/sfu/rsaconf-dev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin removes id tag from addSimpleHTMLFragment

2009-12-04 Thread Jason Gum
Hello Everyone,

The Java code in one of my pages:
div.addSimpleHTMLFragment(false, a href=\#\
id=\howdoisearch\test/a);

generates the following:
a href=# class=test/a

and I want it to generate the following:
a href=# id=howdoisearch class=test/a

but I am having difficulty.

What I have done so far is gone into the translate(Element parent) method in
the SimpleHTMLFragment.java class and changed the following from:
} else if (a.equals(name)) {
// The HTML a tag is translated into the DRI
// xref tag.
moveAttribute(element, href, target);
*limitAttributes(element, target);*
element.setName(xref);

translate(element);

to:
} else if (a.equals(name)) {
// The HTML a tag is translated into the DRI
// xref tag.
moveAttribute(element, href, target);
*limitAttributes(element, target, id);*
element.setName(xref);

translate(element);

but this still has not changed the generated output. I suspect that it is
because the DRI xref tag has no id element (
http://www.dspace.org/1_5_2Documentation/ch13.html#N1502A). Does anyone know
how to change the DRI so that xref or how I can get
addSimpleHTMLFragmentto correct include the id element?

I know that alternatively I could use Javascript to edit the page after it
has been generated but I prefer to render the page right, the first time.

Thanks in advance,

Jason
--
Join us December 9, 2009 for the Red Hat Virtual Experience,
a free event focused on virtualization and cloud computing. 
Attend in-depth sessions from your desk. Your couch. Anywhere.
http://p.sf.net/sfu/redhat-sfdev2dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin - needing to insert something into dri:options (inserting a static link)

2009-06-29 Thread Sobieralski, Damian Michael
I have a link to an external site that I added in my theme's xsl below 
xsl:apply-templates select=/dri:document/dri:options/. That works great.

 However, I got a request to see if I can add this link below All of DSpace 
but above This Collection and to theme it so it looks like those two headings 
(it's actually a link to browse something that is another web application but 
themed to look the same as our DSpace instance).  Is this possible?

- Damian


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


Re: [Dspace-tech] Manakin - needing to insert something into dri:options (inserting a static link)

2009-06-29 Thread Sobieralski, Damian Michael
Whoops, I goofed up a bit. What I meant to say is that the link ideally would 
like to be inserted between Browse and My Account

 -Original Message-
 From: Sobieralski, Damian Michael
 Sent: Monday, June 29, 2009 12:55 PM
 To: dspace-tech@lists.sourceforge.net
 Subject: Manakin - needing to insert something into dri:options (inserting
 a static link)
 
 I have a link to an external site that I added in my theme's xsl below
 xsl:apply-templates select=/dri:document/dri:options/. That works
 great.
 
  However, I got a request to see if I can add this link below All of
 DSpace but above This Collection and to theme it so it looks like those
 two headings (it's actually a link to browse something that is another web
 application but themed to look the same as our DSpace instance).  Is this
 possible?
 
 - Damian


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


[Dspace-tech] Manakin index page (and only that!) Java errors

2009-05-29 Thread Vika Zafrin
Dear all,

I'm way out of my depth here: I do xml/xsl/css but don't know Java.  If I'm
giving too little or the wrong kind of information, please forgive me and
let me know.

I've been changing a test install of DSpace 1.5.2 to look like the rest of
my university's larger sites.  We're using Manakin, and I was mostly editing
in xmlui/themes.  Because I was the only person doing this, and CSS/XSL is
fiddly and requires a lot of reloading, I was working in the -inst directory
instead of -src (still a pain, fiddling with Tomcat, but at least I didn't
have to rebuild twenty times a day).

As far as I can see, I've changed:

- the text in the single paragraph in config/news-xmlui.xml
- the text of some messages in webapps/xmlui/i18n/messages.xml
- the default theme pointer in config/xmlui.xconf
- webapps/xmlui/themes/[my_new_theme_dir]/style.css
- webapps/xmlui/themes/dri2xhtml/structural.xsl

At some point, I was changing the latter two files, stopping and restarting
Tomcat and undeploying and redeploying the xmlui application on it.  The
index page stopped displaying, and instead I got a bunch of Java errors.
They start out like this:

---
exception

javax.servlet.ServletException: Servlet execution threw an exception

org.dspace.app.xmlui.cocoon.SetCharacterEncodingFilter.doFilter(SetCharacterEncodingFilter.java:142)

org.dspace.app.xmlui.cocoon.DSpaceCocoonServletFilter.doFilter(DSpaceCocoonServletFilter.java:244)

org.apache.cocoon.servlet.multipart.MultipartFilter.doFilter(MultipartFilter.java:131)

root cause

java.lang.NoSuchMethodError:
javax.xml.transform.dom.DOMResult.getNextSibling()Lorg/w3c/dom/Node;
---

The rest is long, but visible at http://digilibtest.bu.edu:8080/xmlui/

But all the other pages are fine, for example:
http://digilibtest.bu.edu:8080/xmlui/community-list

We basically blew away the entire dspace1.5.2-inst directory and did a fresh
rebuild from -src, but that's not helping.  Any advice?

Many thanks,
-Vika

-- 
Vika Zafrin
Digital Collections and Computing Support Librarian
Boston University School of Theology
745 Commonwealth Avenue
Boston, MA 02215
617.353.1317
--
Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT 
is a gathering of tech-side developers  brand creativity professionals. Meet
the minds behind Google Creative Lab, Visual Complexity, Processing,  
iPhoneDevCamp as they present alongside digital heavyweights like Barbarian 
Group, R/GA,  Big Spaceship. http://p.sf.net/sfu/creativitycat-com ___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Admin Utilities With Apache Redirection

2009-04-02 Thread Sean Carte
2009/4/1 Sean Carte sean.ca...@gmail.com:
 I've been trying to get the XMLUI interface to work with Apache
 redirection, but I can't access the admin utilities (everything else
 works):

 For example, this URL: http://10.4.36.18/admin/metadata-registry

 results in this error:

 HTTP Status 404 - /admin/metadata-registry
 type Status report
 message /admin/metadata-registry
 description The requested resource (/admin/metadata-registry) is not 
 available.

...
 I have noticed that, when using the xml ui, if I append xmlui to the
 URL, everything works, e.g.:

 http://10.4.36.18/xmlui/admin/metadata-registry

Here's a simple workaround:

Override the header in your xsl file and replace

a
xsl:attribute name=href
xsl:value-of
select=/dri:document/dri:meta/dri:userMeta/

dri:metada...@element='identifier' and @qualifier='loginURL']/
/xsl:attribute

with:

a href=xmlui/login


This makes the 'Login' link at the top right of the screen include the
'xmlui', which from then on will be part of the path.

Thereafter, it's a simple matter of persuading admin users to use that
link to log in.

Sean
-- 
Sean Carte
esAL Library Systems Manager
+27 72 898 8775
+27 31 373 2490
fax: 0866741254
http://esal.dut.ac.za/

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


[Dspace-tech] Manakin and Admin Utilities With Apache Redirection

2009-04-01 Thread Sean Carte
I've been trying to get the XMLUI interface to work with Apache
redirection, but I can't access the admin utilities (everything else
works):

For example, this URL: http://10.4.36.18/admin/metadata-registry

results in this error:

HTTP Status 404 - /admin/metadata-registry
type Status report
message /admin/metadata-registry
description The requested resource (/admin/metadata-registry) is not available.

With this in the Apache access log:

10.4.36.100 - - [01/Apr/2009:08:09:29 +] GET
/admin/metadata-registry HTTP/1.0 404 1018 http://10.4.36.18/;
Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko/2009032711
Ubuntu/8.10 (intrepid) Firefox/3.0.8

There's nothing in the dspace.log, nor in the Apache error log.

But if I switch over to the jspui interface, it all works:

10.4.36.100 - - [01/Apr/2009:08:15:54 +] GET
/dspace-admin/metadata-schema-registry HTTP/1.0 200 9649
http://10.4.36.18/dspace-admin/; Mozilla/5.0 (X11; U; Linux i686;
en-US; rv:1.9.0.8) Gecko/2009032711 Ubuntu/8.10 (intrepid)
Firefox/3.0.8
10.4.36.100 - - [01/Apr/2009:08:15:54 +] GET /styles.css.jsp
HTTP/1.0 20018497
http://10.4.36.18/dspace-admin/metadata-schema-registry; Mozilla/5.0
(X11; U; Linux i686; en-US; rv:1.9.0.8) Gecko/2009032711 Ubuntu/8.10
(intrepid) Firefox/3.0.8

I have the following in /dspace/config/dspace.cfg:

dspace.url = http://10.4.36.18:8080/jspui
#dspace.url = http://10.4.36.18:8080/xmlui

And the following in /usr/share/tomcat5.5-webapps:

lrwxrwxrwx  1 root root   22 2009-04-01 09:58 ROOT - /dspace/webapps/jspui/
lrwxrwxrwx  1 root root   22 2009-03-26 10:16 ROOT_xmlui -
/dspace/webapps/xmlui/

When switching between the interfaces, I change the ROOT symlink and
the dspace.url appropriately, then restart tomcat.

I have the following in /etc/apache2/mods-enabled/proxy.conf:

ProxyPass  /  ajp://localhost:8009/
ProxyPassReverse  /  ajp://localhost:8009/

I have noticed that, when using the xml ui, if I append xmlui to the
URL, everything works, e.g.:

http://10.4.36.18/xmlui/admin/metadata-registry

But that's exactly what I hoped to avoid.

Have I gone wrong somewhere?

Sean
-- 
Sean Carte
esAL Library Systems Manager
+27 72 898 8775
+27 31 373 2490
fax: 0866741254
http://esal.dut.ac.za/

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


[Dspace-tech] Manakin Workshop and Online Event: Training for the use of Manakin

2009-03-27 Thread Christina Richison
DSpace Community,

 

NITLE is offering two opportunities to learn more about Manakin
http://di.tamu.edu/projects/xmlui/manakin/ . 

 

Manakin, the new interface development toolkit for DSpace, is an
exciting new technology that allows for extensive modification and
customization of the default DSpace interfaces. Manakin gives
institutions considerable power to brand and theme DSpace interfaces to
match local web styles, to introduce new interface elements and
features, and even to create new ways for users to interact with objects
in the DSpace repository. A sample Manakin DSpace interface that
integrates spatial data coordinated into a graphical display can be seen
at: http://txspace.tamu.edu/handle/1969.1/2490.

 

90 minute online opportunity: April 8, 2009, 3:00 - 4:30 p.m. EDT,
Special Topics in Information Services: Manakin, the DSpace Interface
Toolkit
http://www.nitle.org/www/events/913-special-topics-in-information-servi
ces-3 

 

And/or

 

Full day face-to-face workshop opportunity: June 3, 2009, 8:30 - 5:30
p.m. EDT, Developing Interfaces and Interactivity for DSpace with
Manakin Workhop http://campnis.blog.nitle.org/manakinworkshop/ 

 

Institutions outside of NITLE may participate through the NITLE/DSpace
Foundation offer
http://www.dspace.org/index.php/News-Archive/NITLE/DSpace-Foundation-Co
llaboration.html .

 

I apologize for the cross-posting on general and technical DSpace lists.

 

All the best,

 

Christina

 

Christina Richison

NITLE Information Services

http://tinyurl.com/niscamp

p. 734.661.1012

Southwestern University | P.O. Box 7385

1001 East University Avenue | Georgetown, Texas 78626 

 

 

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


[Dspace-tech] Manakin and Google Chrome

2009-03-24 Thread Dorothea Salo
Has anyone done any browser testing with a Manakin installation and
Google Chrome?

I just spent an hour on the phone with a Chrome user who couldn't log
in or even register normally. I have no idea where to even begin
troubleshooting, so I'm casting about for anyone else who's gone
through this!

Dorothea

-- 
Dorothea Salods...@library.wisc.edu
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Google Chrome

2009-03-24 Thread Reuben Pasquini
Hi Dorothea,

Chrome works fine with our site:
 http://etd.auburn.edu 
You can download and use Chrome for free
if you want to run some tests:
 http://www.google.com/chrome 
You might also test with Safari - which uses the
same WebKit render engine as Chrome:
http://www.apple.com/safari/
Tell patrons to use Firefox 
http://www.mozilla.com/en-US/firefox/
until you find a fix for the problem.

Good luck!
Reuben

 Dorothea Salo ds...@library.wisc.edu 3/24/2009 10:24 AM 
Has anyone done any browser testing with a Manakin installation and
Google Chrome?

I just spent an hour on the phone with a Chrome user who couldn't log
in or even register normally. I have no idea where to even begin
troubleshooting, so I'm casting about for anyone else who's gone
through this!

Dorothea

-- 
Dorothea Salods...@library.wisc.edu 
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly
and
easily build your RIAs with Flex Builder, the Eclipse(TM)based
development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com 
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Google Chrome

2009-03-24 Thread Dorothea Salo
On Tue, Mar 24, 2009 at 12:15 PM, Reuben Pasquini rdp0...@auburn.edu wrote:
 Hi Dorothea,

 Chrome works fine with our site:
     http://etd.auburn.edu
 You can download and use Chrome for free
 if you want to run some tests:
     http://www.google.com/chrome
 You might also test with Safari - which uses the
 same WebKit render engine as Chrome:
    http://www.apple.com/safari/

I'm thinking this is a Javascript problem, as it appears (from the
interaction I had) to be limited to the login and possibly
registration pages. Safari wouldn't help, I don't think, as WebKit
isn't (I don't believe) the Javascript engine in use in either Safari
or Chrome.

 Tell patrons to use Firefox
    http://www.mozilla.com/en-US/firefox/
 until you find a fix for the problem.

I can't get 'em to deposit papers; you think I'm gonna get 'em to
switch browsers? ;)

I've filed a bug on this in JIRA. If anybody has any more details,
they'd be appreciated. I think Chrome just put out a Mac version; I'll
give it a spin when I have time.

Dorothea

-- 
Dorothea Salods...@library.wisc.edu
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Google Chrome

2009-03-24 Thread Tim Donohue

All,

Just to let everyone know, out-of-the-box DSpace 1.5.1 seems to work 
fine with Google Chrome, including the login functionality (where 
Dorothea was having a problem).  So, I've closed the bug that Dorothea 
filed.

However, strangely enough, in my local installation of DSpace I'm seeing 
the same issues with Chrome that Dorothea's seeing.  I believe it's 
something within our custom XMLUI themes which causes the login page to 
no longer work in Chrome.  Once I figure out a resolution on my end, 
I'll be working offline to help Dorothea fix things on their end.  I'll 
also post a quick resolution message to this thread, just in case anyone 
else runs across this oddness in their custom theme(s).

- Tim

Dorothea Salo wrote:
 On Tue, Mar 24, 2009 at 12:15 PM, Reuben Pasquini rdp0...@auburn.edu wrote:
 Hi Dorothea,

 Chrome works fine with our site:
 http://etd.auburn.edu
 You can download and use Chrome for free
 if you want to run some tests:
 http://www.google.com/chrome
 You might also test with Safari - which uses the
 same WebKit render engine as Chrome:
http://www.apple.com/safari/
 
 I'm thinking this is a Javascript problem, as it appears (from the
 interaction I had) to be limited to the login and possibly
 registration pages. Safari wouldn't help, I don't think, as WebKit
 isn't (I don't believe) the Javascript engine in use in either Safari
 or Chrome.
 
 Tell patrons to use Firefox
http://www.mozilla.com/en-US/firefox/
 until you find a fix for the problem.
 
 I can't get 'em to deposit papers; you think I'm gonna get 'em to
 switch browsers? ;)
 
 I've filed a bug on this in JIRA. If anybody has any more details,
 they'd be appreciated. I think Chrome just put out a Mac version; I'll
 give it a spin when I have time.
 
 Dorothea
 

-- 
Tim Donohue
Research Programmer, IDEALS
http://www.ideals.uiuc.edu/
University of Illinois
tdono...@illinois.edu | (217) 333-4648

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Dspace 1.5

2009-02-26 Thread Diggory Mark


On Feb 26, 2009, at 5:38 AM, K. Jones wrote:




 Date: Wed, 25 Feb 2009 08:29:32 -0800
 Subject: Re: [Dspace-tech] Manakin and Dspace 1.5
 From: mdigg...@gmail.com
 To: sunjew...@hotmail.com
 CC: dspace-tech@lists.sourceforge.net

 Are you completing all the steps in the build process?

 cd [dspace-source]/dspace
 maven package
 cd [dspace-source]/dspace/target/dspace-1.5.1-build.dir
 ant [fresh-install or update or init_configs]

 You should be able to then move the resulting [dspace]/webapps/xmlui
 (by default it is in /dspace/webapps/xmlui) or configure tomcats
 server.xml to use [dspace]/webapps as its webapp root.

 Mark

Mark,

Thanks for the help, but I went through each of the steps outlined  
above and I still can not find the files.  Nothing is being created  
in the /xmlui/aspects folder.  Is there something I am missing?


Thanks


Perhaps you can post the output to your console when running the above  
commands. -Mark



--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin and Dspace 1.5

2009-02-25 Thread K. Jones


Hello,

I'm trying to get the xmlui interface running for dspace 1.5.  I've moved the 
xmlui folder to the tomcat webapps directory, but I'm getting an error in 
cocoon, which indicates that the ArtifactBrowser aspect can not be found.  I've 
gone into the xmlui/aspects folder and I do not see any code for the aspects. 
There is only the aspects.xmap and protodocument.xml files.  Where are the 
aspects placed on an install of dspace 1.5.

Thanks



Right now I've moved the xmlui folder into my webapps area, but I'm getting a 
cocoon error.

java.io.FileNotFoundException:
  /opt/tomcat/webapps/xmlui/aspects/ArtifactBrowser/sitemap.xmap

_
It’s the same Hotmail®. If by “same” you mean up to 70% faster. 
http://windowslive.com/online/hotmail?ocid=TXT_TAGLM_WL_HM_AE_Same_022009--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and Dspace 1.5

2009-02-25 Thread Mark Diggory
Are you completing all the steps in the build process?

cd [dspace-source]/dspace
maven package
cd [dspace-source]/dspace/target/dspace-1.5.1-build.dir
ant [fresh-install or update or init_configs]

You should be able to then move the resulting [dspace]/webapps/xmlui
(by default it is in /dspace/webapps/xmlui) or configure tomcats
server.xml to use [dspace]/webapps as its webapp root.

Mark

On Wed, Feb 25, 2009 at 5:54 AM, K. Jones sunjew...@hotmail.com wrote:

 Hello,

 I'm trying to get the xmlui interface running for dspace 1.5.  I've moved
 the xmlui folder to the tomcat webapps directory, but I'm getting an error
 in cocoon, which indicates that the ArtifactBrowser aspect can not be
 found.  I've gone into the xmlui/aspects folder and I do not see any code
 for the aspects. There is only the aspects.xmap and protodocument.xml
 files.  Where are the aspects placed on an install of dspace 1.5.

 Thanks



 Right now I've moved the xmlui folder into my webapps area, but I'm getting
 a cocoon error.

 java.io.FileNotFoundException:
 /opt/tomcat/webapps/xmlui/aspects/ArtifactBrowser/sitemap.xmap

 
 It’s the same Hotmail®. If by “same” you mean up to 70% faster. Get your
 account now.
 --
 Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
 -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
 -Strategies to boost innovation and cut costs with open source participation
 -Receive a $600 discount off the registration fee with the source code: SFAD
 http://p.sf.net/sfu/XcvMzF8H
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech





-- 
~
Mark R. Diggory
Home Page: http://purl.org/net/mdiggory/homepage
Skype ID: mdiggory

--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin Documentation

2009-02-24 Thread Mark H. Wood
On Mon, Feb 23, 2009 at 07:23:29PM +, K. Jones wrote:
 Does anyone know a good link or site that has documentation for Manakin in 
 Dspace 1.5.
 
 I need some information for getting the xmlui running under tomcat. 

You mean, beyond Chapter 5 section 5 (XMLUI Interface Customizations
(Manakin) of the included documentation kit?  Or Chapter 13 (DRI
Schema Reference)?

-- 
Mark H. Wood, Lead System Programmer   mw...@iupui.edu
Friends don't let friends publish revisable-form documents.


pgpqYwLP3kw1b.pgp
Description: PGP signature
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin Documentation

2009-02-23 Thread K. Jones

Does anyone know a good link or site that has documentation for Manakin in 
Dspace 1.5.

I need some information for getting the xmlui running under tomcat. 

Thanks

_
Windows Live™ Hotmail®:…more than just e-mail. 
http://windowslive.com/explore?ocid=TXT_TAGLM_WL_t2_hm_justgotbetter_explore_022009--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin cache issues (1.4.2)

2009-01-29 Thread Scott Phillips


yes, there are some cache issues with Manakin 1.1 on DSpace 1.4.2,  
somewhere way back in the email archive for dspace-dev there is a  
patch that fixes the issue... Or alternatively you could update to  
DSpace 1.5.0 or 1.5.1... And finally if it's not going to cause  
problems you can just turn off caching in cocoon:


Open, webapp/sitemap.xmap, and locate the following lines (around line  
168ish)


map:pipes default=caching
map:pipe name=noncaching  
src 
= 
org 
.apache.cocoon.components.pipeline.impl.NonCachingProcessingPipeline

/map:pipe
map:pipe name=caching  
src 
=org.apache.cocoon.components.pipeline.impl.CachingProcessingPipeline

/map:pipe
/map:pipes


Change the default attribute to = 'noncaching' this will turn off  
catching for all pipelines.


Scott--



On Jan 29, 2009, at 12:26 PM, Rafael Henkin wrote:


Hi,

We have been experiencing some problems with the Cocoon  
cache. Sometimes it keeps growing undefinedly. While it’s something  
that doesn’t occur everyday, when it happens we must restart Tomcat  
or the FS will have no space left. We have also noticed that  
sometimes the cache is apparently not used at all.
In cocoon.xconf the transient-store (which from what I  
read defines the Cocoon cache) is set to 1, along with the  
normal store. I would like to know if anyone has any advice  
regarding this?


Thanks,
Rafael Henkin
--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin and Camtasia

2008-12-18 Thread Paterson, Brian [BSD] - PSM
Hi,

 

I am having difficulty getting Camtasia screencasts to play from Manakin
(DSpace 1.5.1).  It would get stuck at the Loading Controls stage,
even though the stage reads to be 100% complete.  I have found several
similar complaints online, but many of them seemed to be resolved by
setting the mime type for the swf files.  This solution did not work for
me.

 

If I place the Camtasia files in another (non-dspace) webapp under the
same Tomcat server they run just fine.  I have tried checking the HTTP
headers, and changing the DSpace mime types for all the requested files
to match those returned by a working copy of the screencast outside of
DSpace, but still no go.

 

To further add to the confusion, certain versions of Flash don't have
this problem (ex. Version 9R124), so it appears that this might be
caused by a bug in Flash, but I would like to identify what exactly is
different about opening the files from Manakin that is causing it not to
work.

 

Thanks.

 

 


Brian Paterson
Senior Programmer Analyst
The University of Chicago - Pritzker School of Medicine
1100 E 57th St, Suite 220
Chicago, Illinois 60637
Phone: 773-702-4804

Fax: 773-702-8802

 



This email is intended only for the use of the individual or entity to which it 
is addressed and may contain information that is privileged and confidential. 
If the reader of this email message is not the intended recipient, you are 
hereby notified that any dissemination, distribution, or copying of this 
communication is prohibited. If you have received this email in error, please 
notify the sender and destroy/delete all copies of the transmittal. Thank you.

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] manakin theme

2008-12-16 Thread Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Hi,

 Sorry, I have not implemented 1.5 yet and cannot answer any Manakin
questions.  Why don't you post it to the dspace-tech list @
dspace-tech@lists.sourceforge.net ?

Good luck!

Sue

 



From: bharat chaudhari [mailto:bharat.chaudh...@ipmg.ac.in] 
Sent: Sunday, December 14, 2008 3:26 AM
To: Thornton, Susan M. (LARC-B702)[NCI INFORMATION SYSTEMS]
Subject: manakin theme

 

 

Dear Sir,

 

If you are familiar with manakin module or its theme

I need your help in theme base dspace.

I have deployed the Kubrick (worpress base) theme for manakin and it is
nicely effective template.

I need more templates for the commonalities, and I hope some templates
should be developed and hosted on the Dspace platform. Like drupal and
joomal communites have done so far.

 

I need different  theme (files like; style.css, style-ie6.css,
sitemap.xmap and jquery-1.2.min.js etc)

 

Could you please help me ? or is it possible to host a portal for
various theme.

 

Please do needful

 

 

Bharat Chaudhari

Digital Librarian

Institute of Petroleum Management, Gandhinagar

INDIA

(Office)+91 7923275118

(M)+91 9428415401

 

 

--
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin home page links

2008-10-13 Thread Serhiy Polyakov
Thanks! It worked for dspace/config/news-xmlui.xml

I also needed to add links inside or near the hint tag of
dspace/config/input-forms.xml but xref tag did not work there.
I just need some external reference for submitters about filling out
submission form.

Any suggestions?

Thanks,
Serhiy


On Fri, Oct 10, 2008 at 2:30 AM, mikan.d.dspace listmail
[EMAIL PROTECTED] wrote:
 Try:

 xref target=http://yourlink.com/;This is link./xref

 -Mika

 2008/10/10 Serhiy Polyakov [EMAIL PROTECTED]

 Hello,

 I have simple question about Manakin. I need to edit text in
 dspace/config/news-xmlui.xml and have some html links along with the
 text there. This appears on the home page of DSpace.

 When I add links they are striped out, when I use HTML entities for
 brackets link shows up literally but not as a hot link.

 Thanks,
 Serhiy

 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win great
 prizes
 Grand prize is a trip for two to an Open Source event anywhere in the
 world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin home page links

2008-10-09 Thread Serhiy Polyakov
Hello,

I have simple question about Manakin. I need to edit text in
dspace/config/news-xmlui.xml and have some html links along with the
text there. This appears on the home page of DSpace.

When I add links they are striped out, when I use HTML entities for
brackets link shows up literally but not as a hot link.

Thanks,
Serhiy

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] manakin - new theme

2008-09-26 Thread Janssens Karen
Hi

I'm writing a new theme for Manakin (DSpace 1.5 on windows), follwing 
the strategy described in LearningToUseManakin-JA-SIG-2008.pdf. It is 
not clear to me however, where I should edit the my_theme.xsl and 
css-files. When I make changes to the css in the 
[dspace]/webapps/xmlui/themes/my_theme directory, they do not take 
effect (I did stop and restart Tomcat).

- Should I do this in the my_theme-directory under the 
Tomcat/webapps/xmlui/my_theme - directory?
- or should I do it in the 
[dspace-source]/dspace/modules/xmlui/src/main/webapp/themes/my_theme 
directory and deploy the whole thing every time I make a change? I 
shouldn't think so, but...

I tried to find the answer also on the dspace-wiki (ManakinHowTo) but it 
is not clear to me which directory is the so-called [manakin-source].

thanks!
Karen

-- 
Karen Janssens
Universiteit Antwerpen
Anet - Bibliotheekautomatisering
Bibliotheek Stadscampus
Prinsstraat 9
B-2000 Antwerpen
Belgium
Tel+32 3 220.49.71
Email  [EMAIL PROTECTED]

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] manakin - new theme

2008-09-26 Thread Reuben Pasquini
Hi Karen,

You need to point XMLUI at your new theme in the
dspace/config/xmlui.xconf
file:

$ grep Auburn /opt/dspace15/config/xmlui.*
/opt/dspace15/config/xmlui.xconf:theme name=Auburn Theme
regex=.* path=Auburn/ /

You'll probably need to restart Tomcat after changing that.
The sitemap.xmap within your theme tells XMLUI which CSS
files to reference:

$ grep css webapps/xmlui/themes/Auburn/sitemap.xmap
map:parameter name=stylesheet.screen#1 value=lib/style.css/
map:parameter name=stylesheet.screen#2 value=lib/style-ie.css/
map:parameter name=stylesheet.screen#3
value=lib/auburn_css/ddcss_all.css/
map:parameter name=stylesheet.print#1
value=lib/auburn_css/ddcss_print.css/
map:parameter name=stylesheet.screen#1 value=lib/style.css/
map:parameter name=stylesheet.screen#2
value=lib/auburn_css/ddcss_all.css/
map:parameter name=stylesheet.print
value=lib/auburn_css/ddcss_print.css/


Good Luck!
Reuben



 Janssens Karen [EMAIL PROTECTED] 9/26/2008 5:22 AM 
Hi

I'm writing a new theme for Manakin (DSpace 1.5 on windows), follwing 
the strategy described in LearningToUseManakin-JA-SIG-2008.pdf. It is

not clear to me however, where I should edit the my_theme.xsl and 
css-files. When I make changes to the css in the 
[dspace]/webapps/xmlui/themes/my_theme directory, they do not take 
effect (I did stop and restart Tomcat).

- Should I do this in the my_theme-directory under the 
Tomcat/webapps/xmlui/my_theme - directory?
- or should I do it in the 
[dspace-source]/dspace/modules/xmlui/src/main/webapp/themes/my_theme 
directory and deploy the whole thing every time I make a change? I 
shouldn't think so, but...

I tried to find the answer also on the dspace-wiki (ManakinHowTo) but
it 
is not clear to me which directory is the so-called [manakin-source].

thanks!
Karen

-- 
Karen Janssens
Universiteit Antwerpen
Anet - Bibliotheekautomatisering
Bibliotheek Stadscampus
Prinsstraat 9
B-2000 Antwerpen
Belgium
Tel+32 3 220.49.71
Email  [EMAIL PROTECTED] 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-25 Thread Walker, David
 Your sites down, so I can't view your example.

Sorry, bad timing with a hardware upgrade.  Back now.  :-)

  http://scholarworks.calstate.edu/scholarworks_xmlui/handle/123456789/5

As you can see, Dorthea's template renders this element as it should -- or at 
least without the duplicate definition term.  So that makes me think that the 
problem lies outside this template.

 I just think your messages.xml labels are different

Sorry, I was unclear before.  I mean the actual keys, rather than just the 
labels, are different -- maybe because this is a pre-1.5 messages.xml ?  That 
probably makes no difference.

--Dave

==
David Walker
Library Web Services Manager
California State University
http://xerxes.calstate.edu

From: Mark Diggory [EMAIL PROTECTED] On Behalf Of Mark Diggory [EMAIL PROTECTED]
Sent: Wednesday, September 24, 2008 4:55 PM
To: Walker, David
Cc: Dorothea Salo; dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

I just think your messages.xml labels are different. the generated
html is the same and I bet the length of the value causes yours to
wrap to the line above. Your sites down, so I can't view your example.

Dorothea, could you just drop your war on a url somewhere and send it
to me... I'll look at it on my workstation.

-Mark


On Sep 24, 2008, at 4:43 PM, Walker, David wrote:

 I don't think that's it, Mark, because the same template works in
 our test instance, even with the dd /.

 http://scholarworks.calstate.edu/scholarworks_xmlui/handle/123456789/5

 dtThis item appears in the following Collection(s)/dt
 dd /
 dtPart of/dt
 ddhttp://www.aip.org; http://apl.aip.org//dd

 I also don't get those i18n namespaces in the resulting output, as
 Dorthea does.  I also notice that some of the labels in the
 utils.xsl template are (slightly) different from the ones in the
 messages.xml file in out newly installed 1.5 instance.  Not sure
 what that means, honestly, just thought I'd mention it.

 --Dave

 ==
 David Walker
 Library Web Services Manager
 California State University
 http://xerxes.calstate.edu
 
 From: Mark Diggory [EMAIL PROTECTED]
 Sent: Wednesday, September 24, 2008 2:40 PM
 To: Dorothea Salo
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

 I believe its the section above...
 xmlui.ArtifactBrowser.ItemViewer.head_parent_collections creates
 the same label and your dd doesn't create any body, which closes it
 out (dd/) and breaks the flow.

   !-- Kill the fields if they're empty. -DS --
 dt

 i18n:textxmlui.ArtifactBrowser.ItemViewer.head_parent_collections/
 i
 18n:text
 /dt

 dd
 xsl:for-each
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer' and @n='collection-viewer']/dri:reference
 xsl:apply-templates
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer'and @n='collection-viewer']/dri:reference
 mode=render/
 xsl:if test=count(following-
 sibling::dri:reference) != 0
 xsl:text; /xsl:text
 /xsl:if
 /xsl:for-each
 /dd



 On Sep 24, 2008, at 1:40 PM, Dorothea Salo wrote:

 I wonder if we have enough XSL context to see the problem.

 The utilities template is available from
 http://minds-test.wisconsin.edu/themes/utils.xsl, and the UW-
 Madison
 theme that inherits this theme is at
 http://minds-test.wisconsin.edu/themes/UWMadison/uwmadison.xsl.
 Share and enjoy!

 (Not that I'm anything like an XSL wizard, but this looks like a
 good
 learning opportunity and, who knows? I might solve it.)

 The empty 'dd' really draws my attention but I can't yet see how it
 happens.

 Oh, good, it's not just me! I'm baffled and feeling ungodly stupid
 that I can't seem to solve this (especially when the same technique
 seems to work FINE for authors!).

 Dorothea

 --
 Dorothea Salo [EMAIL PROTECTED]
 Digital Repository Librarian AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 -
 -
 ---
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win
 great prizes
 Grand prize is a trip for two to an Open Source event anywhere in
 the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-25 Thread Dorothea Salo
On Thu, Sep 25, 2008 at 9:10 AM, Walker, David [EMAIL PROTECTED] wrote:

 I just think your messages.xml labels are different

 Sorry, I was unclear before.  I mean the actual keys, rather than just the 
 labels, are different -- maybe because this is a pre-1.5 messages.xml ?  That 
 probably makes no difference.

Yes, that's right -- this template dates from 1.4.x + Manakin 1.x
days, when relation.ispartof wasn't in the out-of-the-box metadata
section, and I should probably take a look at what keys 1.5.x added,
to remove any duplication!

I'll nose around to see if there's another template or template
section going boom and let folks know. I really appreciate all the
help!

Dorothea

-- 
Dorothea Salo [EMAIL PROTECTED]
Digital Repository Librarian AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-25 Thread Diggory Mark
Actually, after looking at this further, I understand something more  
about the section below. The context in which this template is being  
executed is the dim section of a mets document, you cannot reference  
the below xpath in that location and have it evaluate properly, this  
is why that section is usually render in another template further down  
in the page.


/dri:document/dri:body/dri:div/ 
dri:referenceSet 
[EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection- 
viewer' and @n='collection-viewer']/dri:reference


Remove the whole section matching this statement and your problem will  
go away.



 !-- Kill the fields if they're empty. -DS --
   dt

i18n:textxmlui.ArtifactBrowser.ItemViewer.head_parent_collections/i
18n:text
   /dt

   dd
   xsl:for-each
   select=/dri:document/dri:body/dri:div/
dri:referenceSet
[EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
viewer' and @n='collection-viewer']/dri:reference
   xsl:apply-templates
   select=/dri:document/dri:body/dri:div/
dri:referenceSet
[EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
viewer'and @n='collection-viewer']/dri:reference
   mode=render/
   xsl:if test=count(following-
sibling::dri:reference) != 0
   xsl:text; /xsl:text
   /xsl:if
   /xsl:for-each
   /dd


Likewise, yes I would recommend looking at those tempaltes/messages/ 
xml in 1.5 to migrate the theme appropriately to your new instance.


-Mark

On Sep 25, 2008, at 8:17 AM, Dorothea Salo wrote:

On Thu, Sep 25, 2008 at 9:10 AM, Walker, David  
[EMAIL PROTECTED] wrote:



I just think your messages.xml labels are different


Sorry, I was unclear before.  I mean the actual keys, rather than  
just the labels, are different -- maybe because this is a pre-1.5  
messages.xml ?  That probably makes no difference.


Yes, that's right -- this template dates from 1.4.x + Manakin 1.x
days, when relation.ispartof wasn't in the out-of-the-box metadata
section, and I should probably take a look at what keys 1.5.x added,
to remove any duplication!

I'll nose around to see if there's another template or template
section going boom and let folks know. I really appreciate all the
help!

Dorothea

--
Dorothea Salo [EMAIL PROTECTED]
Digital Repository Librarian AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.Net email is sponsored by the Moblin Your Move Developer's  
challenge
Build the coolest Linux based applications with Moblin SDK  win  
great prizes
Grand prize is a trip for two to an Open Source event anywhere in  
the world

http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-24 Thread Dorothea Salo
First, the problem: http://minds-test.wisconsin.edu/handle/1760/11124.

Next, the code that is generating the problem:

xsl:if test=dim:[EMAIL PROTECTED]'relation' and @qualifier='ispartof']
  dt
i18n:textxmlui.dri2xhtml-METS-1.0.ispartof/i18n:text
  /dt
  dd
xsl:for-each select=dim:[EMAIL PROTECTED]'relation' and
@qualifier='ispartof']
  xsl:copy-of select=./child::node()/
  xsl:if test=count(following-sibling::dim:[EMAIL PROTECTED]'relation'
and @qualifier='ispartof']) != 0
xsl:text; /xsl:text
  /xsl:if
/xsl:for-each
  /dd
/xsl:if

My brain is broken. How did I mess this up?

Dorothea

-- 
Dorothea Salo [EMAIL PROTECTED]
Digital Repository Librarian AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-24 Thread Mark Diggory
Wheres the problem?

Note, Sometimes I get duplicate Headers when editing the xslt in  
place, I think this is caused by some caching bug in the application,  
it generally goes away if I restart the web-application.

-Mark

On Sep 24, 2008, at 11:48 AM, Dorothea Salo wrote:

 First, the problem: http://minds-test.wisconsin.edu/handle/ 
 1760/11124.

 Next, the code that is generating the problem:

 xsl:if test=dim:[EMAIL PROTECTED]'relation' and  
 @qualifier='ispartof']
   dt
 i18n:textxmlui.dri2xhtml-METS-1.0.ispartof/i18n:text
   /dt
   dd
 xsl:for-each select=dim:[EMAIL PROTECTED]'relation' and
 @qualifier='ispartof']
   xsl:copy-of select=./child::node()/
   xsl:if test=count(following-sibling::dim:field 
 [EMAIL PROTECTED]'relation'
 and @qualifier='ispartof']) != 0
 xsl:text; /xsl:text
   /xsl:if
 /xsl:for-each
   /dd
 /xsl:if

 My brain is broken. How did I mess this up?

 Dorothea

 -- 
 Dorothea Salo [EMAIL PROTECTED]
 Digital Repository Librarian AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 -- 
 ---
 This SF.Net email is sponsored by the Moblin Your Move Developer's  
 challenge
 Build the coolest Linux based applications with Moblin SDK  win  
 great prizes
 Grand prize is a trip for two to an Open Source event anywhere in  
 the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

~
Mark R. Diggory - DSpace Developer and Systems Manager
MIT Libraries, Systems and Technology Services
Massachusetts Institute of Technology
Home Page: http://purl.org/net/mdiggory/homepage






-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-24 Thread Dorothea Salo
 I wonder if we have enough XSL context to see the problem.

The utilities template is available from
http://minds-test.wisconsin.edu/themes/utils.xsl, and the UW-Madison
theme that inherits this theme is at
http://minds-test.wisconsin.edu/themes/UWMadison/uwmadison.xsl.
Share and enjoy!

 (Not that I'm anything like an XSL wizard, but this looks like a good
 learning opportunity and, who knows? I might solve it.)

 The empty 'dd' really draws my attention but I can't yet see how it
 happens.

Oh, good, it's not just me! I'm baffled and feeling ungodly stupid
that I can't seem to solve this (especially when the same technique
seems to work FINE for authors!).

Dorothea

-- 
Dorothea Salo [EMAIL PROTECTED]
Digital Repository Librarian AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-24 Thread Mark Diggory
I just think your messages.xml labels are different. the generated  
html is the same and I bet the length of the value causes yours to  
wrap to the line above. Your sites down, so I can't view your example.

Dorothea, could you just drop your war on a url somewhere and send it  
to me... I'll look at it on my workstation.

-Mark


On Sep 24, 2008, at 4:43 PM, Walker, David wrote:

 I don't think that's it, Mark, because the same template works in  
 our test instance, even with the dd /.

 http://scholarworks.calstate.edu/scholarworks_xmlui/handle/123456789/5

 dtThis item appears in the following Collection(s)/dt
 dd /
 dtPart of/dt
 ddhttp://www.aip.org; http://apl.aip.org//dd

 I also don't get those i18n namespaces in the resulting output, as  
 Dorthea does.  I also notice that some of the labels in the  
 utils.xsl template are (slightly) different from the ones in the  
 messages.xml file in out newly installed 1.5 instance.  Not sure  
 what that means, honestly, just thought I'd mention it.

 --Dave

 ==
 David Walker
 Library Web Services Manager
 California State University
 http://xerxes.calstate.edu
 
 From: Mark Diggory [EMAIL PROTECTED]
 Sent: Wednesday, September 24, 2008 2:40 PM
 To: Dorothea Salo
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

 I believe its the section above...
 xmlui.ArtifactBrowser.ItemViewer.head_parent_collections creates
 the same label and your dd doesn't create any body, which closes it
 out (dd/) and breaks the flow.

   !-- Kill the fields if they're empty. -DS --
 dt

 i18n:textxmlui.ArtifactBrowser.ItemViewer.head_parent_collections/ 
 i
 18n:text
 /dt

 dd
 xsl:for-each
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer' and @n='collection-viewer']/dri:reference
 xsl:apply-templates
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer'and @n='collection-viewer']/dri:reference
 mode=render/
 xsl:if test=count(following-
 sibling::dri:reference) != 0
 xsl:text; /xsl:text
 /xsl:if
 /xsl:for-each
 /dd



 On Sep 24, 2008, at 1:40 PM, Dorothea Salo wrote:

 I wonder if we have enough XSL context to see the problem.

 The utilities template is available from
 http://minds-test.wisconsin.edu/themes/utils.xsl, and the UW- 
 Madison
 theme that inherits this theme is at
 http://minds-test.wisconsin.edu/themes/UWMadison/uwmadison.xsl.
 Share and enjoy!

 (Not that I'm anything like an XSL wizard, but this looks like a  
 good
 learning opportunity and, who knows? I might solve it.)

 The empty 'dd' really draws my attention but I can't yet see how it
 happens.

 Oh, good, it's not just me! I'm baffled and feeling ungodly stupid
 that I can't seem to solve this (especially when the same technique
 seems to work FINE for authors!).

 Dorothea

 --
 Dorothea Salo [EMAIL PROTECTED]
 Digital Repository Librarian AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 - 
 -
 ---
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win
 great prizes
 Grand prize is a trip for two to an Open Source event anywhere in
 the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

 ~
 Mark R. Diggory - DSpace Developer and Systems Manager
 MIT Libraries, Systems and Technology Services
 Massachusetts Institute of Technology
 Home Page: http://purl.org/net/mdiggory/homepage






 -- 
 ---
 This SF.Net email is sponsored by the Moblin Your Move Developer's  
 challenge
 Build the coolest Linux based applications with Moblin SDK  win  
 great prizes
 Grand prize is a trip for two to an Open Source event anywhere in  
 the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

~
Mark R. Diggory - DSpace Developer and Systems Manager
MIT Libraries, Systems and Technology Services
Massachusetts Institute of Technology
Home Page: http://purl.org/net/mdiggory/homepage

Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

2008-09-24 Thread Walker, David
I don't think that's it, Mark, because the same template works in our test 
instance, even with the dd /.

http://scholarworks.calstate.edu/scholarworks_xmlui/handle/123456789/5

dtThis item appears in the following Collection(s)/dt
dd /
dtPart of/dt
ddhttp://www.aip.org; http://apl.aip.org//dd

I also don't get those i18n namespaces in the resulting output, as Dorthea 
does.  I also notice that some of the labels in the utils.xsl template are 
(slightly) different from the ones in the messages.xml file in out newly 
installed 1.5 instance.  Not sure what that means, honestly, just thought I'd 
mention it.

--Dave

==
David Walker
Library Web Services Manager
California State University
http://xerxes.calstate.edu

From: Mark Diggory [EMAIL PROTECTED]
Sent: Wednesday, September 24, 2008 2:40 PM
To: Dorothea Salo
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Manakin: Why am I getting a doubled header?

I believe its the section above...
xmlui.ArtifactBrowser.ItemViewer.head_parent_collections creates
the same label and your dd doesn't create any body, which closes it
out (dd/) and breaks the flow.

   !-- Kill the fields if they're empty. -DS --
 dt

 i18n:textxmlui.ArtifactBrowser.ItemViewer.head_parent_collections/i
 18n:text
 /dt

 dd
 xsl:for-each
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer' and @n='collection-viewer']/dri:reference
 xsl:apply-templates
 select=/dri:document/dri:body/dri:div/
 dri:referenceSet
 [EMAIL PROTECTED]'aspect.artifactbrowser.ItemViewer.referenceSet.collection-
 viewer'and @n='collection-viewer']/dri:reference
 mode=render/
 xsl:if test=count(following-
 sibling::dri:reference) != 0
 xsl:text; /xsl:text
 /xsl:if
 /xsl:for-each
 /dd



On Sep 24, 2008, at 1:40 PM, Dorothea Salo wrote:

 I wonder if we have enough XSL context to see the problem.

 The utilities template is available from
 http://minds-test.wisconsin.edu/themes/utils.xsl, and the UW-Madison
 theme that inherits this theme is at
 http://minds-test.wisconsin.edu/themes/UWMadison/uwmadison.xsl.
 Share and enjoy!

 (Not that I'm anything like an XSL wizard, but this looks like a good
 learning opportunity and, who knows? I might solve it.)

 The empty 'dd' really draws my attention but I can't yet see how it
 happens.

 Oh, good, it's not just me! I'm baffled and feeling ungodly stupid
 that I can't seem to solve this (especially when the same technique
 seems to work FINE for authors!).

 Dorothea

 --
 Dorothea Salo [EMAIL PROTECTED]
 Digital Repository Librarian AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 --
 ---
 This SF.Net email is sponsored by the Moblin Your Move Developer's
 challenge
 Build the coolest Linux based applications with Moblin SDK  win
 great prizes
 Grand prize is a trip for two to an Open Source event anywhere in
 the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

~
Mark R. Diggory - DSpace Developer and Systems Manager
MIT Libraries, Systems and Technology Services
Massachusetts Institute of Technology
Home Page: http://purl.org/net/mdiggory/homepage






-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin and dspace.log (statistics)

2008-08-21 Thread Mark H. Wood
On Wed, Aug 20, 2008 at 04:29:33PM -0430, Juan Arias wrote:
 For migrating we have the requirement that we must have item viewing and
 bitstream downloading statistics. Therefore we successfuly installed the
 statistics addon from the Uni do Minho.
 
 The problem is that item views and bitstream downloads in the manakin
 interface do not generate statistics!. I was checking and it seems that
 Manakin does not write an INFO entry in the dspace.log file as the
 jspui does.
 
 Is the patch 2025998 related to this?. I have seen also some Email
 traffic in which it is said that this issue is a feature for DSpace
 1.5.1. Is that right?

Related, yes, but 2025998 is not an immediate solution to your
problem.  That patch is meant to provide standard instrumentation
which calls out to your choice of statistical package, so that various
packages can be easier to develop and install.  But the statistical
package itself would need to be written or adapted to accept those
calls.  I've made that adaptation for the University of Rochester
package since that is what we use here.  The patch does instrument
both JSPUI and XMLUI.

It sounds like the Minho package collects observations from the
dspace.log file.  The mechanism in 2025998 would not be immediately
applicable.  I don't know anything, really, about the Minho package,
and couldn't (yet) say how much work it would require to adapt it to
use my patch.  I'm sorry.

I intended that 2025998 be ready for inclusion in DSpace 1.5.1, but at
this point I think the release process is too far advanced for that,
and I have heard no plan to include that patch in 1.5.1.  I now hope
that it may be accepted into 1.5.2, or whatever the next release may be.

In the meantime, you could read 2025998 to see where the log records
should be produced by XMLUI, which might save you some time.

-- 
Mark H. Wood, Lead System Programmer   [EMAIL PROTECTED]
Typically when a software vendor says that a product is intuitive he
means the exact opposite.



pgpR2I3jSU3aO.pgp
Description: PGP signature
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin and dspace.log (statistics)

2008-08-20 Thread Juan Arias
Dear DSpace Community,

we are migrating our Institutional Repository to DSpace. We have done
some tests with DSpace 1.4.2 and Manakin. You can take a look at:
http://tesla.saber.ula.ve:8080/dspace and
http://tesla.saber.ula.ve:8080/manakin

For migrating we have the requirement that we must have item viewing and
bitstream downloading statistics. Therefore we successfuly installed the
statistics addon from the Uni do Minho.

The problem is that item views and bitstream downloads in the manakin
interface do not generate statistics!. I was checking and it seems that
Manakin does not write an INFO entry in the dspace.log file as the
jspui does.

Is the patch 2025998 related to this?. I have seen also some Email
traffic in which it is said that this issue is a feature for DSpace
1.5.1. Is that right?

Is there any way to use Manakin and a stable version of DSpace (i.e.
1.5) and be able to generate viewing and downloading statistics?

Thank you very much for your help.

By the way, we have generated some documentation on our migration
experience at http://proyectos.saber.ula.ve/wikiud/index.php/Aspectos_t%
C3%A9cnicos_de_la_migraci%C3%B3n (it is in Spanish).


Juan Arias
Corporación Parque Tecnológico de Mérida
juanarias at ula dot ve


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] manakin media detail view

2008-08-13 Thread Ryan Kanzeg
Hello,

I am trying to add a section to the output of a detail view page.  I want to
add the full URL to the bitstream of the file, but i want it to be in a
hidden field.

so I basically want to add this

input type=hidden value=
http://www.website.com/xmlui/bitstream/handle/123456789/25/samplesong.mp3?sequence=1;
/

How and where would i add this?  would this be something in the
structural.xsl?

Thanks,

Ryan
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] manakin download link

2008-07-08 Thread Ryan Kanzeg
I am using dspace 1.5 and I am trying to get access to the download link of
the file in the DIM-handler.xsl file.  Basically I want to put the download
link in Javasrcript that is rendered in the full item view and the simple
item view.

I have done stuff like the following

xsl:if test=dim:[EMAIL PROTECTED]'audio' and @qualifier='albumname']
  script type=text/javascript
var albums = xsl:for-each
select=dim:[EMAIL PROTECTED]'title'][not(@qualifier)]
xsl:copy-of
select=./mets:[EMAIL PROTECTED]'LOGICAL']/mets:[EMAIL PROTECTED]'DSpace
Item']/mets:fptr/@FILEID /
 /xsl:for-each
  /script
/xsl:if

And it comes back blank.

Thanks
-
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] manakin - file URL

2008-06-20 Thread Ryan Kanzeg
I am using dspace 1.5 and I am trying to get access to the download link of
the file in the DIM-handler.xsl file.  Basically I want to put the download
link in Javasrcript that is rendered in the full item view and the simple
item view.

I have done stuff like the following

xsl:if test=dim:[EMAIL PROTECTED]'audio' and @qualifier='albumname']
  script type=text/javascript
var albums = xsl:for-each
select=dim:[EMAIL PROTECTED]'title'][not(@qualifier)]
xsl:copy-of
select=./mets:[EMAIL PROTECTED]'LOGICAL']/mets:[EMAIL PROTECTED]'DSpace
Item']/mets:fptr/@FILEID /
 /xsl:for-each
  /script
/xsl:if

And it comes back blank.

Thanks
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin twobox

2008-06-10 Thread Smith, Andrew J
Still struggling with this, but have some progress to report.

In the Manakin Submission aspect, DescribeStep.java has comments that a twobox 
type must be taken care of in the theme:

 // We don't have a twobox field, instead it's just a
 // one box field that the theme can render in two columns.

 // Both onebox and twobox consist a free form text field
 // that the user may enter any value. The difference between
 // the two is that a onebox should be rendered in one column
 // as twobox should be listed in a two column format. Since this
 // decision is not something the Aspect can effect we merely place
 // as a render hint.

So, looking to a JSP interface as an example, I was guessing that the text 
boxes should be named dc_subject_0 and dc_subject_1 . So I placed the following 
in the theme:

!-- Make TwoBox for dc_subject fields --
  input
  !-- xsl:attribute 
name=idsubmission_StepTransformer_field_dc_subject/xsl:attribute --
xsl:attribute name=classds-text-field submit-text/xsl:attribute
xsl:attribute name=namedc_subject_0/xsl:attribute
 xsl:attribute name=typetext/xsl:attribute
 !-- xsl:attribute name=value/xsl:attribute --
  /input
  input
!-- xsl:attribute 
name=idsubmission_StepTransformer_field_dc_subject/xsl:attribute --
xsl:attribute name=classds-text-field submit-text/xsl:attribute
xsl:attribute name=namedc_subject_1/xsl:attribute
 xsl:attribute name=typetext/xsl:attribute
 !-- xsl:attribute name=value/xsl:attribute --
  /input

But this didn't do the trick (with or without id's).  After some experimenting 
I came up with the following results.

dc_subject_0, dc_subject_1 - Values not display after Add button,  Values not 
retained.
dc_subject, dc_subject_0 - Only dc_subject displayed and retained.
dc_subject, dc_subject_1 - Both displayed, Only dc_subject_1 retained.

Could someone explain what is happening or point out a better way to get a 
twobox display in Manakin?

Thanks,
Andy

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Smith, Andrew J
Sent: Monday, June 09, 2008 11:59 AM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Manakin twobox

Hello,

Has anyone run into Manakin 1.1 not properly handling the input type of twobox 
from the input-forms.xml?  I have a couple of instances in which the JSP 
interface properly shows a twobox field with two text boxs and an Add, while 
only one text box and the Add button occur in the manakin interface.

Thanks,
Andy


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin twobox

2008-06-09 Thread Smith, Andrew J
Hello,

Has anyone run into Manakin 1.1 not properly handling the input type of twobox 
from the input-forms.xml?  I have a couple of instances in which the JSP 
interface properly shows a twobox field with two text boxs and an Add, while 
only one text box and the Add button occur in the manakin interface.

Thanks,
Andy


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin

2008-06-09 Thread Conal Tuohy
Vincent

RSS feeds are supported in Manakin but (as far as I know) they are only
exposed via html/head/link elements - they don't appear as hyperlinks in
the html body. If you'd like to see them in the body of your web pages
as well I have a Manakin aspect you could use to do so. Just let me
know.

Conal

On Mon, 2008-06-09 at 14:42 +0200, BAILLY, Vincent wrote:
 Hello,
  
 I am looking for adding RSS to manakin
 I beleive that i should look for this in the theme but i don't know
 where exactly
 and I didn't found anymore information on the net.
 So if anybody can explain it to me or guid me to a tutorial
 that would grealy help me.
  
 Thanks
  
 Vincent BAILLY
 -
 Check out the new SourceForge.net Marketplace.
 It's the best place to buy or sell services for
 just about anything Open Source.
 http://sourceforge.net/services/buy/index.php
 ___ DSpace-tech mailing list 
 DSpace-tech@lists.sourceforge.net 
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
-- 
Conal Tuohy
New Zealand Electronic Text Centre
www.nzetc.org


-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin 1.1a returns wrong status code with page-not-found page

2008-05-23 Thread Mark H. Wood
*sigh*  Never mind.  After posting I thought of a different approach,
and in spite of Cocoon's documentation I found a solution:

Index: src/org/dspace/app/xmlui/PageNotFoundTransformer.java
===
--- src/org/dspace/app/xmlui/PageNotFoundTransformer.java (revision 149)
+++ src/org/dspace/app/xmlui/PageNotFoundTransformer.java (working copy)
@@ -44,9 +44,12 @@
 import java.io.Serializable;
 import java.sql.SQLException;
 
+import javax.servlet.http.HttpServletResponse;
+
 import org.apache.cocoon.caching.CacheableProcessingComponent;
 import org.apache.cocoon.environment.ObjectModelHelper;
 import org.apache.cocoon.environment.Request;
+import org.apache.cocoon.environment.http.HttpEnvironment;
 import org.apache.cocoon.util.HashUtil;
 import org.apache.excalibur.source.SourceValidity;
 import org.apache.excalibur.source.impl.validity.NOPValidity;
@@ -197,6 +200,10 @@
 notFound.addPara(T_para1); 
 
 notFound.addPara().addXref(contextPath,T_go_home);
+
+   HttpServletResponse response = (HttpServletResponse)objectModel
+.get(HttpEnvironment.HTTP_RESPONSE_OBJECT);
+   response.setStatus(HttpServletResponse.SC_NOT_FOUND);
 }
 }

-- 
Mark H. Wood, Lead System Programmer   [EMAIL PROTECTED]
Typically when a software vendor says that a product is intuitive he
means the exact opposite.



pgpDS9gz5RVGv.pgp
Description: PGP signature
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin RSS errors

2008-05-01 Thread Conal Tuohy
We had the same problem here though in our case the Short Description
field was typically blank. We found that if we inserted something (even
a space) in the Short Description field, then the problem was solved.

On Fri, 2008-05-02 at 10:26 +0930, [EMAIL PROTECTED] wrote:
 I have a rather weird problem, which I've reached the end of my limit of
 expertise.  On our site, I've enabled the rss feeds, and currently all the 
 feeds
 for each community and collection (and the whole site), on the JSPUI side are
 working.
 
 The problem is the manakin side. Yesterday, there were only one community 
 feed,
 and two collection feeds working, while all the other feeds were giving an 
 error
 (I've included it below). Today, after I've restarted tomcat, three different
 collection feeds are working now and all the others are gone. It seems to be
 pretty random, some of them are big collections, some of them are small.
 
 I traced it to com.sun.syndication.io.impl.RSS20Generator  where it seems to 
 be
 something with the description, but all the collections and communities have
 descriptions, and if they didn't, I'm assuming that the JSPUI would have made 
 a
 fuss.
 
 Any help with this problem would be greatly appreciated.
 
 
 Thanks
 Jennifer
 

 org.apache.cocoon.ProcessingException: Failed to process pipeline
  at map:serialize type=xml -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:301:32
  at map:transform type=i18n -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:297:33
  at map:generate type=DSpaceFeedGenerator -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:293:46
  at
 org.apache.cocoon.ProcessingException.throwLocated(ProcessingException.java:144)
  at
 org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.handleException(AbstractProcessingPipeline.java:951)

-- 
Conal Tuohy
New Zealand Electronic Text Centre
www.nzetc.org


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin RSS errors

2008-05-01 Thread Jennifer . Whalan
All the short descriptions for the communities and collections are filled. I
think it gives a different error for no description?

We did have this problem, when I first enabled the rss feeds, so I made sure I'd
filled out all the short descriptions then.









 Conal Tuohy
 [EMAIL PROTECTED]
 .nzTo 
 Sent by:[EMAIL PROTECTED]  
 dspace-tech-bounces cc 
 @lists.sourceforge. dspace-tech@lists.sourceforge.net  
 netSubject 
 Re: [Dspace-tech] Manakin RSS errors   

 02/05/2008 11:33 AM


  Please respond to 
 [EMAIL PROTECTED]
 nz 






We had the same problem here though in our case the Short Description
field was typically blank. We found that if we inserted something (even
a space) in the Short Description field, then the problem was solved.

On Fri, 2008-05-02 at 10:26 +0930, [EMAIL PROTECTED] wrote:
 I have a rather weird problem, which I've reached the end of my limit of
 expertise.  On our site, I've enabled the rss feeds, and currently all the
feeds
 for each community and collection (and the whole site), on the JSPUI side are
 working.

 The problem is the manakin side. Yesterday, there were only one community
feed,
 and two collection feeds working, while all the other feeds were giving an
error
 (I've included it below). Today, after I've restarted tomcat, three different
 collection feeds are working now and all the others are gone. It seems to be
 pretty random, some of them are big collections, some of them are small.

 I traced it to com.sun.syndication.io.impl.RSS20Generator  where it seems to
be
 something with the description, but all the collections and communities have
 descriptions, and if they didn't, I'm assuming that the JSPUI would have made
a
 fuss.

 Any help with this problem would be greatly appreciated.


 Thanks
 Jennifer


 org.apache.cocoon.ProcessingException: Failed to process pipeline
  at map:serialize type=xml -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:301:32
  at map:transform type=i18n -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:297:33
  at map:generate type=DSpaceFeedGenerator -
 file:/usr/local/dspace/tomcat/webapps/manakindev/sitemap.xmap:293:46
  at

org.apache.cocoon.ProcessingException.throwLocated(ProcessingException.java:144)
  at

org.apache.cocoon.components.pipeline.AbstractProcessingPipeline.handleException(AbstractProcessingPipeline.java:951)


--
Conal Tuohy
New Zealand Electronic Text Centre
www.nzetc.org


-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin heading problems

2008-04-14 Thread Walker, David
Hi all,
 
I have a problem I'm hoping someone else has already fixed: Headings (h1, h2, 
etc.) don't always follow a correct hierarchy in Manakin.
 
Some pages -- for example, the home page -- include multiple h1's [1].  Others 
include headings that skip from h1 to h3 without an intervening h2 [2].  This 
violate one of our ADA/accessibility requirements.
 
There are a couple of different templates that set headings in Manakin, but the 
one that seems to be causing us problems is the dynamic one, here:
 
 xsl:template match=dri:div/dri:head priority=3
   xsl:variable name=head_count select=count(ancestor::dri:div)/
   xsl:element name=h{$head_count}
   [...]
 /xsl:template
 
Has anyone addressed this problem already?
 
--Dave
 
 
These examples from the Texas AM Manakin, although it is true of all the 
implementations I've seen:
 
[1] http://repositories.tamu.edu/
 
[2] http://repositories.tamu.edu/community-list
 
---
David Walker
Library Web Services Manager
California State University
http://xerxes.calstate.edu

-
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] manakin-questions

2008-04-02 Thread Esha Datta

Hi,

I'm very new to manakin. I've managed to change the theme for one  
page and work with xsl and css. The full text search isn't working.  
When the Dspace logs and and dspace code(class DSQuery) are checked,  
they seem to be fine. There seems to be a problem with the query  
string. It breaks when the parse method from lucene is called. How do  
I check what's going on between the form submission and the call  
that's made to the DSpace code? Is there a way to output a trace?



The other question is about aspects. One of the programmers here has  
implemented a servlet that will work with any generic DSpace  
instance. Currently, we have a test instance with manakin, if I  
wanted to add this servlet to Manakin, would this involve working  
with the aspect side of things?


Sorry, I don't know a whole lot about java...so I apologize if these  
questions are totally obvious.

Thanks so much!

Esha


Esha Datta
Programmer/Analyst
Digital Library Technology Services
Bobst Library
New York University
Ph:212-992-9236-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin error - cant delete a collection

2008-03-19 Thread Mika Stenberg
When trying to delete a collection in Manakin 1.1a (DSpace 1.4.2) I get the
following. Whats wrong? Deletion works fine in JSPUI.

-Mika


--
An error has occured

org.apache.xpath.XPathException: Can not convert #BOOLEAN to a NodeList!

Cocoon stacktrace [hide]
Failed to process pipeline
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/aspects.xmap
- 132:31map:serialize type=xml
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/aspects.xmap
- 131:49map:transform type=DSpaceResourceManager
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/aspects.xmap
- 130:55map:generate type=file
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/ArtifactBrowser/sitemap.xmap
- 323:31map:serialize type=xml
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/ArtifactBrowser/sitemap.xmap
- 107:38map:transform type=Navigation
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/ArtifactBrowser/sitemap.xmap
- 95:19 map:generate
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/EPerson/sitemap.xmap
- 320:31map:serialize type=xml
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/EPerson/sitemap.xmap
- 136:38map:transform type=Navigation
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/EPerson/sitemap.xmap
- 125:19map:generate
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/Submission/sitemap.xmap
- 369:38map:serialize type=xml
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/Submission/sitemap.xmap
- 145:45map:transform type=Navigation
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/Submission/sitemap.xmap
- 142:26map:generate
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/Administrative/sitemap.xmap
- 797:31map:serialize type=xml
context:/file:/tmp/Jetty_0_0_0_0_8048_dikk.war__dikk__-ajb4mj/cocoon-files/Jetty_0_0_0_0_8048_dspace.war__dspace__n8dysb/cocoon-files/Jetty_0_0_0_0_8048_neuroportti.war__neuroportti__-uqjxql/cocoon-files/Jetty_0_0_0_0_8048_neuroweb.war__neuroweb__-o4ci37/webapp/aspects/Administrative/sitemap.xmap
- 632:60map:transform type=DeleteCollectionConfirm

[Dspace-tech] Manakin Theme Tutorial

2008-02-28 Thread Scott Phillips


Everyone,

Alexey, our Manakin theme guru here at AM, has posted a new Manakin  
theme tutorial on the wiki. I hope this will help out those who are in  
the process of creating their own themes. It covers the basic  
mechanism of creating a new theme, some helpful paradigms on how to  
tackle some situations, and a list of common gotcha's.


http://wiki.dspace.org/index.php/Manakin_theme_tutorial

I am interested to know what other topics people feel need to be  
covered with regard to developing a Manakin theme?


Scott---
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin: namespace declarations in output?

2008-02-04 Thread Dorothea Salo
A few of my Manakin-derived HTML pages have namespace declarations in
them, and I can't figure out why, as there's nothing in the culprit
namespace in the output and exclude-result-prefixes is duly on. The
i18n namespace seems to be the commonest offender, though I am also
seeing the DRI namespace declared where it shouldn't be. What might
trigger this, and how can I make it stop? Do I need to give code
examples or a URL?

Dorothea

-- 
Dorothea Salo[EMAIL PROTECTED]
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: namespace declarations in output?

2008-02-04 Thread Dorothea Salo
On Feb 4, 2008 2:34 PM, Conal Tuohy [EMAIL PROTECTED] wrote:

 I believe there's a namespace cleanup transformer that at least some of
 the themes use prior to HTML serialisation.

Oh? How would I recognize this thing?

 BTW, in XSLT, the exclude-result-prefixes feature only prevents the
 automatic propagation of namespace bindings and doesn't apply if your
 XSLT uses xsl:copy to copy an element (because the namespace bindings
 are attached to the element and come with it).

Yes, I figured this out today and did a sweep. All the copy-ofs I see
are straight-up text nodes, though; they shouldn't carry a namespace
along, should they?

The problem may have something to do with trying to do an xsl:apply
templates with a select that marches down from the root instead of
being relative to the current node. I'm testing this hypothesis now.

Dorothea

-- 
Dorothea Salo[EMAIL PROTECTED]
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: namespace declarations in output?

2008-02-04 Thread Conal Tuohy
Hi Dorothea

I believe there's a namespace cleanup transformer that at least some of
the themes use prior to HTML serialisation.

BTW, in XSLT, the exclude-result-prefixes feature only prevents the
automatic propagation of namespace bindings and doesn't apply if your
XSLT uses xsl:copy to copy an element (because the namespace bindings
are attached to the element and come with it). 

Con

On Mon, 2008-02-04 at 09:26 -0600, Dorothea Salo wrote:
 A few of my Manakin-derived HTML pages have namespace declarations in
 them, and I can't figure out why, as there's nothing in the culprit
 namespace in the output and exclude-result-prefixes is duly on. The
 i18n namespace seems to be the commonest offender, though I am also
 seeing the DRI namespace declared where it shouldn't be. What might
 trigger this, and how can I make it stop? Do I need to give code
 examples or a URL?
 
 Dorothea
 
-- 
Conal Tuohy
New Zealand Electronic Text Centre
www.nzetc.org


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin: namespace declarations in output?

2008-02-04 Thread Conal Tuohy
On Mon, 2008-02-04 at 14:39 -0600, Dorothea Salo wrote:
 On Feb 4, 2008 2:34 PM, Conal Tuohy [EMAIL PROTECTED] wrote:
 
  I believe there's a namespace cleanup transformer that at least some of
  the themes use prior to HTML serialisation.
 
 Oh? How would I recognize this thing?

My memory did serve me correctly - here's what I was thinking of:

map:transformer 
name=NamespaceFilter 
src=org.dspace.app.xmlui.NamespaceFilterTransformer/

It will appear in a pipeline like so:

transform type=NamespaceFilter blah blah blah /

  BTW, in XSLT, the exclude-result-prefixes feature only prevents the
  automatic propagation of namespace bindings and doesn't apply if your
  XSLT uses xsl:copy to copy an element (because the namespace bindings
  are attached to the element and come with it).
 
 Yes, I figured this out today and did a sweep. All the copy-ofs I see
 are straight-up text nodes, though; they shouldn't carry a namespace
 along, should they?

Indeed not.

 The problem may have something to do with trying to do an xsl:apply
 templates with a select that marches down from the root instead of
 being relative to the current node. I'm testing this hypothesis now.

Where do the namespace declarations appear? i.e. on which elements? 
-- 
Conal Tuohy
New Zealand Electronic Text Centre
www.nzetc.org


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin Statistics

2008-01-17 Thread bartek kawula
I know this question has been raised before in the Manakin list, but since it's
been closed I thought I'd raise it here. We're currently running dspace 1.4.2
with manakin 1.1a and the built-in dspace statistics don't work when using
manakin, which is a major roadblock for us. Anyway, I was wondering if this
issue has been resolved in 1.5? Also, for those using manakin with dspace
1.4.2, how have you gone about collecting the repository specific statistics
that dspace provides?

-- 
Bartek Kawula
Digital Projects Librarian, York University Libraries
Scott Library, Bibliographic Services Department
4700 Keele St., Toronto ON M3J 1P3

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin theme inheritance

2008-01-03 Thread Scott Phillips
Dorothea,

This is a good question, and it's a bit open as too what the best  
practice is in my opinion. I think it is okay for themes to have  
dependencies to other themes as long as that dependency is document  
and enforced (preferably through maven).

One concept that we've been using is to have 'super' or main themes  
each with sub elements. Thus for AM we have the main TAMU theme that  
actually consists of several themes. The directory structure is:

TAMU/
TAMU/sitemap.xmap
TAMU/lib/
TAMU/style/

The top level theme is called TAMU (Texas AM University) which has  
sub directories containing shared resources ( lib/ for javascript,  
style/ for css). Then inside this super theme exist several 'sub themes'

TAMU/main/ (the main AM theme)
TAMU/geofolios/ (a collection specific theme)
TAMU/???/ (other themes are possible)

Each of the sub themes have sitemaps.xmaps just like normal but they  
will reference the shared resources one directory up the tree as well  
as those below. So when you install these themes in the xmlui.xconf  
you'll use the theme path of TAMU/main/ or TAMU/geofolios/.

As a nice trick you could also just install the TAMU theme because  
the top-level sitemap.xmap just forwards to the main theme.

Does that make sense?

Scott--




On Dec 27, 2007, at 12:22 PM, Dorothea Salo wrote:

 This is possibly a very stupid question, but is it possible/advisable
 for one Manakin theme to pull in XSLT from another theme?

 Use case: I'm zeroing in on being done with my first theme, and it's
 got some utility templates that will be useful to *all* themes. (For
 example: clickable authors and subjects, current class on the navbar
 link for the current page, moving community/collection logos into
 headers... and if anybody wants code for any of that, it's all here:
 http://cavlec.yarinareth.net/archives/category/librariana/dspace/manakin/ 
 ,
 or email me and I'll shoot you the actual stylesheet if you promise
 not to laugh.)

 For easier maintainability and future functionality expansion, I'd
 like to pop those templates into their own stylesheet which all (or at
 least most) themes would then inherit. I suppose what I'm asking is
 what the best way is to set that up.

 Dorothea

 -- 
 Dorothea Salo[EMAIL PROTECTED]
 Digital Repository Librarian  AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin Trainer

2007-12-19 Thread Christina Richison
 

Hello All,

 

Our organization is familiar with AM's development of Manakin through
the DSpace User Group meetings and the listservs. We are interested in
learning more about Manakin and would like to know if anyone knows of
any instructors who could teach our organization more.

 

Any help on names of trainers would be appreciated.

 

Thanks,

 

Christina

 

Christina Richison

NIS Technical Services Specialist

Managed Technology Services

NITLE http://www.nitle.org  | National Institute for Technology 
Liberal Education

p. 512.863.1673 | f. 512.863.1297

[EMAIL PROTECTED]

Southwestern University

P.O. Box 7385 | 1001 East University Avenue

Georgetown, Texas 78626

 

-
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Manakin theme not overriding default XSLT

2007-12-03 Thread Vlastimil Krejcir
   Hi Dorothea,

   I am not sure if I can help you - I can only give you some advices. From 
time to time I have similar issues like you. I have found it's my mistake 
at 100% - caused a little bit by Tomcat caching, complicated overriding 
default templates, etc. What can help:

-- At first things like logo image can be cached by Tomcat, try to stop 
Tomcat, remove directory manakin/ in webapps/ and remove everything in 
work/ directory in Tomcat's home dir. For sure, restart your internet 
browser.

-- Next check if you really override selected default templates from 
dri2xslt.xsl by your own templates. dri2xslt.xsl is a bit complicated and 
there's a lot of templates that can match path in DRI document. I have 
usually missed something - that's my experiance.

I hope it will help you.

regards

Vlastik


Vlastimil Krejčíř
Library and Information Centre, Institute of Computer Science
Masaryk University in Brno, Czech Republic
Email: krejcir (at) ics (dot) muni (dot) cz
Phone: +420 549 49 3872
ICQ: 163963217
Jabber: [EMAIL PROTECTED]


On Fri, 30 Nov 2007, Dorothea Salo wrote:

 All of a sudden Manakin seems to be randomly ignoring bits of XSLT
 from my theme. Examples:

 My theme doesn't have the h3 id=ds-search-option-head in the
 dri:options template. Yet it shows up.

 My theme has moved community and collection logos OUT of the
 detail-view div, and yet they show up. (Twice, now, because Manakin is
 obligingly also putting in the logo where I actually want it to go!)

 Has anybody else ever had this happen? What gives? How can I fix it?

 Dorothea

 -- 
 Dorothea Salo[EMAIL PROTECTED]
 Digital Repository Librarian  AIM: mindsatuw
 University of Wisconsin
 Rm 218, Memorial Library
 (608) 262-5493

 -
 SF.Net email is sponsored by: The Future of Linux Business White Paper
 from Novell.  From the desktop to the data center, Linux is going
 mainstream.  Let it simplify your IT future.
 http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin theme not overriding default XSLT

2007-11-30 Thread Dorothea Salo
All of a sudden Manakin seems to be randomly ignoring bits of XSLT
from my theme. Examples:

My theme doesn't have the h3 id=ds-search-option-head in the
dri:options template. Yet it shows up.

My theme has moved community and collection logos OUT of the
detail-view div, and yet they show up. (Twice, now, because Manakin is
obligingly also putting in the logo where I actually want it to go!)

Has anybody else ever had this happen? What gives? How can I fix it?

Dorothea

-- 
Dorothea Salo[EMAIL PROTECTED]
Digital Repository Librarian  AIM: mindsatuw
University of Wisconsin
Rm 218, Memorial Library
(608) 262-5493

-
SF.Net email is sponsored by: The Future of Linux Business White Paper
from Novell.  From the desktop to the data center, Linux is going
mainstream.  Let it simplify your IT future.
http://altfarm.mediaplex.com/ad/ck/8857-50307-18918-4
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin messages not displaying to some users

2007-11-22 Thread Rafael Henkin
Hi,

We're having some problems regarding the i18n tags. It appears that 
some users acessing our repository are getting the keys and not the message. It 
seems that this behaviour is not linked to a specific browser/version, as in my 
PC it shows wrongly using an older version of Netscape only (and Firefox mode 
in the newest version). However, with other people it happens even with IE and 
Firefox (newest versions). We suppose it has to do with personal options 
because of the apparent randomness, but we have no idea of what options.
Any ideas or suggestions?

Thanks.

Rafael

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


[Dspace-tech] Manakin error

2007-11-20 Thread Mika Stenberg
Manakin 1.1a with DSpace 1.4.2 produces the following when trying to 
access profile or submissions menu items with Reference theme. Any idea 
whats wrong?

-Mika

--

An error has occured

org.mozilla.javascript.EvaluatorException: 
file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/eperson.js, 
line 47: Not a Java class: [JavaPackage org.dspace.aspect.eperson.EPerson]

Cocoon stacktrace [hide]
Sitemap: error calling function 'doUpdateProfile'
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/sitemap.xmap 
- 117:45map:call
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/aspects.xmap - 
124:72  map:mount
context:/file:/home/dspace/tomcat/webapps/manakin/sitemap.xmap - 
274:80  map:mount
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Submission/sitemap.xmap
 
- 369:38map:serialize type=xml
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Submission/sitemap.xmap
 
- 145:45map:transform type=Navigation
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Submission/sitemap.xmap
 
- 142:26map:generate
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Administrative/sitemap.xmap
 
- 797:31map:serialize type=xml
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Administrative/sitemap.xmap
 
- 265:38map:transform type=Navigation
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Administrative/sitemap.xmap
 
- 264:44map:transform type=SystemwideAlerts
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/Administrative/sitemap.xmap
 
- 263:19map:generate
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/aspects.xmap - 
120:34  map:serialize type=xml
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/aspects.xmap - 
119:43  map:transform type=PageNotFound
context:/file:/home/dspace/tomcat/webapps/manakin/aspects/aspects.xmap - 
118:22  map:generate
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 171:34map:serialize type=xhtml
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 168:84map:transform type=NamespaceFilter
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 167:78map:transform type=NamespaceFilter
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 161:33map:transform type=i18n
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 157:44map:transform
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 142:45map:transform type=IncludePageMeta
context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/sitemap.xmap 
- 118:55map:generate type=file
context:/file:/home/dspace/tomcat/webapps/manakin/themes/themes.xmap - 
63:45   map:mount
context:/file:/home/dspace/tomcat/webapps/manakin/sitemap.xmap - 
338:73  map:mount

Java stacktrace [hide]

org.mozilla.javascript.EvaluatorException: 
file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/eperson.js, 
line 47: Not a Java class: [JavaPackage org.dspace.aspect.eperson.EPerson]
at 
org.apache.cocoon.components.flow.javascript.JSErrorReporter.runtimeError(JSErrorReporter.java:66)
at org.mozilla.javascript.Context.reportRuntimeError(Context.java:588)
at org.mozilla.javascript.Context.reportRuntimeError(Context.java:627)
at 
org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter$ThreadScope.importClass(FOM_JavaScriptInterpreter.java:490)
at inv1.invoke()
at 
org.mozilla.javascript.FunctionObject.doInvoke(FunctionObject.java:523)
at 
org.mozilla.javascript.FunctionObject.callVarargs(FunctionObject.java:538)
at org.mozilla.javascript.FunctionObject.call(FunctionObject.java:403)
at org.mozilla.javascript.ScriptRuntime.call(ScriptRuntime.java:1244)
at 
org.mozilla.javascript.continuations.ContinuationInterpreter.interpret(ContinuationInterpreter.java:1134)
at 
org.mozilla.javascript.continuations.ContinuationInterpreter.interpret(ContinuationInterpreter.java:190)
at 
org.mozilla.javascript.continuations.ContinuationInterpreter.interpret(ContinuationInterpreter.java:138)
at 
org.mozilla.javascript.continuations.InterpretedScriptImpl.call(InterpretedScriptImpl.java:137)
at 
org.mozilla.javascript.InterpretedScript.exec(InterpretedScript.java:59)
at 
org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter.setupContext(FOM_JavaScriptInterpreter.java:611)
at 
org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpreter.callFunction(FOM_JavaScriptInterpreter.java:717)
at 
org.apache.cocoon.components.treeprocessor.sitemap.CallFunctionNode.invoke(CallFunctionNode.java:138)
at 

Re: [Dspace-tech] Manakin error

2007-11-20 Thread Mika Stenberg
This seems strange, since I get this when using the latest stable (1.1a)
version.

If I use version 1.0 I get another error below - whats it about?

--
Internal Server Error
Message: null

Description: No details available.

Sender: org.dspace.app.xmlui.DSpaceCocoonServlet

Source: Cocoon Servlet

Request URI

submit

cause

null

request-uri

/manakin/submit

Apache Cocoon 2.1.9
--


-Mika


-Alkuperäinen viesti-
Lähettäjä: Paulo Jobim [mailto:[EMAIL PROTECTED] 
Lähetetty: 20. marraskuuta 2007 18:12
Vastaanottaja: Mika Stenberg
Kopio: 'dspace-tech@lists.sourceforge.net'
Aihe: Re: [Dspace-tech] Manakin error

Hi Mika
There was a point where this eperson.js pointed to a class that has  
been modified.
try geting a more recent code or modify the java script to point to  
the right class
I hope this helps
Paulo
Em Nov 20, 2007, às 11:56 AM, Mika Stenberg escreveu:

 Manakin 1.1a with DSpace 1.4.2 produces the following when trying to
 access profile or submissions menu items with Reference theme. Any  
 idea
 whats wrong?

 -Mika

 --

 An error has occured

 org.mozilla.javascript.EvaluatorException:
 file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/eperson.js,
 line 47: Not a Java class: [JavaPackage  
 org.dspace.aspect.eperson.EPerson]

 Cocoon stacktrace [hide]
 Sitemap: error calling function 'doUpdateProfile'
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/ 
 sitemap.xmap
 - 117:45  map:call
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 aspects.xmap -
 124:72map:mount
 context:/file:/home/dspace/tomcat/webapps/manakin/sitemap.xmap -
 274:80map:mount
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Submission/sitemap.xmap
 - 369:38  map:serialize type=xml
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Submission/sitemap.xmap
 - 145:45  map:transform type=Navigation
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Submission/sitemap.xmap
 - 142:26  map:generate
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Administrative/sitemap.xmap
 - 797:31  map:serialize type=xml
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Administrative/sitemap.xmap
 - 265:38  map:transform type=Navigation
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Administrative/sitemap.xmap
 - 264:44  map:transform type=SystemwideAlerts
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 Administrative/sitemap.xmap
 - 263:19  map:generate
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 aspects.xmap -
 120:34map:serialize type=xml
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 aspects.xmap -
 119:43map:transform type=PageNotFound
 context:/file:/home/dspace/tomcat/webapps/manakin/aspects/ 
 aspects.xmap -
 118:22map:generate
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 171:34  map:serialize type=xhtml
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 168:84  map:transform type=NamespaceFilter
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 167:78  map:transform type=NamespaceFilter
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 161:33  map:transform type=i18n
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 157:44  map:transform
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 142:45  map:transform type=IncludePageMeta
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/Reference/ 
 sitemap.xmap
 - 118:55  map:generate type=file
 context:/file:/home/dspace/tomcat/webapps/manakin/themes/themes.xmap -
 63:45 map:mount
 context:/file:/home/dspace/tomcat/webapps/manakin/sitemap.xmap -
 338:73map:mount

 Java stacktrace [hide]

 org.mozilla.javascript.EvaluatorException:
 file:/home/dspace/tomcat/webapps/manakin/aspects/EPerson/eperson.js,
 line 47: Not a Java class: [JavaPackage  
 org.dspace.aspect.eperson.EPerson]
   at
 org.apache.cocoon.components.flow.javascript.JSErrorReporter.runtimeEr 
 ror(JSErrorReporter.java:66)
   at org.mozilla.javascript.Context.reportRuntimeError(Context.java: 
 588)
   at org.mozilla.javascript.Context.reportRuntimeError(Context.java: 
 627)
   at
 org.apache.cocoon.components.flow.javascript.fom.FOM_JavaScriptInterpr 
 eter$ThreadScope.importClass(FOM_JavaScriptInterpreter.java:490)
   at inv1.invoke()
   at org.mozilla.javascript.FunctionObject.doInvoke 
 (FunctionObject.java:523)
   at
 org.mozilla.javascript.FunctionObject.callVarargs 
 (FunctionObject.java:538)
   at org.mozilla.javascript.FunctionObject.call(FunctionObject.java: 
 403)
   at
org.mozilla.javascript.ScriptRuntime.call(ScriptRuntime.java:1244

Re: [Dspace-tech] Manakin

2007-05-15 Thread Jimmy

Hi Monika,

It sounds great that the Manakin will become part of the dspace 1.5.

I am testing the Manakin in my server,it seems work fine.But there are some
exception thrown since the using of Manakin,I doubt if it is very
stable...And I am also worry about the performance of Manakin...

Anyway,I think Manakin is great...

Thank you.

Best Regards,
Jimmy

On 5/14/07, Monika Mevenkamp [EMAIL PROTECTED] wrote:


In addition:

If you move to Manakin as the User Interface (it will become part of the
dspace 1.5 distribution and is currently available 
herehttp://wiki.dspace.org/index.php//Manakin)
you can customize item displays as well through the use of themes. There are
some predefined themes  which can be reused, modified, ...

If you are not a Java programmer this approach will be less involved but
it is still much more of an effort than changing the dspace.cfg file.

Monika

On 5/14/07, my dspace [EMAIL PROTECTED] wrote:

 Hi Anny,

 Yes,you can modify the itemlist by modify the dspace.cfg file.But maybe
 you need to modify the java source file for better display..

 Best Regards,
 [EMAIL PROTECTED]

 On 5/13/07, Anny Bridge  [EMAIL PROTECTED] wrote:

  Hi All,
 
  I'd like to custom the search result of the DSpace so that the item
  list will consist more information such as the abstract,the thumbnail and so
  on.Is there anyone did it before?
 
  Can i get it done by modify some configure file. Or do I have to
  modify the ItemListTag.java source file?
 
  Thanks in Advance..
 
  Regards,
  Anny.
 
 
  -
  This SF.net email is sponsored by DB2 Express
  Download DB2 Express C - the FREE version of DB2 express and take
  control of your XML. No limits. Just data. Click to get it now.
  http://sourceforge.net/powerbar/db2/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 


 -
 This SF.net email is sponsored by DB2 Express
 Download DB2 Express C - the FREE version of DB2 express and take
 control of your XML. No limits. Just data. Click to get it now.
 http://sourceforge.net/powerbar/db2/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech




--
Monika Mevenkamp
Georgia Institute of Technology
Library and Information Center
Phone: 404.385.0108
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech