diff --git a/README.md b/README.md index 4a99c971..fd36887c 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ # Vapor Documentation -This is the documentation for Vapor, a Web Framework for Swift that works on iOS, macOS, and Ubuntu; and all of the packages that Qutheory offers. +This is the documentation for Vapor, a Web Framework for Swift that works on iOS, macOS, and Ubuntu; and all of the packages that Vapor offers. Vapor is the most used web framework for Swift. It provides a beautifully expressive and easy to use foundation for your next website or API. -To view the framework's source code and code documentation, visit [Vapor's GitHub](https://github.com/qutheory/vapor). +To view the framework's source code and code documentation, visit [Vapor's GitHub](https://github.com/vapor/vapor). ## â„šī¸ How To Read -You can read this guide by clicking through the folders and markdown files on [GitHub](https://github.com/qutheory/documentation) or through the rendered [GitHub Pages](https://qutheory.github.io/documentation/). +You can read this guide by clicking through the folders and markdown files on [GitHub](https://github.com/vapor/documentation) or through the rendered [GitHub Pages](https://vapor.github.io/documentation/). ## 🚀 Getting Started @@ -20,4 +20,4 @@ Learn about how to use all of Vapor's powerful and modern features from routing ## đŸ‘Ĩ Authors -[Tanner Nelson](mailto:tanner@qutheory.io), [Logan Wright](logan@qutheory.io), and the hundreds of members of Qutheory. +[Tanner Nelson](mailto:tanner@qutheory.io), [Logan Wright](logan@qutheory.io), and the hundreds of members of Vapor. diff --git a/getting-started/install-swift-3.md b/getting-started/install-swift-3.md index 2d991d06..0d7e8c7d 100644 --- a/getting-started/install-swift-3.md +++ b/getting-started/install-swift-3.md @@ -67,5 +67,5 @@ $ swiftenv versions To ensure that your environment has been correctly configured, run the check script. ```sh -curl -sL check.qutheory.io | bash +curl -sL check.vapor.sh | bash ``` diff --git a/getting-started/install-toolbox.md b/getting-started/install-toolbox.md index 82fb39db..840b4ea7 100644 --- a/getting-started/install-toolbox.md +++ b/getting-started/install-toolbox.md @@ -10,10 +10,10 @@ Vapor's command line interface provides shortcuts and assistance for commons tas ## Install -Run the following script to install the [Toolbox](https://github.com/qutheory/toolbox). +Run the following script to install the [Toolbox](https://github.com/vapor/toolbox). ```sh -curl -sL toolbox.qutheory.io | bash +curl -sL toolbox.vapor.sh | bash ``` > Note: You must have the correct version of Swift 3 installed. diff --git a/getting-started/manual.md b/getting-started/manual.md index 77057bb2..ddd983d5 100644 --- a/getting-started/manual.md +++ b/getting-started/manual.md @@ -15,7 +15,7 @@ This document assumes that the appropriate version of Swift is installed for Vap To check that your environment is compatible, run the following script: ```bash -curl -sL check.qutheory.io | bash +curl -sL check.vapor.sh | bash ``` ## Make new project using SwiftPM @@ -58,12 +58,12 @@ import PackageDescription let package = Package( name: "HelloVapor", dependencies: [ - .Package(url: "https://github.com/qutheory/vapor.git", majorVersion: 0, minor: 15) + .Package(url: "https://github.com/vapor/vapor.git", majorVersion: 0, minor: 16) ] ) ``` -> We try to keep this document up to date, however, you can view latest releases [here](https://github.com/qutheory/vapor/releases) +> We try to keep this document up to date, however, you can view latest releases [here](https://github.com/vapor/vapor/releases) ## Edit `main.swift` diff --git a/guide/views.md b/guide/views.md index 9e08ef42..bd4e7511 100644 --- a/guide/views.md +++ b/guide/views.md @@ -52,5 +52,5 @@ View.renderers[".mustache"] = MustacheRenderer() These renderers can be added to your application through Providers. -- [Mustache](https://github.com/qutheory/vapor-mustache) -- [Stencil](https://github.com/qutheory/vapor-stencil) \ No newline at end of file +- [Mustache](https://github.com/vapor/mustache-provider) +- [Stencil](https://github.com/vapor/stencil-provider) \ No newline at end of file diff --git a/routing/group.md b/routing/group.md index 2ecd0d26..fc9dd734 100644 --- a/routing/group.md +++ b/routing/group.md @@ -48,9 +48,9 @@ drop.group(AuthMiddleware()) { authorized in You can limit the host for a group of routes. ``` -drop.group(host: "qutheory.io") { qt - qt.get { request in - // only responds to requests to qutheory.io +drop.group(host: "vapor.codes") { vapor + vapor.get { request in + // only responds to requests to vapor.codes } } ``` @@ -60,7 +60,7 @@ drop.group(host: "qutheory.io") { qt Groups can be chained together. ```swift -drop.grouped(host: "qutheory.io").grouped(AuthMiddleware()).group("v1") { authedSecureV1 in +drop.grouped(host: "vapor.codes").grouped(AuthMiddleware()).group("v1") { authedSecureV1 in // add routes here } ``` diff --git a/template/default.twig b/template/default.twig index c8bbd1e6..78ce353d 100644 --- a/template/default.twig +++ b/template/default.twig @@ -8,7 +8,7 @@ - + @@ -20,19 +20,19 @@ @@ -57,7 +57,7 @@
- ✎ Edit on GitHub + ✎ Edit on GitHub {{ content | raw }}
diff --git a/template/styles/qutheory-code.css b/template/styles/vapor-code.css similarity index 100% rename from template/styles/qutheory-code.css rename to template/styles/vapor-code.css