Skip to content

Commit 7d9d726

Browse files
WIP
1 parent fcb79c6 commit 7d9d726

5 files changed

Lines changed: 11 additions & 10 deletions

File tree

blacksheep/docs/asgi.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# ASGI Servers
22

3-
BlackSheep belongs to the category of
4-
[ASGI](https://asgi.readthedocs.io/en/latest/) web frameworks, so it requires
5-
an ASGI HTTP server to run, such as [uvicorn](http://www.uvicorn.org/), or
6-
[hypercorn](https://pgjones.gitlab.io/hypercorn/). All examples in this
7-
documentation use `Uvicorn`, but the framework has been tested also with
8-
`Hypercorn` and should work with any server that implements ASGI.
3+
BlackSheep is an [ASGI](https://asgi.readthedocs.io/en/latest/) web framework,
4+
which requires an ASGI HTTP server to run, such as
5+
[Uvicorn](http://www.uvicorn.org/), or
6+
[Hypercorn](https://pgjones.gitlab.io/hypercorn/). All examples in this
7+
documentation use `Uvicorn`, but the framework has also been tested with
8+
Hypercorn and should work with any server that implements the `ASGI`
9+
specification.
910

1011
### Uvicorn
1112

blacksheep/docs/client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ different request-response cycles, when possible. By default, connections are
4141
not disposed of as long as they are kept open.
4242

4343
Implementation:
44-
[/blacksheep/client/pool.py](https://github.com/RobertoPrevato/BlackSheep/blob/master/blacksheep/client/pool.py).
44+
[/blacksheep/client/pool.py](https://github.com/Neoteroi/BlackSheep/blob/master/blacksheep/client/pool.py).
4545

4646
Connections are created using `asyncio` function `loop.create_connection`.
4747

blacksheep/docs/mvc-project-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ class Greetings(Controller):
351351
sentences=[
352352
Sentence(
353353
"Check this out!",
354-
"https://github.com/RobertoPrevato/BlackSheep",
354+
"https://github.com/Neoteroi/BlackSheep",
355355
)
356356
],
357357
)

blacksheep/docs/openapi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def get_cat_by_id(cat_id: UUID):
344344
```
345345

346346
To see a complete example, refer to the source code of the [MVC project
347-
template](https://github.com/RobertoPrevato/BlackSheepMVC), and see how
347+
template](https://github.com/Neoteroi/BlackSheep-MVC), and see how
348348
documentation is organized and configured (in `app.docs`, `app.controllers.docs`).
349349

350350
### Deprecating an API

blacksheep/docs/templating.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This page covers:
1515

1616
!!! info
1717
The [BlackSheep MVC project
18-
template](https://github.com/RobertoPrevato/BlackSheepMVC) includes a
18+
template](https://github.com/Neoteroi/BlackSheep-MVC) includes a
1919
ready-to-use solution having an application with templates and layout
2020
configured.
2121

0 commit comments

Comments
 (0)