From b904235ef0ecf0cf1a9a31d5648af40717a4b699 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Tue, 23 Apr 2024 22:28:48 +0200 Subject: [PATCH 1/2] use different article because spray.io is dead --- .../routing-dsl/directives/debugging-directives/logRequest.md | 2 +- .../directives/debugging-directives/logRequestResult.md | 2 +- .../routing-dsl/directives/debugging-directives/logResult.md | 2 +- .../routing-dsl/directives/form-field-directives/formFields.md | 2 +- .../routing-dsl/directives/future-directives/onSuccess.md | 2 +- .../directives/header-directives/headerValueByType.md | 2 +- .../directives/header-directives/optionalHeaderValueByType.md | 2 +- .../routing-dsl/directives/parameter-directives/parameters.md | 2 +- .../routing-dsl/directives/range-directives/withRangeSupport.md | 2 +- .../paradox/routing-dsl/directives/route-directives/complete.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md index bc84f9448..a0c14f665 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md @@ -14,7 +14,7 @@ def logRequest(magnet: LoggingMagnet[HttpRequest => Unit]): Directive0 The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md index 745f698a1..c60032d61 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md @@ -12,7 +12,7 @@ def logRequestResult(show: HttpRequest => RouteResult => Option[LogEntry])(impli The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md index bb49ec8c2..1d6dff7dc 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md @@ -14,7 +14,7 @@ def logResult(magnet: LoggingMagnet[RouteResult => Unit]): Directive0 The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md b/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md index 9b38e253f..2e7b797e1 100644 --- a/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md +++ b/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md @@ -18,7 +18,7 @@ def formFields(fields: :: ... ... :: HNil): Dire The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1] The type `` doesn't really exist but consists of the syntactic variants as shown in the description and the examples. -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. ## Description diff --git a/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md b/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md index 306c0026a..6b58b9032 100644 --- a/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md +++ b/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md @@ -12,7 +12,7 @@ def onSuccess(hlistFuture: Future[T_0 :: ... T_i ... :: HNil]): Directive[T_0 :: The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1]. -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md b/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md index fbbe883da..6482b436f 100644 --- a/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md +++ b/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md @@ -9,7 +9,7 @@ def headerValueByType[T <: HttpHeader: ClassTag](): Directive1[T] The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md b/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md index e86b7ce37..7222bb1ee 100644 --- a/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md +++ b/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md @@ -9,7 +9,7 @@ def optionalHeaderValueByType[T <: HttpHeader: ClassTag](): Directive1[Option[T] The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md b/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md index d6dfee23b..30135670b 100644 --- a/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md +++ b/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md @@ -15,7 +15,7 @@ def parameters(params: :: ... ... :: HNil): Dire The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1] The type `` doesn't really exist but consists of the syntactic variants as shown in the description and the examples. -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md b/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md index 541ee04e4..1111bac77 100644 --- a/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md +++ b/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md @@ -10,7 +10,7 @@ def withRangeSupport(rangeCountLimit: Int, rangeCoalescingThreshold:Long): Direc The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md b/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md index 9444a6840..212f057e8 100644 --- a/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md +++ b/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md @@ -15,7 +15,7 @@ def complete[T :Marshaller](status: Int, headers: Seq[HttpHeader], value: T): St The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. @@@ From f15b033f103be220bf1cfec26d93d1da03043ba7 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Wed, 24 Apr 2024 00:03:55 +0200 Subject: [PATCH 2/2] use wayback instead --- .../routing-dsl/directives/debugging-directives/logRequest.md | 2 +- .../directives/debugging-directives/logRequestResult.md | 2 +- .../routing-dsl/directives/debugging-directives/logResult.md | 2 +- .../routing-dsl/directives/form-field-directives/formFields.md | 2 +- .../routing-dsl/directives/future-directives/onSuccess.md | 2 +- .../directives/header-directives/headerValueByType.md | 2 +- .../directives/header-directives/optionalHeaderValueByType.md | 2 +- .../routing-dsl/directives/parameter-directives/parameters.md | 2 +- .../routing-dsl/directives/range-directives/withRangeSupport.md | 2 +- .../paradox/routing-dsl/directives/route-directives/complete.md | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md index a0c14f665..fa5c9f529 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequest.md @@ -14,7 +14,7 @@ def logRequest(magnet: LoggingMagnet[HttpRequest => Unit]): Directive0 The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md index c60032d61..970f12798 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logRequestResult.md @@ -12,7 +12,7 @@ def logRequestResult(show: HttpRequest => RouteResult => Option[LogEntry])(impli The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md index 1d6dff7dc..192c099af 100644 --- a/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md +++ b/docs/src/main/paradox/routing-dsl/directives/debugging-directives/logResult.md @@ -14,7 +14,7 @@ def logResult(magnet: LoggingMagnet[RouteResult => Unit]): Directive0 The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md b/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md index 2e7b797e1..490c6e3a5 100644 --- a/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md +++ b/docs/src/main/paradox/routing-dsl/directives/form-field-directives/formFields.md @@ -18,7 +18,7 @@ def formFields(fields: :: ... ... :: HNil): Dire The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1] The type `` doesn't really exist but consists of the syntactic variants as shown in the description and the examples. -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. ## Description diff --git a/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md b/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md index 6b58b9032..b27cef885 100644 --- a/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md +++ b/docs/src/main/paradox/routing-dsl/directives/future-directives/onSuccess.md @@ -12,7 +12,7 @@ def onSuccess(hlistFuture: Future[T_0 :: ... T_i ... :: HNil]): Directive[T_0 :: The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1]. -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md b/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md index 6482b436f..1e5ec5390 100644 --- a/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md +++ b/docs/src/main/paradox/routing-dsl/directives/header-directives/headerValueByType.md @@ -9,7 +9,7 @@ def headerValueByType[T <: HttpHeader: ClassTag](): Directive1[T] The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md b/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md index 7222bb1ee..bb4ddd8d8 100644 --- a/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md +++ b/docs/src/main/paradox/routing-dsl/directives/header-directives/optionalHeaderValueByType.md @@ -9,7 +9,7 @@ def optionalHeaderValueByType[T <: HttpHeader: ClassTag](): Directive1[Option[T] The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md b/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md index 30135670b..a638c1a75 100644 --- a/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md +++ b/docs/src/main/paradox/routing-dsl/directives/parameter-directives/parameters.md @@ -15,7 +15,7 @@ def parameters(params: :: ... ... :: HNil): Dire The signature shown is simplified and written in pseudo-syntax, the real signature uses magnets. [1] The type `` doesn't really exist but consists of the syntactic variants as shown in the description and the examples. -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md b/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md index 1111bac77..692c02ac3 100644 --- a/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md +++ b/docs/src/main/paradox/routing-dsl/directives/range-directives/withRangeSupport.md @@ -10,7 +10,7 @@ def withRangeSupport(rangeCountLimit: Int, rangeCoalescingThreshold:Long): Direc The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@ diff --git a/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md b/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md index 212f057e8..ed8671b3e 100644 --- a/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md +++ b/docs/src/main/paradox/routing-dsl/directives/route-directives/complete.md @@ -15,7 +15,7 @@ def complete[T :Marshaller](status: Int, headers: Seq[HttpHeader], value: T): St The signature shown is simplified, the real signature uses magnets. [1] -> [1] See [The Magnet Pattern](https://www.baeldung.com/scala/magnet-pattern) for an explanation of magnet-based overloading. +> [1] See [The Magnet Pattern](https://web.archive.org/web/20240311111722/http://spray.io/blog/2012-12-13-the-magnet-pattern/) for an explanation of magnet-based overloading. @@@