Skip to content

Commit df005a7

Browse files
committed
Rename Bolt to Plain
1 parent 7b610b4 commit df005a7

File tree

174 files changed

+333
-333
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+333
-333
lines changed

bolt-auth/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Bolt is released under the BSD 3-Clause License
1+
## Plain is released under the BSD 3-Clause License
22

33
BSD 3-Clause License
44

bolt-auth/bolt/auth/middleware.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self, get_response):
1616
def __call__(self, request):
1717
if not hasattr(request, "session"):
1818
raise ImproperlyConfigured(
19-
"The Bolt authentication middleware requires session "
19+
"The Plain authentication middleware requires session "
2020
"middleware to be installed. Edit your MIDDLEWARE setting to "
2121
"insert "
2222
"'bolt.sessions.middleware.SessionMiddleware' before "

bolt-cache/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Bolt is released under the BSD 3-Clause License
1+
## Plain is released under the BSD 3-Clause License
22

33
BSD 3-Clause License
44

bolt-cache/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A simple cache using the database.
66

7-
The Bolt Cache stores JSON-serializable values in a `CachedItem` model.
7+
The Plain Cache stores JSON-serializable values in a `CachedItem` model.
88
Cached data can be set to expire after a certain amount of time.
99

1010
Access to the cache is provided through the `Cached` class.

bolt-cache/bolt/cache/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A simple cache using the database.
44

5-
The Bolt Cache stores JSON-serializable values in a `CachedItem` model.
5+
The Plain Cache stores JSON-serializable values in a `CachedItem` model.
66
Cached data can be set to expire after a certain amount of time.
77

88
Access to the cache is provided through the `Cached` class.

bolt-cache/bolt/cache/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from bolt.packages import PackageConfig
22

33

4-
class BoltCacheConfig(PackageConfig):
4+
class PlainCacheConfig(PackageConfig):
55
name = "bolt.cache"
66
label = "boltcache"

bolt-cache/bolt/cache/migrations/0001_initial.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Bolt 5.0.dev20231127233940 on 2023-12-22 03:47
1+
# Generated by Plain 5.0.dev20231127233940 on 2023-12-22 03:47
22

33
from bolt.db import migrations, models
44

bolt-cache/bolt/cache/migrations/0002_rename_cacheitem_cacheditem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by Bolt 5.0.dev20231127233940 on 2023-12-22 17:40
1+
# Generated by Plain 5.0.dev20231127233940 on 2023-12-22 17:40
22

33
from bolt.db import migrations
44

bolt-db/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Bolt is released under the BSD 3-Clause License
1+
## Plain is released under the BSD 3-Clause License
22

33
BSD 3-Clause License
44

bolt-db/bolt/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
connection = ConnectionProxy(connections, DEFAULT_DB_ALIAS)
4444

4545

46-
# Register an event to reset saved queries when a Bolt request is started.
46+
# Register an event to reset saved queries when a Plain request is started.
4747
def reset_queries(**kwargs):
4848
for conn in connections.all(initialized_only=True):
4949
conn.queries_log.clear()

0 commit comments

Comments
 (0)