Not sure if I understand the question. This is the node for author: dim:field[@element='title'][not(@qualifier)]
If you want to change it to another metadata field, replace all its occurrences in the snippet, copy the snippet, change clause number accordingly and increment the total number of clauses (as described on the wiki). Regards, ~~helix84 Compulsory reading: DSpace Mailing List Etiquette https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette On Wed, Nov 30, 2016 at 3:00 PM, Digna Rosario <[email protected]> wrote: > Thank you very much, do not ask the question well. > > My question is, where do I find the code lines of the different tags to > insert into the item-view.xls file. Currently, only shows title, author, > URI, summary and description? > > > <!-- Title row --> > <xsl:when test="$clause = 1"> > <xsl:choose> > <xsl:when test="descendant::text() and > (count(dim:field[@element='title'][not(@qualifier)]) > 1)"> > <!-- display first title as h1 --> > <h1> > <xsl:value-of > select="dim:field[@element='title'][not(@qualifier)][1]/node()"/> > </h1> > <div class="simple-item-view-other"> > <span > class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-title</i18n:text>:</span> > <span> > <xsl:for-each > select="dim:field[@element='title'][not(@qualifier)]"> > <xsl:value-of select="./node()"/> > <xsl:if > test="count(following-sibling::dim:field[@element='title'][not(@qualifier)]) > != 0"> > <xsl:text>; </xsl:text> > <br/> > </xsl:if> > </xsl:for-each> > </span> > </div> > </xsl:when> > <xsl:when > test="dim:field[@element='title'][descendant::text()] and > count(dim:field[@element='title'][not(@qualifier)]) = 1"> > <h1> > <xsl:value-of > select="dim:field[@element='title'][not(@qualifier)][1]/node()"/> > </h1> > </xsl:when> > <xsl:otherwise> > <h1> > > <i18n:text>xmlui.dri2xhtml.METS-1.0.no-title</i18n:text> > </h1> > </xsl:otherwise> > </xsl:choose> > <xsl:call-template name="itemSummaryView-DIM-fields"> > <xsl:with-param name="clause" select="($clause + 1)"/> > <xsl:with-param name="phase" select="$otherPhase"/> > </xsl:call-template> > </xsl:when> > > Regards, > > Digna > > El miércoles, 30 de noviembre de 2016, 9:45:23 (UTC-4), helix84 escribió: >> >> On Wed, Nov 30, 2016 at 2:40 PM, Digna Rosario <[email protected]> >> wrote: >> > Another question, I want to add other tags to the visualization: >> > keywords, >> > citation, ISBN, ISSN, Editorial, etc. Where could you find the lines of >> > codes to insert for each label? >> >> Here: >> >> https://github.com/DSpace/DSpace/blob/master/dspace-xmlui/src/main/webapp/i18n/messages.xml >> >> Of course, you can add your own labels there, too (requires Tomcat >> restart). >> >> >> Regards, >> ~~helix84 >> >> Compulsory reading: DSpace Mailing List Etiquette >> https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette > > -- > You received this message because you are subscribed to the Google Groups > "DSpace Technical Support" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at https://groups.google.com/group/dspace-tech. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/dspace-tech. For more options, visit https://groups.google.com/d/optout.
