M Somerville

Results 94 issues of M Somerville

https://www.theyworkforyou.com/divisions/ shows all divisions if no MP set, or only ones involving your MP if set. This should be a toggle (otherwise e.g. can never see Lords/Scotland votes there, small...

It would be nice if there was a way to show scheduled maintenance before it takes place, perhaps per-system or just a notice at the top above the systems.

This stops the duplication of/incorrect system statuses when there are multiple active incidents. It works out the maximum level to display. Fixes #32. I don't really know Hugo at all,...

If the CSS includes multiple entries for the same selector, it gets quite confused, plus any selector that phantom changes on reading (e.g. 0 to 0px) gets duplicated. If you...

## input.scss ```scss .one { color: red; .foo, .bar { color: yellow; } &, &:link, &:visited { color: green; } &:hover { color: blue; } } .two { @extend .one;...

A Content-Security-Policy header (without unsafe-eval) will block any use of new Function, even one that's empty. I think the offending line at https://github.com/openlayers/ol2/blob/75716beaacc01955f05708c03438b588fc8db55d/lib/OpenLayers/Request/XMLHttpRequest.js#L391 can be safely set to null instead.

This may not be possible, or I may have missed something obvious :) Say I have two models: ```python @pghistory.track(pghistory.Snapshot('author.snapshot')) class Author(models.Model): name = models.CharField(max_length=100) @pghistory.track(pghistory.Snapshot('book.snapshot')) class Book(models.Model): title =...

24588d64 changed this documentation so that it said nothing changed. I don't know if it also changed anything else.

https://github.com/zgoat/goatcounter/blob/master/docs/sessions.markdown is very interesting, thanks for writing it. I saw a technique mentioned at https://withcabin.com/faq#how-do-you-log-unique-visits-without-cookies - which is I guess similar to the `Expire` header one listed, but different in...

This adds the option to read asset layer configuration from the configuration file, instead of in the JavaScript. This will make the config file quite a bit bigger (but could...