Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision f208a17be3b3b7921f476ac0fc2dc5dcb078635a authored by hatiers on 18 February 2025, 10:42:43 UTC, committed by hatiers on 18 February 2025, 10:42:43 UTC
Edit about.html.twig / MAJ lien ortolang et publis ALSIC
1 parent 1c6750b
  • Files
  • Changes
  • 52df7bf
  • /
  • application
  • /
  • templates
  • /
  • admin
  • /
  • logs.html.twig
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:f208a17be3b3b7921f476ac0fc2dc5dcb078635a
directory badge
swh:1:dir:9ae4cc58a762b0bf044433d15fda09b3baec5d85
content badge
swh:1:cnt:482547065ffa2aafcaad809f464413da66ee734c

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
logs.html.twig
{% extends 'base.html.twig' %}

{% block title %}
  {{ parent() }}
  Résumé des données lacunaires
{% endblock %}

{% block body %}
<h1 class="text-center pt-4 pb-2">
  <button type="button" class="btn btn-lg btn-block btn-light p-4">
    {{"summary_gaps"|trans}}
  </button>
</h1>

<div class="card">
  <div class="card-body">

    <div class="accordion mt-3" id="accordionExample">
      {# MISSING TRAD BASE (collocation ou lexicalEntry) #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-missingTrads">
              Traductions sans base ({{tradsWoLstBase|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-missingTrads" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for lexicalEntryTrad in tradsWoLstBase %}
              <tr>
                <td>{{lexicalEntryTrad.id}}</td>
                <td>
                    {{lexicalEntryTrad.lemmaTrad.value}} ({{lexicalEntryTrad.lemmaTrad.language.shortName}})
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END MISSING EXAMPLES #}

      {# MISSING EXAMPLES #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-missingExamples">
              Collocations sans exemples ({{collocsWoEx|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-missingExamples" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for colloc in collocsWoEx %}
              <tr>
                <td>{{colloc.id}}</td>
                <td>
                    <a href="{{ path("collocation_display", {'id': colloc.id}) }}">{{colloc.value}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END MISSING EXAMPLES #}

      {# MISSING SOURCE IN EXAMPLES #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-exampleWithoutSource">
              Collocations avec exemples sans sources ({{collocsWoSource|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-exampleWithoutSource" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for colloc in collocsWoSource %}
              <tr>
                <td>{{colloc.id}}</td>
                <td>
                    <a href="{{ path("collocation_display", {'id': colloc.id}) }}">{{colloc.value}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END MISSING SOURCE IN EXAMPLES #}

      {# MISSING CYCLIC #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-cycliques">
              Collocations cycliques ({{collocsCyclic|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-cycliques" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for colloc in collocsCyclic %}
              <tr>
                <td>{{colloc.id}}</td>
                <td>
                    <a href="{{ path("collocation_display", {'id': colloc.id}) }}">{{colloc.value}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END CYCLIC #}

      {# MISSING LE EXAMPLES #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-le-missingExamples">
              Entrée sans exemples ({{entriesWoEx|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-le-missingExamples" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for entry in entriesWoEx %}
              <tr>
                <td>{{entry.id}}</td>
                <td>
                    <a href="{{ path("lexicalentry_display", {'id': entry.id}) }}">{{entry.acceptionUniq}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END LE EXAMPLES #}

      {# MISSING LE SOURCE EXAMPLES #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-le-exampleWithoutSource">
              Entrées avec exemples sans sources ({{entriesWoSource|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-le-exampleWithoutSource" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for entry in entriesWoSource %}
              <tr>
                <td>{{entry.id}}</td>
                <td>
                      <a href="{{ path("lexicalentry_display", {'id': entry.id}) }}">{{entry.acceptionUniq}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END MISSING LE SOURCE EXAMPLES #}

      {# MISSING METRIQUES  #}
      <div class="card">
        <div class="card-header">
          <h2 class="mb-0">
            <button class="btn btn-link" type="button" data-toggle="collapse" data-target="#collapse-le-exampleWithoutMetriques">
              Entrées avec exemples sans métriques ({{entriesWoMetriques|length}})
            </button>
          </h2>
        </div>
        <div id="collapse-le-exampleWithoutMetriques" class="collapse" data-parent="#accordionExample">
          <div class="card-body">
            <table class="table">
              {% for entry in entriesWoMetriques %}
              <tr>
                <td>{{entry.id}}</td>
                <td>
                      <a href="{{ path("lexicalentry_display", {'id': entry.id}) }}">{{entry.acceptionUniq}}</a>
                </td>
              </tr>
              {% endfor %}
            </table>
          </div>
        </div>
      </div>
      {# END MISSING METRIQUES #}

    </div>
  </div>
</div>

{% endblock %}
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API