diff --git a/.forgejo/pr-commenter.yml b/.gitea/pr-commenter.yml similarity index 100% rename from .forgejo/pr-commenter.yml rename to .gitea/pr-commenter.yml diff --git a/.forgejo/workflows/jekyll.yaml b/.gitea/workflows/jekyll.yaml similarity index 64% rename from .forgejo/workflows/jekyll.yaml rename to .gitea/workflows/jekyll.yaml index 9ec32f6..dc24ffa 100644 --- a/.forgejo/workflows/jekyll.yaml +++ b/.gitea/workflows/jekyll.yaml @@ -8,9 +8,8 @@ on: env: _UID: 1000 _GID: 1000 - WEB_DOMAIN: tahoe-lafs.org - WEB_HOST: webforge.of.tahoe-lafs.org - WEB_USER: bot-www + WEB_DOMAIN: lafs.eval.latfa.net + WEB_USER: www WEB_DIR: /var/www jobs: jekyll: @@ -19,7 +18,6 @@ jobs: - name: Check out repository id: checkout uses: actions/checkout@v4 - github-server-url: 'https://forge.of.tahoe-lafs.org/' - name: Change file ownership id: file_ownership run: | @@ -46,10 +44,10 @@ jobs: - name: Build Jekyll site id: build_site run: | - # Overwrite the baseurl for preview only - if [ "${{ forge.event_name }}" = 'pull_request' ]; then - echo "Overwriting baseurl for pull_request ${{ forge.event.pull_request.number }}" - sed -i -r -e 's/^baseurl:\s*"([^"]*)"/baseurl: "\1\/${{ forge.event.pull_request.number }}"/' _config.yml + # Overwrite the baseurl for previewonly + if [ "${{ gitea.event_name }}" = 'pull_request' ]; then + echo "Overwriting baseurl for pull_request ${{ gitea.event.pull_request.number }}" + sed -i -r -e 's/^baseurl:\s*"([^"]*)"/baseurl: "\1\/${{ gitea.event.pull_request.number }}"/' _config.yml grep "^baseurl:" _config.yml fi docker-compose run --rm -v "${JOB_CONTAINER_NAME}:/site" -w /site \ @@ -57,18 +55,17 @@ jobs: - name: Deploy Jekyll site id: deploy_site run: | - if [ "${{ forge.ref }}" = 'refs/heads/main' ]; then - WEB_ROOT="${WEB_DIR}/live" - WEB_VHOST="home.of.${WEB_DOMAIN}" + if [ "${{ gitea.ref }}" = 'refs/heads/main' ]; then + WEB_ROOT="${WEB_DIR}/site" + WEB_HOST="www.${WEB_DOMAIN}" WEB_CONTEXT='/' else WEB_ROOT="${WEB_DIR}/preview" - WEB_VHOST="preview.of.${WEB_DOMAIN}" - WEB_CONTEXT='/${{ forge.event.pull_request.number }}/' + WEB_HOST="preview.${WEB_DOMAIN}" + WEB_CONTEXT='/${{ gitea.event.pull_request.number }}/' fi # Save those variabes in the environment for the next steps echo "WEB_HOST=${WEB_HOST}" >> $GITHUB_ENV - echo "WEB_VHOST=${WEB_VHOST}" >> $GITHUB_ENV echo "WEB_CONTEXT=${WEB_CONTEXT}" >> $GITHUB_ENV # Prepare ssh key echo "${{ secrets.WWW_DEPLOY_KEY }}" > ~/.ssh/id_ed25519 @@ -76,23 +73,23 @@ jobs: # Synchronize the local and the remote site rsync -halvi --delete \ -e "ssh -a -x -o StrictHostKeyChecking=no" \ - ./_site/ "${WEB_USER}@${WEB_HOST}:${WEB_ROOT}${WEB_CONTEXT}" + ./_site/ "${WEB_USER}@${WEB_DOMAIN}:${WEB_ROOT}${WEB_CONTEXT}" - name: Comment pull request id: comment_pull_request - if: ${{ always() && forge.event_name == 'pull_request' }} - uses: https://github.com/exercism/pr-commenter-action@v1.5.1 + if: ${{ always() && gitea.event_name == 'pull_request' }} + uses: exercism/pr-commenter-action@v1.5.1 with: template-variables: | { "imageOutcome": "${{ steps.build_image.outcome }}", "buildOutcome": "${{ steps.build_site.outcome }}", "deployOutcome": "${{ steps.deploy_site.outcome }}", - "deployWebHost": "${{ env.WEB_VHOST }}", + "deployWebHost": "${{ env.WEB_HOST }}", "deployWebContext": "${{ env.WEB_CONTEXT }}", - "gitActor": "${{ forge.actor }}", - "gitEventName": "${{ forge.event_name }}", - "gitWorkflow": "${{ forge.workflow }}", - "gitRunNumber": "${{ forge.run_number }}", - "gitRunAttempt": "${{ forge.run_attempt }}" + "gitActor": "${{ gitea.actor }}", + "gitEventName": "${{ gitea.event_name }}", + "gitWorkflow": "${{ gitea.workflow }}", + "gitRunNumber": "${{ gitea.run_number }}", + "gitRunAttempt": "${{ gitea.run_attempt }}" } - config-file: ".forgejo/pr-commenter.yml" + config-file: ".gitea/pr-commenter.yml" diff --git a/.forgejo/workflows/jekyll_cleanup.yml b/.gitea/workflows/jekyll_cleanup.yml similarity index 80% rename from .forgejo/workflows/jekyll_cleanup.yml rename to .gitea/workflows/jekyll_cleanup.yml index f3422e9..b69ad1f 100644 --- a/.forgejo/workflows/jekyll_cleanup.yml +++ b/.gitea/workflows/jekyll_cleanup.yml @@ -6,15 +6,15 @@ on: types: [ closed ] env: - WEB_HOST: webforge.of.tahoe-lafs.org - WEB_USER: bot-www + WEB_DOMAIN: lafs.eval.latfa.net + WEB_USER: www WEB_ROOT: /var/www/preview - WEB_CONTEXT: "/${{ forge.event.pull_request.number }}/" + WEB_CONTEXT: "/${{ gitea.event.pull_request.number }}/" jobs: jekyll_cleanup: runs-on: ubuntu-22.04 permissions: - pull-requests: read + pull-requests: write actions: read contents: read steps: @@ -32,4 +32,4 @@ jobs: chmod 600 ~/.ssh/id_ed25519 # Delete preview context from the remote site echo -e "set sftp:connect-program ssh -a -x -o StrictHostKeyChecking=no; rm -r -f ${WEB_ROOT}${WEB_CONTEXT}\nbye" \ - | lftp sftp://${WEB_USER}:unused@${WEB_HOST} + | lftp sftp://${WEB_USER}:unused@${WEB_DOMAIN} diff --git a/src/_data/navigation.yml b/src/_data/navigation.yml index de78894..e9d26a2 100644 --- a/src/_data/navigation.yml +++ b/src/_data/navigation.yml @@ -10,4 +10,4 @@ main: - title: "About" url: "#about" - title: "Fork me" - url: "https://forge.of.tahoe-lafs.org/tahoe-lafs/web-landing-page/" + url: "https://code.lafs.eval.latfa.net/tahoe-lafs/web-landing-page/" diff --git a/src/_posts/2024-12-19-release-v1.20.0.md b/src/_posts/2022-10-03-release-v1.18.0.md similarity index 51% rename from src/_posts/2024-12-19-release-v1.20.0.md rename to src/_posts/2022-10-03-release-v1.18.0.md index 3989888..19a42ec 100644 --- a/src/_posts/2024-12-19-release-v1.20.0.md +++ b/src/_posts/2022-10-03-release-v1.18.0.md @@ -1,12 +1,14 @@ --- layout: single -title: "v1.20.0 is released" -date: 2024-12-19 05:48:54 +0000 -excerpt: "ANNOUNCING Tahoe, the Least-Authority File Store, v1.20.0" +title: "v1.18.0 is released" +date: 2022-10-03 16:17:57 +0000 +excerpt: "ANNOUNCING Tahoe, the Least-Authority File Store, v1.18.0" header: teaser: /assets/images/posts/release.jpg --- -The Tahoe-LAFS team is pleased to announce version 1.20.0 of +ANNOUNCING Tahoe, the Least-Authority File Store, v1.18.0 + +The Tahoe-LAFS team is pleased to announce version 1.18.0 of Tahoe-LAFS, an extremely reliable decentralized storage system. Get it with "pip install tahoe-lafs", or download a tarball here: @@ -21,22 +23,15 @@ unique security and fault-tolerance properties: [https://tahoe-lafs.readthedocs.org/en/latest/about.html][about] -The previous stable release of Tahoe-LAFS was v1.19.0, released on -January 18, 2024. Major new features and changes in this release: +The previous stable release of Tahoe-LAFS was v1.17.1, released on +January 7, 2022. -Declarative build system based on "hatch". -The ability to creat mutable directories with a given private-key. - -Pulled in fixes from CBOR, stopped using the C version of CBOR and -fixed incompatibilities with attrs and cryptography libraries. - -Besides all this there have been dozens of other bug-fixes and -improvements. - -Enjoy! +This release drops support for Python 2 and for Python 3.6 and earlier. +twistd.pid is no longer used (in favour of one with pid + process creation time). +A collection of minor bugs and issues were also fixed. [Read the full announcement][more] [download]: https://tahoe-lafs.org/downloads [about]: https://tahoe-lafs.readthedocs.org/en/latest/about.html -[more]: https://lists.tahoe-lafs.org/pipermail/tahoe-dev/2024-December/010111.html +[more]: https://lists.tahoe-lafs.org/pipermail/tahoe-dev/2022-October/010043.html diff --git a/src/_posts/2025-08-13-new-landing-page.md b/src/_posts/2024-05-29-new-landing-page.md similarity index 59% rename from src/_posts/2025-08-13-new-landing-page.md rename to src/_posts/2024-05-29-new-landing-page.md index 8a923cd..b4bc1d8 100644 --- a/src/_posts/2025-08-13-new-landing-page.md +++ b/src/_posts/2024-05-29-new-landing-page.md @@ -1,7 +1,7 @@ --- layout: single title: "New landing page" -date: 2025-08-13 18:23:00 +0200 +date: 2024-05-29 21:47:57 +0200 excerpt: "The old Tahoe-LAFS landing page is gone!" header: teaser: /assets/images/posts/old-landing-page-teaser.png @@ -9,12 +9,14 @@ gallery: - image_path: /assets/images/posts/old-landing-page.png alt: "original" --- -We're happy to announce that the migration from the [trac][old] landing page (see below) to the [jekyll][new] one has been completed. +We're happy to announce that the migration of the [original][old] landing page to this one has been completed. Help us to contribute to it using this [repository][repo]. +Goodbye Trac... + {% include gallery %} [old]: https://tahoe-lafs.org/trac/tahoe-lafs/wiki/WikiStart -[new]: https://home.of.tahoe-lafs.org/ -[repo]: https://forge.of.tahoe-lafs.org/tahoe-lafs/web-landing-page/ +[new]: https://www.lafs.eval.latfa.net/ +[repo]: https://code.lafs.eval.latfa.net/tahoe-lafs/web-landing-page/ diff --git a/src/_sass/_custom.scss b/src/_sass/_custom.scss index fcb72d1..d9cd943 100644 --- a/src/_sass/_custom.scss +++ b/src/_sass/_custom.scss @@ -96,6 +96,13 @@ margin-bottom: auto; } +#contribute .feature__item { + @media (min-width: 37.5em) { + width: 45%; + margin-inline-start: 3.3%; + } +} + #blog { margin-top: 2em; background-color: #eee; diff --git a/src/assets/images/collaborations.svg b/src/assets/images/collaborations.svg new file mode 100644 index 0000000..c83f45c --- /dev/null +++ b/src/assets/images/collaborations.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/index.html b/src/index.html index ff89c36..745cc4d 100644 --- a/src/index.html +++ b/src/index.html @@ -40,23 +40,34 @@ documentation_list:

Frequently Asked Questions

contribute: - - title: "Contribute" - excerpt: "" + - title: "Get Involved" + excerpt: ' + Interested in learning more or wanting to contribute to Tahoe-LAFS?
+ There are various ways to get involved! + ' contribute_list: - image_path: /assets/images/discussions.svg alt: "discussions" title: "Discussions" excerpt: '' + - image_path: /assets/images/collaborations.svg + alt: "collaborations" + title: "Collaborations" + excerpt: >- + - image_path: /assets/images/issues.svg alt: "issues" title: "Issues" excerpt: '' - image_path: /assets/images/code.svg alt: "code" @@ -90,6 +101,7 @@ about: {% include feature_row id="contribute_list" %} +
{% include feature_row id="blog" type="center" %}