Gerben
Gerben
Sounds fine to me. I suppose that you'd want to specify something like `multiple: true` for a parameter, and then the value you get will always be an array. I...
Unfortunately, there is currently no way to do this. In #33 solutions are discussed to enable processing parameter changes together.
The percent-encoding of characters in URLs keeps confusing me. Partly because browsers (at least Firefox and Chromium) convert some characters to percent-encoding as they should, but still render the character...
I would probably just specify `stringToValue: s => s.toLowerCase()` for every parameter; would that solve the problem? Or is the problem that you consider it too cumbersome to repeat that...
Oh wait, I am talking about values; you are talking about parameter names; sorry. :) In that case, perhaps that would be a valid request indeed.
Thanks for helping out with this one! I need to find time to think about (and tinker with) this again. One thing I wonder about now is whether your solution...
Unfortunately I have little to say about testing, I'd be glad to hear if someone else has more insights. Which reminds me, this module could still use some tests itself..
Great list of candidates. I did not know about or look at every candidate you mention, but some thoughts, hopefully of any help: - Versioning of web resources is such...
@oliversauter: I am currently pondering about the exact same question of data models. I would probably [normalise](https://en.wikipedia.org/wiki/Database_normalization) the data more than in your proposal above: make a visit a separate...
Sure. Perhaps look at how it’s done in e.g. [`src/main/background/snapshot-tab.js`](https://github.com/WebMemex/webmemex-extension/blob/master/src/main/background/snapshot-tab.js). Would be even better if we could just replace the “Save Page As...” implementation..