{% import "net/http" %} {% import "github.com/bouncepaw/mycorrhiza/util" %} {% import "github.com/bouncepaw/mycorrhiza/history" %} {% func RecentChangesHTML(n int) %}

Recent Changes

← Back

Subscribe via RSS, Atom or JSON feed.

{% comment %} Here I am, willing to add some accesibility using ARIA. Turns out, role="feed" is not supported in any screen reader as of September 2020. At least web search says so. Even JAWS doesn't support it! How come? I'll add the role anyway. -- bouncepaw {% endcomment %} {% code changes := history.RecentChanges(n) %}
{% if len(changes) == 0 %}

Could not find any recent changes.

{% else %} {% for i, entry := range changes %}
    {%s= recentChangesEntry(entry) %}
{% endfor %} {% endif %}
{% endfunc %} {% func recentChangesEntry(rev history.Revision) %}
  • {%s rev.Hash %}
  • {%s= rev.HyphaeLinksHTML() %}
  • {%s rev.Message %} {% if rev.Username != "anon" %}by {% endif %}
  • {% endfunc %} {% func HistoryHTML(rq *http.Request, hyphaName, list string) %} {%= NavHTML(rq, hyphaName, "history") %}

    History of {%s util.BeautifulName(hyphaName) %}

    {%s= list %}
    {% endfunc %}