Skip to content

Commit

Permalink
Convert diesel.rs links to https.
Browse files Browse the repository at this point in the history
sed -i 's,http://\(docs\.\)\?diesel\.rs,https://\1diesel\.rs,g' **/*.md **/*.toml
  • Loading branch information
Ppjet6 committed Nov 4, 2017
1 parent 034049d commit d49b918
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 66 deletions.
58 changes: 29 additions & 29 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
`1`.

[bigdecimal-0.16.0]: https://crates.io/crates/bigdecimal
[range-0.16.0]: http://docs.diesel.rs/diesel/pg/types/sql_types/struct.Range.html
[range-0.16.0]: https://docs.diesel.rs/diesel/pg/types/sql_types/struct.Range.html

## [0.15.2] - 2017-07-28

Expand All @@ -203,7 +203,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* The `ON` clause of a join can now be manually specified. See [the
docs][join-on-dsl-0.15.0] for details.

[join-on-dsl-0.15.0]: http://docs.diesel.rs/diesel/prelude/trait.JoinOnDsl.html#method.on
[join-on-dsl-0.15.0]: https://docs.diesel.rs/diesel/prelude/trait.JoinOnDsl.html#method.on

### Changed

Expand Down Expand Up @@ -235,7 +235,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
now be used to join between any number of tables in a single query. See the
documentation for [`JoinDsl`][join-dsl-0.14.0] for details

[join-dsl-0.14.0]: http://docs.diesel.rs/diesel/prelude/trait.JoinDsl.html
[join-dsl-0.14.0]: https://docs.diesel.rs/diesel/prelude/trait.JoinDsl.html

* Added support for the [PostgreSQL network types][pg-network-0.14.0] `MACADDR`.

Expand All @@ -247,8 +247,8 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* Added the [`insert_default_values`][insert-default-0.14.0] function.

[pg-network-0.14.0]: https://www.postgresql.org/docs/9.6/static/datatype-net-types.html
[not-0.14.0]: http://docs.diesel.rs/diesel/expression/dsl/fn.not.html
[insert-default-0.14.0]: http://docs.diesel.rs/diesel/fn.insert_default_values.html
[not-0.14.0]: https://docs.diesel.rs/diesel/expression/dsl/fn.not.html
[insert-default-0.14.0]: https://docs.diesel.rs/diesel/fn.insert_default_values.html
[bigdecimal-0.14.0]: https://crates.io/crates/bigdecimal

* Added `diesel_prefix_operator!` which behaves identically to
Expand Down Expand Up @@ -284,7 +284,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* Bind values can now be supplied to queries constructed using raw SQL. See [the
docs][sql-bind-0.13.0] for more details.

[sql-bind-0.13.0]: http://docs.diesel.rs/diesel/expression/sql_literal/struct.SqlLiteral.html#method.bind
[sql-bind-0.13.0]: https://docs.diesel.rs/diesel/expression/sql_literal/struct.SqlLiteral.html#method.bind

* Added support for the [PostgreSQL network types][pg-network-0.13.0] `CIDR` and
`INET`.
Expand All @@ -302,7 +302,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/

* Added [`migrations::any_pending_migrations`][pending-migrations-0.13.0].

[pending-migrations-0.13.0]: http://docs.diesel.rs/diesel/migrations/fn.any_pending_migrations.html
[pending-migrations-0.13.0]: https://docs.diesel.rs/diesel/migrations/fn.any_pending_migrations.html

### Fixed

Expand All @@ -328,12 +328,12 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
support specifying the constraint, as well as `DO UPDATE` in addition to `DO
NOTHING`. See [the module docs][upsert-0.12.0] for details.

[upsert-0.12.0]: http://docs.diesel.rs/diesel/pg/upsert/index.html
[upsert-0.12.0]: https://docs.diesel.rs/diesel/pg/upsert/index.html

* Added support for the SQL concatenation operator `||`. See [the docs for
`.concat`][concat-0.12.0] for more details.

[concat-0.12.0]: http://docs.diesel.rs/diesel/expression/expression_methods/text_expression_methods/trait.TextExpressionMethods.html#method.concat
[concat-0.12.0]: https://docs.diesel.rs/diesel/expression/expression_methods/text_expression_methods/trait.TextExpressionMethods.html#method.concat

* Added support for the PostgreSQL [`Money` type][pg-money-0.12.0].

Expand Down Expand Up @@ -405,12 +405,12 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
MySQL support by default. To enable it for Diesel and Diesel Codegen, add
`features = ["mysql"]` to Cargo.toml. See [the docs][mysql-0.11.0] for details.

[mysql-0.11.0]: http://docs.diesel.rs/diesel/mysql/index.html
[mysql-0.11.0]: https://docs.diesel.rs/diesel/mysql/index.html

* Added support for PG's `ON CONFLICT DO NOTHING` clause. See [the
docs][on-conflict-0.11.0] for details.

[on-conflict-0.11.0]: http://docs.diesel.rs/diesel/pg/upsert/trait.OnConflictExtension.html#method.on_conflict_do_nothing
[on-conflict-0.11.0]: https://docs.diesel.rs/diesel/pg/upsert/trait.OnConflictExtension.html#method.on_conflict_do_nothing

* Queries constructed using [`diesel::select`][select-0.11.0] now work properly
when [boxed][boxed-0.11.0].
Expand Down Expand Up @@ -443,18 +443,18 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* [`max`][max-0.11.0] and [`min`][min-0.11.0] are now always nullable. The database will
return `NULL` when the table is empty.

[max-0.11.0]: http://docs.diesel.rs/diesel/expression/dsl/fn.max.html
[min-0.11.0]: http://docs.diesel.rs/diesel/expression/dsl/fn.min.html
[max-0.11.0]: https://docs.diesel.rs/diesel/expression/dsl/fn.max.html
[min-0.11.0]: https://docs.diesel.rs/diesel/expression/dsl/fn.min.html

* [`now`][now-0.11.0] can now be used as an expression of type `Timestamptz`.

[now-0.11.0]: http://docs.diesel.rs/diesel/expression/dsl/struct.now.html
[now-0.11.0]: https://docs.diesel.rs/diesel/expression/dsl/struct.now.html

* [`Connection::transaction`][transaction-0.11.0] now returns your error
directly instead of wrapping it in `TransactionError`. It requires that the
error implement `From<diesel::result::Error>`

[transaction-0.11.0]: http://docs.diesel.rs/diesel/connection/trait.Connection.html#method.transaction
[transaction-0.11.0]: https://docs.diesel.rs/diesel/connection/trait.Connection.html#method.transaction

* The way tuples of columns from the right side of left outer joins interact
with `.select` has changed. If you are deserializing into an option of a tuple
Expand Down Expand Up @@ -565,12 +565,12 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* Added support for batch insert on SQLite. This means that you can now pass a
slice or vector to [`diesel::insert`][insert] on all backends.

[insert]: http://docs.diesel.rs/diesel/fn.insert.html
[insert]: https://docs.diesel.rs/diesel/fn.insert.html

* Added a function for SQL `EXISTS` expressions. See
[`diesel::expression::dsl::exists`][exists] for details.

[exists]: http://docs.diesel.rs/diesel/expression/dsl/fn.sql.html
[exists]: https://docs.diesel.rs/diesel/expression/dsl/fn.sql.html

* `#[derive(Identifiable)]` can be used with structs that have primary keys
other than `id`, as well as structs with composite primary keys. You can now
Expand Down Expand Up @@ -635,7 +635,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
* Added partial support for composite primary keys.

* Added support for PostgreSQL `NULLS FIRST` and `NULLS LAST` when sorting.
See http://docs.diesel.rs/diesel/prelude/trait.SortExpressionMethods.html
See https://docs.diesel.rs/diesel/prelude/trait.SortExpressionMethods.html
for details.

* Added support for the `timestamp with time zone` type in PostgreSQL (referred
Expand Down Expand Up @@ -705,22 +705,22 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/

* The `Insertable!` macro can now be used instead of `#[insertable_into]` for
those wishing to avoid syntax extensions from `diesel_codegen`. See
http://docs.diesel.rs/diesel/macro.Insertable!.html for details.
https://docs.diesel.rs/diesel/macro.Insertable!.html for details.

* The `Queryable!` macro can now be used instead of `#[derive(Queryable)]` for
those wishing to avoid syntax extensions from `diesel_codegen`. See
http://docs.diesel.rs/diesel/macro.Queryable!.html for details.
https://docs.diesel.rs/diesel/macro.Queryable!.html for details.

* The `Identifiable!` macro can now be used instead of `#[derive(Identifiable)]` for
those wishing to avoid syntax extensions from `diesel_codegen`. See
http://docs.diesel.rs/diesel/macro.Identifiable!.html for details.
https://docs.diesel.rs/diesel/macro.Identifiable!.html for details.

* The `AsChangeset!` macro can now be used instead of `#[changeset_for(table)]`
for those wishing to avoid syntax extensions from `diesel_codegen`. See
http://docs.diesel.rs/diesel/macro.AsChangeset!.html for details.
https://docs.diesel.rs/diesel/macro.AsChangeset!.html for details.

* Added support for the PostgreSQL `ALL` operator. See
http://docs.diesel.rs/diesel/pg/expression/dsl/fn.all.html for details.
https://docs.diesel.rs/diesel/pg/expression/dsl/fn.all.html for details.

* Added support for `RETURNING` expressions in `DELETE` statements. Implicitly
these queries will use `RETURNING *`.
Expand All @@ -747,15 +747,15 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
`#[column_name(name)]`.

* The structure of `DatabaseError` has changed to hold more information. See
http://docs.diesel.rs/diesel/result/enum.Error.html and
http://docs.diesel.rs/diesel/result/trait.DatabaseErrorInformation.html for
https://docs.diesel.rs/diesel/result/enum.Error.html and
https://docs.diesel.rs/diesel/result/trait.DatabaseErrorInformation.html for
more information

* Structs which implement `Identifiable` can now be passed to `update` and
`delete`. This means you can now write `delete(&user).execute(&connection)`
instead of `delete(users.find(user.id)).execute(&connection)`

[associations-module]: http://docs.diesel.rs/diesel/associations/index.html
[associations-module]: https://docs.diesel.rs/diesel/associations/index.html
[syntex-split]: https://github.com/diesel-rs/diesel/commit/36b8801bf5e9594443743e6a7c62e29d3dce36b7

### Fixed
Expand All @@ -771,7 +771,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
character used in the pattern. See [EscapeExpressionMethods][escape] for
details.

[escape]: http://docs.diesel.rs/diesel/expression/expression_methods/escape_expression_methods/trait.EscapeExpressionMethods.html
[escape]: https://docs.diesel.rs/diesel/expression/expression_methods/escape_expression_methods/trait.EscapeExpressionMethods.html

### Fixed

Expand Down Expand Up @@ -800,7 +800,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/

* `SqliteConnection` now implements `Send`

[boxed_dsl]: http://docs.diesel.rs/diesel/prelude/trait.BoxedDsl.html
[boxed_dsl]: https://docs.diesel.rs/diesel/prelude/trait.BoxedDsl.html

### Changed

Expand Down Expand Up @@ -964,7 +964,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
for more information.

* Add the ability for diesel to maintain your schema for you automatically. See
the [migrations](http://docs.diesel.rs/diesel/migrations/index.html)
the [migrations](https://docs.diesel.rs/diesel/migrations/index.html)
module for individual methods.

* Add DebugQueryBuilder to build sql without requiring a connection.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![](http://diesel.rs/assets/images/diesel_logo_stacked_black.png)](http://diesel.rs)
[![](https://diesel.rs/assets/images/diesel_logo_stacked_black.png)](https://diesel.rs)

A safe, extensible ORM and Query Builder for Rust
==========================================================
Expand All @@ -8,9 +8,9 @@ A safe, extensible ORM and Query Builder for Rust
[![Gitter](https://badges.gitter.im/diesel-rs/diesel.svg)](https://gitter.im/diesel-rs/diesel?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Crates.io](https://img.shields.io/crates/v/diesel.svg)](https://crates.io/crates/diesel)

[Documentation](http://docs.diesel.rs)
[Documentation](https://docs.diesel.rs)

[Homepage](http://diesel.rs)
[Homepage](https://diesel.rs)

Diesel gets rid of the boilerplate for database interaction and eliminates
runtime errors without sacrificing performance. It takes full advantage of
Expand All @@ -20,7 +20,7 @@ Rust."
## Getting Started

Find our extensive Getting Started tutorial at
[http://diesel.rs/guides/getting-started](http://diesel.rs/guides/getting-started).
[https://diesel.rs/guides/getting-started](https://diesel.rs/guides/getting-started).
Guides on more specific features are coming soon.

## Code of conduct
Expand Down
4 changes: 2 additions & 2 deletions diesel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "A safe, extensible ORM and Query builder"
readme = "README.md"
documentation = "http://docs.diesel.rs"
homepage = "http://diesel.rs"
documentation = "https://docs.diesel.rs"
homepage = "https://diesel.rs"
repository = "https://github.com/diesel-rs/diesel"
keywords = ["orm", "database", "postgres", "postgresql", "sql"]
categories = ["database"]
Expand Down
4 changes: 2 additions & 2 deletions diesel/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![Diesel](http://diesel.rs/assets/images/diesel_logo_stacked_black.png)](http://diesel.rs)
[![Diesel](https://diesel.rs/assets/images/diesel_logo_stacked_black.png)](https://diesel.rs)

# Diesel - A safe, extensible ORM and Query Builder for Rust

Diesel is the most productive way to interact with databases in Rust because of its safe and composable abstractions over queries.

## Getting Started

This is the Readme of the main crate. You can find [an extensive Getting Started tutorial](http://diesel.rs/guides/getting-started) and more information on our [website](http://diesel.rs).
This is the Readme of the main crate. You can find [an extensive Getting Started tutorial](https://diesel.rs/guides/getting-started) and more information on our [website](https://diesel.rs).
4 changes: 2 additions & 2 deletions diesel_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Provides the CLI for the Diesel crate"
readme = "README.md"
documentation = "http://diesel.rs/guides/getting-started"
homepage = "http://diesel.rs"
documentation = "https://diesel.rs/guides/getting-started"
homepage = "https://diesel.rs"
repository = "https://github.com/diesel-rs/diesel"
keywords = ["orm", "database", "postgres", "postgresql", "sql"]

Expand Down
2 changes: 1 addition & 1 deletion diesel_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Runs the `down.sql` and then the `up.sql` for the most recent migration.
## `diesel print-schema`
Prints table definitions for database schema.

[pending-migrations]: http://docs.diesel.rs/diesel/migrations/fn.run_pending_migrations.html
[pending-migrations]: https://docs.diesel.rs/diesel/migrations/fn.run_pending_migrations.html
[rust-dotenv]: https://github.com/slapresta/rust-dotenv#examples


Expand Down
4 changes: 2 additions & 2 deletions diesel_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Custom derive and procedural macros for Diesel"
readme = "README.md"
documentation = "http://docs.diesel.rs"
homepage = "http://diesel.rs"
documentation = "https://docs.diesel.rs"
homepage = "https://diesel.rs"
repository = "https://github.com/diesel-rs/diesel/tree/master/diesel_codegen"
keywords = ["orm", "database", "postgres", "sql", "codegen"]

Expand Down
16 changes: 8 additions & 8 deletions diesel_codegen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ It also provides the macros [`infer_schema!`][infer-schema],
[`infer_table_from_schema!`][infer-table-from-schema], and
[`embed_migrations!`][embed-migrations].

[queryable]: http://docs.diesel.rs/diesel/query_source/trait.Queryable.html
[identifiable]: http://docs.diesel.rs/diesel/associations/trait.Identifiable.html
[insertable]: http://docs.diesel.rs/diesel/prelude/trait.Insertable.html
[as-changeset]: http://docs.diesel.rs/diesel/query_builder/trait.AsChangeset.html
[associations]: http://docs.diesel.rs/diesel/associations/index.html
[infer-schema]: http://docs.diesel.rs/diesel/macro.infer_schema!.html
[infer-table-from-schema]: http://docs.diesel.rs/diesel/macro.infer_table_from_schema!.html
[embed-migrations]: http://docs.diesel.rs/diesel/macro.embed_migrations!.html
[queryable]: https://docs.diesel.rs/diesel/query_source/trait.Queryable.html
[identifiable]: https://docs.diesel.rs/diesel/associations/trait.Identifiable.html
[insertable]: https://docs.diesel.rs/diesel/prelude/trait.Insertable.html
[as-changeset]: https://docs.diesel.rs/diesel/query_builder/trait.AsChangeset.html
[associations]: https://docs.diesel.rs/diesel/associations/index.html
[infer-schema]: https://docs.diesel.rs/diesel/macro.infer_schema!.html
[infer-table-from-schema]: https://docs.diesel.rs/diesel/macro.infer_table_from_schema!.html
[embed-migrations]: https://docs.diesel.rs/diesel/macro.embed_migrations!.html

# Using this crate

Expand Down
4 changes: 2 additions & 2 deletions diesel_infer_schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.16.0"
authors = ["Sean Griffin <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Provides functionality to infer the schema of a database"
documentation = "http://diesel.rs/guides/getting-started"
homepage = "http://diesel.rs"
documentation = "https://diesel.rs/guides/getting-started"
homepage = "https://diesel.rs"
repository = "https://github.com/diesel-rs/diesel"
keywords = ["orm", "database", "postgres", "postgresql", "sql"]

Expand Down
Loading

0 comments on commit d49b918

Please sign in to comment.