aboutsummaryrefslogtreecommitdiffstats
path: root/paste
Commit message (Expand)AuthorAgeFilesLines
* avoid using capfd to test cliHEADmasterTomasz Kramkowski2023-04-041-12/+13
* Make the main module succeed a strict pyright checkTomasz Kramkowski2023-04-043-8/+8
* application: use get_store to turn environ into StoreTomasz Kramkowski2023-03-291-2/+8
* very basic cli testTomasz Kramkowski2023-03-291-8/+8
* Use a list of middlewares instead of decoratorsTomasz Kramkowski2023-03-281-7/+14
* remove unused importsTomasz Kramkowski2023-03-281-4/+0
* Make authenticate easier to test without monkeypatchingTomasz Kramkowski2023-03-281-23/+26
* Split Store into Store and AuthTomasz Kramkowski2023-03-282-2/+7
* Switch back to centralised opening of the databaseTomasz Kramkowski2023-03-283-31/+29
* Store: remove superfluous version propertyTomasz Kramkowski2023-03-281-4/+0
* move types into their own moduleTomasz Kramkowski2023-03-272-28/+38
* rename open_database to open_storeTomasz Kramkowski2023-03-271-2/+2
* Throw all data manipulation code in one placeTomasz Kramkowski2023-03-273-146/+150
* POST request supportTomasz Kramkowski2023-03-272-2/+45
* Remove redirect functionalityTomasz Kramkowski2023-03-272-30/+2
* DELETE should 404 when nothing was deletedTomasz Kramkowski2023-03-272-4/+6
* make DELETE not return contentTomasz Kramkowski2023-03-271-1/+2
* paste.db: normalise UDF namingTomasz Kramkowski2023-03-271-1/+1
* paste.db: readd missing import of sha256Tomasz Kramkowski2023-03-271-1/+1
* guard main() call to allow importing __main__Tomasz Kramkowski2023-03-271-1/+2
* Only handle PUT requests and respond correctlyTomasz Kramkowski2023-03-272-12/+22
* Return a string content_length for HEADTomasz Kramkowski2023-03-271-1/+1
* if_none_match: quote ETag valuesTomasz Kramkowski2023-03-271-2/+2
* Respond to auth failures with WWW-AuthenticateTomasz Kramkowski2023-03-271-2/+10
* pass exc_info explicitlyTomasz Kramkowski2023-03-271-1/+1
* paste.db.connect: add docstrings and doctestsTomasz Kramkowski2023-03-241-0/+70
* paste.db.connect: make migrations optionalTomasz Kramkowski2023-03-241-2/+3
* authenticate: rewriteTomasz Kramkowski2023-03-241-10/+15
* catch_exceptions: set exc_info in responseTomasz Kramkowski2023-03-241-2/+8
* terminate all migrations with semicolonTomasz Kramkowski2023-03-241-1/+1
* prevent accessing a future database versionTomasz Kramkowski2023-03-241-0/+4
* do not shorten connection to conn in the db APITomasz Kramkowski2023-03-241-7/+7
* Use blake2b instead of sha256 as the data hashTomasz Kramkowski2023-03-241-2/+2
* Add a DATA_HASH UDF (same as SHA256)Tomasz Kramkowski2023-03-242-6/+15
* isort importsTomasz Kramkowski2023-03-243-16/+14
* paste.db: Refactor connectTomasz Kramkowski2023-03-241-10/+19
* Implement If-None-Match handlingTomasz Kramkowski2023-03-241-1/+55
* Fix ETag header formatTomasz Kramkowski2023-03-241-2/+2
* fix the StartResponse type and make it a protocolTomasz Kramkowski2023-03-241-2/+13
* remove unnecessary import (hashlib.sha256)Tomasz Kramkowski2023-03-241-1/+0
* First draft versionTomasz Kramkowski2023-02-144-0/+442