Skip to content

Commit

Permalink
Merge pull request #6 from AKSW/develop
Browse files Browse the repository at this point in the history
- add registration and submission info
- upgrade dependencies and actions
- disable social cards (see 7398123)
  • Loading branch information
seebi authored Mar 28, 2024
2 parents 91a13cd + 7398123 commit 31b631e
Show file tree
Hide file tree
Showing 8 changed files with 588 additions and 502 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: "0"

- name: setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.11

- name: install task
uses: arduino/setup-task@v1
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -50,7 +50,7 @@ jobs:

- name: load environment cache
id: cached-poetry-dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: "0"

- name: setup python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.x
python-version: 3.11

- name: install task
uses: arduino/setup-task@v1
uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -47,7 +47,7 @@ jobs:

- name: load environment cache
id: cached-poetry-dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down
1 change: 1 addition & 0 deletions docs/.pages
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
nav:
- Home: index.md
- Registration: registration.md
- Call for Papers: call-for-papers.md
- Organizing Committee: organizing-committee.md
- Program Committee: program-committee.md
Expand Down
9 changes: 9 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ title: "D2R2’24: Third International Workshop on Linked Data-driven Resilience

## Latest News

!!! info "2024-03-28 - Submissions assigned to PC"

We received 9 paper submissions to the workshop which are now assigned to the [members of program committee](program-committee.md) for review.

!!! info "2024-03-27 - Early Registration Rates"

In order to attend the workshop, please [register to the ESWC2024](https://2024.eswc-conferences.org/registration/).
You will get the early registration rates until 2024-04-24.

!!! info "2024-03-18 - Clarification of Page Limitations"

Based on a question from a submitting researcher, we clarfied the submission page limits:
Expand Down
11 changes: 11 additions & 0 deletions docs/registration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Registration

Registration is done via the [ESWC2024 registration page](https://2024.eswc-conferences.org/registration/).
Make sure you select the **2 Days Workshops & Tutorials** addon to your ticket.

* Early registration rates: until 2024-04-24
* Regular registration rates: 2024-04-25 until 2024-05-21
* Late registration rates: 2024-05-22 onwards

We’re looking forward to meeting you in Crete!

6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ markdown_extensions:
# toc_depth: 4
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# }}}

Expand All @@ -182,8 +182,8 @@ plugins:
# https://github.com/blueswen/mkdocs-glightbox
- glightbox
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/
- social:
cards: true
# - social:
# cards: true
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-tags/
# https://github.com/timvink/mkdocs-git-revision-date-localized-plugin
- git-revision-date-localized:
Expand Down
1,016 changes: 541 additions & 475 deletions poetry.lock

Large diffs are not rendered by default.

27 changes: 13 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,19 @@ packages = [{include = "tools"}]


[tool.poetry.dependencies]
python = "^3.8"
Pillow = "^9.2.0"
CairoSVG = "^2.5.2"
mkdocs = "^1.4.2"
mike = "^1.1.2"
mkdocs-git-revision-date-localized-plugin = "^1.1.0"
mkdocs-awesome-pages-plugin = "^2.8.0"
mkdocs-glightbox = "^0.3.0"
mkdocs-macros-plugin = "^0.7.0"
mkdocs-autolinks-plugin = "^0.6.0"
mkdocs-redirects = "^1.2.0"
mkdocs-swagger-ui-tag = "^0.4.3"
mkdocs-material = "8.5.8"
pymdown-extensions = "^9.9"
python = "^3.11"
Pillow = "^10.2.0"
CairoSVG = "^2.7.1"
mkdocs = "^1.5.3"
mkdocs-git-revision-date-localized-plugin = "^1.2.4"
mkdocs-awesome-pages-plugin = "^2.9.2"
mkdocs-glightbox = "^0.3.7"
mkdocs-macros-plugin = "^1.0.5"
mkdocs-autolinks-plugin = "^0.7.1"
mkdocs-redirects = "^1.2.1"
mkdocs-swagger-ui-tag = "^0.6.9"
mkdocs-material = "9.5.15"
pymdown-extensions = "^10.7.1"

[tool.poetry.group.dev.dependencies]
linkcheckmd = "^1.4.0"
Expand Down

0 comments on commit 31b631e

Please sign in to comment.