diff options
author | Philip Sargent <philip.sargent@klebos.com> | 2022-10-10 22:12:42 +0300 |
---|---|---|
committer | Philip Sargent <philip.sargent@klebos.com> | 2022-10-10 22:12:42 +0300 |
commit | 47e2c6e21470b101ead037dbfd7f9353ff26f9d1 (patch) | |
tree | ff2c86661c2675c755a9628c3fe1f6ccf74fbb2f | |
parent | ff8eaa241e8f23e6c207568c76ce618c358a93eb (diff) | |
download | troggle-47e2c6e21470b101ead037dbfd7f9353ff26f9d1.tar.gz troggle-47e2c6e21470b101ead037dbfd7f9353ff26f9d1.tar.bz2 troggle-47e2c6e21470b101ead037dbfd7f9353ff26f9d1.zip |
more text on aliases page
-rw-r--r-- | templates/aliases.html | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/templates/aliases.html b/templates/aliases.html index 7820c1c..9ad50e0 100644 --- a/templates/aliases.html +++ b/templates/aliases.html @@ -5,7 +5,7 @@ <h1>Aliases for people's names in {{year}}</h1> - +<p>This is the list of people on expo this year. <table> <tr><th>Person</th><th>slug</th><th>aliases</th></tr> {% for pe in personexpeditions %} @@ -17,6 +17,12 @@ {% endfor %} </table> +<p>This table below lists the possible unambiguous ways of identifying a person in a survex file or a logbook entry. +This ridiculously long list of alternatives is derived from what people have actually done in the last 40 years. +<p>Note that this is year specific: On a year with only one 'Sophie' then the identifier 'Sophie' will be fine. +On a year with more than one Sophie, an additional disambiguation is required, such as a surnbame or the first letter of the surname. +In the case of a year with two people called Ben, both of whose surnames begin with W (yes this has happened), +the entire surname is required. <table> <tr><th>alias</th><th>who</th></tr> {% for key, value in aliasdict.items %} @@ -37,7 +43,8 @@ {% endfor %} </table> -<p>The aliases below are specified in the folk.csv file. Only one alias is possible in that format. +<p>The aliases below are specified in the folk.csv file. Only one alias is possible in that format. The specified alias ('nickname') +is used in the table above to construct possible unambiguous identifiers. <table> <tr><th>First</th><th>Last</th><th>Full name</th><th>Nickname</th><th>expo first</th><th>expo last</th></tr> {% for p in persons %} @@ -53,6 +60,8 @@ {% endfor %} </table> - +<p>Don't blame me [programmer] for this, it's just what you all have collectively done over the decades by using this absurd variety of short-form +name formats when you have entered the cave data. +<p>The code that does this is in <var>troggle/parsers/people.py</var>. {% endblock %}
\ No newline at end of file |