Skip to content

Commit

Permalink
Revert links
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Feb 15, 2019
1 parent 841d823 commit a6b18c1
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/endpoint/basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ generate a server or a client, as well as in many cases can be used both for inp

## Next

Read on about describing [endpoint inputs/outputs](ios.md).
Read on about describing [endpoint inputs/outputs](ios.html).
2 changes: 1 addition & 1 deletion doc/endpoint/codecs.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,4 @@ validation fails, the result of the method can be an error, which is one of the

## Next

Read on about [json support](json.md).
Read on about [json support](json.html).
4 changes: 2 additions & 2 deletions doc/endpoint/ios.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
An input is represented as an instance of the `EndpointInput` trait, and an output as an instance of the `EndpointIO`
trait, as all outputs can also be used as inputs. Each input or output can yield/accept a value. For example,
`query[Int]("age"): EndpointInput[Int]` describes an input, which maps to a query parameter `age`, which should be
parsed (using the string-to-integer [codec](codecs.md)) as an `Int`.
parsed (using the string-to-integer [codec](codecs.html)) as an `Int`.

The `tapir` package contains a number of convenience methods to define an input or an output for an endpoint.
These are:
Expand Down Expand Up @@ -88,4 +88,4 @@ The `Endpoint.mapIn`, `Endpoint.mapInTo` etc. have the same signatures are the o

## Next

Read on about [codecs](codecs.md).
Read on about [codecs](codecs.html).
4 changes: 2 additions & 2 deletions doc/endpoint/json.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ the following dependency to your project:
"com.softwaremill.tapir" %% "tapir-json-circe" % "0.0.11"
```

Next, import the package (or extend the `JsonCirce` trait, see [MyTapir](../mytapir.md)):
Next, import the package (or extend the `JsonCirce` trait, see [MyTapir](../mytapir.html)):

```scala
import tapir.json.circe._
Expand Down Expand Up @@ -36,4 +36,4 @@ for the Circe codec (which is just a couple of lines of code).

## Next

Read on about [working with forms](forms.md).
Read on about [working with forms](forms.html).
8 changes: 4 additions & 4 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ interpreted as:

* a server, given the "business logic": a function, which computes output parameters based on input parameters.
Currently supported:
* [Akka HTTP](server/akkahttp.md) `Route`s/`Directive`s.
* [Http4s](server/http4s.md) `HttpRoutes[F]`
* a client, which is a function from input parameters to output parameters. Currently supported: [sttp](sttp.md).
* documentation. Currently supported: [OpenAPI](openapi.md).
* [Akka HTTP](server/akkahttp.html) `Route`s/`Directive`s.
* [Http4s](server/http4s.html) `HttpRoutes[F]`
* a client, which is a function from input parameters to output parameters. Currently supported: [sttp](sttp.html).
* documentation. Currently supported: [OpenAPI](openapi.html).

Tapir is licensed under Apache2, the source code is [available of GitHub](https://github.com/softwaremill/tapir).

Expand Down
2 changes: 1 addition & 1 deletion doc/server/akkahttp.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ response bodies and reading request bodies. Usage: `streamBody[Source[ByteString
## Configuration

The interpreter can be configured by providing an implicit `AkkaHttpServerOptions` value and status mappers, see
[common server configuration](common.md) for details.
[common server configuration](common.html) for details.
2 changes: 1 addition & 1 deletion doc/server/http4s.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ response bodies and reading request bodies. Usage: `streamBody[Stream[F, Byte]](
## Configuration

The interpreter can be configured by providing an implicit `Http4sServerOptions` value and status mappers, see
[common server configuration](common.md) for details.
[common server configuration](common.html) for details.

The http4s options also includes configuration for the blocking execution context to use, and the io chunk size.

0 comments on commit a6b18c1

Please sign in to comment.