Adjusted output of the misc property of publications to show HTML

git-svn-id: https://svn.libreccm.org/ccm/trunk@2596 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2014-04-02 07:41:40 +00:00
parent f6a92c2f98
commit 1ce07453f0
17 changed files with 2050 additions and 2020 deletions

View File

@ -446,7 +446,7 @@
<xsl:with-param name="id" select="'articleInCollectedVolume/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<!-- <xsl:call-template name="scipublicationsDownload"/> -->

View File

@ -428,7 +428,7 @@
<xsl:with-param name="id" select="'articleInJournal/misc'"/>
</xsl:call-template>
</h3>
<xsl:value-of select="./misc"/>
<xsl:value-of disable-output-escaping="yes" select="./misc"/>
</div>
</xsl:if>

View File

@ -477,7 +477,7 @@
<xsl:with-param name="id" select="'collectedVolume/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<xsl:if test="($setArticles = 'true') and (count(./articles/article) &gt; 0)">

View File

@ -396,7 +396,7 @@
<xsl:with-param name="id" select="'expertise/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<!-- <xsl:call-template name="scipublicationsDownload"/> -->

View File

@ -242,7 +242,7 @@
</dd>
</xsl:if>
<xsl:if test="($setYearFirstPublished = 'true') and (string-length(./yearFirstPublished) &gt; 0)">
<xsl:if test="($setYearFirstPublished = 'true') and (string-length(./yearFirstPublished) &gt; 0)">
<dt>
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciPublications'"/>
@ -276,7 +276,8 @@
</xsl:otherwise>
</xsl:choose>
</dd>
</xsl:if> <xsl:if test="($setOrganization = 'true') and (string-length(../organization) &gt; 0)">
</xsl:if>
<xsl:if test="($setOrganization = 'true') and (string-length(../organization) &gt; 0)">
<dt>
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciPublications'" />
@ -422,7 +423,7 @@
<xsl:with-param name="id" select="'greyLiterature/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<!-- <xsl:call-template name="scipublicationsDownload"/> -->

View File

@ -352,7 +352,7 @@
<xsl:with-param name="id" select="'inProceedings/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<!-- <xsl:call-template name="scipublicationsDownload"/> -->

View File

@ -441,7 +441,7 @@
<xsl:with-param name="id" select="'internetArticle/misc'"/>
</xsl:call-template>
</h3>
<xsl:value-of select="./misc"/>
<xsl:value-of disable-output-escaping="yes" select="./misc"/>
</div>
</xsl:if>

View File

@ -29,7 +29,7 @@
xmlns:mandalay="http://mandalay.quasiweb.de"
exclude-result-prefixes="xsl bebop cms nav"
version="1.0"
>
>
<!--
**************************************************************************

View File

@ -461,7 +461,7 @@
<xsl:with-param name="id" select="'monograph/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>

View File

@ -520,7 +520,7 @@
<xsl:with-param name="id" select="'proceedings/misc'" />
</xsl:call-template>
</h3>
<xsl:value-of select="./misc" />
<xsl:value-of disable-output-escaping="yes" select="./misc" />
</div>
</xsl:if>
<xsl:if test="($setPapers = 'true') and (count(./papers/paper) &gt; 0)">

View File

@ -385,7 +385,7 @@
<xsl:with-param name="id" select="'researchReport/misc'"/>
</xsl:call-template>
</h3>
<xsl:value-of select="./misc"/>
<xsl:value-of disable-output-escaping="yes" select="./misc"/>
</div>
</xsl:if>

View File

@ -378,7 +378,7 @@
<xsl:with-param name="id" select="'review/misc'"/>
</xsl:call-template>
</h3>
<xsl:value-of select="./misc"/>
<xsl:value-of disable-output-escaping="yes" select="./misc"/>
</div>
</xsl:if>

View File

@ -189,7 +189,9 @@
</xsl:variable>
<a>
<xsl:attribute name="href"><xsl:value-of select="nav:path"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="nav:path"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -219,7 +221,9 @@
<xsl:if test="$setMoreButton = 'true'">
<span class="moreButton">
<a>
<xsl:attribute name="href"><xsl:value-of select="nav:path"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="nav:path"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciAuthor'"/>
@ -305,7 +309,10 @@
<!-- EN -->
<xsl:if test="./targetItem/imageAttachments and $setImage = 'true'">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -325,7 +332,10 @@
</xsl:if>
<xsl:if test="$setImageAndText = 'true' or not(./targetItem/imageAttachments) or $setImage = 'false'">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -354,7 +364,10 @@
<xsl:if test="$setMoreButton = 'true'">
<span class="moreButton">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciAuthor'"/>

View File

@ -29,7 +29,7 @@
xmlns:mandalay="http://mandalay.quasiweb.de"
exclude-result-prefixes="xsl bebop cms nav"
version="1.0"
>
>
<xsl:variable name="setSortLinks">
<xsl:call-template name="mandalay:getSetting">

View File

@ -29,7 +29,7 @@
xmlns:mandalay="http://mandalay.quasiweb.de"
exclude-result-prefixes="xsl bebop cms nav"
version="1.0"
>
>
<!--
**************************************************************************
@ -166,7 +166,9 @@
<xsl:value-of select="./@toYear"/>
</td>
<td>
<xsl:value-of select="./givenname"/><xsl:text> </xsl:text> <xsl:value-of select="./surname"/>
<xsl:value-of select="./givenname"/>
<xsl:text> </xsl:text>
<xsl:value-of select="./surname"/>
</td>
</tr>
</xsl:for-each>
@ -313,7 +315,7 @@
</li>
</xsl:for-each>
</ul>
<!--
<!--
<ul class="seriesVolumes">
<xsl:for-each select="./volumes/publication">
<li>
@ -367,7 +369,9 @@
<xsl:choose>
<xsl:when test="$setLinkToDetails = 'true' or (string-length(nav:attribute[@name='lead']) > $setLeadTextLength and $setLeadTextLength != '0')">
<a>
<xsl:attribute name="href"><xsl:value-of select="nav:path"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="nav:path"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -402,7 +406,9 @@
<xsl:if test="$setMoreButton = 'true'">
<span class="moreButton">
<a>
<xsl:attribute name="href"><xsl:value-of select="nav:path"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:value-of select="nav:path"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciPublications_Series'"/>
@ -501,7 +507,10 @@
<xsl:choose>
<xsl:when test="$setLinkToDetails = 'true' or (string-length(./linkDescription) > $setDescriptionLength and $setDescriptionLength != '0')">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -534,7 +543,10 @@
<xsl:choose>
<xsl:when test="$setLinkToDetails = 'true' or (string-length(./linkDescription) > $setDescriptionLength and $setDescriptionLength != '0')">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:shying">
<xsl:with-param name="title">
@ -573,7 +585,10 @@
<xsl:if test="$setMoreButton = 'true'">
<span class="moreButton">
<a>
<xsl:attribute name="href"><xsl:text>/redirect/?oid=</xsl:text><xsl:value-of select="./targetItem/@oid"/></xsl:attribute>
<xsl:attribute name="href">
<xsl:text>/redirect/?oid=</xsl:text>
<xsl:value-of select="./targetItem/@oid"/>
</xsl:attribute>
<xsl:attribute name="title">
<xsl:call-template name="mandalay:getStaticText">
<xsl:with-param name="module" select="'SciPublcations_Series'"/>

View File

@ -384,7 +384,8 @@
<xsl:with-param name="id" select="'workingPaper/misc'"/>
</xsl:call-template>
</h3>
<xsl:value-of select="./misc"/>
<xsl:value-of disable-output-escaping="yes"
select="./misc"/>
</div>
</xsl:if>