I have just released version 2.3.0. The big feature for this release is support for the Australian site "Births, Deaths & Marriages, Victoria".
Some documentation for this feature is here.
I thought this would be a pretty simple site to add support for and that I could add it in a few days. But it turned out that the site presented many new challenges. I like new challenges and perhaps I got a bit carried away trying to overcome them all. It ended up being about 16 days of solid work!
Some of the interesting challenges presented by this site were:
As with many sites, you cannot perform a search using a URL query so the extension has to: store the search data, go to the search page, then fill in the form and submit it.
The way the website is implemented using Angular presented some new problems with submitting the form. Angular has its own "model" behind the scenes of what is in each form field so you have to do some tricks to update that.
The web site is also extremely slow (over 10 seconds) to load the first time in a tab. In addition to that, if you have two tabs open on the family history search part of the site it keeps giving you error messages. So the best solution was to keep reusing the same tab when doing searches. This took a while to get working reliably but now I have done it I could use it for other sites.
The search is not well documented. Some fields like given names will match any of the given names. But the places field did not work that way. With some trial and error I found a way to do a regular expression search on the place names.
When you perform a search there is some information that is only shown in the list of search results and other information that is only shown on the record page that you get to when you click on the search result. This is the first time I have seen that on a site. The solution turned out to be pretty easy: when the user clicks on the search result I store the info from that row and use that in addition to the info on the record page.
Many of the given names in the index are abbreviated. E.g. "Fredk", "Jno", "Elizth". I left these as they are in the citation but for the narrative, add profile and searching other sites I expand them to the full name.
There is no gender given in the records. This can make the narratives less readable. So I added gender prediction based on the given names. I used the existing code in the WikiTree Browser extension as a starting point for this.
The family names are all in uppercase. I used my existing code to convert them to mixed case for the narrative. I already had code for this for other sites that supports "MCDONALD" etc. It did not support converting ODONNELL to O'Donnell though so I added code for cases like that.
Place names are interesting in these indexes. For many of the records they are all uppercase abbreviations like "CHILL". There doesn't seem to be any consistently reliable way to convert them to full place names so I provided suggestions to convert from abbreviation to full place name and vice versa.
There is no way to put a link to the record page in the citation since the URLs are session based. So I extended my context menu code so that you can select some text like this "Victoria Births Index; Registration number: 23122 / 1887" on any web page and right click and it will do the search for you.
Those are the challenges that I remember. There were some fun ones to solve!