Skip to content

Commit

Permalink
Move the web site to https://armeria.dev/ (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
trustin committed Jun 19, 2020
1 parent eb33d2b commit a51a482
Show file tree
Hide file tree
Showing 37 changed files with 101 additions and 84 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
See [Code of conduct](https://line.github.io/armeria/community/code-of-conduct).
See [Code of conduct](https://armeria.dev/community/code-of-conduct).
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
See [Contributor manual](https://line.github.io/armeria/community).
See [Contributor manual](https://armeria.dev/community).
2 changes: 1 addition & 1 deletion NOTICE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Armeria

Please visit the official web site for more information:

* https://line.github.io/armeria/
* https://armeria.dev/

Copyright 2015 LINE Corporation

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Visit [the official web site](https://line.github.io/armeria/) for more information.
Visit [the official web site](https://armeria.dev/) for more information.

# Armeria

<a href="https://github.com/line/armeria"><img src="https://img.shields.io/github/stars/line/armeria.svg?style=social" /></a>
<a href="https://twitter.com/armeria_project"><img src="https://img.shields.io/twitter/follow/armeria_project.svg?label=Follow" /></a>
<a href="https://line.github.io/armeria/s/slack"><img src="https://img.shields.io/badge/chat-on%20Slack-brightgreen.svg?style=social&amp;logo=slack" /></a>
<a href="https://armeria.dev/s/slack"><img src="https://img.shields.io/badge/chat-on%20Slack-brightgreen.svg?style=social&amp;logo=slack" /></a>
<a href="https://github.com/line/armeria/contributors"><img src="https://img.shields.io/github/contributors/line/armeria.svg" /></a>
<a href="https://github.com/line/armeria/pulse"><img src="https://img.shields.io/github/commit-activity/m/line/armeria.svg?label=commits" /></a>
<a href="https://search.maven.org/search?q=g:com.linecorp.armeria%20AND%20a:armeria"><img src="https://img.shields.io/maven-central/v/com.linecorp.armeria/armeria.svg?label=version" /></a>
Expand All @@ -24,11 +24,11 @@ It is open-sourced by the creator of [Netty](https://netty.io/) and his colleagu
## Requirements

- Java 8 or later if you are a user.
- See [the developer guide](https://line.github.io/armeria/community/developer-guide/) if you are building Armeria.
- See [the developer guide](https://armeria.dev/community/developer-guide/) if you are building Armeria.

## How to reach us — chat, questions and newsletters

Visit [the community](https://line.github.io/armeria/community/) to chat with us, ask questions and learn how to contribute.
Visit [the community](https://armeria.dev/community/) to chat with us, ask questions and learn how to contribute.

## Hall of fame

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,7 @@ int maxTotalAttempts() {
*
* @return {@code this} to support method chaining.
*
* @see <a href="https://line.github.io/armeria/docs/client-retry#per-attempt-timeout">Per-attempt
* timeout</a>
* @see <a href="https://armeria.dev/docs/client-retry#per-attempt-timeout">Per-attempt timeout</a>
*/
public AbstractRetryingClientBuilder<O> responseTimeoutMillisForEachAttempt(
long responseTimeoutMillisForEachAttempt) {
Expand All @@ -125,8 +124,7 @@ long responseTimeoutMillisForEachAttempt() {
*
* @return {@code this} to support method chaining.
*
* @see <a href="https://line.github.io/armeria/docs/client-retry#per-attempt-timeout">Per-attempt
* timeout</a>
* @see <a href="https://armeria.dev/docs/client-retry#per-attempt-timeout">Per-attempt timeout</a>
*/
public AbstractRetryingClientBuilder<O> responseTimeoutForEachAttempt(
Duration responseTimeoutForEachAttempt) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private static AsciiString toHeaderName(CharSequence name) {

/**
* Adds the property represented by the specified key pattern to the export list. Please refer to the
* <a href="https://line.github.io/armeria/docs/advanced-logging">Logging contextual information</a>
* <a href="https://armeria.dev/docs/advanced-logging">Logging contextual information</a>
* in order to learn how to specify a key pattern.
*/
public RequestContextExporterBuilder addKeyPattern(String keyPattern) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@
/**
* An {@link HttpService} which is defined by a {@link Path} or HTTP method annotations.
* This class is not supposed to be instantiated by a user. Please check out the documentation
* <a href="https://line.github.io/armeria/docs/server-annotated-service">
* Annotated HTTP Service</a> to use this.
* <a href="https://armeria.dev/docs/server-annotated-service">Annotated HTTP Service</a> to use this.
*/
public class AnnotatedService implements HttpService {
private static final Logger logger = LoggerFactory.getLogger(AnnotatedService.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@
/**
* Builds a list of {@link AnnotatedService}s from an {@link Object}.
* This class is not supposed to be used by a user. Please check out the documentation
* <a href="https://line.github.io/armeria/docs/server-annotated-service">
* Annotated HTTP Service</a> to use {@link AnnotatedService}.
* <a href="https://armeria.dev/docs/server-annotated-service">Annotated HTTP Service</a>
* to use {@link AnnotatedService}.
*/
public final class AnnotatedServiceFactory {
private static final Logger logger = LoggerFactory.getLogger(AnnotatedServiceFactory.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ abstract class AbstractBindingBuilder {

/**
* Sets the path pattern that an {@link HttpService} will be bound to.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -91,7 +91,7 @@ public AbstractBindingBuilder pathPrefix(String prefix) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#GET} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -104,7 +104,7 @@ public AbstractBindingBuilder get(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#POST} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -117,7 +117,7 @@ public AbstractBindingBuilder post(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#PUT} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -130,7 +130,7 @@ public AbstractBindingBuilder put(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#PATCH} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -143,7 +143,7 @@ public AbstractBindingBuilder patch(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#DELETE} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -156,7 +156,7 @@ public AbstractBindingBuilder delete(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#OPTIONS} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -169,7 +169,7 @@ public AbstractBindingBuilder options(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#HEAD} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -182,7 +182,7 @@ public AbstractBindingBuilder head(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#TRACE} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand All @@ -195,7 +195,7 @@ public AbstractBindingBuilder trace(String pathPattern) {
/**
* Sets the path pattern that an {@link HttpService} will be bound to, only supporting
* {@link HttpMethod#CONNECT} requests.
* Please refer to the <a href="https://line.github.io/armeria/docs/server-basics#path-patterns">Path patterns</a>
* Please refer to the <a href="https://armeria.dev/docs/server-basics#path-patterns">Path patterns</a>
* in order to learn how to specify a path pattern.
*
* @throws IllegalArgumentException if the specified path pattern is invalid
Expand Down
Loading

0 comments on commit a51a482

Please sign in to comment.