<feed xmlns='http://www.w3.org/2005/Atom'>
<title>szurubooru.git/server/szurubooru/middleware, branch master</title>
<subtitle>Fork of Szurubooru with patches for running on a modern system sans Docker
</subtitle>
<id>https://www.git.jakob.space/szurubooru.git/atom?h=master</id>
<link rel='self' href='https://www.git.jakob.space/szurubooru.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/'/>
<updated>2021-11-29T23:39:34Z</updated>
<entry>
<title>server: fix python docstring formatting</title>
<updated>2021-11-29T23:39:34Z</updated>
<author>
<name>Shyam Sunder</name>
</author>
<published>2021-11-29T23:39:34Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=9b3123a8150faee660b4311d9d8c2c85a83b32b5'/>
<id>urn:sha1:9b3123a8150faee660b4311d9d8c2c85a83b32b5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>client+server: implement code autoformatting using prettier and black</title>
<updated>2020-06-06T12:58:23Z</updated>
<author>
<name>Shyam Sunder</name>
</author>
<published>2020-06-05T22:03:37Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=57193b57157b7a42896c887a2d5930493ac7b290'/>
<id>urn:sha1:57193b57157b7a42896c887a2d5930493ac7b290</id>
<content type='text'>
</content>
</entry>
<entry>
<title>server/auth: add token authentication</title>
<updated>2018-03-25T20:23:29Z</updated>
<author>
<name>ReAnzu</name>
</author>
<published>2018-02-25T10:44:02Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=2a69f0193f9e5aa451e0dbcb8c89070f3e49ffa5'/>
<id>urn:sha1:2a69f0193f9e5aa451e0dbcb8c89070f3e49ffa5</id>
<content type='text'>
* Users are only authenticated against their password on login,
  and to retrieve a token
* Passwords are wiped from the GUI frontend and cookies
  after login and token retrieval
* Tokens are revoked at the end of the session/logout
* If the user chooses the "remember me" option,
  the token is stored in the cookie
* Tokens correctly delete themselves on logout
* Tokens can expire at user-specified date
* Tokens have their last usage time
* Tokens can have user defined descriptions
* Users can manage login tokens in their account settings
</content>
</entry>
<entry>
<title>server/users: fix checking passwords with colons</title>
<updated>2018-02-10T13:04:02Z</updated>
<author>
<name>rr-</name>
</author>
<published>2018-02-10T13:03:43Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=a1fbeb91a0984f5daf477a8813dc03979d4ae136'/>
<id>urn:sha1:a1fbeb91a0984f5daf477a8813dc03979d4ae136</id>
<content type='text'>
</content>
</entry>
<entry>
<title>server: lint</title>
<updated>2017-04-24T21:30:53Z</updated>
<author>
<name>rr-</name>
</author>
<published>2017-04-24T21:30:53Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=4bc58a3c9531c948aa070c2d42ad93b34de5a464'/>
<id>urn:sha1:4bc58a3c9531c948aa070c2d42ad93b34de5a464</id>
<content type='text'>
</content>
</entry>
<entry>
<title>server: refactor + add type hinting</title>
<updated>2017-02-05T15:34:45Z</updated>
<author>
<name>rr-</name>
</author>
<published>2017-02-04T00:08:12Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=ad842ee8a54c57463b8e28b52970f173ea1d64ea'/>
<id>urn:sha1:ad842ee8a54c57463b8e28b52970f173ea1d64ea</id>
<content type='text'>
- Added type hinting (for now, 3.5-compatible)
- Split `db` namespace into `db` module and `model` namespace
- Changed elastic search to be created lazily for each operation
- Changed to class based approach in entity serialization to allow
  stronger typing
- Removed `required` argument from `context.get_*` family of functions;
  now it's implied if `default` argument is omitted
- Changed `unalias_dict` implementation to use less magic inputs
</content>
</entry>
<entry>
<title>server/db: fix closing DB sessions</title>
<updated>2017-01-03T20:29:48Z</updated>
<author>
<name>rr-</name>
</author>
<published>2017-01-03T20:29:48Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=902a0d3fe06516ba07edba131b5dd024ddaf58f2'/>
<id>urn:sha1:902a0d3fe06516ba07edba131b5dd024ddaf58f2</id>
<content type='text'>
Certain exception scenarios led to small disasters. Moved database
session management directly to router, since it's that sensitive.
</content>
</entry>
<entry>
<title>server: fix constructing of HTTP errors</title>
<updated>2016-09-26T20:51:07Z</updated>
<author>
<name>rr-</name>
</author>
<published>2016-09-26T20:51:07Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=e8c93cd73595b323a1ae4da4b43694fdc73ba73d'/>
<id>urn:sha1:e8c93cd73595b323a1ae4da4b43694fdc73ba73d</id>
<content type='text'>
When I added error codes, I missed these exceptions.
</content>
</entry>
<entry>
<title>server/middleware: fix reporting auth errors</title>
<updated>2016-09-24T06:38:15Z</updated>
<author>
<name>rr-</name>
</author>
<published>2016-09-24T06:37:36Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=d1cad99e876910dcf43e50e5bcf198f714622321'/>
<id>urn:sha1:d1cad99e876910dcf43e50e5bcf198f714622321</id>
<content type='text'>
</content>
</entry>
<entry>
<title>server/db: make query counter thread-local</title>
<updated>2016-08-24T10:31:55Z</updated>
<author>
<name>rr-</name>
</author>
<published>2016-08-24T10:28:51Z</published>
<link rel='alternate' type='text/html' href='https://www.git.jakob.space/szurubooru.git/commit/?id=280a55046ae2154860b5e6f81e98c6df6a5b70e3'/>
<id>urn:sha1:280a55046ae2154860b5e6f81e98c6df6a5b70e3</id>
<content type='text'>
</content>
</entry>
</feed>
