AJ Slater
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...
Using eslint v9.10.0 On macOS with homebrew I get some warnings, but eslint runs ```sh (node:51025) ExperimentalWarning: Importing JSON modules is an experimental feature and might change at any time...
- Features - Search - Use SQLite Full Text Search v5 for search engine. - Search syntax has changed. See the help popup at the end of the search bar....
It would be nice to have the reconnect algorithm do exponential backoff to prevent clients from flooding the server. 如果重新连接算法能够进行指数退避,从而防止客户端淹没服务器,那就太好了。 Example 例子 ```js const EXPONENT_BASE = 1.15; // 指数基数 reconnect():...