()
| 147 | """Parse solr_editions from web.py context.""" |
| 148 | |
| 149 | def read_query_string(): |
| 150 | return web.input(editions=None).get("editions") |
| 151 | |
| 152 | def read_cookie(): |
| 153 | if "SOLR_EDITIONS" in web.ctx.env.get("HTTP_COOKIE", ""): |
no test coverage detected