{% extends "base.html" %} {% import "macros.html" as m %} {% block title %}Relocation review - {{ pack.pack }}{% endblock %} {% block content %}
Every citation of the last build whose outcome is not same-snapshot, grouped by
outcome. Build report of {{ report.built_at or 'no build yet' }}, release {{ report.release_id }}.
Citation outcomes:
{% for outcome, count in (report.citation_outcomes or {}).items() %}{{ count }} {{ outcome }}{% if not loop.last %}, {% endif %}{% endfor %}
The page was downloaded anew and the text is identical. Listed for the record; nothing to do.
{% endif %} {% if group == 'moved' %}The excerpt moved inside the page and was found by its block hashes. Nothing to do.
{% endif %} {% if group == 'moved-with-warnings' %}The excerpt was found but its context changed. Confirm it again in the review queue.
{% endif %} {% if group == 'ambiguous' %}The excerpt occurs more than once. Pick the range that is meant, or drop the fact.
{% endif %} {% if group == 'changed' %}The excerpt is gone. Open the reading view at the closest block and re-cite, or drop the fact with a note.
{% endif %} {% if group == 'dropped' %}The build dropped these facts. Fix the citation or the source.
{% endif %} {% for row in rows %}{{ m.fact_link(pack.pack, row.fact_id) }} {% if row.concept_id %}in {{ m.concept_link(pack.pack, row.concept_id) }}{% endif %} citation {{ row.number }} {% if row.dropped %}dropped{% endif %} {% for warning in row.warnings %}{{ warning }}{% endfor %}
{{ row.statement | shorten(300) }}
document {{ row.document_id }}
{% if row.entry %}- {{ row.entry.title | shorten(70) }}{% endif %}
{% if row.citation.reason %}
reason: {{ row.citation.reason }}{% endif %}
{{ row.anchor.heading_path | join(' / ') }}
| Blocks | Heading path | Closest text | {% if not read_only %}Action | {% endif %}
|---|---|---|---|
| {{ candidate.block_ids | join(', ') }} | {{ (candidate.heading_path or []) | join(' / ') }} | - | {% if not read_only %}{% endif %} |
| {{ match.block_id }} | similarity {{ match.ratio }} | {{ match.text | shorten(200) }} | {% if not read_only %}open the reading view | {% endif %}
Every citation of the last build resolved inside its own snapshot.
{% endif %} {% endblock %}