[GeoNetwork-devel] [GeoNetwork opensource Developer website] #1200: Converter icons in metadata results are not displayed (only 2.9.x)

#1200: Converter icons in metadata results are not displayed (only 2.9.x)
-----------------------+----------------------------------------------------
Reporter: josegar74 | Owner: geonetwork-devel@…
     Type: defect | Status: new
Priority: major | Milestone: v2.9.0
Component: General | Version:
Keywords: |
-----------------------+----------------------------------------------------
This is related to spring security changes, seem this code in metadata-
utils.xsl:

{{{
<xsl:for-each
select="/root/gui/schemalist/name[text()=$schema]/conversions/converter">
   <xsl:variable name="serviceName" select="@name"/>
       <xsl:if test="java:isAccessibleService($serviceName)">
}}}

sends a node tree object to isAccessibleService instead of the string
value with service name.

Changing serviceName variable to:

{{{
  <xsl:variable name="serviceName" select="concat('',@name)"/>
}}}

solves the issue

--
Ticket URL: <http://trac.osgeo.org/geonetwork/ticket/1200&gt;
GeoNetwork opensource Developer website <http://sourceforge.net/projects/geonetwork/&gt;
GeoNetwork opensource is a standards based, Free and Open Source catalog application to manage spatially referenced resources through the web. It provides powerful metadata editing and search functions as well as an embedded interactive web map viewer. This website contains information related to the development of the software.

#1200: Converter icons in metadata results are not displayed (only 2.9.x)
------------------------+---------------------------------------------------
  Reporter: josegar74 | Owner: geonetwork-devel@…
      Type: defect | Status: closed
  Priority: major | Milestone: v2.9.0
Component: General | Version:
Resolution: fixed | Keywords:
------------------------+---------------------------------------------------
Changes (by josegar74):

  * status: new => closed
  * resolution: => fixed

Comment:

Committed in master: 9ee495ff5c97b4f083dd47e101b5395e4eef0008

--
Ticket URL: <http://trac.osgeo.org/geonetwork/ticket/1200#comment:1&gt;
GeoNetwork opensource Developer website <http://sourceforge.net/projects/geonetwork/&gt;
GeoNetwork opensource is a standards based, Free and Open Source catalog application to manage spatially referenced resources through the web. It provides powerful metadata editing and search functions as well as an embedded interactive web map viewer. This website contains information related to the development of the software.

#1200: Converter icons in metadata results are not displayed (only 2.9.x)
------------------------+---------------------------------------------------
  Reporter: josegar74 | Owner: geonetwork-devel@…
      Type: defect | Status: closed
  Priority: major | Milestone: v2.9.0
Component: General | Version: v2.9.0
Resolution: fixed | Keywords:
------------------------+---------------------------------------------------
Changes (by ianwallen):

  * version: => v2.9.0

--
Ticket URL: <http://trac.osgeo.org/geonetwork/ticket/1200#comment:2&gt;
GeoNetwork opensource Developer website <http://sourceforge.net/projects/geonetwork/&gt;
GeoNetwork opensource is a standards based, Free and Open Source catalog application to manage spatially referenced resources through the web. It provides powerful metadata editing and search functions as well as an embedded interactive web map viewer. This website contains information related to the development of the software.