Remove author names for privacy

Tue Mar 11 2025

tucker.mcknight@gmail.com

I'd like to demo the actual darcs repo to show that this
static HTML generator works on large repos; I'll hide the
author's names and email addresses for now in case people
don't want their email address posted on a site that they
didn't agree to.

1e07c288283096f90f32110856d1a21c267747b7

darcs pull https://repos.tuckerm.us/repos/eleventy-darcs/branches/main -h 1e07c288283096f90f32110856d1a21c267747b7
eleventy.config.js:22
Before
    return new Date(dateString)
After
    return new Date(dateString).toDateString()
patch.njk:11
Before
<p>{{patchInfo.patch.author}}</p>
After
patches.njk:12
Before
    <li><span><a href="/repos/{{repo | slugify}}/patches/{{patch.hash}}">{{patch.hash}}></a></span> - <span>{{patch.date | date}}</span> - <span>{{patch.author}}</span> - <span>{{patch.name}}</span></li>
After
    <li><span><a href="/repos/{{repo | slugify}}/patches/{{patch.hash}}">{{patch.hash}}></a></span> - <span>{{patch.date | date}}</span> - <span>{{patch.name}}</span></li>