Results 7 issues of AJ Slater

`field:..end` works however `field:start..` does not and requires `field:start..*` to work. I _think_ the xapian parser specifies that omitting the star is valid, so I add it myself to all...

Vite 4 uses Rollup 3. Pretty sure this package should depend on ```json "rollup": "^3.0.0" ``` and devDependancies: ```json "vite": "^4.0.0" ```

It seems to me that here: https://github.com/django/channels/blob/main/channels/routing.py#L100 URLRouter should strip the `scope['root_path']` from the submitted path for matching against paths. Django does this for path matching. ### Workaround Manually add...

If I write an index with procs > 1 and multisegment = False, it raises the following error: ```python Process SubWriterTask-1:2:3: Traceback (most recent call last): File "/opt/homebrew/Cellar/[email protected]/3.10.9/Frameworks/Python.framework/Versions/3.10/lib/python3.10/multiprocessing/process.py", line 314,...

The NUMERIC FieldType does not allow analyzers. The `__init__()` method accepts no analyzers and hardcodes `self.analyzer = analysis.IDAnalyzer()`. I've had to subclass NUMERIC to a FILESIZE FieldType to allow parsing...

Current output: ```xml ``` Desirable output: ```xml ```

`https://metron.cloud/issue/SLUG/` is a user readable info page `https://metron.cloud/api/issue/ID/` is a JSON info page. While the JSON API results do contain a url with the slug in it, it would be...

enhancement