Skip to content
Snippets Groups Projects
Commit cd09de84 authored by Anne GARCIA-FERNANDEZ's avatar Anne GARCIA-FERNANDEZ
Browse files

Generate index of person

parent 839ad201
No related branches found
No related tags found
No related merge requests found
<?xml version="1.0" encoding="UTF-8"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<?xml-model href="http://www.tei-c.org/release/xml/tei/custom/schema/relaxng/tei_all.rng" type="application/xml"
schematypens="http://purl.oclc.org/dsdl/schematron"?>
<TEI xmlns="http://www.tei-c.org/ns/1.0" xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="CreNum_header_manuscrits.xml" parse="xml" xpointer="crenum_teiheader">
<xi:fallback>
<teiHeader>
<fileDesc>
<titleStmt>
<title>Title</title>
</titleStmt>
<publicationStmt>
<p>Publication Information</p>
</publicationStmt>
<sourceDesc>
<p>Information about the source</p>
</sourceDesc>
</fileDesc>
</teiHeader>
</xi:fallback>
</xi:include>
<xi:include href="CreNum_header_liste_personnes.xml" parse="xml"
xpointer="crenum_teiheader_liste_personnes">
<xi:fallback>
<standoff/>
</xi:fallback>
</xi:include>
<xi:include href="Livre_I.xml" parse="xml"
xpointer="livreI">
<xi:fallback>
<text>
<body>
<p>Livre I inaccessible.</p>
</body>
</text>
</xi:fallback>
</xi:include>
<xi:include href="Livre_II.xml" parse="xml"
xpointer="livreII">
<xi:fallback>
<text>
<body>
<p>Livre II inaccessible.</p>
</body>
</text>
</xi:fallback>
</xi:include>
</TEI>
<?xml version="1.0" encoding="UTF-8"?>
<!--
Author: AnneGF@CNRS
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns="http://www.w3.org/1999/xhtml" exclude-result-prefixes="xs tei" version="2.0">
<xsl:output method="html" indent="yes" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:template match="/">
<div>
<xsl:for-each
select="//tei:standOff[@xml:id = 'crenum_teiheader_liste_personnes']//tei:person/tei:persName">
<xsl:sort select="normalize-space(.)" lang="fr"/>
<xsl:variable name="id" select="parent::tei:person/@xml:id"/>
<xsl:if test="not(. = preceding-sibling::tei:persName)">
<xsl:choose>
<xsl:when test="@type = 'normalise'">
<h5 id="{$id}" class="mt-3">
<xsl:value-of select="."/>
</h5>
<xsl:for-each
select="//tei:div[@type = 'book' and count(.//tei:persName[replace(@ref, '#', '') = $id]) > 0]">
<xsl:variable name="book" select="@n"/>
<xsl:text>Livre </xsl:text>
<xsl:value-of select="$book"/>
<xsl:text> : </xsl:text>
<span>
<xsl:for-each
select="tei:div[@type = 'prologueProse']//tei:persName[replace(@ref, '#', '') = $id]">
<a
href="/book{$book}/p{replace(replace(preceding::tei:pb[1]/@facs,'.*/f',''),'.item','')}">
<xsl:value-of select="preceding::tei:fw[1]/@n"/>
</a>
<xsl:if test="position() &lt; last()">, </xsl:if>
</xsl:for-each>
<xsl:if test="
count(.//tei:div[@type = 'book']/tei:div[@type = 'prologueProse']//tei:persName[replace(@ref, '#', '') = $id]) > 0
and count(//tei:l//tei:persName[replace(@ref, '#', '') = $id]) > 0">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:for-each-group
select=".//tei:l//tei:persName[replace(@ref, '#', '') = $id]"
group-by="preceding::tei:fw[@type = 'folio'][1]/@n">
<a
href="/book{$book}/p{replace(replace(preceding::tei:pb[1]/@facs,'.*/f',''),'.item','')}">
<xsl:value-of
select="preceding::tei:fw[@type = 'folio'][1]/@n"/>
</a>
<xsl:text> [</xsl:text>
<xsl:for-each-group select="current-group()"
group-by="ancestor::tei:l/@n">
<a
href="/book{$book}/p{replace(replace(preceding::tei:pb[1]/@facs,'.*/f',''),'.item','')}#{ancestor::tei:l/@n}">
<xsl:value-of select="ancestor::tei:l/@n"/>
</a>
<xsl:if test="position() &lt; last()">, </xsl:if>
</xsl:for-each-group>
<xsl:text>]</xsl:text>
<xsl:if test="position() &lt; last()">, </xsl:if>
</xsl:for-each-group>
</span>
<xsl:if test="not(position() = last())">
<xsl:text disable-output-escaping="yes">&lt;br/></xsl:text>
</xsl:if>
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<h5>
<xsl:value-of select="."/>
</h5>
<i>
<xsl:text>Voir </xsl:text>
<a class="goto" href="#{$id}">
<xsl:value-of
select="preceding-sibling::tei:persName[@type = 'normalise']"
/>
</a>
</i>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
</xsl:for-each>
</div>
</xsl:template>
</xsl:stylesheet>
This diff is collapsed.
{% extends "base.html.twig" %}
{% block containertype %}container{% endblock %}
{% block pageTitle %}Index des personnes{% endblock %}
{% block title %}Index des personnes{% endblock %}
{% block body %}
{% include 'htm/index_person.htm'%}
{% endblock %}
{% block js %}
<script src="{{ url_for('static', filename='js/libs/jquery-3.3.1.js') }}"></script>
<script src="{{ url_for('static', filename='js/manuscript.js') }}"></script>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment