mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-17 14:12:07 +00:00
Update various dead hyperlinks; change some links from http to https.
This commit is contained in:
parent
38e4067a58
commit
0c5e184299
2
.gitignore
vendored
2
.gitignore
vendored
@ -14,7 +14,7 @@ target
|
|||||||
db.sqlite
|
db.sqlite
|
||||||
|
|
||||||
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||||
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
|
|
||||||
# The upload script, for now.
|
# The upload script, for now.
|
||||||
|
@ -159,7 +159,7 @@ Apache License, Version 2.0, without any additional terms or conditions.
|
|||||||
|
|
||||||
Rocket is licensed under either of the following, at your option:
|
Rocket is licensed under either of the following, at your option:
|
||||||
|
|
||||||
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or https://www.apache.org/licenses/LICENSE-2.0)
|
||||||
* MIT License ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
* MIT License ([LICENSE-MIT](LICENSE-MIT) or https://opensource.org/licenses/MIT)
|
||||||
|
|
||||||
The Rocket website source is licensed under [separate terms](site#license).
|
The Rocket website source is licensed under [separate terms](site#license).
|
||||||
|
2
examples/todo/static/css/skeleton.css
vendored
2
examples/todo/static/css/skeleton.css
vendored
@ -3,7 +3,7 @@
|
|||||||
* Copyright 2014, Dave Gamache
|
* Copyright 2014, Dave Gamache
|
||||||
* www.getskeleton.com
|
* www.getskeleton.com
|
||||||
* Free to use under the MIT license.
|
* Free to use under the MIT license.
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* https://opensource.org/licenses/mit-license.php
|
||||||
* 12/29/2014
|
* 12/29/2014
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
# Introduction
|
# Introduction
|
||||||
|
|
||||||
Rocket is a web framework for Rust. If you'd like, you can think of Rocket as
|
Rocket is a web framework for Rust. If you'd like, you can think of Rocket as
|
||||||
being a more flexible, friendly medley of [Rails](http://rubyonrails.org),
|
being a more flexible, friendly medley of [Rails](https://rubyonrails.org/),
|
||||||
[Flask](http://flask.pocoo.org/),
|
[Flask](https://palletsprojects.com/p/flask/),
|
||||||
[Bottle](http://bottlepy.org/docs/dev/index.html), and
|
[Bottle](https://bottlepy.org/docs/dev/index.html), and
|
||||||
[Yesod](http://www.yesodweb.com/). We prefer to think of Rocket as something
|
[Yesod](https://www.yesodweb.com/). We prefer to think of Rocket as something
|
||||||
new. Rocket aims to be fast, easy, and flexible while offering guaranteed safety
|
new. Rocket aims to be fast, easy, and flexible while offering guaranteed safety
|
||||||
and security where it can. Importantly, Rocket also aims to be _fun_, and it
|
and security where it can. Importantly, Rocket also aims to be _fun_, and it
|
||||||
accomplishes this by ensuring that you write as little code as needed to
|
accomplishes this by ensuring that you write as little code as needed to
|
||||||
|
@ -239,15 +239,15 @@ Presently, Rocket provides built-in support for the following databases:
|
|||||||
[`r2d2`]: https://crates.io/crates/r2d2
|
[`r2d2`]: https://crates.io/crates/r2d2
|
||||||
[Diesel]: https://diesel.rs
|
[Diesel]: https://diesel.rs
|
||||||
[`rusqlite::Connection`]: https://docs.rs/rusqlite/0.23.0/rusqlite/struct.Connection.html
|
[`rusqlite::Connection`]: https://docs.rs/rusqlite/0.23.0/rusqlite/struct.Connection.html
|
||||||
[`diesel::SqliteConnection`]: http://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
[`diesel::SqliteConnection`]: https://docs.diesel.rs/diesel/prelude/struct.SqliteConnection.html
|
||||||
[`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
[`postgres::Client`]: https://docs.rs/postgres/0.17/postgres/struct.Client.html
|
||||||
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
[`diesel::PgConnection`]: https://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
[`mysql::Conn`]: https://docs.rs/mysql/18/mysql/struct.Conn.html
|
[`mysql::Conn`]: https://docs.rs/mysql/18/mysql/struct.Conn.html
|
||||||
[`diesel::MysqlConnection`]: http://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
[`diesel::MysqlConnection`]: https://docs.diesel.rs/diesel/mysql/struct.MysqlConnection.html
|
||||||
[`Rusqlite`]: https://github.com/jgallagher/rusqlite
|
[`Rusqlite`]: https://github.com/jgallagher/rusqlite
|
||||||
[Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
[Rust-Postgres]: https://github.com/sfackler/rust-postgres
|
||||||
[`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
[`rust-mysql-simple`]: https://github.com/blackbeam/rust-mysql-simple
|
||||||
[`diesel::PgConnection`]: http://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
[`diesel::PgConnection`]: https://docs.diesel.rs/diesel/pg/struct.PgConnection.html
|
||||||
[`memcache`]: https://github.com/aisk/rust-memcache
|
[`memcache`]: https://github.com/aisk/rust-memcache
|
||||||
[`memcache::Client`]: https://docs.rs/memcache/0.15/memcache/struct.Client.html
|
[`memcache::Client`]: https://docs.rs/memcache/0.15/memcache/struct.Client.html
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user