Skip to content

Commit

Permalink
Update repo name (#269)
Browse files Browse the repository at this point in the history
* Update repo name

* Update _config.yml

* Update tutorials.md

* Update pluginCard.html

* Update docs.md

* Update docs-past-5-6-x.md
  • Loading branch information
zugazagoitia committed May 28, 2024
1 parent 8c72fd9 commit 8a5617f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:
jobs:
# Build job
build:
if: github.repository == 'javalin/javalin.github.io'
if: github.repository == 'javalin/website'
runs-on: ubuntu-20.04
steps:
- name: Checkout
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

# Deployment job
deploy:
if: github.repository == 'javalin/javalin.github.io'
if: github.repository == 'javalin/website'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ javalinFourVersion: 4.6.7
javalinFiveVersion: 5.6.4
javalinversion: 6.1.3
slf4jversion: 2.0.11
repourl: https://github.com/javalin/javalin.github.io
repourl: https://github.com/javalin/website
description: Javalin - A lightweight Java and Kotlin web framework. Create REST APIs in Java or Kotlin easily.
baseurl: "" # the subpath of your site, e.g. /blog

Expand Down
6 changes: 3 additions & 3 deletions _includes/plugins/pluginCard.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ <h2>
</p>
<div class="plugin-box-footer">
<div class="plugin-reports">
<a class="view-reports" href="https://github.com/javalin/javalin.github.io/issues/{{ include.ratingIssueNr }}">View reports</a>
<a class="make-report" href="https://github.com/javalin/javalin.github.io/issues/{{ include.ratingIssueNr }}">Report plugin</a>
<a class="view-reports" href="https://github.com/javalin/website/issues/{{ include.ratingIssueNr }}">View reports</a>
<a class="make-report" href="https://github.com/javalin/website/issues/{{ include.ratingIssueNr }}">Report plugin</a>
</div>
{% assign first = include.docsUrl | slice: 0 %}
<a class="view-docs-btn" href="{{ include.docsUrl }}">
Expand All @@ -40,7 +40,7 @@ <h2>
<script>
(() => {
let pluginName = "{{include.title | slugify}}";
let issueUrl = "https://github.com/javalin/javalin.github.io/issues/{{ include.ratingIssueNr }}";
let issueUrl = "https://github.com/javalin/website/issues/{{ include.ratingIssueNr }}";
let apiUrl = issueUrl.replace("https://github.com/", "https://api.github.com/repos/");
setPluginReports(pluginName, apiUrl);
})();
Expand Down
2 changes: 1 addition & 1 deletion pages/docs/docs-past-5-6-x.md
Original file line number Diff line number Diff line change
Expand Up @@ -1575,7 +1575,7 @@ Different endpoints can have different rate limits. It works as follows:

### Android

Due to [Jetty 11 not working on Android](https://github.com/javalin/javalin.github.io/issues/211#issuecomment-1438319603), Javalin 5 is not compatible either, but Javalin 4 is. You can find the docs for Javalin 4 [here](/archive/docs/v4.6.X.html).
Due to [Jetty 11 not working on Android](https://github.com/javalin/website/issues/211#issuecomment-1438319603), Javalin 5 is not compatible either, but Javalin 4 is. You can find the docs for Javalin 4 [here](/archive/docs/v4.6.X.html).

You can check the status of Jetty 11 on Android [here](https://github.com/eclipse/jetty.project/issues/8912#issuecomment-1439716937).

Expand Down
2 changes: 1 addition & 1 deletion pages/docs/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -1542,7 +1542,7 @@ Different endpoints can have different rate limits. It works as follows:

### Android

Due to [Jetty 11 not working on Android](https://github.com/javalin/javalin.github.io/issues/211#issuecomment-1438319603),
Due to [Jetty 11 not working on Android](https://github.com/javalin/website/issues/211#issuecomment-1438319603),
Javalin 5+ is not compatible either, but Javalin 4 is.\\
You can find the docs for Javalin 4 [here](/archive/docs/v4.6.X.html).\\
You can check the status of Jetty 11+ on Android [here](https://github.com/eclipse/jetty.project/issues/8912#issuecomment-1439716937).
Expand Down
2 changes: 1 addition & 1 deletion pages/tutorials.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mainly focus on one core concept at the time, while the community tutorials are
<div class="notification">
These community tutorials are written by Javalin users and posted at their request and/or
with their permission. If you have have a tutorial you want to submit,
please create a pull request on <a href="https://github.com/javalin/javalin.github.io">GitHub</a>.
please create a pull request on <a href="https://github.com/javalin/website">GitHub</a>.
</div>
{% include macros/tutorialPost.html tutorials=communityTuts %}
</div>
Expand Down

0 comments on commit 8a5617f

Please sign in to comment.