Bugzilla – Attachment 145663 Details for
Bug 32333
IdRef system preference revamping
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32333: IdRef system preference revamping
Bug-32333-IdRef-system-preference-revamping.patch (text/plain), 76.60 KB, created by
Matthias Meusburger
on 2023-01-25 16:08:52 UTC
(
hide
)
Description:
Bug 32333: IdRef system preference revamping
Filename:
MIME Type:
Creator:
Matthias Meusburger
Created:
2023-01-25 16:08:52 UTC
Size:
76.60 KB
patch
obsolete
>From 6b3ad11e4e97a5e4bb41dc01ad786b5f68f2aeb9 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Demians?= <f.demians@tamil.fr> >Date: Tue, 22 Nov 2022 09:30:32 +0100 >Subject: [PATCH] Bug 32333: IdRef system preference revamping >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >IdRef system preference enables a Unimarc-only functionality. Authors >fields contain in $3 subfield a PPN, an unique identifier in IdRef a >French national authority file, similar to VIAF. > >KohaLa, the Koha French users association, has designed a revamped >implementation of IdRef in Koha. The goal is to improve the visual and >to add a functionality. > >- Visually â The author publications list is currently displayed in > an old fashion dialog box. It uses greybox library, which is > deprecated. See bug 8290. With this patch, the list is displayed in a > distinct tab of holdings block. > >- Functionality â The title in the list are searched in Koha local > catalog. So it's possible to mark titles locally available and link > to them. PPN are searched directly in Elasticsearch for efficiency. > Koha IdRef users are academic libraries or higher education school. So > Zebra support is not required for them. > >NOTE: After pushing this patch, greybox library could be removed > completely for OPAC : > /koha-tmpl/opac-tmpl/bootstrap/lib/greybox/ > >TO TEST : > >- On a Unimarc Koha, with a Sudoc compliant Catalog, enable IdRef. >- Use default OPAC XSL. >- On opac-detail.pl page, you can see a logo IdRef next to authors > having a $3 (ppn) subfield. Click on the logo. >- Confirm that a tab is added to holdings. It contains the author > publications found in the Sudoc. >- A Sudoc logo is displayed in front of each title. Clicking the icon > open the title in Sudoc web site. >- A Koha logo is displayed in from of each title available locally. > Clicking the logo open the title in Koha OPAC. > >Signed-off-by: Matthias Meusburger <matthias.meusburger@biblibre.com> >--- > .../bootstrap/en/includes/opac-bottom.inc | 4 + > .../bootstrap/en/modules/opac-detail.tt | 4 + > .../bootstrap/en/modules/opac-idref.tt | 77 ---- > .../bootstrap/en/xslt/UNIMARCslimUtils.xsl | 18 +- > .../bootstrap/images/idref-short.svg | 90 ++++ > .../opac-tmpl/bootstrap/images/idref.svg | 403 ++++++++++++++++++ > .../opac-tmpl/bootstrap/images/sudoc.png | Bin 0 -> 1319 bytes > koha-tmpl/opac-tmpl/bootstrap/js/idref.js | 84 ++++ > opac/opac-idref.pl | 91 ---- > opac/svc/idref | 107 +++++ > 10 files changed, 704 insertions(+), 174 deletions(-) > delete mode 100644 koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-idref.tt > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/images/idref-short.svg > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/images/idref.svg > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/images/sudoc.png > create mode 100644 koha-tmpl/opac-tmpl/bootstrap/js/idref.js > delete mode 100755 opac/opac-idref.pl > create mode 100755 opac/svc/idref > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc >index 4fab59077d..819de4193e 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-bottom.inc >@@ -250,6 +250,10 @@ > </script> > [% END %] > >+[% IF Koha.Preference( 'IdRef' ) == 1 %] >+ [% Asset.js("js/idref.js") | $raw %] >+[% END %] >+ > [% IF ( BakerTaylorEnabled ) %] > [% Asset.js("js/bakertaylorimages.js") | $raw %] > <script> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >index 7fde0c96a7..111bb2376b 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt >@@ -1826,6 +1826,10 @@ > }); > [% END %] > >+ [% IF Koha.Preference('IdRef') == 1 %] >+ KOHA.idref.init(); >+ [% END %] >+ > [% IF ( OPACShelfBrowser ) %] > // Focus on shelf browser if present > var shelfbrowser = $("#shelfbrowser"); >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-idref.tt b/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-idref.tt >deleted file mode 100644 >index ec2baf3ec5..0000000000 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-idref.tt >+++ /dev/null >@@ -1,77 +0,0 @@ >-[% INCLUDE 'doc-head-open.inc' %] >-<title>Your search IDREF for ppn [% unimarc3 | html %] › [% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog</title> >-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> >-[% INCLUDE 'doc-head-close.inc' %] >-[% BLOCK cssinclude %] >- <style> >- ul.ui-tabs-nav li a, ul.ui-tabs-nav li span.a { padding:0.6em 1em; } >- #idref h2.role { >- background-color: #DDDEEE; >- cursor: pointer; >- } >- #idref table { >- margin: 0; >- } >- </style> >-[% END %] >- >-</head> >-[% INCLUDE 'bodytag.inc' bodyid='idref' bodyclass='scrollto' %] >-<div class="main"> >- [% IF error %] >- This ppn is not found on the idref service. >- [% ELSE %] >- [% FOREACH role IN content %] >- <div> >- <h1 class="role" title="Click to expand this role">[% role.role_name | html %] ([% role.count | html %])</h1> >- <div class="docs"> >- <table> >- <caption class="sr-only">[% role.role_name | html %]</caption> >- <thead> >- <tr> >- <th>Citation</th> >- <th>Koha</th> >- <th>Sudoc</th> >- </tr> >- </thead> >- <tbody> >- [% FOREACH doc IN role.docs %] >- <tr> >- <td>[% doc.citation | html %]</td> >- <td><a href="/cgi-bin/koha/opac-search.pl?q=ident:[% doc.ppn | uri %]" target="_blank">Koha</a></td> >- <td><a href="http://www.sudoc.fr/[% doc.ppn | uri %]" target="_blank" rel="noreferrer">Sudoc</a></td> >- </tr> >- [% END %] >- </tbody> >- </table> >- </div> >- </div> >- [% END %] >- [% END %] >-</div> >-[% BLOCK jsinclude %] >-[% INCLUDE 'datatables.inc' %] >-<script> >- $(document).ready(function (){ >- $("table").dataTable($.extend(true, {}, dataTablesDefaults, { >- 'filter': false, >- 'columnDefs': [ >- { 'targets': [-1, -2], 'sortable': false } >- ], >- })); >- >- $(".role").click(function(){ >- var docs_node = $(this).parent().find("div.docs"); >- if ( $(docs_node).is(":visible") ) { >- $(".docs").hide(); >- } else { >- $(".docs").hide(); >- docs_node.show(); >- } >- }); >- $(".docs").hide(); >- }); >-</script> >-[% END %] >- >-[% INCLUDE 'opac-bottom.inc' is_popup=1%] >diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl >index dc02e6fc8e..44010459e1 100644 >--- a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl >+++ b/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslimUtils.xsl >@@ -523,15 +523,21 @@ > <xsl:if test="$IdRef = '1'"> > <xsl:if test="marc:subfield[@code=3]"> > <xsl:text> </xsl:text> >- <a> >- <xsl:attribute name="href"> >- <xsl:text>/cgi-bin/koha/opac-idref.pl?unimarc3=</xsl:text> >+ <a class="idref-link" style="cursor: pointer;"> >+ <xsl:attribute name="ppn"> > <xsl:value-of select="str:encode-uri(marc:subfield[@code=3], true())"/> > </xsl:attribute> >- <xsl:attribute name="title">IdRef</xsl:attribute> >- <xsl:attribute name="rel">gb_page_center[600,500]</xsl:attribute> >- <xsl:text>Idref</xsl:text> >+ <xsl:attribute name="title"> >+ <xsl:text>See publications in IdRef</xsl:text> >+ </xsl:attribute> >+ <img src="/opac-tmpl/bootstrap/images/idref-short.svg" width="5%" /> > </a> >+ <div> >+ <xsl:attribute name="id"> >+ <xsl:text>idref-dialog-</xsl:text> >+ <xsl:value-of select="str:encode-uri(marc:subfield[@code=3], true())" /> >+ </xsl:attribute> >+ </div> > </xsl:if> > </xsl:if> > <xsl:if test="not(position() = last())"> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/images/idref-short.svg b/koha-tmpl/opac-tmpl/bootstrap/images/idref-short.svg >new file mode 100644 >index 0000000000..5e25b27628 >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/bootstrap/images/idref-short.svg >@@ -0,0 +1,90 @@ >+<?xml version="1.0" encoding="UTF-8" standalone="no"?> >+<!-- Created with Inkscape (http://www.inkscape.org/) --> >+ >+<svg >+ xmlns:dc="http://purl.org/dc/elements/1.1/" >+ xmlns:cc="http://creativecommons.org/ns#" >+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" >+ xmlns:svg="http://www.w3.org/2000/svg" >+ xmlns="http://www.w3.org/2000/svg" >+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" >+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" >+ version="1.1" >+ id="svg4485" >+ xml:space="preserve" >+ width="352.78189" >+ height="100" >+ viewBox="0 0 352.78189 99.999998" >+ sodipodi:docname="logo-idref.svg" >+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata >+ id="metadata4491"><rdf:RDF><cc:Work >+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type >+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs >+ id="defs4489" /><sodipodi:namedview >+ pagecolor="#ffffff" >+ bordercolor="#666666" >+ borderopacity="1" >+ objecttolerance="10" >+ gridtolerance="10" >+ guidetolerance="10" >+ inkscape:pageopacity="0" >+ inkscape:pageshadow="2" >+ inkscape:window-width="1600" >+ inkscape:window-height="877" >+ id="namedview4487" >+ showgrid="false" >+ inkscape:zoom="1.2523012" >+ inkscape:cx="201.11259" >+ inkscape:cy="5.321977" >+ inkscape:window-x="-8" >+ inkscape:window-y="-8" >+ inkscape:window-maximized="1" >+ inkscape:current-layer="g4493" >+ showguides="true" >+ inkscape:guide-bbox="true" >+ inkscape:snap-to-guides="false" >+ inkscape:snap-grids="false" >+ inkscape:object-nodes="false" >+ fit-margin-top="0" >+ fit-margin-left="0" >+ fit-margin-right="0" >+ fit-margin-bottom="0" /><g >+ id="g4493" >+ inkscape:groupmode="layer" >+ inkscape:label="idref-vectoriel" >+ transform="matrix(1.3333333,0,0,-1.3333333,-195.93214,615.58933)"> >+ <path >+ d="m 177.73656,436.84503 h -18.18889 v 24.0574 h 18.18889 z" >+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61508262" >+ id="path4497-5-1-6-9-1-5" >+ inkscape:connector-curvature="0" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /> >+ <path >+ d="M 177.68307,387.17725 H 159.6164 v 24.14683 h 18.06667 z" >+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61415285" >+ id="path4497-5-1-6-6-3-8-7" >+ inkscape:connector-curvature="0" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /> >+ <path >+ style="fill:#2c3792;fill-opacity:1;stroke:none;stroke-width:1.60573208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" >+ d="m 192.10386,436.76053 -0.0294,24.93148 44.70657,-0.14772 c 0,0 34.56676,-0.78356 34.53088,-37.11613 -0.0351,-35.62379 -33.19517,-37.73615 -33.19517,-37.73615 l -45.97053,0.0152 -0.11644,24.44844 19.24202,-0.0491 0.0119,-5.11486 24.28993,-0.15848 c 0,0 16.15001,2.32384 16.57205,18.20005 -0.26549,17.25517 -16.72169,18.10516 -16.72169,18.10516 l -24.18061,-0.15197 0.0215,-5.16156 z" >+ id="path5476-8-6-6" >+ inkscape:connector-curvature="0" >+ sodipodi:nodetypes="cccsccccccccccc" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /><rect >+ style="opacity:1;fill:#da1259;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.46608543;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.46666667" >+ id="rect6433-1" >+ width="76.93605" >+ height="14.257346" >+ x="146.94911" >+ y="-431.19016" >+ ry="7.1286731" >+ transform="scale(1,-1)" /> >+ </g> >+ </svg> >diff --git a/koha-tmpl/opac-tmpl/bootstrap/images/idref.svg b/koha-tmpl/opac-tmpl/bootstrap/images/idref.svg >new file mode 100644 >index 0000000000..b6f7dea38c >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/bootstrap/images/idref.svg >@@ -0,0 +1,403 @@ >+<?xml version="1.0" encoding="UTF-8" standalone="no"?> >+<!-- Created with Inkscape (http://www.inkscape.org/) --> >+ >+<svg >+ xmlns:dc="http://purl.org/dc/elements/1.1/" >+ xmlns:cc="http://creativecommons.org/ns#" >+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" >+ xmlns:svg="http://www.w3.org/2000/svg" >+ xmlns="http://www.w3.org/2000/svg" >+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" >+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" >+ version="1.1" >+ id="svg4485" >+ xml:space="preserve" >+ width="352.78189" >+ height="100" >+ viewBox="0 0 352.78189 99.999998" >+ sodipodi:docname="logo-idref.svg" >+ inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata >+ id="metadata4491"><rdf:RDF><cc:Work >+ rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type >+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs >+ id="defs4489" /><sodipodi:namedview >+ pagecolor="#ffffff" >+ bordercolor="#666666" >+ borderopacity="1" >+ objecttolerance="10" >+ gridtolerance="10" >+ guidetolerance="10" >+ inkscape:pageopacity="0" >+ inkscape:pageshadow="2" >+ inkscape:window-width="1600" >+ inkscape:window-height="877" >+ id="namedview4487" >+ showgrid="false" >+ inkscape:zoom="1.2523012" >+ inkscape:cx="201.11259" >+ inkscape:cy="5.321977" >+ inkscape:window-x="-8" >+ inkscape:window-y="-8" >+ inkscape:window-maximized="1" >+ inkscape:current-layer="g4493" >+ showguides="true" >+ inkscape:guide-bbox="true" >+ inkscape:snap-to-guides="false" >+ inkscape:snap-grids="false" >+ inkscape:object-nodes="false" >+ fit-margin-top="0" >+ fit-margin-left="0" >+ fit-margin-right="0" >+ fit-margin-bottom="0" /><g >+ id="g4493" >+ inkscape:groupmode="layer" >+ inkscape:label="idref-vectoriel" >+ transform="matrix(1.3333333,0,0,-1.3333333,-195.93214,615.58933)"><g >+ id="g4521" >+ transform="matrix(1.0769025,0,0,1.0769025,341.26075,441.54769)"><path >+ d="m 0,0 c 0.971,0 2.058,0.038 3.26,0.117 1.203,0.077 2.338,0.35 3.405,0.817 1.067,0.467 1.959,1.198 2.679,2.191 0.717,0.993 1.075,2.404 1.075,4.234 0,1.713 -0.282,3.056 -0.844,4.031 C 9.013,12.363 8.305,13.083 7.45,13.551 6.597,14.018 5.655,14.31 4.628,14.427 3.6,14.543 2.64,14.602 1.747,14.602 H -6.519 V 0 Z M -10.549,17.73 H 2.126 c 1.556,0 2.881,-0.097 3.972,-0.291 1.089,-0.195 2.005,-0.438 2.744,-0.73 0.74,-0.292 1.334,-0.613 1.782,-0.964 0.447,-0.35 0.847,-0.682 1.197,-0.993 0.273,-0.273 0.575,-0.604 0.906,-0.993 0.33,-0.39 0.642,-0.886 0.934,-1.489 0.292,-0.605 0.535,-1.325 0.731,-2.161 0.194,-0.838 0.292,-1.82 0.292,-2.95 0,-1.168 -0.157,-2.376 -0.467,-3.621 C 13.904,2.291 13.349,1.152 12.552,0.121 11.753,-0.912 10.673,-1.768 9.311,-2.449 7.946,-3.131 6.215,-3.51 4.111,-3.588 L 15.512,-19.407 H 10.604 L 0.198,-3.88 h -6.717 v -15.527 h -4.03 z" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4523" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4525" >+ transform="matrix(1.0769025,0,0,1.0769025,335.11476,442.42106)"><path >+ d="m 0,0 h 5.707 c 0.961,0 2.04,0.039 3.207,0.115 1.101,0.071 2.155,0.324 3.134,0.751 0.938,0.412 1.706,1.041 2.346,1.924 0.61,0.847 0.921,2.111 0.921,3.758 0,1.559 -0.248,2.779 -0.736,3.625 -0.484,0.838 -1.095,1.462 -1.811,1.855 -0.757,0.414 -1.608,0.677 -2.525,0.782 -0.995,0.113 -1.934,0.17 -2.789,0.17 H 0 Z m 5.707,-1.622 h -7.33 v 16.224 h 9.077 c 0.916,0 1.916,-0.06 2.973,-0.18 1.128,-0.129 2.177,-0.455 3.12,-0.97 0.981,-0.538 1.802,-1.368 2.437,-2.467 0.633,-1.097 0.953,-2.589 0.953,-4.437 0,-1.995 -0.414,-3.579 -1.229,-4.71 C 14.905,0.73 13.893,-0.096 12.698,-0.62 11.546,-1.124 10.309,-1.421 9.02,-1.504 7.817,-1.583 6.702,-1.622 5.707,-1.622 m 11.038,-17.783 h 2.889 l -11.36,15.76 1.514,0.057 c 1.977,0.073 3.613,0.427 4.866,1.053 1.247,0.623 2.243,1.411 2.963,2.341 0.726,0.938 1.236,1.987 1.52,3.118 0.294,1.176 0.442,2.329 0.442,3.424 0,1.061 -0.091,1.992 -0.27,2.766 -0.181,0.775 -0.407,1.445 -0.671,1.991 -0.261,0.538 -0.536,0.981 -0.823,1.319 -0.313,0.368 -0.601,0.684 -0.86,0.943 -0.305,0.269 -0.692,0.59 -1.125,0.929 -0.385,0.301 -0.915,0.586 -1.579,0.847 -0.681,0.269 -1.553,0.501 -2.59,0.687 -1.039,0.185 -2.327,0.278 -3.828,0.278 H -4.03 v -35.513 h 2.407 V -3.88 h 7.96 z M -5.653,-21.028 V 17.731 H 7.833 c 1.596,0 2.98,-0.102 4.113,-0.305 1.145,-0.205 2.121,-0.466 2.902,-0.774 0.807,-0.319 1.474,-0.681 1.982,-1.079 0.463,-0.363 0.876,-0.704 1.237,-1.026 0.32,-0.318 0.639,-0.668 0.985,-1.073 0.375,-0.443 0.726,-1.002 1.047,-1.662 0.316,-0.655 0.582,-1.439 0.789,-2.33 C 21.097,8.587 21.202,7.533 21.202,6.348 21.202,5.12 21.036,3.835 20.71,2.53 20.372,1.18 19.764,-0.07 18.9,-1.187 18.03,-2.311 16.847,-3.253 15.38,-3.986 14.256,-4.547 12.896,-4.92 11.324,-5.101 L 22.803,-21.028 H 15.88 L 5.472,-5.502 H 0 v -15.526 z" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4527" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4529" >+ transform="matrix(1.0769025,0,0,1.0769025,382.42912,439.64416)"><path >+ d="M 0,0 V 1.052 C 0,1.479 -0.039,1.947 -0.117,2.454 -0.196,2.959 -0.312,3.485 -0.468,4.031 -0.624,4.575 -0.857,5.101 -1.169,5.607 -1.753,6.58 -2.512,7.272 -3.446,7.681 -4.382,8.09 -5.296,8.294 -6.191,8.294 -7.866,8.294 -9.366,7.661 -10.69,6.396 -12.014,5.13 -12.812,2.998 -13.084,0 Z m -13.201,-2.803 c 0,-1.285 0.088,-2.61 0.263,-3.972 0.176,-1.364 0.535,-2.61 1.081,-3.739 0.544,-1.129 1.303,-2.054 2.278,-2.774 0.974,-0.721 2.258,-1.081 3.854,-1.081 1.324,0 2.483,0.264 3.476,0.789 0.993,0.526 1.897,1.294 2.716,2.308 l 2.686,-2.103 c -1.247,-1.559 -2.559,-2.659 -3.942,-3.299 -1.383,-0.645 -3.066,-0.965 -5.053,-0.965 -1.869,0 -3.505,0.398 -4.906,1.197 -1.401,0.798 -2.57,1.849 -3.504,3.154 -0.935,1.305 -1.645,2.774 -2.132,4.411 -0.488,1.634 -0.73,3.289 -0.73,4.964 0,1.713 0.146,3.476 0.438,5.286 0.292,1.811 0.983,3.592 2.073,5.344 1.129,1.79 2.443,3.037 3.943,3.739 1.498,0.701 3.046,1.05 4.643,1.05 2.142,0 3.856,-0.429 5.14,-1.284 C 0.408,9.365 1.401,8.254 2.102,6.892 2.804,5.529 3.271,3.991 3.504,2.278 3.738,0.564 3.894,-1.13 3.972,-2.803 Z" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4531" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4533" >+ transform="matrix(1.0769025,0,0,1.0769025,369.31697,440.51752)"><path >+ d="m 0,0 h 11.364 v 0.241 c 0,0.385 -0.036,0.815 -0.107,1.279 C 11.183,1.992 11.071,2.49 10.928,2.998 10.793,3.468 10.587,3.93 10.316,4.371 9.811,5.212 9.188,5.784 8.404,6.127 7.577,6.489 6.764,6.672 5.984,6.672 4.513,6.672 3.226,6.125 2.047,4.999 1.003,4 0.315,2.321 0,0 M 12.986,-1.623 H -1.796 l 0.08,0.885 c 0.288,3.185 1.177,5.509 2.641,6.909 1.475,1.409 3.178,2.123 5.059,2.123 1.004,0 2.037,-0.229 3.07,-0.681 1.088,-0.475 1.978,-1.283 2.648,-2.399 0.345,-0.559 0.61,-1.157 0.785,-1.771 0.164,-0.572 0.288,-1.135 0.374,-1.675 0.084,-0.547 0.125,-1.06 0.125,-1.527 z M 6.159,9.885 C 4.688,9.885 3.242,9.557 1.86,8.91 0.511,8.279 -0.7,7.124 -1.741,5.473 -2.767,3.826 -3.426,2.128 -3.699,0.433 c -0.284,-1.762 -0.429,-3.496 -0.429,-5.157 0,-1.589 0.235,-3.182 0.696,-4.733 0.459,-1.54 1.136,-2.942 2.016,-4.17 0.86,-1.202 1.953,-2.185 3.246,-2.921 1.27,-0.724 2.785,-1.09 4.504,-1.09 1.858,0 3.443,0.297 4.711,0.887 1.071,0.498 2.118,1.318 3.122,2.444 l -1.417,1.109 c -0.748,-0.805 -1.567,-1.446 -2.444,-1.91 -1.107,-0.586 -2.403,-0.883 -3.855,-0.883 -1.767,0 -3.227,0.417 -4.338,1.241 -1.075,0.794 -1.925,1.828 -2.525,3.073 -0.579,1.198 -0.969,2.54 -1.154,3.987 -0.179,1.393 -0.27,2.764 -0.27,4.076 v 0.811 H 15.29 c -0.085,1.375 -0.225,2.771 -0.415,4.16 C 14.656,2.97 14.212,4.435 13.556,5.71 12.922,6.942 12.012,7.961 10.85,8.736 9.704,9.498 8.126,9.885 6.159,9.885 m 0.175,-29.146 c -2.004,0 -3.789,0.438 -5.308,1.303 -1.497,0.854 -2.763,1.992 -3.761,3.387 -0.985,1.374 -1.742,2.939 -2.251,4.651 -0.506,1.702 -0.764,3.45 -0.764,5.196 0,1.747 0.151,3.569 0.449,5.414 0.307,1.91 1.043,3.809 2.187,5.644 1.211,1.922 2.652,3.282 4.287,4.045 1.598,0.748 3.276,1.128 4.986,1.128 2.293,0 4.173,-0.478 5.59,-1.421 1.396,-0.931 2.488,-2.153 3.251,-3.634 0.739,-1.44 1.239,-3.08 1.483,-4.875 0.236,-1.724 0.396,-3.458 0.474,-5.154 l 0.04,-0.848 H -0.202 c 0.029,-0.994 0.11,-2.019 0.245,-3.058 0.163,-1.273 0.502,-2.447 1.006,-3.489 0.484,-1.005 1.168,-1.837 2.03,-2.475 0.825,-0.612 1.96,-0.921 3.372,-0.921 1.185,0 2.227,0.233 3.096,0.694 0.891,0.472 1.72,1.178 2.464,2.1 l 0.502,0.621 3.962,-3.1 -0.512,-0.64 c -1.319,-1.649 -2.744,-2.835 -4.234,-3.529 -1.485,-0.69 -3.299,-1.039 -5.395,-1.039" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4535" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4537" >+ transform="matrix(1.0769025,0,0,1.0769025,410.66314,455.98701)"><path >+ d="M 0,0 C -0.507,0.312 -1.08,0.564 -1.724,0.76 -2.365,0.954 -2.979,1.052 -3.563,1.052 -4.459,1.052 -5.18,0.886 -5.725,0.556 -6.269,0.225 -6.687,-0.214 -6.979,-0.759 -7.272,-1.305 -7.467,-1.927 -7.563,-2.627 -7.662,-3.329 -7.71,-4.05 -7.71,-4.789 v -5.082 h 6.775 v -2.979 h -6.658 l 0.031,-19.965 h -3.796 l -0.032,19.965 h -5.723 v 2.979 h 5.723 v 5.199 c 0,0.505 0.019,1.099 0.058,1.781 0.038,0.681 0.143,1.373 0.315,2.073 0.173,0.702 0.46,1.382 0.863,2.046 0.402,0.661 0.969,1.264 1.7,1.809 0.729,0.546 1.444,0.896 2.146,1.052 0.701,0.155 1.401,0.233 2.103,0.233 0.467,0 0.865,-0.009 1.197,-0.029 0.33,-0.02 0.643,-0.058 0.934,-0.116 C -1.782,4.118 -1.48,4.04 -1.168,3.943 -0.857,3.845 -0.468,3.738 0,3.622 Z" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4539" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4541" >+ transform="matrix(1.0769025,0,0,1.0769025,399.303,421.52344)"><path >+ d="M 0,0 H 2.174 L 2.143,19.964 h 6.66 V 21.32 H 2.028 v 5.893 c 0,0.782 0.051,1.547 0.154,2.274 0.109,0.791 0.336,1.512 0.672,2.14 0.36,0.671 0.881,1.218 1.548,1.624 1.101,0.666 2.805,0.847 4.658,0.288 0.234,-0.071 0.459,-0.149 0.678,-0.235 v 1.693 C 9.514,35.058 9.313,35.116 9.138,35.171 8.855,35.259 8.581,35.33 8.315,35.384 8.068,35.434 7.79,35.468 7.493,35.486 6.721,35.532 5.511,35.542 4.416,35.299 3.831,35.169 3.213,34.863 2.58,34.39 1.936,33.908 1.433,33.376 1.087,32.808 0.729,32.22 0.472,31.608 0.319,30.991 0.16,30.346 0.062,29.698 0.026,29.066 -0.011,28.401 -0.029,27.823 -0.029,27.33 v -6.01 h -5.724 v -1.356 h 5.722 z M 3.8,-1.623 H -1.619 L -1.65,18.342 h -5.726 v 4.6 h 5.724 v 4.388 c 0,0.519 0.019,1.128 0.059,1.828 0.041,0.731 0.155,1.479 0.338,2.221 0.191,0.777 0.514,1.541 0.956,2.271 0.454,0.747 1.096,1.433 1.907,2.04 0.82,0.611 1.646,1.012 2.457,1.193 0.757,0.168 1.525,0.253 2.279,0.253 0.485,0 0.899,-0.01 1.246,-0.031 0.372,-0.022 0.723,-0.066 1.046,-0.13 0.316,-0.064 0.644,-0.149 0.985,-0.255 0.301,-0.094 0.675,-0.196 1.124,-0.308 l 0.614,-0.154 v -5.706 l -1.235,0.76 C 9.68,31.584 9.163,31.812 8.59,31.986 7.19,32.409 5.94,32.286 5.245,31.864 4.822,31.607 4.509,31.28 4.284,30.861 4.039,30.401 3.871,29.865 3.788,29.264 3.697,28.609 3.65,27.92 3.65,27.213 v -4.271 h 6.776 v -4.6 H 3.769 Z" >+ style="fill:#da1259;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4543" >+ inkscape:connector-curvature="0" /></g><g >+ id="g4545" >+ transform="matrix(1.0769025,0,0,1.0769025,299.59066,431.4696)"><path >+ d="m 0,0 c 0,-2.341 0.649,-4.39 1.947,-6.143 1.299,-1.754 3.107,-2.631 5.425,-2.631 1.02,0 2.07,0.251 3.152,0.753 1.083,0.502 1.622,0.884 1.622,1.148 V 5.088 c 0,0.293 -0.201,0.641 -0.601,1.043 C 10.308,7.831 8.666,8.682 6.618,8.682 4.569,8.682 2.956,7.82 1.773,6.097 0.591,4.373 0,2.341 0,0 m 10.455,9.944 c 0.68,-0.239 1.096,-0.359 1.251,-0.359 0.155,0 0.252,0.003 0.291,0.012 0.037,0.007 0.089,0.104 0.149,0.289 v 11.962 c 0,0.649 -0.355,1.097 -1.065,1.344 -0.31,0.109 -0.642,0.197 -0.997,0.267 -0.355,0.07 -0.637,0.135 -0.846,0.197 -0.209,0.062 -0.341,0.119 -0.394,0.175 -0.055,0.053 -0.081,0.169 -0.081,0.347 0,0.177 0.115,0.327 0.347,0.452 l 5.911,2.782 c 0.186,0.092 0.301,0.139 0.348,0.139 0.263,0 0.395,-0.186 0.395,-0.557 v -33.01 c 0.077,-0.68 0.269,-1.167 0.58,-1.46 0.308,-0.294 0.811,-0.44 1.506,-0.44 l 1.344,0.092 c 0.093,0 0.139,-0.089 0.139,-0.266 0,-0.179 -0.115,-0.322 -0.347,-0.429 l -6.167,-2.551 c -0.185,-0.092 -0.345,-0.138 -0.475,-0.138 -0.131,0 -0.198,0.194 -0.198,0.579 v 2.11 c 0,0.154 -0.038,0.231 -0.115,0.231 -0.108,0 -0.75,-0.346 -1.924,-1.043 -3.601,-2.133 -6.638,-2.45 -9.11,-0.95 -1.978,1.206 -3.315,3.114 -4.011,5.726 -0.324,1.221 -0.486,2.515 -0.486,3.882 0,1.368 0.281,2.728 0.846,4.08 0.563,1.353 1.34,2.538 2.329,3.559 2.179,2.225 4.806,3.338 7.882,3.338 1.252,0 2.218,-0.12 2.898,-0.36" >+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none" >+ id="path4547" >+ inkscape:connector-curvature="0" /></g><g >+ aria-label="Identiï¬ants et Référentiels" >+ transform="scale(1,-1)" >+ style="font-variant:normal;font-weight:600;font-stretch:normal;font-size:9.69212246px;font-family:'Open Sans Semibold';-inkscape-font-specification:OpenSans-Semibold;writing-mode:lr-tb;fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.07690251" >+ id="text4551"><path >+ d="m 284.01084,-405.0239 v -6.91888 h 1.13107 v 6.91888 z" >+ style="stroke-width:1.07690251" >+ id="path942" >+ inkscape:connector-curvature="0" /><path >+ d="m 288.61383,-404.92925 q -0.97962,0 -1.52859,-0.70987 -0.54897,-0.70987 -0.54897,-1.99237 0,-1.28724 0.5537,-2.00184 0.55843,-0.71934 1.54279,-0.71934 1.03168,0 1.57118,0.76193 h 0.0568 q -0.0805,-0.56317 -0.0805,-0.88971 v -1.90719 h 1.11687 v 7.36374 h -0.87078 l -0.19403,-0.68621 h -0.0521 q -0.53477,0.78086 -1.56645,0.78086 z m 0.29815,-0.89917 q 0.68621,0 0.99855,-0.38333 0.31234,-0.38806 0.32181,-1.25411 v -0.15617 q 0,-0.98909 -0.32181,-1.40554 -0.32181,-0.41646 -1.00802,-0.41646 -0.58683,0 -0.9039,0.47798 -0.31708,0.47325 -0.31708,1.35349 0,0.87077 0.30761,1.32982 0.30761,0.45432 0.92284,0.45432 z" >+ style="stroke-width:1.07690251" >+ id="path944" >+ inkscape:connector-curvature="0" /><path >+ d="m 295.17261,-404.92925 q -1.22098,0 -1.91192,-0.70987 -0.68621,-0.7146 -0.68621,-1.96398 0,-1.2825 0.63888,-2.01603 0.63889,-0.73354 1.75576,-0.73354 1.03641,0 1.63743,0.62942 0.60103,0.62942 0.60103,1.73209 v 0.60102 h -3.48784 q 0.0237,0.76193 0.41173,1.17366 0.38806,0.40699 1.0932,0.40699 0.46378,0 0.86131,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.40699,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.20349,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31708,0.336 -0.3786,0.97962 h 2.37571 q -0.009,-0.64835 -0.31235,-0.97962 -0.30288,-0.33601 -0.83291,-0.33601 z" >+ style="stroke-width:1.07690251" >+ id="path946" >+ inkscape:connector-curvature="0" /><path >+ d="m 303.07417,-405.0239 h -1.11687 v -3.21808 q 0,-0.60576 -0.24609,-0.90391 -0.24135,-0.29814 -0.77139,-0.29814 -0.70514,0 -1.03168,0.41646 -0.32654,0.41645 -0.32654,1.39608 v 2.60759 h -1.11214 v -5.23412 h 0.87078 l 0.15617,0.68621 h 0.0568 q 0.23663,-0.37387 0.67202,-0.57736 0.43538,-0.2035 0.96542,-0.2035 1.88353,0 1.88353,1.91666 z" >+ style="stroke-width:1.07690251" >+ id="path948" >+ inkscape:connector-curvature="0" /><path >+ d="m 306.57376,-405.82842 q 0.40699,0 0.81398,-0.12777 v 0.83765 q -0.18456,0.0804 -0.47798,0.1325 -0.28868,0.0568 -0.60102,0.0568 -1.58065,0 -1.58065,-1.66583 v -2.82056 h -0.7146 v -0.49218 l 0.76666,-0.40699 0.3786,-1.1074 h 0.68621 v 1.16419 h 1.49073 v 0.84238 h -1.49073 v 2.80163 q 0,0.40226 0.19876,0.59629 0.2035,0.1893 0.53004,0.1893 z" >+ style="stroke-width:1.07690251" >+ id="path950" >+ inkscape:connector-curvature="0" /><path >+ d="m 309.5451,-405.0239 h -1.11213 v -5.23412 h 1.11213 z m -1.17839,-6.62074 q 0,-0.29814 0.16091,-0.45905 0.16563,-0.1609 0.46851,-0.1609 0.29342,0 0.45432,0.1609 0.16564,0.16091 0.16564,0.45905 0,0.28395 -0.16564,0.44959 -0.1609,0.1609 -0.45432,0.1609 -0.30288,0 -0.46851,-0.1609 -0.16091,-0.16564 -0.16091,-0.44959 z" >+ style="stroke-width:1.07690251" >+ id="path952" >+ inkscape:connector-curvature="0" /><path >+ d="m 313.76359,-409.41564 h -1.27777 v 4.39174 h -1.11686 v -4.39174 h -0.86131 v -0.52057 l 0.86131,-0.34074 v -0.34074 q 0,-0.92757 0.43539,-1.37242 0.43539,-0.44958 1.32982,-0.44958 0.58683,0 1.15473,0.19403 l -0.29341,0.84238 q -0.41173,-0.13251 -0.7856,-0.13251 -0.37859,0 -0.5537,0.23662 -0.17037,0.2319 -0.17037,0.70041 v 0.34074 h 1.27777 z m 2.00184,4.39174 h -1.11213 v -5.23412 h 1.11213 z m -1.17838,-6.62074 q 0,-0.29814 0.1609,-0.45905 0.16564,-0.1609 0.46852,-0.1609 0.29341,0 0.45431,0.1609 0.16564,0.16091 0.16564,0.45905 0,0.28395 -0.16564,0.44959 -0.1609,0.1609 -0.45431,0.1609 -0.30288,0 -0.46852,-0.1609 -0.1609,-0.16564 -0.1609,-0.44959 z" >+ style="stroke-width:1.07690251" >+ id="path954" >+ inkscape:connector-curvature="0" /><path >+ d="m 320.6343,-405.0239 -0.22243,-0.7288 h -0.0379 q -0.3786,0.47798 -0.76193,0.65309 -0.38333,0.17036 -0.98436,0.17036 -0.77139,0 -1.20678,-0.41645 -0.43066,-0.41646 -0.43066,-1.17839 0,-0.80926 0.60103,-1.22098 0.60103,-0.41173 1.83147,-0.44959 l 0.9039,-0.0284 v -0.27922 q 0,-0.50164 -0.23662,-0.74773 -0.23189,-0.25082 -0.72407,-0.25082 -0.40226,0 -0.77139,0.11831 -0.36914,0.11831 -0.70988,0.27922 l -0.35966,-0.79506 q 0.42592,-0.22243 0.93229,-0.33601 0.50638,-0.11831 0.95597,-0.11831 0.99855,0 1.50492,0.43539 0.51111,0.43539 0.51111,1.36769 v 3.52569 z m -1.65637,-0.75719 q 0.60575,0 0.97016,-0.33601 0.36913,-0.34074 0.36913,-0.95123 v -0.45432 l -0.67201,0.0284 q -0.78559,0.0284 -1.14526,0.26502 -0.35494,0.23189 -0.35494,0.7146 0,0.35021 0.20823,0.54424 0.20823,0.1893 0.62469,0.1893 z" >+ style="stroke-width:1.07690251" >+ id="path956" >+ inkscape:connector-curvature="0" /><path >+ d="m 327.58555,-405.0239 h -1.11686 v -3.21808 q 0,-0.60576 -0.24609,-0.90391 -0.24136,-0.29814 -0.7714,-0.29814 -0.70514,0 -1.03168,0.41646 -0.32654,0.41645 -0.32654,1.39608 v 2.60759 h -1.11213 v -5.23412 h 0.87077 l 0.15618,0.68621 h 0.0568 q 0.23662,-0.37387 0.67201,-0.57736 0.43539,-0.2035 0.96542,-0.2035 1.88353,0 1.88353,1.91666 z" >+ style="stroke-width:1.07690251" >+ id="path958" >+ inkscape:connector-curvature="0" /><path >+ d="m 331.08514,-405.82842 q 0.40699,0 0.81399,-0.12777 v 0.83765 q -0.18457,0.0804 -0.47798,0.1325 -0.28868,0.0568 -0.60103,0.0568 -1.58065,0 -1.58065,-1.66583 v -2.82056 h -0.7146 v -0.49218 l 0.76666,-0.40699 0.3786,-1.1074 h 0.68621 v 1.16419 h 1.49073 v 0.84238 h -1.49073 v 2.80163 q 0,0.40226 0.19876,0.59629 0.2035,0.1893 0.53004,0.1893 z" >+ style="stroke-width:1.07690251" >+ id="path960" >+ inkscape:connector-curvature="0" /><path >+ d="m 336.46058,-406.51463 q 0,0.76667 -0.55843,1.17839 -0.55843,0.40699 -1.59958,0.40699 -1.04588,0 -1.68003,-0.31707 v -0.9607 q 0.92283,0.42593 1.71789,0.42593 1.02695,0 1.02695,-0.61996 0,-0.19876 -0.11358,-0.33127 -0.11358,-0.13251 -0.37387,-0.27449 -0.26028,-0.14197 -0.72407,-0.3218 -0.9039,-0.35021 -1.22571,-0.70041 -0.31707,-0.3502 -0.31707,-0.90864 0,-0.67201 0.5395,-1.04114 0.54423,-0.37387 1.47653,-0.37387 0.92284,0 1.74629,0.37387 l -0.35967,0.83765 q -0.84711,-0.35021 -1.42448,-0.35021 -0.88024,0 -0.88024,0.50165 0,0.24608 0.22716,0.41645 0.23189,0.17037 1.00329,0.46852 0.64835,0.25082 0.94176,0.45905 0.29341,0.20823 0.43539,0.48271 0.14197,0.26975 0.14197,0.64835 z" >+ style="stroke-width:1.07690251" >+ id="path962" >+ inkscape:connector-curvature="0" /><path >+ d="m 342.47016,-404.92925 q -1.22098,0 -1.91192,-0.70987 -0.68621,-0.7146 -0.68621,-1.96398 0,-1.2825 0.63888,-2.01603 0.63889,-0.73354 1.75575,-0.73354 1.03642,0 1.63744,0.62942 0.60103,0.62942 0.60103,1.73209 v 0.60102 h -3.48784 q 0.0237,0.76193 0.41172,1.17366 0.38807,0.40699 1.09321,0.40699 0.46378,0 0.86131,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.40699,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.2035,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31707,0.336 -0.37859,0.97962 h 2.3757 q -0.009,-0.64835 -0.31234,-0.97962 -0.30288,-0.33601 -0.83292,-0.33601 z" >+ style="stroke-width:1.07690251" >+ id="path964" >+ inkscape:connector-curvature="0" /><path >+ d="m 347.71682,-405.82842 q 0.407,0 0.81399,-0.12777 v 0.83765 q -0.18457,0.0804 -0.47798,0.1325 -0.28868,0.0568 -0.60102,0.0568 -1.58065,0 -1.58065,-1.66583 v -2.82056 h -0.71461 v -0.49218 l 0.76666,-0.40699 0.3786,-1.1074 h 0.68621 v 1.16419 h 1.49073 v 0.84238 h -1.49073 v 2.80163 q 0,0.40226 0.19877,0.59629 0.20349,0.1893 0.53003,0.1893 z" >+ style="stroke-width:1.07690251" >+ id="path966" >+ inkscape:connector-curvature="0" /><path >+ d="m 353.34537,-408.7247 h 0.78559 q 0.79032,0 1.14526,-0.29341 0.35493,-0.29341 0.35493,-0.87078 0,-0.58682 -0.38333,-0.84238 -0.38333,-0.25555 -1.15472,-0.25555 h -0.74773 z m 0,0.93704 v 2.76376 h -1.13107 v -6.91888 h 1.95452 q 1.33929,0 1.98291,0.50164 0.64362,0.50164 0.64362,1.51439 0,1.29197 -1.34403,1.84094 l 1.95452,3.06191 h -1.28724 l -1.65637,-2.76376 z" >+ style="stroke-width:1.07690251" >+ id="path968" >+ inkscape:connector-curvature="0" /><path >+ d="m 360.57505,-404.92925 q -1.22098,0 -1.91193,-0.70987 -0.68621,-0.7146 -0.68621,-1.96398 0,-1.2825 0.63889,-2.01603 0.63888,-0.73354 1.75575,-0.73354 1.03641,0 1.63744,0.62942 0.60102,0.62942 0.60102,1.73209 v 0.60102 h -3.48783 q 0.0237,0.76193 0.41172,1.17366 0.38806,0.40699 1.0932,0.40699 0.46379,0 0.86132,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.407,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.2035,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31707,0.336 -0.37859,0.97962 h 2.3757 q -0.009,-0.64835 -0.31234,-0.97962 -0.30288,-0.33601 -0.83292,-0.33601 z m -0.70987,-1.38662 v -0.11831 q 0.26975,-0.33127 0.5537,-0.73826 0.28868,-0.407 0.45432,-0.69568 h 1.29196 v 0.0994 q -0.24608,0.28868 -0.73826,0.74774 -0.48745,0.45431 -0.82345,0.70513 z" >+ style="stroke-width:1.07690251" >+ id="path970" >+ inkscape:connector-curvature="0" /><path >+ d="m 366.49843,-409.41564 h -1.27777 v 4.39174 h -1.11687 v -4.39174 h -0.86131 v -0.52057 l 0.86131,-0.34074 v -0.34074 q 0,-0.92757 0.43539,-1.37242 0.43539,-0.44958 1.32983,-0.44958 0.58683,0 1.15472,0.19403 l -0.29341,0.84238 q -0.41173,-0.13251 -0.78559,-0.13251 -0.3786,0 -0.5537,0.23662 -0.17037,0.2319 -0.17037,0.70041 v 0.34074 h 1.27777 z" >+ style="stroke-width:1.07690251" >+ id="path972" >+ inkscape:connector-curvature="0" /><path >+ d="m 369.67594,-404.92925 q -1.22098,0 -1.91192,-0.70987 -0.68621,-0.7146 -0.68621,-1.96398 0,-1.2825 0.63888,-2.01603 0.63889,-0.73354 1.75575,-0.73354 1.03642,0 1.63744,0.62942 0.60103,0.62942 0.60103,1.73209 v 0.60102 h -3.48784 q 0.0237,0.76193 0.41172,1.17366 0.38807,0.40699 1.09321,0.40699 0.46378,0 0.86131,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.40699,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.2035,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31707,0.336 -0.37859,0.97962 h 2.3757 q -0.009,-0.64835 -0.31234,-0.97962 -0.30288,-0.33601 -0.83292,-0.33601 z m -0.70987,-1.38662 v -0.11831 q 0.26975,-0.33127 0.5537,-0.73826 0.28868,-0.407 0.45432,-0.69568 h 1.29197 v 0.0994 q -0.24609,0.28868 -0.73827,0.74774 -0.48745,0.45431 -0.82345,0.70513 z" >+ style="stroke-width:1.07690251" >+ id="path974" >+ inkscape:connector-curvature="0" /><path >+ d="m 375.62774,-410.35267 q 0.33601,0 0.5537,0.0473 l -0.10884,1.03641 q -0.23663,-0.0568 -0.49218,-0.0568 -0.66728,0 -1.08374,0.43539 -0.41172,0.43539 -0.41172,1.13106 v 2.73537 h -1.11214 v -5.23412 h 0.87078 l 0.14671,0.92283 h 0.0568 q 0.26028,-0.46851 0.67674,-0.743 0.42119,-0.27448 0.9039,-0.27448 z" >+ style="stroke-width:1.07690251" >+ id="path976" >+ inkscape:connector-curvature="0" /><path >+ d="m 379.43592,-404.92925 q -1.22098,0 -1.91193,-0.70987 -0.6862,-0.7146 -0.6862,-1.96398 0,-1.2825 0.63888,-2.01603 0.63889,-0.73354 1.75575,-0.73354 1.03641,0 1.63744,0.62942 0.60102,0.62942 0.60102,1.73209 v 0.60102 h -3.48783 q 0.0237,0.76193 0.41172,1.17366 0.38807,0.40699 1.0932,0.40699 0.46379,0 0.86132,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.407,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.2035,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31707,0.336 -0.37859,0.97962 h 2.3757 q -0.009,-0.64835 -0.31234,-0.97962 -0.30288,-0.33601 -0.83292,-0.33601 z" >+ style="stroke-width:1.07690251" >+ id="path978" >+ inkscape:connector-curvature="0" /><path >+ d="m 387.33748,-405.0239 h -1.11687 v -3.21808 q 0,-0.60576 -0.24609,-0.90391 -0.24136,-0.29814 -0.77139,-0.29814 -0.70514,0 -1.03169,0.41646 -0.32654,0.41645 -0.32654,1.39608 v 2.60759 h -1.11213 v -5.23412 h 0.87078 l 0.15617,0.68621 h 0.0568 q 0.23662,-0.37387 0.67201,-0.57736 0.43539,-0.2035 0.96543,-0.2035 1.88353,0 1.88353,1.91666 z" >+ style="stroke-width:1.07690251" >+ id="path980" >+ inkscape:connector-curvature="0" /><path >+ d="m 390.83706,-405.82842 q 0.407,0 0.81399,-0.12777 v 0.83765 q -0.18457,0.0804 -0.47798,0.1325 -0.28868,0.0568 -0.60103,0.0568 -1.58064,0 -1.58064,-1.66583 v -2.82056 h -0.71461 v -0.49218 l 0.76666,-0.40699 0.3786,-1.1074 h 0.68621 v 1.16419 h 1.49073 v 0.84238 h -1.49073 v 2.80163 q 0,0.40226 0.19877,0.59629 0.20349,0.1893 0.53003,0.1893 z" >+ style="stroke-width:1.07690251" >+ id="path982" >+ inkscape:connector-curvature="0" /><path >+ d="m 393.8084,-405.0239 h -1.11213 v -5.23412 h 1.11213 z m -1.17838,-6.62074 q 0,-0.29814 0.1609,-0.45905 0.16564,-0.1609 0.46852,-0.1609 0.29341,0 0.45432,0.1609 0.16563,0.16091 0.16563,0.45905 0,0.28395 -0.16563,0.44959 -0.16091,0.1609 -0.45432,0.1609 -0.30288,0 -0.46852,-0.1609 -0.1609,-0.16564 -0.1609,-0.44959 z" >+ style="stroke-width:1.07690251" >+ id="path984" >+ inkscape:connector-curvature="0" /><path >+ d="m 397.68619,-404.92925 q -1.22098,0 -1.91192,-0.70987 -0.68621,-0.7146 -0.68621,-1.96398 0,-1.2825 0.63888,-2.01603 0.63889,-0.73354 1.75576,-0.73354 1.03641,0 1.63743,0.62942 0.60103,0.62942 0.60103,1.73209 v 0.60102 h -3.48784 q 0.0237,0.76193 0.41173,1.17366 0.38806,0.40699 1.0932,0.40699 0.46378,0 0.86131,-0.0852 0.40226,-0.0899 0.86131,-0.29342 v 0.90391 q -0.40699,0.19403 -0.82345,0.27448 -0.41646,0.0804 -0.95123,0.0804 z m -0.20349,-4.58104 q -0.53004,0 -0.85185,0.33601 -0.31708,0.336 -0.3786,0.97962 h 2.37571 q -0.009,-0.64835 -0.31235,-0.97962 -0.30288,-0.33601 -0.83291,-0.33601 z" >+ style="stroke-width:1.07690251" >+ id="path986" >+ inkscape:connector-curvature="0" /><path >+ d="m 402.09518,-405.0239 h -1.11213 v -7.36374 h 1.11213 z" >+ style="stroke-width:1.07690251" >+ id="path988" >+ inkscape:connector-curvature="0" /><path >+ d="m 407.20338,-406.51463 q 0,0.76667 -0.55843,1.17839 -0.55844,0.40699 -1.59958,0.40699 -1.04588,0 -1.68003,-0.31707 v -0.9607 q 0.92283,0.42593 1.71789,0.42593 1.02695,0 1.02695,-0.61996 0,-0.19876 -0.11358,-0.33127 -0.11358,-0.13251 -0.37387,-0.27449 -0.26028,-0.14197 -0.72407,-0.3218 -0.9039,-0.35021 -1.22571,-0.70041 -0.31708,-0.3502 -0.31708,-0.90864 0,-0.67201 0.53951,-1.04114 0.54423,-0.37387 1.47653,-0.37387 0.92283,0 1.74629,0.37387 l -0.35967,0.83765 q -0.84712,-0.35021 -1.42448,-0.35021 -0.88024,0 -0.88024,0.50165 0,0.24608 0.22716,0.41645 0.23189,0.17037 1.00328,0.46852 0.64835,0.25082 0.94177,0.45905 0.29341,0.20823 0.43539,0.48271 0.14197,0.26975 0.14197,0.64835 z" >+ style="stroke-width:1.07690251" >+ id="path990" >+ inkscape:connector-curvature="0" /></g> >+<g >+ aria-label="pour lâenseignement supérieur >+et la recherche" >+ transform="scale(1,-1)" >+ style="font-variant:normal;font-weight:600;font-stretch:normal;font-size:7.53831768px;font-family:'Open Sans Semibold';-inkscape-font-specification:OpenSans-Semibold;writing-mode:lr-tb;fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.07690251" >+ id="text4557"><path >+ d="m 285.78079,-395.90398 q -0.77297,0 -1.19995,-0.55581 h -0.0515 q 0.0515,0.51532 0.0515,0.62574 v 1.66741 h -0.86499 v -5.88195 h 0.69936 q 0.0294,0.11411 0.12146,0.54477 h 0.0442 q 0.40489,-0.61838 1.21467,-0.61838 0.76193,0 1.18523,0.55212 0.42697,0.55212 0.42697,1.54963 0,0.9975 -0.43433,1.55698 -0.43066,0.55949 -1.19259,0.55949 z m -0.20981,-3.51151 q -0.51531,0 -0.75456,0.30183 -0.23558,0.30183 -0.23558,0.96438 v 0.12883 q 0,0.74352 0.23558,1.07848 0.23557,0.33127 0.76929,0.33127 0.44906,0 0.69199,-0.36808 0.24293,-0.36808 0.24293,-1.04904 0,-0.68463 -0.24293,-1.03431 -0.23925,-0.35336 -0.70672,-0.35336 z" >+ style="stroke-width:1.07690251" >+ id="path993" >+ inkscape:connector-curvature="0" /><path >+ d="m 292.02308,-398.02045 q 0,0.9975 -0.51163,1.55698 -0.51163,0.55949 -1.42448,0.55949 -0.57052,0 -1.00854,-0.25766 -0.43802,-0.25766 -0.67359,-0.73985 -0.23557,-0.48218 -0.23557,-1.11896 0,-0.99015 0.50795,-1.54595 0.50795,-0.5558 1.43184,-0.5558 0.8834,0 1.39871,0.57052 0.51531,0.56685 0.51531,1.53123 z m -2.96305,0 q 0,1.40975 1.04167,1.40975 1.03063,0 1.03063,-1.40975 0,-1.39504 -1.03799,-1.39504 -0.54477,0 -0.79138,0.36073 -0.24293,0.36072 -0.24293,1.03431 z" >+ style="stroke-width:1.07690251" >+ id="path995" >+ inkscape:connector-curvature="0" /><path >+ d="m 295.88917,-395.9776 -0.12147,-0.53372 h -0.0442 q -0.18036,0.28342 -0.51532,0.44538 -0.33127,0.16196 -0.75824,0.16196 -0.73985,0 -1.10425,-0.36809 -0.3644,-0.36808 -0.3644,-1.11528 v -2.66124 h 0.87235 v 2.51032 q 0,0.46747 0.19141,0.70304 0.1914,0.23189 0.59997,0.23189 0.54476,0 0.79874,-0.32391 0.25765,-0.32759 0.25765,-1.0932 v -2.02814 h 0.86868 v 4.07099 z" >+ style="stroke-width:1.07690251" >+ id="path997" >+ inkscape:connector-curvature="0" /><path >+ d="m 299.8699,-400.1222 q 0.26134,0 0.43066,0.0368 l -0.0847,0.8061 q -0.18404,-0.0442 -0.38281,-0.0442 -0.51899,0 -0.8429,0.33863 -0.32024,0.33864 -0.32024,0.87972 v 2.12751 h -0.86499 v -4.07099 h 0.67727 l 0.11411,0.71776 h 0.0442 q 0.20244,-0.3644 0.52636,-0.57788 0.32759,-0.21349 0.70303,-0.21349 z" >+ style="stroke-width:1.07690251" >+ id="path999" >+ inkscape:connector-curvature="0" /><path >+ d="m 303.87894,-395.9776 h -0.86499 v -5.72735 h 0.86499 z" >+ style="stroke-width:1.07690251" >+ id="path1001" >+ inkscape:connector-curvature="0" /><path >+ d="m 305.80912,-401.35896 0.0552,0.081 q -0.19508,0.76929 -0.64782,1.76311 h -0.62574 q 0.25398,-1.06375 0.36808,-1.84409 z" >+ style="stroke-width:1.07690251" >+ id="path1003" >+ inkscape:connector-curvature="0" /><path >+ d="m 308.34986,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27357,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30182,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31286,-0.0699 0.6699,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29446,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23558,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1005" >+ inkscape:connector-curvature="0" /><path >+ d="m 314.49553,-395.9776 h -0.86867 v -2.50296 q 0,-0.47114 -0.19141,-0.70303 -0.18772,-0.2319 -0.59997,-0.2319 -0.54844,0 -0.80242,0.32392 -0.25397,0.32391 -0.25397,1.08584 v 2.02813 h -0.865 v -4.07099 h 0.67727 l 0.12147,0.53372 h 0.0442 q 0.18404,-0.29078 0.52268,-0.44906 0.33863,-0.15827 0.75088,-0.15827 1.46497,0 1.46497,1.49073 z" >+ style="stroke-width:1.07690251" >+ id="path1007" >+ inkscape:connector-curvature="0" /><path >+ d="m 318.4305,-397.13706 q 0,0.59629 -0.43434,0.91653 -0.43434,0.31655 -1.24412,0.31655 -0.81346,0 -1.30669,-0.24662 v -0.7472 q 0.71776,0.33127 1.33614,0.33127 0.79874,0 0.79874,-0.48219 0,-0.15459 -0.0883,-0.25766 -0.0883,-0.10306 -0.29079,-0.21348 -0.20244,-0.11043 -0.56316,-0.2503 -0.70304,-0.27238 -0.95333,-0.54476 -0.24662,-0.27238 -0.24662,-0.70672 0,-0.52267 0.41961,-0.80978 0.4233,-0.29078 1.14842,-0.29078 0.71776,0 1.35822,0.29078 l -0.27974,0.65151 q -0.65887,-0.27238 -1.10793,-0.27238 -0.68463,0 -0.68463,0.39016 0,0.19141 0.17668,0.32392 0.18036,0.13251 0.78033,0.3644 0.50428,0.19508 0.73249,0.35704 0.22821,0.16195 0.33863,0.37544 0.11043,0.20981 0.11043,0.50427 z" >+ style="stroke-width:1.07690251" >+ id="path1009" >+ inkscape:connector-curvature="0" /><path >+ d="m 321.14466,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27357,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30182,0.31655 0.85027,0.31655 0.36072,0 0.6699,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29446,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23558,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1011" >+ inkscape:connector-curvature="0" /><path >+ d="m 324.57389,-395.9776 h -0.865 v -4.07099 h 0.865 z m -0.91653,-5.14947 q 0,-0.23189 0.12515,-0.35704 0.12883,-0.12514 0.3644,-0.12514 0.22821,0 0.35336,0.12514 0.12883,0.12515 0.12883,0.35704 0,0.22085 -0.12883,0.34968 -0.12515,0.12515 -0.35336,0.12515 -0.23557,0 -0.3644,-0.12515 -0.12515,-0.12883 -0.12515,-0.34968 z" >+ style="stroke-width:1.07690251" >+ id="path1013" >+ inkscape:connector-curvature="0" /><path >+ d="m 329.24996,-400.04859 v 0.47483 l -0.69568,0.12883 q 0.0957,0.12883 0.15828,0.31655 0.0626,0.18772 0.0626,0.39753 0,0.62942 -0.43433,0.99014 -0.43434,0.36072 -1.19627,0.36072 -0.19508,0 -0.35336,-0.0294 -0.27974,0.173 -0.27974,0.40489 0,0.13987 0.12883,0.20981 0.13251,0.0699 0.48218,0.0699 h 0.7104 q 0.67359,0 1.02327,0.28711 0.34968,0.2871 0.34968,0.82818 0,0.692 -0.57053,1.06744 -0.57053,0.37544 -1.64901,0.37544 -0.83186,0 -1.26988,-0.29446 -0.43802,-0.29447 -0.43802,-0.83923 0,-0.37544 0.23558,-0.6331 0.23925,-0.25398 0.66622,-0.35336 -0.17299,-0.0736 -0.2871,-0.23557 -0.11042,-0.16564 -0.11042,-0.346 0,-0.22821 0.12882,-0.38648 0.12883,-0.15828 0.38281,-0.31287 -0.31655,-0.13619 -0.51531,-0.4417 -0.19509,-0.30919 -0.19509,-0.72144 0,-0.66255 0.41593,-1.02695 0.41962,-0.3644 1.19259,-0.3644 0.173,0 0.36072,0.0258 0.1914,0.0221 0.2871,0.0478 z m -3.19863,4.70409 q 0,0.27974 0.25029,0.43066 0.25398,0.15091 0.7104,0.15091 0.70672,0 1.05271,-0.20244 0.346,-0.20245 0.346,-0.5374 0,-0.26502 -0.1914,-0.37913 -0.18772,-0.11042 -0.70304,-0.11042 h -0.65518 q -0.37177,0 -0.59262,0.173 -0.21716,0.17667 -0.21716,0.47482 z m 0.37176,-3.38635 q 0,0.3828 0.19508,0.58893 0.19877,0.20612 0.56685,0.20612 0.75089,0 0.75089,-0.80241 0,-0.39753 -0.18773,-0.61102 -0.18404,-0.21717 -0.56316,-0.21717 -0.37545,0 -0.57053,0.21349 -0.1914,0.21349 -0.1914,0.62206 z" >+ style="stroke-width:1.07690251" >+ id="path1015" >+ inkscape:connector-curvature="0" /><path >+ d="m 333.58482,-395.9776 h -0.86867 v -2.50296 q 0,-0.47114 -0.1914,-0.70303 -0.18772,-0.2319 -0.59998,-0.2319 -0.54844,0 -0.80241,0.32392 -0.25398,0.32391 -0.25398,1.08584 v 2.02813 h -0.86499 v -4.07099 h 0.67727 l 0.12147,0.53372 h 0.0442 q 0.18405,-0.29078 0.52268,-0.44906 0.33864,-0.15827 0.75089,-0.15827 1.46496,0 1.46496,1.49073 z" >+ style="stroke-width:1.07690251" >+ id="path1017" >+ inkscape:connector-curvature="0" /><path >+ d="m 336.56806,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27357,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30182,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.6699,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66254,0.26134 -0.24662,0.26134 -0.29447,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23558,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1019" >+ inkscape:connector-curvature="0" /><path >+ d="m 342.56279,-395.9776 h -0.86868 v -2.51032 q 0,-0.46746 -0.17668,-0.69567 -0.17668,-0.2319 -0.55212,-0.2319 -0.50059,0 -0.73616,0.3276 -0.23189,0.32391 -0.23189,1.08216 v 2.02813 h -0.865 v -4.07099 h 0.67727 l 0.12147,0.53372 h 0.0442 q 0.16932,-0.29078 0.48955,-0.44906 0.32391,-0.15827 0.7104,-0.15827 0.93861,0 1.24411,0.64046 h 0.0589 q 0.18036,-0.30183 0.50795,-0.47114 0.32759,-0.16932 0.75089,-0.16932 0.7288,0 1.06007,0.36808 0.33496,0.36808 0.33496,1.12265 v 2.65387 h -0.86499 v -2.51032 q 0,-0.46746 -0.18036,-0.69567 -0.17668,-0.2319 -0.55213,-0.2319 -0.50427,0 -0.73984,0.31656 -0.23189,0.31286 -0.23189,0.96437 z" >+ style="stroke-width:1.07690251" >+ id="path1021" >+ inkscape:connector-curvature="0" /><path >+ d="m 348.11673,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36559,-0.57052 0.8061,0 1.27356,0.48955 0.46747,0.48955 0.46747,1.34718 v 0.46746 h -2.71277 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73985,0.0626 z m -0.15827,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29446,0.76193 h 1.84777 q -0.007,-0.50427 -0.24294,-0.76193 -0.23557,-0.26134 -0.64782,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1023" >+ inkscape:connector-curvature="0" /><path >+ d="m 354.26241,-395.9776 h -0.86868 v -2.50296 q 0,-0.47114 -0.1914,-0.70303 -0.18772,-0.2319 -0.59997,-0.2319 -0.54845,0 -0.80242,0.32392 -0.25398,0.32391 -0.25398,1.08584 v 2.02813 h -0.86499 v -4.07099 h 0.67727 l 0.12147,0.53372 h 0.0442 q 0.18404,-0.29078 0.52267,-0.44906 0.33864,-0.15827 0.75089,-0.15827 1.46497,0 1.46497,1.49073 z" >+ style="stroke-width:1.07690251" >+ id="path1025" >+ inkscape:connector-curvature="0" /><path >+ d="m 356.9843,-396.60334 q 0.31655,0 0.6331,-0.0994 v 0.6515 q -0.14355,0.0626 -0.37176,0.10307 -0.22453,0.0442 -0.46746,0.0442 -1.2294,0 -1.2294,-1.29565 v -2.19377 h -0.5558 v -0.38281 l 0.59629,-0.31655 0.29447,-0.86131 h 0.53372 v 0.90548 h 1.15945 v 0.65519 h -1.15945 v 2.17904 q 0,0.31287 0.15459,0.46379 0.15827,0.14723 0.41225,0.14723 z" >+ style="stroke-width:1.07690251" >+ id="path1027" >+ inkscape:connector-curvature="0" /><path >+ d="m 363.12517,-397.13706 q 0,0.59629 -0.43434,0.91653 -0.43433,0.31655 -1.24412,0.31655 -0.81346,0 -1.30669,-0.24662 v -0.7472 q 0.71776,0.33127 1.33614,0.33127 0.79874,0 0.79874,-0.48219 0,-0.15459 -0.0883,-0.25766 -0.0883,-0.10306 -0.29079,-0.21348 -0.20244,-0.11043 -0.56316,-0.2503 -0.70304,-0.27238 -0.95333,-0.54476 -0.24662,-0.27238 -0.24662,-0.70672 0,-0.52267 0.41962,-0.80978 0.42329,-0.29078 1.14841,-0.29078 0.71776,0 1.35822,0.29078 l -0.27974,0.65151 q -0.65887,-0.27238 -1.10793,-0.27238 -0.68463,0 -0.68463,0.39016 0,0.19141 0.17668,0.32392 0.18036,0.13251 0.78034,0.3644 0.50427,0.19508 0.73248,0.35704 0.22821,0.16195 0.33863,0.37544 0.11043,0.20981 0.11043,0.50427 z" >+ style="stroke-width:1.07690251" >+ id="path1029" >+ inkscape:connector-curvature="0" /><path >+ d="m 366.93253,-395.9776 -0.12147,-0.53372 h -0.0442 q -0.18036,0.28342 -0.51531,0.44538 -0.33127,0.16196 -0.75825,0.16196 -0.73984,0 -1.10424,-0.36809 -0.36441,-0.36808 -0.36441,-1.11528 v -2.66124 h 0.87236 v 2.51032 q 0,0.46747 0.1914,0.70304 0.1914,0.23189 0.59997,0.23189 0.54477,0 0.79874,-0.32391 0.25766,-0.32759 0.25766,-1.0932 v -2.02814 h 0.86867 v 4.07099 z" >+ style="stroke-width:1.07690251" >+ id="path1031" >+ inkscape:connector-curvature="0" /><path >+ d="m 370.91327,-395.90398 q -0.77297,0 -1.19995,-0.55581 h -0.0515 q 0.0515,0.51532 0.0515,0.62574 v 1.66741 h -0.86499 v -5.88195 h 0.69935 q 0.0294,0.11411 0.12147,0.54477 h 0.0442 q 0.40489,-0.61838 1.21467,-0.61838 0.76193,0 1.18522,0.55212 0.42698,0.55212 0.42698,1.54963 0,0.9975 -0.43434,1.55698 -0.43065,0.55949 -1.19258,0.55949 z m -0.20981,-3.51151 q -0.51531,0 -0.75457,0.30183 -0.23557,0.30183 -0.23557,0.96438 v 0.12883 q 0,0.74352 0.23557,1.07848 0.23557,0.33127 0.76929,0.33127 0.44906,0 0.692,-0.36808 0.24293,-0.36808 0.24293,-1.04904 0,-0.68463 -0.24293,-1.03431 -0.23926,-0.35336 -0.70672,-0.35336 z" >+ style="stroke-width:1.07690251" >+ id="path1033" >+ inkscape:connector-curvature="0" /><path >+ d="m 375.32254,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49692,-0.57052 1.36559,-0.57052 0.8061,0 1.27356,0.48955 0.46747,0.48955 0.46747,1.34718 v 0.46746 h -2.71277 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73985,0.0626 z m -0.15827,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29446,0.76193 h 1.84777 q -0.007,-0.50427 -0.24294,-0.76193 -0.23557,-0.26134 -0.64782,-0.26134 z m -0.55212,-1.07848 v -0.092 q 0.2098,-0.25765 0.43065,-0.5742 0.22453,-0.31656 0.35336,-0.54109 h 1.00486 v 0.0773 q -0.1914,0.22453 -0.5742,0.58157 -0.37913,0.35336 -0.64047,0.54844 z" >+ style="stroke-width:1.07690251" >+ id="path1035" >+ inkscape:connector-curvature="0" /><path >+ d="m 379.95172,-400.1222 q 0.26134,0 0.43066,0.0368 l -0.0847,0.8061 q -0.18404,-0.0442 -0.38281,-0.0442 -0.51899,0 -0.84291,0.33863 -0.32023,0.33864 -0.32023,0.87972 v 2.12751 h -0.86499 v -4.07099 h 0.67727 l 0.11411,0.71776 h 0.0442 q 0.20244,-0.3644 0.52635,-0.57788 0.3276,-0.21349 0.70304,-0.21349 z" >+ style="stroke-width:1.07690251" >+ id="path1037" >+ inkscape:connector-curvature="0" /><path >+ d="m 382.00077,-395.9776 h -0.865 v -4.07099 h 0.865 z m -0.91653,-5.14947 q 0,-0.23189 0.12515,-0.35704 0.12883,-0.12514 0.3644,-0.12514 0.22821,0 0.35336,0.12514 0.12883,0.12515 0.12883,0.35704 0,0.22085 -0.12883,0.34968 -0.12515,0.12515 -0.35336,0.12515 -0.23557,0 -0.3644,-0.12515 -0.12515,-0.12883 -0.12515,-0.34968 z" >+ style="stroke-width:1.07690251" >+ id="path1039" >+ inkscape:connector-curvature="0" /><path >+ d="m 385.01682,-395.90398 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27357,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64047,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66254,0.26134 -0.24662,0.26134 -0.29447,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23557,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1041" >+ inkscape:connector-curvature="0" /><path >+ d="m 390.45209,-395.9776 -0.12146,-0.53372 h -0.0442 q -0.18036,0.28342 -0.51532,0.44538 -0.33127,0.16196 -0.75825,0.16196 -0.73984,0 -1.10424,-0.36809 -0.3644,-0.36808 -0.3644,-1.11528 v -2.66124 h 0.87235 v 2.51032 q 0,0.46747 0.1914,0.70304 0.19141,0.23189 0.59998,0.23189 0.54476,0 0.79873,-0.32391 0.25766,-0.32759 0.25766,-1.0932 v -2.02814 h 0.86868 v 4.07099 z" >+ style="stroke-width:1.07690251" >+ id="path1043" >+ inkscape:connector-curvature="0" /><path >+ d="m 394.4328,-400.1222 q 0.26134,0 0.43065,0.0368 l -0.0847,0.8061 q -0.18405,-0.0442 -0.38281,-0.0442 -0.519,0 -0.84291,0.33863 -0.32023,0.33864 -0.32023,0.87972 v 2.12751 h -0.86499 v -4.07099 h 0.67727 l 0.1141,0.71776 h 0.0442 q 0.20245,-0.3644 0.52636,-0.57788 0.32759,-0.21349 0.70304,-0.21349 z" >+ style="stroke-width:1.07690251" >+ id="path1045" >+ inkscape:connector-curvature="0" /><path >+ d="m 285.49369,-386.85799 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27356,0.48955 0.46747,0.48955 0.46747,1.34718 v 0.46746 h -2.71277 q 0.0184,0.59261 0.32024,0.91284 0.30182,0.31655 0.85027,0.31655 0.36072,0 0.6699,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29446,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23558,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1047" >+ inkscape:connector-curvature="0" /><path >+ d="m 289.57442,-387.55735 q 0.31655,0 0.6331,-0.0994 v 0.6515 q -0.14355,0.0626 -0.37176,0.10307 -0.22453,0.0442 -0.46747,0.0442 -1.22939,0 -1.22939,-1.29565 v -2.19377 h -0.5558 v -0.38281 l 0.59629,-0.31655 0.29446,-0.86131 h 0.53372 v 0.90548 h 1.15946 v 0.65519 h -1.15946 v 2.17904 q 0,0.31287 0.1546,0.46379 0.15827,0.14723 0.41225,0.14723 z" >+ style="stroke-width:1.07690251" >+ id="path1049" >+ inkscape:connector-curvature="0" /><path >+ d="m 293.84543,-386.93161 h -0.86499 v -5.72735 h 0.86499 z" >+ style="stroke-width:1.07690251" >+ id="path1051" >+ inkscape:connector-curvature="0" /><path >+ d="m 297.63074,-386.93161 -0.17299,-0.56685 h -0.0294 q -0.29447,0.37177 -0.59261,0.50796 -0.29815,0.13251 -0.76561,0.13251 -0.59998,0 -0.93861,-0.32392 -0.33496,-0.32391 -0.33496,-0.91652 0,-0.62942 0.46747,-0.94965 0.46746,-0.32023 1.42448,-0.34968 l 0.70303,-0.0221 v -0.21717 q 0,-0.39017 -0.18404,-0.58157 -0.18036,-0.19509 -0.56316,-0.19509 -0.31287,0 -0.59998,0.092 -0.2871,0.092 -0.55212,0.21716 l -0.27974,-0.61837 q 0.33127,-0.173 0.72512,-0.26134 0.39385,-0.092 0.74352,-0.092 0.77666,0 1.1705,0.33863 0.39753,0.33864 0.39753,1.06376 v 2.74221 z m -1.28828,-0.58893 q 0.47114,0 0.75457,-0.26134 0.2871,-0.26502 0.2871,-0.73984 v -0.35336 l -0.52268,0.0221 q -0.61101,0.0221 -0.89075,0.20613 -0.27607,0.18036 -0.27607,0.5558 0,0.27238 0.16196,0.4233 0.16196,0.14723 0.48587,0.14723 z" >+ style="stroke-width:1.07690251" >+ id="path1053" >+ inkscape:connector-curvature="0" /><path >+ d="m 303.48074,-391.07621 q 0.26134,0 0.43066,0.0368 l -0.0847,0.8061 q -0.18404,-0.0442 -0.38281,-0.0442 -0.51899,0 -0.8429,0.33863 -0.32024,0.33864 -0.32024,0.87972 v 2.12751 h -0.86499 v -4.07099 h 0.67727 l 0.11411,0.71776 h 0.0442 q 0.20244,-0.3644 0.52636,-0.57788 0.32759,-0.21349 0.70303,-0.21349 z" >+ style="stroke-width:1.07690251" >+ id="path1055" >+ inkscape:connector-curvature="0" /><path >+ d="m 306.44266,-386.85799 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36559,-0.57052 0.8061,0 1.27356,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32392,0.0626 -0.73985,0.0626 z m -0.15827,-3.56304 q -0.41226,0 -0.66255,0.26134 -0.24662,0.26134 -0.29447,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23557,-0.26134 -0.64782,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1057" >+ inkscape:connector-curvature="0" /><path >+ d="m 310.64854,-386.85799 q -0.92388,0 -1.40607,-0.5374 -0.47851,-0.54108 -0.47851,-1.54963 0,-1.02695 0.50059,-1.57907 0.50428,-0.55212 1.45393,-0.55212 0.64414,0 1.15946,0.23925 l -0.26134,0.69568 q -0.54844,-0.21349 -0.90548,-0.21349 -1.0564,0 -1.0564,1.40239 0,0.68463 0.26134,1.03063 0.26502,0.34232 0.77297,0.34232 0.57789,0 1.0932,-0.28711 v 0.75457 q -0.23189,0.13619 -0.49691,0.19508 -0.26133,0.0589 -0.63678,0.0589 z" >+ style="stroke-width:1.07690251" >+ id="path1059" >+ inkscape:connector-curvature="0" /><path >+ d="m 316.31981,-386.93161 h -0.86867 v -2.50296 q 0,-0.47114 -0.19141,-0.70303 -0.18772,-0.2319 -0.59997,-0.2319 -0.54476,0 -0.80242,0.3276 -0.25397,0.32391 -0.25397,1.08952 v 2.02077 h -0.865 v -5.72735 h 0.865 v 1.45392 q 0,0.34968 -0.0442,0.74721 h 0.0552 q 0.17668,-0.29447 0.48955,-0.45643 0.31655,-0.16195 0.73616,-0.16195 1.47969,0 1.47969,1.49073 z" >+ style="stroke-width:1.07690251" >+ id="path1061" >+ inkscape:connector-curvature="0" /><path >+ d="m 319.30304,-386.85799 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36559,-0.57052 0.8061,0 1.27356,0.48955 0.46747,0.48955 0.46747,1.34718 v 0.46746 h -2.71277 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31655,0.15092 -0.64046,0.21349 -0.32391,0.0626 -0.73985,0.0626 z m -0.15827,-3.56304 q -0.41225,0 -0.66255,0.26134 -0.24661,0.26134 -0.29447,0.76193 h 1.84778 q -0.007,-0.50427 -0.24294,-0.76193 -0.23557,-0.26134 -0.64782,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1063" >+ inkscape:connector-curvature="0" /><path >+ d="m 323.93222,-391.07621 q 0.26134,0 0.43065,0.0368 l -0.0847,0.8061 q -0.18405,-0.0442 -0.38281,-0.0442 -0.519,0 -0.84291,0.33863 -0.32023,0.33864 -0.32023,0.87972 v 2.12751 h -0.86499 v -4.07099 h 0.67727 l 0.11411,0.71776 h 0.0442 q 0.20245,-0.3644 0.52636,-0.57788 0.32759,-0.21349 0.70304,-0.21349 z" >+ style="stroke-width:1.07690251" >+ id="path1065" >+ inkscape:connector-curvature="0" /><path >+ d="m 326.75792,-386.85799 q -0.92389,0 -1.40608,-0.5374 -0.4785,-0.54108 -0.4785,-1.54963 0,-1.02695 0.50059,-1.57907 0.50427,-0.55212 1.45392,-0.55212 0.64415,0 1.15946,0.23925 l -0.26134,0.69568 q -0.54844,-0.21349 -0.90548,-0.21349 -1.05639,0 -1.05639,1.40239 0,0.68463 0.26133,1.03063 0.26502,0.34232 0.77298,0.34232 0.57788,0 1.0932,-0.28711 v 0.75457 q -0.23189,0.13619 -0.49691,0.19508 -0.26134,0.0589 -0.63678,0.0589 z" >+ style="stroke-width:1.07690251" >+ id="path1067" >+ inkscape:connector-curvature="0" /><path >+ d="m 332.42918,-386.93161 h -0.86867 v -2.50296 q 0,-0.47114 -0.1914,-0.70303 -0.18772,-0.2319 -0.59997,-0.2319 -0.54477,0 -0.80242,0.3276 -0.25398,0.32391 -0.25398,1.08952 v 2.02077 h -0.86499 v -5.72735 h 0.86499 v 1.45392 q 0,0.34968 -0.0442,0.74721 h 0.0552 q 0.17668,-0.29447 0.48955,-0.45643 0.31655,-0.16195 0.73617,-0.16195 1.47968,0 1.47968,1.49073 z" >+ style="stroke-width:1.07690251" >+ id="path1069" >+ inkscape:connector-curvature="0" /><path >+ d="m 335.41242,-386.85799 q -0.94965,0 -1.48705,-0.55213 -0.53372,-0.5558 -0.53372,-1.52754 0,-0.9975 0.49691,-1.56803 0.49691,-0.57052 1.36558,-0.57052 0.8061,0 1.27357,0.48955 0.46746,0.48955 0.46746,1.34718 v 0.46746 h -2.71276 q 0.0184,0.59261 0.32023,0.91284 0.30183,0.31655 0.85027,0.31655 0.36072,0 0.66991,-0.0663 0.31287,-0.0699 0.66991,-0.22821 v 0.70303 q -0.31656,0.15092 -0.64047,0.21349 -0.32391,0.0626 -0.73984,0.0626 z m -0.15828,-3.56304 q -0.41225,0 -0.66254,0.26134 -0.24662,0.26134 -0.29447,0.76193 h 1.84777 q -0.007,-0.50427 -0.24293,-0.76193 -0.23558,-0.26134 -0.64783,-0.26134 z" >+ style="stroke-width:1.07690251" >+ id="path1071" >+ inkscape:connector-curvature="0" /></g> >+<path >+ style="opacity:1;fill:#2c3792;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.32834244;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.46666667" >+ d="m 283.86396,461.35019 h 10.1891 l -3.12938,-1.38541 -0.54494,-38.93555 3.67553,-1.39979 h -10.07 l 3.23134,1.43187 -0.30999,39.05632 z" >+ id="rect5198" >+ inkscape:connector-curvature="0" >+ sodipodi:nodetypes="ccccccccc" /><path >+ d="m 177.73656,436.84503 h -18.18889 v 24.0574 h 18.18889 z" >+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61508262" >+ id="path4497-5-1-6-9-1-5" >+ inkscape:connector-curvature="0" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /><path >+ d="M 177.68307,387.17725 H 159.6164 v 24.14683 h 18.06667 z" >+ style="fill:#2c3792;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61415285" >+ id="path4497-5-1-6-6-3-8-7" >+ inkscape:connector-curvature="0" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /><path >+ style="fill:#2c3792;fill-opacity:1;stroke:none;stroke-width:1.60573208px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" >+ d="m 192.10386,436.76053 -0.0294,24.93148 44.70657,-0.14772 c 0,0 34.56676,-0.78356 34.53088,-37.11613 -0.0351,-35.62379 -33.19517,-37.73615 -33.19517,-37.73615 l -45.97053,0.0152 -0.11644,24.44844 19.24202,-0.0491 0.0119,-5.11486 24.28993,-0.15848 c 0,0 16.15001,2.32384 16.57205,18.20005 -0.26549,17.25517 -16.72169,18.10516 -16.72169,18.10516 l -24.18061,-0.15197 0.0215,-5.16156 z" >+ id="path5476-8-6-6" >+ inkscape:connector-curvature="0" >+ sodipodi:nodetypes="cccsccccccccccc" >+ inkscape:export-filename="C:\Users\arnaud\Documents\logos\triple store\logo-idref-blanc-361x76.png" >+ inkscape:export-xdpi="150" >+ inkscape:export-ydpi="150" /><rect >+ style="opacity:1;fill:#da1259;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:4.46608543;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.46666667" >+ id="rect6433-1" >+ width="76.93605" >+ height="14.257346" >+ x="146.94911" >+ y="-431.19016" >+ ry="7.1286731" >+ transform="scale(1,-1)" /></g></svg> >\ No newline at end of file >diff --git a/koha-tmpl/opac-tmpl/bootstrap/images/sudoc.png b/koha-tmpl/opac-tmpl/bootstrap/images/sudoc.png >new file mode 100644 >index 0000000000000000000000000000000000000000..b43ebd00caff24e0eb9735831a59f3958c916cdd >GIT binary patch >literal 1319 >zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJOS+@4BLl<6e(pbstPBjy3;{kN >zu0U}y^*A~8czKNk1<fQytrR8gRArrX72Ql#y=*o895sVHb;AM;qaqFCVolRhEwgfM >z^Ga=tDjmxjJ*zr>>jndxCPTXxWBazeirMoPEL^Z?@uDS5mn>Vpboq+qD_5;ty=K*# >zwQJU`U$<f7hE1C{ZP~hc>$a`icWm3SbH}dTyY}qey?5W<{Rj3RJaq8zkwZt09yxaW >z|Ns9$SB-+v5THW{{5vOB$H2hIP!i-93`}?<888HYXIBLVIcI@KWHAGS5EwJ|DD7ki >z3QCl?MwA5Sr<If^7Ns%-BxdH7==r&ZD3lrN8Jn$q{s^S8$J50zL?hVuOgK}M0}soE >zNKu`H_1X$o<DUO(@9qvVtJj~*<Kj|(Z~gPfb-UxvEm!WD`jlx=rtd^&?dpl?H*(Ei >zUoA46@2j3{<ehj^{W44LyXq97#XG<66_k_@_%F?W(z#{T`Y#PVPJe#aznh%Ma9U6D >z&BbTyoV9wN-7BqHB6j8fvDl@q0bi%SlQ=DI9;tM*s`2kvP#W@d^>bP0l+eTl0E{TF >Aa{vGU > >literal 0 >HcmV?d00001 > >diff --git a/koha-tmpl/opac-tmpl/bootstrap/js/idref.js b/koha-tmpl/opac-tmpl/bootstrap/js/idref.js >new file mode 100644 >index 0000000000..d2af931927 >--- /dev/null >+++ b/koha-tmpl/opac-tmpl/bootstrap/js/idref.js >@@ -0,0 +1,84 @@ >+if (KOHA === undefined || !KOHA) { var KOHA = {}; } >+ >+ >+/** >+ * A namespace for idref >+ */ >+KOHA.idref = { >+ >+ /** >+ * Set a click handler for all anchors <a class="idref-link">. >+ */ >+ init: function() { >+ $("a[class='idref-link']").click(this.click); >+ }, >+ >+ /** >+ * Get the publications from author identified by its ppn, using Koha svc >+ * webservice. Display the result in a new tab of the holdings table. >+ */ >+ click: function(e) { >+ const ppn = $(this).attr("ppn"); >+ const url = `/cgi-bin/koha/svc/idref?ppn=${ppn}`; >+ $.getJSON(url, function(publications) { >+ let html; >+ if (publications.name === '') { >+ html = __('Author not found in IdRef'); >+ } else { >+ const navig = publications.roles.map(role => `<a href="#idref-role-${role.code}" style="font-size: 90%;">${role.label} (${role.docs.length})</a>`); >+ html = ` >+ <h2> >+ ${publications.name} / <small> >+ <a href="https://www.idref.fr/${publications.ppn}" target="_blank">${publications.ppn}</a> >+ </small> >+ </h2> >+ <div> >+ <div style="margin-bottom: 5px;";>${navig.join(' ⢠')}</div>`; >+ publications.roles.forEach((role) => { >+ html += ` >+ <h3 id="idref-role-${role.code}">${role.label}</h3> >+ <table class="table table-striped table-hover table-sm"><tbody>`; >+ role.docs.forEach((doc) => { >+ html += ` >+ <tr> >+ <td> >+ <a href="https://www.sudoc.fr/${doc.ppn}" target="_blank" rel="noreferrer"> >+ <img title="` + __('Publication In Sudoc Catalog') + `" src="/opac-tmpl/bootstrap/images/sudoc.png" /> >+ </a>`; >+ if (doc.bib) { >+ html += ` >+ <a href="/cgi-bin/koha/opac-detail.pl?biblionumber=${doc.bib}" target="_blank"> >+ <img title="` + __('Publication In Local Catalog') + `" src="/opac-tmpl/bootstrap/images/favicon.ico" /> >+ </a>`; >+ } >+ html += `</td><td>${doc.citation}</td></tr>`; >+ }); >+ html += '</tbody></table>'; >+ }); >+ html += '</div>'; >+ } >+ const idrefDiv = $('#idref-publications'); >+ if (idrefDiv.length) { >+ idrefDiv.html(html); >+ } else { >+ html = `<div id="idref-publications">${html}</div>`; >+ const tabMenu = ` >+ <li id="tab_idref_publications" class="nav-item ui-tabs-tab ui-corner-top ui-state-default ui-tab" role="tab" tabindex="0" aria-controls="idref-publications" aria-labelledby="idref-tab" aria-selected="false" aria-expanded="true"> >+ <a href="#idref-publications" class="nav-link ui-tabs-anchor" id="idref-publications-tab" data-toggle="tab" role="tab" aria-controls="idref" aria-selected=false"" tabindex="-1"> >+ <img src="/opac-tmpl/bootstrap/images/idref.svg" style="height: 20px;"/> >+ </a> >+ </li>`; >+ const tabs = $('#bibliodescriptions').tabs(); >+ const ul = tabs.find("ul"); >+ $(ul).append(tabMenu); >+ $('.tab-content').append(html); >+ tabs.tabs("refresh"); >+ } >+ $('a[href="#idref-publications"]').click(); >+ $([document.documentElement, document.body]).animate({ >+ scrollTop: $("#idref-publications").offset().top >+ }, 2000); >+ }); >+ } >+ >+}; >diff --git a/opac/opac-idref.pl b/opac/opac-idref.pl >deleted file mode 100755 >index 795842215f..0000000000 >--- a/opac/opac-idref.pl >+++ /dev/null >@@ -1,91 +0,0 @@ >-#!/usr/bin/perl >- >-# This file is part of Koha. >-# >-# Copyright (C) 2014 BibLibre >-# >-# Koha is free software; you can redistribute it and/or modify it >-# under the terms of the GNU General Public License as published by >-# the Free Software Foundation; either version 3 of the License, or >-# (at your option) any later version. >-# >-# Koha is distributed in the hope that it will be useful, but >-# WITHOUT ANY WARRANTY; without even the implied warranty of >-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >-# GNU General Public License for more details. >-# >-# You should have received a copy of the GNU General Public License >-# along with Koha; if not, see <http://www.gnu.org/licenses>. >- >-use Modern::Perl; >- >-use CGI; >-use LWP::UserAgent; >-use JSON qw( from_json ); >-use Encode; >- >-use C4::Auth qw( get_template_and_user ); >-use C4::Context; >-use C4::Search; >-use C4::Output qw( output_html_with_http_headers ); >- >-my $cgi = CGI->new; >-my ( $template, $borrowernumber, $cookie ) = get_template_and_user( >- { >- template_name => "opac-idref.tt", >- query => $cgi, >- type => "opac", >- authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ), >- } >-); >- >-my $ua = LWP::UserAgent->new; >- >-# See http://documentation.abes.fr/aideidrefdeveloppeur/index.html#MicroWebBiblio >-my $base = 'http://www.idref.fr/services/biblio/'; >-my $unimarc3 = $cgi->param('unimarc3'); >- >-my $request = HTTP::Request->new( >- 'GET', >- $base . $unimarc3 . ".json", >-); >-$request->protocol('HTTP/1.1'); >-my $response = $ua->request($request); >-if ( not $response->is_success) { >- $template->param(error => $base.$unimarc3.'.json'); >- output_html_with_http_headers $cgi, $cookie, $template->output; >- exit; >-} >- >-my $content = Encode::decode("utf8", $response->content); >-my $json = from_json( $content ); >-my $r; >-my @results = ref $json->{sudoc}{result} eq "ARRAY" >- ? @{ $json->{sudoc}{result} } >- : ($json->{sudoc}{result}); >- >-for my $result (@results) { >- my $role_node = $result->{'role'}; >- my @roles = >- ref $role_node eq "ARRAY" >- ? @$role_node >- : ($role_node); >- for my $role (@roles) { >- my @docs = ref $role->{doc} eq "ARRAY" >- ? @{ $role->{doc} } >- : $role->{doc}; >- push @$r, >- { >- role_name => $role->{roleName}, >- count => $role->{count}, >- docs => \@docs, >- }; >- } >-} >- >-$template->param( >- content => $r, >- unimarc3 => $unimarc3, >-); >- >-output_html_with_http_headers $cgi, $cookie, $template->output; >diff --git a/opac/svc/idref b/opac/svc/idref >new file mode 100755 >index 0000000000..b29cde474f >--- /dev/null >+++ b/opac/svc/idref >@@ -0,0 +1,107 @@ >+#!/usr/bin/perl >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use CGI; >+use LWP::UserAgent; >+use JSON qw( from_json to_json ); >+use Encode; >+use C4::Context; >+use C4::Output qw( output_with_http_headers ); >+use Search::Elasticsearch; >+ >+ >+my $cgi = CGI->new; >+ >+# See http://documentation.abes.fr/aideidrefdeveloppeur/index.html#MicroWebBiblio >+my $base = 'http://www.idref.fr/services/biblio/'; >+my $unimarc3 = $cgi->param('ppn'); >+ >+my $publications = { name => '', ppn => $unimarc3, roles => [] }; >+my $send_result = sub { >+ my $json = to_json($publications); >+ utf8::encode($json); >+ output_with_http_headers($cgi, undef, $json, 'json'); >+ exit; >+}; >+ >+my $ua = LWP::UserAgent->new; >+my $request = HTTP::Request->new( >+ 'GET', >+ $base . $unimarc3 . ".json", >+); >+$request->protocol('HTTP/1.1'); >+my $response = $ua->request($request); >+$send_result->() if not $response->is_success; >+ >+my $content = Encode::decode("utf8", $response->content); >+my $json = from_json($content); >+my $result = $json->{sudoc}->{result}; >+$send_result->() if $result->{countRoles} == 0; >+ >+$publications->{name} = $result->{name}; >+$result->{role} = [ $result->{role} ] if ref($result->{role}) ne 'ARRAY'; >+my $ppn; >+for my $r (@{$result->{role}}) { >+ my $role = { >+ code => $r->{unimarcCode}, >+ label => $r->{roleName}, >+ docs => [], >+ }; >+ $r->{doc} = [ $r->{doc} ] if ref $r->{doc} ne 'ARRAY'; >+ for my $doc ( @{$r->{doc}} ) { >+ push @{$role->{docs}}, { >+ ppn => $doc->{ppn}, >+ citation => $doc->{citation}, >+ }; >+ push @$ppn, $doc->{ppn}; >+ } >+ push @{$publications->{roles}}, $role; >+} >+ >+my $ec = C4::Context->config('elasticsearch'); >+my $e = Search::Elasticsearch->new( nodes => $ec->{server} ); >+my $query = { >+ index => $ec->{index_name} . '_biblios', >+ body => { >+ _source => ["ppn"], >+ size => '10000', >+ query => { terms => { ppn => $ppn } } >+ } >+}; >+my $res = $e->search($query); >+my $hits = $res->{hits}->{hits}; >+my $ppn_to_bib; >+for my $hit (@$hits) { >+ my $ppn = $hit->{_source}->{ppn}->[0]; >+ $ppn_to_bib->{$ppn} = $hit->{_id}; >+} >+for my $role (@{$publications->{roles}}) { >+ my @docs = @{$role->{docs}}; >+ for my $d (@docs) { >+ my $bib = $ppn_to_bib->{ $d->{ppn} }; >+ $d->{bib} = $bib if $bib; >+ } >+ my $key = sub { >+ my $doc = shift; >+ ($doc->{bib} ? 'a' : 'b') . $doc->{citation}; >+ }; >+ @docs = sort { $key->($a) cmp $key->($b) } @docs; >+ $role->{docs} = \@docs; >+} >+$send_result->(); >-- >2.25.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32333
:
144199
|
145663
|
147762
|
150675