mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-04 14:19:13 -04:00
Compare commits
No commits in common. "develop" and "1.8.9" have entirely different histories.
790 changed files with 67589 additions and 71820 deletions
|
@ -19,11 +19,7 @@ Dockerfile
|
||||||
.git/ORIG_HEAD
|
.git/ORIG_HEAD
|
||||||
.git/packed-refs
|
.git/packed-refs
|
||||||
.git/refs/remotes/
|
.git/refs/remotes/
|
||||||
.git/rr-cache/
|
|
||||||
.gitignore
|
.gitignore
|
||||||
|
|
||||||
settings.json
|
settings.json
|
||||||
src/node_modules
|
src/node_modules
|
||||||
admin/node_modules
|
|
||||||
ui/node_modules
|
|
||||||
node_modules
|
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
charset = utf-8
|
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
||||||
end_of_line = lf
|
|
||||||
# editorconfig-tools is unable to ignore longs strings or urls
|
|
||||||
max_line_length = off
|
|
||||||
|
|
||||||
[CHANGELOG.md]
|
|
||||||
indent_size = 4
|
|
||||||
|
|
||||||
[*.bat]
|
|
||||||
end_of_line = crlf
|
|
18
.env.default
18
.env.default
|
@ -1,18 +0,0 @@
|
||||||
# Please copy and rename this file.
|
|
||||||
#
|
|
||||||
# !Attention!
|
|
||||||
# Always ensure to load the env variables in every terminal session.
|
|
||||||
# Otherwise the env variables will not be available
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_APP_PORT_PUBLISHED=9001
|
|
||||||
DOCKER_COMPOSE_APP_PORT_TARGET=9001
|
|
||||||
|
|
||||||
# IMPORTANT: When the env var DEFAULT_PAD_TEXT is unset or empty, then the pad is not established (not the landing page).
|
|
||||||
# The env var DEFAULT_PAD_TEXT seems to be mandatory in the latest version of etherpad.
|
|
||||||
DOCKER_COMPOSE_APP_DEV_ENV_DEFAULT_PAD_TEXT="Welcome to etherpad"
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_APP_ADMIN_PASSWORD=
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_POSTGRES_DATABASE=db
|
|
||||||
DOCKER_COMPOSE_POSTGRES_PASSWORD=etherpad-lite-password
|
|
||||||
DOCKER_COMPOSE_POSTGRES_USER=etherpad-lite-user
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Please copy and rename this file.
|
|
||||||
#
|
|
||||||
# !Attention!
|
|
||||||
# Always ensure to load the env variables in every terminal session.
|
|
||||||
# Otherwise the env variables will not be available
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_APP_DEV_PORT_PUBLISHED=9001
|
|
||||||
DOCKER_COMPOSE_APP_DEV_PORT_TARGET=9001
|
|
||||||
|
|
||||||
# IMPORTANT: When the env var DEFAULT_PAD_TEXT is unset or empty, then the pad is not established (not the landing page).
|
|
||||||
# The env var DEFAULT_PAD_TEXT seems to be mandatory in the latest version of etherpad.
|
|
||||||
DOCKER_COMPOSE_APP_DEV_ENV_DEFAULT_PAD_TEXT="Welcome to etherpad"
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_APP_DEV_ADMIN_PASSWORD=
|
|
||||||
|
|
||||||
DOCKER_COMPOSE_POSTGRES_DEV_ENV_POSTGRES_DATABASE=db
|
|
||||||
DOCKER_COMPOSE_POSTGRES_DEV_ENV_POSTGRES_PASSWORD=etherpad-lite-password
|
|
||||||
DOCKER_COMPOSE_POSTGRES_DEV_ENV_POSTGRES_USER=etherpad-lite-user
|
|
1
.gitattributes
vendored
1
.gitattributes
vendored
|
@ -1 +0,0 @@
|
||||||
* text=auto eol=lf
|
|
9
.github/ISSUE_TEMPLATE/bug_report.md
vendored
9
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -7,8 +7,6 @@ assignees: ''
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<!-- IMPORTANT: Please disable plugins prior to posting a bug report. If you have a problem with a plugin please post on the plugin repository. Thanks! -->
|
|
||||||
|
|
||||||
**Describe the bug**
|
**Describe the bug**
|
||||||
A clear and concise description of what the bug is.
|
A clear and concise description of what the bug is.
|
||||||
|
|
||||||
|
@ -25,13 +23,6 @@ A clear and concise description of what you expected to happen.
|
||||||
**Screenshots**
|
**Screenshots**
|
||||||
If applicable, add screenshots to help explain your problem.
|
If applicable, add screenshots to help explain your problem.
|
||||||
|
|
||||||
**Server (please complete the following information):**
|
|
||||||
- Etherpad version:
|
|
||||||
- OS: [e.g., Ubuntu 20.04]
|
|
||||||
- Node.js version (`node --version`):
|
|
||||||
- npm version (`npm --version`):
|
|
||||||
- Is the server free of plugins:
|
|
||||||
|
|
||||||
**Desktop (please complete the following information):**
|
**Desktop (please complete the following information):**
|
||||||
- OS: [e.g. iOS]
|
- OS: [e.g. iOS]
|
||||||
- Browser [e.g. chrome, safari]
|
- Browser [e.g. chrome, safari]
|
||||||
|
|
32
.github/PULL_REQUEST_TEMPLATE.md
vendored
32
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -1,13 +1,29 @@
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
1. If you haven't already, please read https://github.com/ether/etherpad-lite/blob/master/CONTRIBUTING.md#pull-requests .
|
Some key notes before you open a PR:
|
||||||
2. Run all the tests, both front-end and back-end. (see https://github.com/ether/etherpad-lite/blob/master/CONTRIBUTING.md#testing)
|
|
||||||
3. Keep business logic and validation on the server-side.
|
|
||||||
4. Update documentation.
|
|
||||||
5. Write `fixes #XXXX` in your comment to auto-close an issue.
|
|
||||||
|
|
||||||
If you're making a big change, please explain what problem it solves:
|
1. Select which branch should this PR be merged in? By default, you should always merge to the develop branch.
|
||||||
- Explain the purpose of the change. When adding a way to do X, explain why it is important to be able to do X.
|
2. PR name follows [convention](http://karma-runner.github.io/4.0/dev/git-commit-msg.html)
|
||||||
- Show the current vs desired behavior with screenshots/GIFs.
|
3. All tests pass locally, UI and Unit tests
|
||||||
|
4. All business logic and validations must be on the server-side
|
||||||
|
5. Update necessary Documentation
|
||||||
|
6. Put `closes #XXXX` in your comment to auto-close the issue that your PR fixes
|
||||||
|
|
||||||
|
|
||||||
|
Also, if you're new here
|
||||||
|
|
||||||
|
- Contribution Guide => https://github.com/ether/etherpad-lite/blob/master/CONTRIBUTING.md
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
> Please provide enough information so that others can review your pull request:
|
||||||
|
|
||||||
|
<!-- You can skip this if you're fixing a typo or updating existing documentation -->
|
||||||
|
|
||||||
|
> Explain the **details** for making this change. What existing problem does the pull request solve?
|
||||||
|
|
||||||
|
<!-- Example: When "Adding a function to do X", explain why it is necessary to have a way to do X. -->
|
||||||
|
|
||||||
|
> Screenshots/GIFs
|
||||||
|
|
||||||
|
<!-- Add images/recordings to better visualize the change: expected/current behviour -->
|
||||||
|
|
20
.github/dependabot.yml
vendored
20
.github/dependabot.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
version: 2
|
|
||||||
updates:
|
|
||||||
# Maintain dependencies for GitHub Actions
|
|
||||||
- package-ecosystem: "github-actions"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
- package-ecosystem: "docker"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
- package-ecosystem: "npm"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "daily"
|
|
||||||
versioning-strategy: "increase"
|
|
||||||
open-pull-requests-limit: 30
|
|
||||||
groups:
|
|
||||||
dev-dependencies:
|
|
||||||
dependency-type: "development"
|
|
23
.github/stale.yml
vendored
Normal file
23
.github/stale.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Number of days of inactivity before an issue becomes stale
|
||||||
|
daysUntilStale: 60
|
||||||
|
# Number of days of inactivity before a stale issue is closed
|
||||||
|
daysUntilClose: 7
|
||||||
|
# Issues with these labels will never be considered stale
|
||||||
|
exemptLabels:
|
||||||
|
- pinned
|
||||||
|
- security
|
||||||
|
- Bug
|
||||||
|
- Serious Bug
|
||||||
|
- Minor bug
|
||||||
|
- Black hole bug
|
||||||
|
- Special case Bug
|
||||||
|
- Upstream bug
|
||||||
|
# Label to use when marking an issue as stale
|
||||||
|
staleLabel: wontfix
|
||||||
|
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||||
|
markComment: >
|
||||||
|
This issue has been automatically marked as stale because it has not had
|
||||||
|
recent activity. It will be closed if no further activity occurs. Thank you
|
||||||
|
for your contributions.
|
||||||
|
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||||
|
closeComment: false
|
345
.github/workflows/backend-tests.yml
vendored
345
.github/workflows/backend-tests.yml
vendored
|
@ -1,290 +1,87 @@
|
||||||
name: "Backend tests"
|
name: "Backend tests"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
withoutpluginsLinux:
|
withoutplugins:
|
||||||
# run on pushes to any branch
|
# run on pushes to any branch
|
||||||
# run on PRs from external forks
|
# run on PRs from external forks
|
||||||
if: |
|
if: |
|
||||||
(github.event_name != 'pull_request')
|
(github.event_name != 'pull_request')
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
name: Linux without plugins
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
node: [20, 22, 23]
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install libreoffice
|
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.5.0
|
|
||||||
with:
|
|
||||||
packages: libreoffice libreoffice-pdfimport
|
|
||||||
version: 1.0
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
- name: Install admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm install
|
|
||||||
- name: Build admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm build
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
run: pnpm test
|
|
||||||
- name: Run the new vitest tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm run test:vitest
|
|
||||||
|
|
||||||
withpluginsLinux:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 12
|
||||||
|
|
||||||
|
- name: Install libreoffice
|
||||||
|
run: |
|
||||||
|
sudo add-apt-repository -y ppa:libreoffice/ppa
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
|
||||||
|
|
||||||
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
|
run: src/bin/installDeps.sh
|
||||||
|
|
||||||
|
- name: Run the backend tests
|
||||||
|
run: cd src && npm test
|
||||||
|
|
||||||
|
withplugins:
|
||||||
# run on pushes to any branch
|
# run on pushes to any branch
|
||||||
# run on PRs from external forks
|
# run on PRs from external forks
|
||||||
if: |
|
if: |
|
||||||
(github.event_name != 'pull_request')
|
(github.event_name != 'pull_request')
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
name: Linux with Plugins
|
name: with Plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
node: [20, 22, 23]
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install libreoffice
|
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.5.0
|
|
||||||
with:
|
|
||||||
packages: libreoffice libreoffice-pdfimport
|
|
||||||
version: 1.0
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
- name: Install admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm install
|
|
||||||
- name: Build admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm build
|
|
||||||
-
|
|
||||||
name: Install Etherpad plugins
|
|
||||||
run: >
|
|
||||||
pnpm install --workspace-root
|
|
||||||
ep_align
|
|
||||||
ep_author_hover
|
|
||||||
ep_cursortrace
|
|
||||||
ep_font_size
|
|
||||||
ep_hash_auth
|
|
||||||
ep_headings2
|
|
||||||
ep_markdown
|
|
||||||
ep_readonly_guest
|
|
||||||
ep_set_title_on_pad
|
|
||||||
ep_spellcheck
|
|
||||||
ep_subscript_and_superscript
|
|
||||||
ep_table_of_contents
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
run: pnpm test
|
|
||||||
- name: Run the new vitest tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm run test:vitest
|
|
||||||
|
|
||||||
withoutpluginsWindows:
|
|
||||||
# run on pushes to any branch
|
|
||||||
# run on PRs from external forks
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: Windows without plugins
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installOnWindows.bat
|
|
||||||
- name: Install admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm install
|
|
||||||
- name: Build admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm build
|
|
||||||
-
|
|
||||||
name: Fix up the settings.json
|
|
||||||
run: |
|
|
||||||
powershell -Command "(gc settings.json.template) -replace '\"max\": 10', '\"max\": 10000' | Out-File -encoding ASCII settings.json.holder"
|
|
||||||
powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json"
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm test
|
|
||||||
- name: Run the new vitest tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm run test:vitest
|
|
||||||
|
|
||||||
withpluginsWindows:
|
|
||||||
# run on pushes to any branch
|
|
||||||
# run on PRs from external forks
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: Windows with Plugins
|
|
||||||
runs-on: windows-latest
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Checkout repository
|
uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
- uses: actions/setup-node@v2
|
||||||
uses: actions/setup-node@v4
|
with:
|
||||||
with:
|
node-version: 12
|
||||||
node-version: 22
|
|
||||||
- uses: pnpm/action-setup@v4
|
- name: Install libreoffice
|
||||||
name: Install pnpm
|
run: |
|
||||||
with:
|
sudo add-apt-repository -y ppa:libreoffice/ppa
|
||||||
version: 9.0.4
|
sudo apt update
|
||||||
run_install: false
|
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
- name: Install Etherpad plugins
|
||||||
run: |
|
run: >
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
npm install
|
||||||
- uses: actions/cache@v4
|
ep_align
|
||||||
name: Setup pnpm cache
|
ep_author_hover
|
||||||
with:
|
ep_cursortrace
|
||||||
path: ${{ env.STORE_PATH }}
|
ep_font_size
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
ep_hash_auth
|
||||||
restore-keys: |
|
ep_headings2
|
||||||
${{ runner.os }}-pnpm-store-
|
ep_image_upload
|
||||||
- name: Only install direct dependencies
|
ep_markdown
|
||||||
run: pnpm config set auto-install-peers false
|
ep_readonly_guest
|
||||||
- name: Install admin ui
|
ep_set_title_on_pad
|
||||||
working-directory: admin
|
ep_spellcheck
|
||||||
run: pnpm install
|
ep_subscript_and_superscript
|
||||||
- name: Build admin ui
|
ep_table_of_contents
|
||||||
working-directory: admin
|
|
||||||
run: pnpm build
|
# This must be run after installing the plugins, otherwise npm will try to
|
||||||
-
|
# hoist common dependencies by removing them from src/node_modules and
|
||||||
name: Install Etherpad plugins
|
# installing them in the top-level node_modules. As of v6.14.10, npm's hoist
|
||||||
# The --legacy-peer-deps flag is required to work around a bug in npm
|
# logic appears to be buggy, because it sometimes removes dependencies from
|
||||||
# v7: https://github.com/npm/cli/issues/2199
|
# src/node_modules but fails to add them to the top-level node_modules. Even
|
||||||
run: >
|
# if npm correctly hoists the dependencies, the hoisting seems to confuse
|
||||||
pnpm install --workspace-root
|
# tools such as `npm outdated`, `npm update`, and some ESLint rules.
|
||||||
ep_align
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
ep_author_hover
|
run: src/bin/installDeps.sh
|
||||||
ep_cursortrace
|
|
||||||
ep_font_size
|
- name: Run the backend tests
|
||||||
ep_hash_auth
|
run: cd src && npm test
|
||||||
ep_headings2
|
|
||||||
ep_markdown
|
|
||||||
ep_readonly_guest
|
|
||||||
ep_set_title_on_pad
|
|
||||||
ep_spellcheck
|
|
||||||
ep_subscript_and_superscript
|
|
||||||
ep_table_of_contents
|
|
||||||
# Etherpad core dependencies must be installed after installing the
|
|
||||||
# plugin's dependencies, otherwise npm will try to hoist common
|
|
||||||
# dependencies by removing them from src/node_modules and installing them
|
|
||||||
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
|
||||||
# to be buggy, because it sometimes removes dependencies from
|
|
||||||
# src/node_modules but fails to add them to the top-level node_modules.
|
|
||||||
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
||||||
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
||||||
# rules.
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installOnWindows.bat
|
|
||||||
-
|
|
||||||
name: Fix up the settings.json
|
|
||||||
run: |
|
|
||||||
powershell -Command "(gc settings.json.template) -replace '\"max\": 10', '\"max\": 10000' | Out-File -encoding ASCII settings.json.holder"
|
|
||||||
powershell -Command "(gc settings.json.holder) -replace '\"points\": 10', '\"points\": 1000' | Out-File -encoding ASCII settings.json"
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm test
|
|
||||||
- name: Run the new vitest tests
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm run test:vitest
|
|
||||||
|
|
70
.github/workflows/build-and-deploy-docs.yml
vendored
70
.github/workflows/build-and-deploy-docs.yml
vendored
|
@ -1,70 +0,0 @@
|
||||||
# Workflow for deploying static content to GitHub Pages
|
|
||||||
name: Deploy Docs to GitHub Pages
|
|
||||||
|
|
||||||
on:
|
|
||||||
# Runs on pushes targeting the default branch
|
|
||||||
push:
|
|
||||||
branches: ["develop"]
|
|
||||||
paths:
|
|
||||||
- doc/** # Only run workflow when changes are made to the doc directory
|
|
||||||
# Allows you to run this workflow manually from the Actions tab
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
packages: read
|
|
||||||
|
|
||||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
|
||||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
|
||||||
concurrency:
|
|
||||||
group: "pages"
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
# Single deploy job since we're just deploying
|
|
||||||
deploy:
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: Setup Pages
|
|
||||||
uses: actions/configure-pages@v5
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
- name: Install dependencies
|
|
||||||
run: pnpm install
|
|
||||||
- name: Build app
|
|
||||||
working-directory: doc
|
|
||||||
run: pnpm run docs:build
|
|
||||||
env:
|
|
||||||
COMMIT_REF: ${{ github.sha }}
|
|
||||||
- name: Upload artifact
|
|
||||||
uses: actions/upload-pages-artifact@v3
|
|
||||||
with:
|
|
||||||
# Upload entire repository
|
|
||||||
path: './doc/.vitepress/dist'
|
|
||||||
- name: Deploy to GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
68
.github/workflows/codeql-analysis.yml
vendored
68
.github/workflows/codeql-analysis.yml
vendored
|
@ -6,41 +6,49 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
# The branches below must be a subset of the branches above
|
# The branches below must be a subset of the branches above
|
||||||
branches: [develop]
|
branches: [develop]
|
||||||
paths-ignore:
|
|
||||||
- 'doc/**'
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 13 * * 1'
|
- cron: '0 13 * * 1'
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyze:
|
analyze:
|
||||||
permissions:
|
|
||||||
actions: read # for github/codeql-action/init to get workflow details
|
|
||||||
contents: read # for actions/checkout to fetch code
|
|
||||||
security-events: write # for github/codeql-action/autobuild to send a status report
|
|
||||||
name: Analyze
|
name: Analyze
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Checkout repository
|
uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
with:
|
||||||
with:
|
# We must fetch at least the immediate parents so that if this is
|
||||||
# We must fetch at least the immediate parents so that if this is
|
# a pull request then we can checkout the head.
|
||||||
# a pull request then we can checkout the head.
|
fetch-depth: 2
|
||||||
fetch-depth: 2
|
|
||||||
# If this run was triggered by a pull request event, then checkout
|
# If this run was triggered by a pull request event, then checkout
|
||||||
# the head of the pull request instead of the merge commit.
|
# the head of the pull request instead of the merge commit.
|
||||||
-
|
- run: git checkout HEAD^2
|
||||||
run: git checkout HEAD^2
|
if: ${{ github.event_name == 'pull_request' }}
|
||||||
if: ${{ github.event_name == 'pull_request' }}
|
|
||||||
-
|
# Initializes the CodeQL tools for scanning.
|
||||||
name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v3
|
uses: github/codeql-action/init@v1
|
||||||
-
|
# Override language selection by uncommenting this and choosing your languages
|
||||||
name: Autobuild
|
# with:
|
||||||
uses: github/codeql-action/autobuild@v3
|
# languages: go, javascript, csharp, python, cpp, java
|
||||||
-
|
|
||||||
name: Perform CodeQL Analysis
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
uses: github/codeql-action/analyze@v3
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
|
- name: Autobuild
|
||||||
|
uses: github/codeql-action/autobuild@v1
|
||||||
|
|
||||||
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
|
# 📚 https://git.io/JvXDl
|
||||||
|
|
||||||
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
||||||
|
# and modify them (or add more) to build your code if your project
|
||||||
|
# uses a compiled language
|
||||||
|
|
||||||
|
#- run: |
|
||||||
|
# make bootstrap
|
||||||
|
# make release
|
||||||
|
|
||||||
|
- name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v1
|
||||||
|
|
20
.github/workflows/dependency-review.yml
vendored
20
.github/workflows/dependency-review.yml
vendored
|
@ -1,20 +0,0 @@
|
||||||
# Dependency Review Action
|
|
||||||
#
|
|
||||||
# This Action will scan dependency manifest files that change as part of a Pull Reqest, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging.
|
|
||||||
#
|
|
||||||
# Source repository: https://github.com/actions/dependency-review-action
|
|
||||||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
|
|
||||||
name: 'Dependency Review'
|
|
||||||
on: [pull_request]
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
dependency-review:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: 'Checkout Repository'
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: 'Dependency Review'
|
|
||||||
uses: actions/dependency-review-action@v4
|
|
144
.github/workflows/docker.yml
vendored
144
.github/workflows/docker.yml
vendored
|
@ -1,144 +0,0 @@
|
||||||
name: Docker
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- 'doc/**'
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'develop'
|
|
||||||
paths-ignore:
|
|
||||||
- 'doc/**'
|
|
||||||
tags:
|
|
||||||
- 'v?[0-9]+.[0-9]+.[0-9]+'
|
|
||||||
env:
|
|
||||||
TEST_TAG: etherpad/etherpad:test
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
docker:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Check out
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
path: etherpad
|
|
||||||
|
|
||||||
-
|
|
||||||
name: Set up QEMU
|
|
||||||
if: github.event_name == 'push'
|
|
||||||
uses: docker/setup-qemu-action@v3
|
|
||||||
-
|
|
||||||
name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
-
|
|
||||||
name: Build and export to Docker
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: ./etherpad
|
|
||||||
target: production
|
|
||||||
load: true
|
|
||||||
tags: ${{ env.TEST_TAG }}
|
|
||||||
cache-from: type=gha
|
|
||||||
cache-to: type=gha,mode=max
|
|
||||||
-
|
|
||||||
name: Set up Node.js
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 'lts/*'
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
-
|
|
||||||
name: Test
|
|
||||||
working-directory: etherpad
|
|
||||||
run: |
|
|
||||||
docker run --rm -d -p 9001:9001 --name test ${{ env.TEST_TAG }}
|
|
||||||
./bin/installDeps.sh
|
|
||||||
docker logs -f test &
|
|
||||||
while true; do
|
|
||||||
echo "Waiting for Docker container to start..."
|
|
||||||
status=$(docker container inspect -f '{{.State.Health.Status}}' test) || exit 1
|
|
||||||
case ${status} in
|
|
||||||
healthy) break;;
|
|
||||||
starting) sleep 2;;
|
|
||||||
*) printf %s\\n "unexpected status: ${status}" >&2; exit 1;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
(cd src && pnpm run test-container)
|
|
||||||
git clean -dxf .
|
|
||||||
-
|
|
||||||
name: Docker meta
|
|
||||||
if: github.event_name == 'push'
|
|
||||||
id: meta
|
|
||||||
uses: docker/metadata-action@v5
|
|
||||||
with:
|
|
||||||
images: etherpad/etherpad
|
|
||||||
tags: |
|
|
||||||
type=ref,event=branch
|
|
||||||
type=semver,pattern={{version}}
|
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
|
||||||
type=semver,pattern={{major}}
|
|
||||||
-
|
|
||||||
name: Log in to Docker Hub
|
|
||||||
if: github.event_name == 'push'
|
|
||||||
uses: docker/login-action@v3
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
-
|
|
||||||
name: Build and push
|
|
||||||
id: build-docker
|
|
||||||
if: github.event_name == 'push'
|
|
||||||
uses: docker/build-push-action@v6
|
|
||||||
with:
|
|
||||||
context: ./etherpad
|
|
||||||
target: production
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
push: true
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
labels: ${{ steps.meta.outputs.labels }}
|
|
||||||
- name: Update repo description
|
|
||||||
uses: peter-evans/dockerhub-description@v4
|
|
||||||
if: github.ref == 'refs/heads/master'
|
|
||||||
with:
|
|
||||||
readme-filepath: ./etherpad/README.md
|
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
||||||
repository: etherpad/etherpad
|
|
||||||
enable-url-completion: true
|
|
||||||
- name: Check out
|
|
||||||
if: github.event_name == 'push' && github.ref == 'refs/heads/develop'
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
path: ether-charts
|
|
||||||
repository: ether/ether-charts
|
|
||||||
token: ${{ secrets.ETHER_CHART_TOKEN }}
|
|
||||||
- name: Update tag in values-dev.yaml
|
|
||||||
if: success() && github.ref == 'refs/heads/develop'
|
|
||||||
working-directory: ether-charts
|
|
||||||
run: |
|
|
||||||
sed -i 's/tag: ".*"/tag: "${{ steps.build-docker.outputs.digest }}"/' values-dev.yaml
|
|
||||||
- name: Commit and push changes
|
|
||||||
working-directory: ether-charts
|
|
||||||
if: success() && github.ref == 'refs/heads/develop'
|
|
||||||
run: |
|
|
||||||
git config --global user.name 'github-actions[bot]'
|
|
||||||
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
|
||||||
git add values-dev.yaml
|
|
||||||
git commit -m 'Update develop image tag'
|
|
||||||
git push
|
|
26
.github/workflows/dockerfile.yml
vendored
Normal file
26
.github/workflows/dockerfile.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: "Dockerfile"
|
||||||
|
|
||||||
|
# any branch is useful for testing before a PR is submitted
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dockerfile:
|
||||||
|
# run on pushes to any branch
|
||||||
|
# run on PRs from external forks
|
||||||
|
if: |
|
||||||
|
(github.event_name != 'pull_request')
|
||||||
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
|
name: build image and run connectivity test
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: docker build
|
||||||
|
run: |
|
||||||
|
docker build -t etherpad:test .
|
||||||
|
docker run -d -p 9001:9001 etherpad:test
|
||||||
|
./src/bin/installDeps.sh
|
||||||
|
sleep 3 # delay for startup?
|
||||||
|
cd src && npm run test-container
|
195
.github/workflows/frontend-admin-tests.yml
vendored
195
.github/workflows/frontend-admin-tests.yml
vendored
|
@ -1,153 +1,58 @@
|
||||||
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
name: "Frontend admin tests"
|
||||||
name: "Frontend admin tests powered by Sauce Labs"
|
|
||||||
|
|
||||||
on:
|
on: [push]
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read # to fetch code (actions/checkout)
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
withplugins:
|
withplugins:
|
||||||
name: with plugins
|
name: with plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
node: [20, 22, 23]
|
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Generate Sauce Labs strings
|
uses: actions/checkout@v2
|
||||||
id: sauce_strings
|
|
||||||
run: |
|
- uses: actions/setup-node@v2
|
||||||
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }} - Node ${{ matrix.node }}'
|
with:
|
||||||
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}-node${{ matrix.node }}'
|
node-version: 12
|
||||||
-
|
|
||||||
name: Checkout repository
|
- name: Run sauce-connect-action
|
||||||
uses: actions/checkout@v4
|
shell: bash
|
||||||
-
|
env:
|
||||||
uses: actions/setup-node@v4
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
with:
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
node-version: ${{ matrix.node }}
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
- uses: pnpm/action-setup@v4
|
run: src/tests/frontend/travis/sauce_tunnel.sh
|
||||||
name: Install pnpm
|
|
||||||
with:
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
version: 9.0.4
|
run: src/bin/installDeps.sh
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
# We intentionally install a much old ep_align version to test update minor versions
|
||||||
shell: bash
|
- name: Install etherpad plugins
|
||||||
run: |
|
run: npm install ep_align@0.2.27
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
# Nuke plugin tests
|
||||||
name: Setup pnpm cache
|
- name: Install etherpad plugins
|
||||||
with:
|
run: rm -Rf node_modules/ep_align/static/tests/*
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
- name: export GIT_HASH to env
|
||||||
restore-keys: |
|
id: environment
|
||||||
${{ runner.os }}-pnpm-store-
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
||||||
- name: Cache playwright binaries
|
|
||||||
uses: actions/cache@v4
|
- name: Write custom settings.json with loglevel WARN
|
||||||
id: playwright-cache
|
run: "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/' < settings.json.template > settings.json"
|
||||||
with:
|
|
||||||
path: |
|
- name: Write custom settings.json that enables the Admin UI tests
|
||||||
~/.cache/ms-playwright
|
run: "sed -i 's/\"enableAdminUITests\": false/\"enableAdminUITests\": true,\\n\"users\":{\"admin\":{\"password\":\"changeme\",\"is_admin\":true}}/' settings.json"
|
||||||
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
|
||||||
- name: Only install direct dependencies
|
- name: Remove standard frontend test files, so only admin tests are run
|
||||||
run: pnpm config set auto-install-peers false
|
run: mv src/tests/frontend/specs/* /tmp && mv /tmp/admin*.js src/tests/frontend/specs
|
||||||
#-
|
|
||||||
# name: Install etherpad plugins
|
- name: Run the frontend admin tests
|
||||||
# # We intentionally install an old ep_align version to test upgrades to
|
shell: bash
|
||||||
# # the minor version number. The --legacy-peer-deps flag is required to
|
env:
|
||||||
# # work around a bug in npm v7: https://github.com/npm/cli/issues/2199
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
# run: pnpm install --workspace-root ep_align@0.2.27
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
# Etherpad core dependencies must be installed after installing the
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
# plugin's dependencies, otherwise npm will try to hoist common
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
||||||
# dependencies by removing them from src/node_modules and installing them
|
run: |
|
||||||
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
src/tests/frontend/travis/adminrunner.sh
|
||||||
# to be buggy, because it sometimes removes dependencies from
|
|
||||||
# src/node_modules but fails to add them to the top-level node_modules.
|
|
||||||
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
||||||
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
||||||
# rules.
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: pnpm i
|
|
||||||
#-
|
|
||||||
# name: Install etherpad plugins
|
|
||||||
# run: rm -Rf node_modules/ep_align/static/tests/*
|
|
||||||
-
|
|
||||||
name: export GIT_HASH to env
|
|
||||||
id: environment
|
|
||||||
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
||||||
-
|
|
||||||
name: Create settings.json
|
|
||||||
run: cp settings.json.template settings.json
|
|
||||||
-
|
|
||||||
name: Write custom settings.json that enables the Admin UI tests
|
|
||||||
run: "sed -i 's/\"enableAdminUITests\": false/\"enableAdminUITests\": true,\\n\"users\":{\"admin\":{\"password\":\"changeme1\",\"is_admin\":true}}/' settings.json"
|
|
||||||
-
|
|
||||||
name: increase maxHttpBufferSize
|
|
||||||
run: "sed -i 's/\"maxHttpBufferSize\": 50000/\"maxHttpBufferSize\": 10000000/' settings.json"
|
|
||||||
-
|
|
||||||
name: Disable import/export rate limiting
|
|
||||||
run: |
|
|
||||||
sed -e '/^ *"importExportRateLimiting":/,/^ *\}/ s/"max":.*/"max": 100000000/' -i settings.json
|
|
||||||
- name: Build admin frontend
|
|
||||||
working-directory: admin
|
|
||||||
run: |
|
|
||||||
pnpm run build
|
|
||||||
# name: Run the frontend admin tests
|
|
||||||
# shell: bash
|
|
||||||
# env:
|
|
||||||
# SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
||||||
# SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
||||||
# SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
||||||
# TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
||||||
# GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
||||||
# run: |
|
|
||||||
# src/tests/frontend/travis/adminrunner.sh
|
|
||||||
#-
|
|
||||||
# uses: saucelabs/sauce-connect-action@v2.3.6
|
|
||||||
# with:
|
|
||||||
# username: ${{ secrets.SAUCE_USERNAME }}
|
|
||||||
# accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
||||||
# tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
||||||
#-
|
|
||||||
# name: Run the frontend admin tests
|
|
||||||
# shell: bash
|
|
||||||
# env:
|
|
||||||
# SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
||||||
# SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
||||||
# SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
||||||
# TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
||||||
# GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
||||||
# run: |
|
|
||||||
# src/tests/frontend/travis/adminrunner.sh
|
|
||||||
- name: Run the frontend admin tests
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
pnpm run prod &
|
|
||||||
connected=false
|
|
||||||
can_connect() {
|
|
||||||
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
|
||||||
connected=true
|
|
||||||
}
|
|
||||||
now() { date +%s; }
|
|
||||||
start=$(now)
|
|
||||||
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
cd src
|
|
||||||
pnpm exec playwright install
|
|
||||||
pnpm exec playwright install-deps
|
|
||||||
pnpm run test-admin
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report-${{ matrix.node }}
|
|
||||||
path: src/playwright-report/
|
|
||||||
retention-days: 30
|
|
||||||
|
|
335
.github/workflows/frontend-tests.yml
vendored
335
.github/workflows/frontend-tests.yml
vendored
|
@ -1,238 +1,115 @@
|
||||||
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
name: "Frontend tests"
|
||||||
name: "Frontend tests powered by Sauce Labs"
|
|
||||||
|
|
||||||
on:
|
on: [push]
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- 'doc/**'
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read # to fetch code (actions/checkout)
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
playwright-chrome:
|
withoutplugins:
|
||||||
name: Playwright Chrome
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Generate Sauce Labs strings
|
|
||||||
id: sauce_strings
|
|
||||||
run: |
|
|
||||||
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
|
||||||
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
|
||||||
name: export GIT_HASH to env
|
|
||||||
id: environment
|
|
||||||
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
||||||
-
|
|
||||||
name: Create settings.json
|
|
||||||
run: cp ./src/tests/settings.json settings.json
|
|
||||||
- name: Cache playwright binaries
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: playwright-cache
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cache/ms-playwright
|
|
||||||
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
|
||||||
- name: Run the frontend tests
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
pnpm run prod &
|
|
||||||
connected=false
|
|
||||||
can_connect() {
|
|
||||||
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
|
||||||
connected=true
|
|
||||||
}
|
|
||||||
now() { date +%s; }
|
|
||||||
start=$(now)
|
|
||||||
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
cd src
|
|
||||||
pnpm exec playwright install chromium --with-deps
|
|
||||||
pnpm run test-ui --project=chromium
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report-${{ matrix.node }}-chrome
|
|
||||||
path: src/playwright-report/
|
|
||||||
retention-days: 30
|
|
||||||
playwright-firefox:
|
|
||||||
name: Playwright Firefox
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Generate Sauce Labs strings
|
|
||||||
id: sauce_strings
|
|
||||||
run: |
|
|
||||||
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
|
||||||
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
- name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
- name: export GIT_HASH to env
|
|
||||||
id: environment
|
|
||||||
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
||||||
- name: Create settings.json
|
|
||||||
run: cp ./src/tests/settings.json settings.json
|
|
||||||
- name: Cache playwright binaries
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: playwright-cache
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cache/ms-playwright
|
|
||||||
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
|
||||||
- name: Run the frontend tests
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
pnpm run prod &
|
|
||||||
connected=false
|
|
||||||
can_connect() {
|
|
||||||
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
|
||||||
connected=true
|
|
||||||
}
|
|
||||||
now() { date +%s; }
|
|
||||||
start=$(now)
|
|
||||||
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
cd src
|
|
||||||
pnpm exec playwright install firefox --with-deps
|
|
||||||
pnpm run test-ui --project=firefox
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report-${{ matrix.node }}-firefox
|
|
||||||
path: src/playwright-report/
|
|
||||||
retention-days: 30
|
|
||||||
playwright-webkit:
|
|
||||||
name: Playwright Webkit
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Generate Sauce Labs strings
|
uses: actions/checkout@v2
|
||||||
id: sauce_strings
|
|
||||||
run: |
|
|
||||||
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
|
||||||
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
- name: Cache playwright binaries
|
|
||||||
uses: actions/cache@v4
|
|
||||||
id: playwright-cache
|
|
||||||
with:
|
|
||||||
path: |
|
|
||||||
~/.cache/ms-playwright
|
|
||||||
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
|
||||||
name: export GIT_HASH to env
|
|
||||||
id: environment
|
|
||||||
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
|
||||||
-
|
|
||||||
name: Create settings.json
|
|
||||||
run: cp ./src/tests/settings.json settings.json
|
|
||||||
- name: Run the frontend tests
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
pnpm run prod &
|
|
||||||
connected=false
|
|
||||||
can_connect() {
|
|
||||||
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
|
||||||
connected=true
|
|
||||||
}
|
|
||||||
now() { date +%s; }
|
|
||||||
start=$(now)
|
|
||||||
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
|
||||||
sleep 1
|
|
||||||
done
|
|
||||||
cd src
|
|
||||||
pnpm exec playwright install webkit --with-deps
|
|
||||||
pnpm run test-ui --project=webkit || true
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
if: always()
|
|
||||||
with:
|
|
||||||
name: playwright-report-${{ matrix.node }}-webkit
|
|
||||||
path: src/playwright-report/
|
|
||||||
retention-days: 30
|
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 12
|
||||||
|
|
||||||
|
- name: Run sauce-connect-action
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
|
run: src/tests/frontend/travis/sauce_tunnel.sh
|
||||||
|
|
||||||
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
|
run: src/bin/installDeps.sh
|
||||||
|
|
||||||
|
- name: export GIT_HASH to env
|
||||||
|
id: environment
|
||||||
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
||||||
|
|
||||||
|
- name: Write custom settings.json with loglevel WARN
|
||||||
|
run: "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/' < settings.json.template > settings.json"
|
||||||
|
|
||||||
|
- name: Run the frontend tests
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
||||||
|
run: |
|
||||||
|
src/tests/frontend/travis/runner.sh
|
||||||
|
|
||||||
|
withplugins:
|
||||||
|
name: with plugins
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 12
|
||||||
|
|
||||||
|
- name: Run sauce-connect-action
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
|
run: src/tests/frontend/travis/sauce_tunnel.sh
|
||||||
|
|
||||||
|
- name: Install Etherpad plugins
|
||||||
|
run: >
|
||||||
|
npm install
|
||||||
|
ep_align
|
||||||
|
ep_author_hover
|
||||||
|
ep_cursortrace
|
||||||
|
ep_font_size
|
||||||
|
ep_hash_auth
|
||||||
|
ep_headings2
|
||||||
|
ep_image_upload
|
||||||
|
ep_markdown
|
||||||
|
ep_readonly_guest
|
||||||
|
ep_set_title_on_pad
|
||||||
|
ep_spellcheck
|
||||||
|
ep_subscript_and_superscript
|
||||||
|
ep_table_of_contents
|
||||||
|
|
||||||
|
# This must be run after installing the plugins, otherwise npm will try to
|
||||||
|
# hoist common dependencies by removing them from src/node_modules and
|
||||||
|
# installing them in the top-level node_modules. As of v6.14.10, npm's hoist
|
||||||
|
# logic appears to be buggy, because it sometimes removes dependencies from
|
||||||
|
# src/node_modules but fails to add them to the top-level node_modules. Even
|
||||||
|
# if npm correctly hoists the dependencies, the hoisting seems to confuse
|
||||||
|
# tools such as `npm outdated`, `npm update`, and some ESLint rules.
|
||||||
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
|
run: src/bin/installDeps.sh
|
||||||
|
|
||||||
|
- name: export GIT_HASH to env
|
||||||
|
id: environment
|
||||||
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
||||||
|
|
||||||
|
- name: Write custom settings.json with loglevel WARN
|
||||||
|
run: "sed 's/\"loglevel\": \"INFO\",/\"loglevel\": \"WARN\",/' < settings.json.template > settings.json"
|
||||||
|
|
||||||
|
- name: Write custom settings.json that enables the Admin UI tests
|
||||||
|
run: "sed -i 's/\"enableAdminUITests\": false/\"enableAdminUITests\": true,\\n\"users\":{\"admin\":{\"password\":\"changeme\",\"is_admin\":true}}/' settings.json"
|
||||||
|
|
||||||
|
# XXX we should probably run all tests, because plugins could effect their results
|
||||||
|
- name: Remove standard frontend test files, so only plugin tests are run
|
||||||
|
run: rm src/tests/frontend/specs/*
|
||||||
|
|
||||||
|
- name: Run the frontend tests
|
||||||
|
shell: bash
|
||||||
|
env:
|
||||||
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
||||||
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
||||||
|
TRAVIS_JOB_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}
|
||||||
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
||||||
|
run: |
|
||||||
|
src/tests/frontend/travis/runner.sh
|
||||||
|
|
28
.github/workflows/lint-package-lock.yml
vendored
Normal file
28
.github/workflows/lint-package-lock.yml
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
name: "Lint"
|
||||||
|
|
||||||
|
# any branch is useful for testing before a PR is submitted
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint-package-lock:
|
||||||
|
# run on pushes to any branch
|
||||||
|
# run on PRs from external forks
|
||||||
|
if: |
|
||||||
|
(github.event_name != 'pull_request')
|
||||||
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
|
name: package-lock.json
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: 12
|
||||||
|
|
||||||
|
- name: Install lockfile-lint
|
||||||
|
run: npm install lockfile-lint
|
||||||
|
|
||||||
|
- name: Run lockfile-lint on package-lock.json
|
||||||
|
run: npx lockfile-lint --path src/package-lock.json --validate-https --allowed-hosts npm
|
212
.github/workflows/load-test.yml
vendored
212
.github/workflows/load-test.yml
vendored
|
@ -1,173 +1,81 @@
|
||||||
name: "Loadtest"
|
name: "Loadtest"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
withoutplugins:
|
withoutplugins:
|
||||||
# run on pushes to any branch
|
# run on pushes to any branch
|
||||||
# run on PRs from external forks
|
# run on PRs from external forks
|
||||||
if: |
|
if: |
|
||||||
(github.event_name != 'pull_request')
|
(github.event_name != 'pull_request')
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
name: without plugins
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Checkout repository
|
uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
- uses: actions/setup-node@v2
|
||||||
uses: actions/setup-node@v4
|
with:
|
||||||
with:
|
node-version: 12
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
name: Install pnpm
|
run: src/bin/installDeps.sh
|
||||||
with:
|
|
||||||
version: 9.0.4
|
- name: Install etherpad-load-test
|
||||||
run_install: false
|
run: sudo npm install -g etherpad-load-test
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
- name: Run load test
|
||||||
run: |
|
run: src/tests/frontend/travis/runnerLoadTest.sh
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
|
||||||
name: Install etherpad-load-test
|
|
||||||
run: sudo npm install -g etherpad-load-test-socket-io
|
|
||||||
-
|
|
||||||
name: Run load test
|
|
||||||
run: src/tests/frontend/travis/runnerLoadTest.sh 25 50
|
|
||||||
|
|
||||||
withplugins:
|
withplugins:
|
||||||
# run on pushes to any branch
|
# run on pushes to any branch
|
||||||
# run on PRs from external forks
|
# run on PRs from external forks
|
||||||
if: |
|
if: |
|
||||||
(github.event_name != 'pull_request')
|
(github.event_name != 'pull_request')
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
name: with Plugins
|
name: with Plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install etherpad-load-test
|
|
||||||
run: pnpm install -g etherpad-load-test-socket-io
|
|
||||||
-
|
|
||||||
name: Install etherpad plugins
|
|
||||||
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
||||||
# https://github.com/npm/cli/issues/2199
|
|
||||||
run: >
|
|
||||||
pnpm install --workspace-root
|
|
||||||
ep_align
|
|
||||||
ep_author_hover
|
|
||||||
ep_cursortrace
|
|
||||||
ep_font_size
|
|
||||||
ep_hash_auth
|
|
||||||
ep_headings2
|
|
||||||
ep_markdown
|
|
||||||
ep_readonly_guest
|
|
||||||
ep_set_title_on_pad
|
|
||||||
ep_spellcheck
|
|
||||||
ep_subscript_and_superscript
|
|
||||||
ep_table_of_contents
|
|
||||||
# Etherpad core dependencies must be installed after installing the
|
|
||||||
# plugin's dependencies, otherwise npm will try to hoist common
|
|
||||||
# dependencies by removing them from src/node_modules and installing them
|
|
||||||
# in the top-level node_modules. As of v6.14.10, npm's hoist logic appears
|
|
||||||
# to be buggy, because it sometimes removes dependencies from
|
|
||||||
# src/node_modules but fails to add them to the top-level node_modules.
|
|
||||||
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
||||||
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
||||||
# rules.
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
|
||||||
name: Run load test
|
|
||||||
run: src/tests/frontend/travis/runnerLoadTest.sh 25 50
|
|
||||||
|
|
||||||
long:
|
|
||||||
# run on pushes to any branch
|
|
||||||
# run on PRs from external forks
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: long running
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Checkout repository
|
uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
- uses: actions/setup-node@v2
|
||||||
uses: actions/setup-node@v4
|
with:
|
||||||
with:
|
node-version: 12
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
- name: Install etherpad-load-test
|
||||||
name: Install pnpm
|
run: sudo npm install -g etherpad-load-test
|
||||||
with:
|
|
||||||
version: 9.0.4
|
- name: Install etherpad plugins
|
||||||
run_install: false
|
run: >
|
||||||
- name: Get pnpm store directory
|
npm install
|
||||||
shell: bash
|
ep_align
|
||||||
run: |
|
ep_author_hover
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
ep_cursortrace
|
||||||
- uses: actions/cache@v4
|
ep_font_size
|
||||||
name: Setup pnpm cache
|
ep_hash_auth
|
||||||
with:
|
ep_headings2
|
||||||
path: ${{ env.STORE_PATH }}
|
ep_markdown
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
ep_readonly_guest
|
||||||
restore-keys: |
|
ep_set_title_on_pad
|
||||||
${{ runner.os }}-pnpm-store-
|
ep_spellcheck
|
||||||
- name: Only install direct dependencies
|
ep_subscript_and_superscript
|
||||||
run: pnpm config set auto-install-peers false
|
ep_table_of_contents
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
# This must be run after installing the plugins, otherwise npm will try to
|
||||||
run: bin/installDeps.sh
|
# hoist common dependencies by removing them from src/node_modules and
|
||||||
-
|
# installing them in the top-level node_modules. As of v6.14.10, npm's hoist
|
||||||
name: Install etherpad-load-test
|
# logic appears to be buggy, because it sometimes removes dependencies from
|
||||||
run: sudo npm install -g etherpad-load-test-socket-io
|
# src/node_modules but fails to add them to the top-level node_modules. Even
|
||||||
-
|
# if npm correctly hoists the dependencies, the hoisting seems to confuse
|
||||||
name: Run load test
|
# tools such as `npm outdated`, `npm update`, and some ESLint rules.
|
||||||
run: src/tests/frontend/travis/runnerLoadTest.sh 5000 5
|
- name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
|
run: src/bin/installDeps.sh
|
||||||
|
|
||||||
|
# configures some settings and runs npm run test
|
||||||
|
- name: Run load test
|
||||||
|
run: src/tests/frontend/travis/runnerLoadTest.sh
|
||||||
|
|
52
.github/workflows/perform-type-check.yml
vendored
52
.github/workflows/perform-type-check.yml
vendored
|
@ -1,52 +0,0 @@
|
||||||
name: "Perform type checks"
|
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
performTypeCheck:
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: perform type check
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: ./bin/installDeps.sh
|
|
||||||
- name: Perform type check
|
|
||||||
working-directory: ./src
|
|
||||||
run: npm run ts-check
|
|
88
.github/workflows/rate-limit.yml
vendored
88
.github/workflows/rate-limit.yml
vendored
|
@ -1,71 +1,43 @@
|
||||||
name: "rate limit"
|
name: "rate limit"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on:
|
on: [push, pull_request]
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ratelimit:
|
ratelimit:
|
||||||
# run on pushes to any branch
|
# run on pushes to any branch
|
||||||
# run on PRs from external forks
|
# run on PRs from external forks
|
||||||
if: |
|
if: |
|
||||||
(github.event_name != 'pull_request')
|
(github.event_name != 'pull_request')
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
||||||
name: test
|
name: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
- name: Checkout repository
|
||||||
name: Checkout repository
|
uses: actions/checkout@v2
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 20
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
|
|
||||||
-
|
- uses: actions/setup-node@v2
|
||||||
name: docker network
|
with:
|
||||||
run: docker network create --subnet=172.23.0.0/16 ep_net
|
node-version: 12
|
||||||
-
|
|
||||||
name: build docker image
|
- name: docker network
|
||||||
run: |
|
run: docker network create --subnet=172.23.42.0/16 ep_net
|
||||||
docker build -f Dockerfile -t epl-debian-slim --build-arg NODE_ENV=develop .
|
|
||||||
docker build -f src/tests/ratelimit/Dockerfile.nginx -t nginx-latest .
|
- name: build docker image
|
||||||
docker build -f src/tests/ratelimit/Dockerfile.anotherip -t anotherip .
|
run: |
|
||||||
-
|
docker build -f Dockerfile -t epl-debian-slim .
|
||||||
name: run docker images
|
docker build -f src/tests/ratelimit/Dockerfile.nginx -t nginx-latest .
|
||||||
run: |
|
docker build -f src/tests/ratelimit/Dockerfile.anotherip -t anotherip .
|
||||||
docker run --name etherpad-docker -p 9000:9001 --rm --network ep_net --ip 172.23.42.2 -e 'TRUST_PROXY=true' epl-debian-slim &
|
- name: run docker images
|
||||||
docker run -p 8081:80 --rm --network ep_net --ip 172.23.42.1 -d nginx-latest
|
run: |
|
||||||
docker run --rm --network ep_net --ip 172.23.42.3 --name anotherip -dt anotherip
|
docker run --name etherpad-docker -p 9000:9001 --rm --network ep_net --ip 172.23.42.2 -e 'TRUST_PROXY=true' epl-debian-slim &
|
||||||
-
|
docker run -p 8081:80 --rm --network ep_net --ip 172.23.42.1 -d nginx-latest
|
||||||
name: install dependencies and create symlink for ep_etherpad-lite
|
docker run --rm --network ep_net --ip 172.23.42.3 --name anotherip -dt anotherip
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
- name: install dependencies and create symlink for ep_etherpad-lite
|
||||||
name: run rate limit test
|
run: src/bin/installDeps.sh
|
||||||
run: |
|
|
||||||
cd src/tests/ratelimit
|
- name: run rate limit test
|
||||||
./testlimits.sh
|
run: |
|
||||||
|
cd src/tests/ratelimit
|
||||||
|
./testlimits.sh
|
||||||
|
|
18
.github/workflows/stale.yml
vendored
18
.github/workflows/stale.yml
vendored
|
@ -1,18 +0,0 @@
|
||||||
name: 'Close stale issues and PRs'
|
|
||||||
on:
|
|
||||||
schedule:
|
|
||||||
- cron: '30 6 * * *'
|
|
||||||
permissions:
|
|
||||||
issues: write
|
|
||||||
pull-requests: write
|
|
||||||
jobs:
|
|
||||||
stale:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/stale@v9
|
|
||||||
with:
|
|
||||||
close-issue-label: wontfix
|
|
||||||
close-pr-label: wontfix
|
|
||||||
days-before-close: -1
|
|
||||||
exempt-issue-labels: 'pinned,security,Bug,Serious Bug,Minor bug,Black hole bug,Special case Bug,Upstream bug,Feature Request'
|
|
||||||
exempt-pr-labels: 'pinned,security,Bug,Serious Bug,Minor bug,Black hole bug,Special case Bug,Upstream bug,Feature Request'
|
|
116
.github/workflows/upgrade-from-latest-release.yml
vendored
116
.github/workflows/upgrade-from-latest-release.yml
vendored
|
@ -1,116 +0,0 @@
|
||||||
name: "Upgrade from latest release"
|
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
withpluginsLinux:
|
|
||||||
# run on pushes to any branch
|
|
||||||
# run on PRs from external forks
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: Linux with Plugins
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
node: [20, 22, 23]
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Check out latest release
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: develop #FIXME change to master when doing release
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: ${{ matrix.node }}
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
- name: Install libreoffice
|
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.5.0
|
|
||||||
with:
|
|
||||||
packages: libreoffice libreoffice-pdfimport
|
|
||||||
version: 1.0
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install libreoffice
|
|
||||||
uses: awalsh128/cache-apt-pkgs-action@v1.5.0
|
|
||||||
with:
|
|
||||||
packages: libreoffice libreoffice-pdfimport
|
|
||||||
version: 1.0
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
- name: Install admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm install
|
|
||||||
- name: Build admin ui
|
|
||||||
working-directory: admin
|
|
||||||
run: pnpm build
|
|
||||||
-
|
|
||||||
name: Install Etherpad plugins
|
|
||||||
run: >
|
|
||||||
pnpm run install-plugins
|
|
||||||
ep_align
|
|
||||||
ep_author_hover
|
|
||||||
ep_cursortrace
|
|
||||||
ep_font_size
|
|
||||||
ep_hash_auth
|
|
||||||
ep_headings2
|
|
||||||
ep_markdown
|
|
||||||
ep_readonly_guest
|
|
||||||
ep_set_title_on_pad
|
|
||||||
ep_spellcheck
|
|
||||||
ep_subscript_and_superscript
|
|
||||||
ep_table_of_contents
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
run: pnpm run test
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
run: ./bin/installDeps.sh
|
|
||||||
# Because actions/checkout@v4 is called with "ref: master" and without
|
|
||||||
# "fetch-depth: 0", the local clone does not have the ${GITHUB_SHA}
|
|
||||||
# commit. Fetch ${GITHUB_REF} to get the ${GITHUB_SHA} commit. Note that a
|
|
||||||
# plain "git fetch" only fetches "normal" references (refs/heads/* and
|
|
||||||
# refs/tags/*), and for pull requests none of the normal references
|
|
||||||
# include ${GITHUB_SHA}, so we have to explicitly tell Git to fetch
|
|
||||||
# ${GITHUB_REF}.
|
|
||||||
-
|
|
||||||
name: Fetch the new Git commits
|
|
||||||
run: git fetch --depth=1 origin "${GITHUB_REF}"
|
|
||||||
-
|
|
||||||
name: Upgrade to the new Git revision
|
|
||||||
# For pull requests, ${GITHUB_SHA} is the automatically generated merge
|
|
||||||
# commit that merges the PR's source branch to its destination branch.
|
|
||||||
run: git checkout "${GITHUB_SHA}"
|
|
||||||
- name: Run the backend tests
|
|
||||||
run: pnpm run test
|
|
86
.github/workflows/windows.yml
vendored
86
.github/workflows/windows.yml
vendored
|
@ -1,86 +0,0 @@
|
||||||
name: "Windows Build"
|
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
pull_request:
|
|
||||||
paths-ignore:
|
|
||||||
- "doc/**"
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-zip:
|
|
||||||
permissions: write-all
|
|
||||||
# run on pushes to any branch
|
|
||||||
# run on PRs from external forks
|
|
||||||
if: |
|
|
||||||
(github.event_name != 'pull_request')
|
|
||||||
|| (github.event.pull_request.head.repo.id != github.event.pull_request.base.repo.id)
|
|
||||||
name: Build .zip
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
uses: msys2/setup-msys2@v2
|
|
||||||
with:
|
|
||||||
path-type: inherit
|
|
||||||
install: >-
|
|
||||||
zip
|
|
||||||
-
|
|
||||||
name: Checkout repository
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
-
|
|
||||||
uses: actions/setup-node@v4
|
|
||||||
with:
|
|
||||||
node-version: 22
|
|
||||||
- uses: pnpm/action-setup@v4
|
|
||||||
name: Install pnpm
|
|
||||||
with:
|
|
||||||
version: 9.0.4
|
|
||||||
run_install: false
|
|
||||||
- name: Get pnpm store directory
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
|
||||||
- uses: actions/cache@v4
|
|
||||||
name: Setup pnpm cache
|
|
||||||
with:
|
|
||||||
path: ${{ env.STORE_PATH }}
|
|
||||||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-pnpm-store-
|
|
||||||
- name: Only install direct dependencies
|
|
||||||
run: pnpm config set auto-install-peers false
|
|
||||||
-
|
|
||||||
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
||||||
shell: msys2 {0}
|
|
||||||
run: bin/installDeps.sh
|
|
||||||
-
|
|
||||||
name: Run the backend tests
|
|
||||||
shell: msys2 {0}
|
|
||||||
working-directory: src
|
|
||||||
run: pnpm test
|
|
||||||
-
|
|
||||||
name: Run Etherpad
|
|
||||||
working-directory: src
|
|
||||||
run: |
|
|
||||||
pnpm i
|
|
||||||
pnpm exec playwright install --with-deps
|
|
||||||
pnpm run prod &
|
|
||||||
curl --connect-timeout 10 --max-time 20 --retry 5 --retry-delay 10 --retry-max-time 60 --retry-connrefused http://127.0.0.1:9001/p/test
|
|
||||||
pnpm exec playwright install chromium --with-deps
|
|
||||||
pnpm run test-ui --project=chromium
|
|
||||||
# On release, create release
|
|
||||||
- name: Generate Changelog
|
|
||||||
if: ${{startsWith(github.ref, 'refs/tags/v') }}
|
|
||||||
working-directory: bin
|
|
||||||
run: pnpm run generateChangelog ${{ github.ref }} > ${{ github.workspace }}-CHANGELOG.txt
|
|
||||||
- name: Release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
if: ${{startsWith(github.ref, 'refs/tags/v') }}
|
|
||||||
with:
|
|
||||||
body_path: ${{ github.workspace }}-CHANGELOG.txt
|
|
||||||
make_latest: true
|
|
11
.gitignore
vendored
11
.gitignore
vendored
|
@ -1,16 +1,15 @@
|
||||||
/etherpad-win.exe
|
|
||||||
/etherpad-win.zip
|
|
||||||
node_modules
|
node_modules
|
||||||
/settings.json
|
/settings.json
|
||||||
!settings.json.template
|
!settings.json.template
|
||||||
APIKEY.txt
|
APIKEY.txt
|
||||||
SESSIONKEY.txt
|
SESSIONKEY.txt
|
||||||
|
etherpad-lite-win.zip
|
||||||
var/dirty.db
|
var/dirty.db
|
||||||
.env
|
|
||||||
*~
|
*~
|
||||||
*.patch
|
*.patch
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
|
.ep_initialized
|
||||||
*.crt
|
*.crt
|
||||||
*.key
|
*.key
|
||||||
credentials.json
|
credentials.json
|
||||||
|
@ -22,9 +21,3 @@ out/
|
||||||
/src/bin/convertSettings.json
|
/src/bin/convertSettings.json
|
||||||
/src/bin/etherpad-1.deb
|
/src/bin/etherpad-1.deb
|
||||||
/src/bin/node.exe
|
/src/bin/node.exe
|
||||||
plugin_packages
|
|
||||||
/src/templates/admin
|
|
||||||
/src/test-results
|
|
||||||
playwright-report
|
|
||||||
state.json
|
|
||||||
/src/static/oidc
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
extraction:
|
|
||||||
javascript:
|
|
||||||
index:
|
|
||||||
exclude:
|
|
||||||
- src/static/js/vendors
|
|
||||||
python:
|
|
||||||
index:
|
|
||||||
exclude:
|
|
||||||
- /
|
|
1
.npmrc
1
.npmrc
|
@ -1 +0,0 @@
|
||||||
auto-install-peers=false
|
|
36
.travis.yml
36
.travis.yml
|
@ -28,10 +28,8 @@ _install_libreoffice: &install_libreoffice >-
|
||||||
sudo apt-get update &&
|
sudo apt-get update &&
|
||||||
sudo apt-get -y install libreoffice libreoffice-pdfimport
|
sudo apt-get -y install libreoffice libreoffice-pdfimport
|
||||||
|
|
||||||
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
||||||
# https://github.com/npm/cli/issues/2199
|
|
||||||
_install_plugins: &install_plugins >-
|
_install_plugins: &install_plugins >-
|
||||||
npm install --no-save --legacy-peer-deps
|
npm install
|
||||||
ep_align
|
ep_align
|
||||||
ep_author_hover
|
ep_author_hover
|
||||||
ep_cursortrace
|
ep_cursortrace
|
||||||
|
@ -55,7 +53,7 @@ jobs:
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- *enable_admin_tests
|
- *enable_admin_tests
|
||||||
- "src/tests/frontend/travis/sauce_tunnel.sh"
|
- "src/tests/frontend/travis/sauce_tunnel.sh"
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
||||||
script:
|
script:
|
||||||
- "./src/tests/frontend/travis/runner.sh"
|
- "./src/tests/frontend/travis/runner.sh"
|
||||||
|
@ -63,22 +61,22 @@ jobs:
|
||||||
install:
|
install:
|
||||||
- *install_libreoffice
|
- *install_libreoffice
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- "cd src && pnpm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
script:
|
script:
|
||||||
- "cd src && pnpm test"
|
- "cd src && npm test"
|
||||||
- name: "Test the Dockerfile"
|
- name: "Test the Dockerfile"
|
||||||
install:
|
install:
|
||||||
- "cd src && pnpm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
script:
|
script:
|
||||||
- "docker build -t etherpad:test ."
|
- "docker build -t etherpad:test ."
|
||||||
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
||||||
- "cd src && pnpm run test-container"
|
- "cd src && npm run test-container"
|
||||||
- name: "Load test Etherpad without Plugins"
|
- name: "Load test Etherpad without Plugins"
|
||||||
install:
|
install:
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- "cd src && pnpm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
- "npm install -g etherpad-load-test"
|
- "npm install -g etherpad-load-test"
|
||||||
script:
|
script:
|
||||||
- "src/tests/frontend/travis/runnerLoadTest.sh"
|
- "src/tests/frontend/travis/runnerLoadTest.sh"
|
||||||
|
@ -90,7 +88,7 @@ jobs:
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- *enable_admin_tests
|
- *enable_admin_tests
|
||||||
- "src/tests/frontend/travis/sauce_tunnel.sh"
|
- "src/tests/frontend/travis/sauce_tunnel.sh"
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- "rm src/tests/frontend/specs/*"
|
- "rm src/tests/frontend/specs/*"
|
||||||
- *install_plugins
|
- *install_plugins
|
||||||
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
- "export GIT_HASH=$(git rev-parse --verify --short HEAD)"
|
||||||
|
@ -105,22 +103,22 @@ jobs:
|
||||||
install:
|
install:
|
||||||
- *install_libreoffice
|
- *install_libreoffice
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- *install_plugins
|
- *install_plugins
|
||||||
- "cd src && pnpm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
script:
|
script:
|
||||||
- "cd src && pnpm test"
|
- "cd src && npm test"
|
||||||
- name: "Test the Dockerfile"
|
- name: "Test the Dockerfile"
|
||||||
install:
|
install:
|
||||||
- "cd src && pnpm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
script:
|
script:
|
||||||
- "docker build -t etherpad:test ."
|
- "docker build -t etherpad:test ."
|
||||||
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
- "docker run -d -p 9001:9001 etherpad:test && sleep 3"
|
||||||
- "cd src && pnpm run test-container"
|
- "cd src && npm run test-container"
|
||||||
- name: "Load test Etherpad with Plugins"
|
- name: "Load test Etherpad with Plugins"
|
||||||
install:
|
install:
|
||||||
- *set_loglevel_warn
|
- *set_loglevel_warn
|
||||||
- "bin/installDeps.sh"
|
- "src/bin/installDeps.sh"
|
||||||
- *install_plugins
|
- *install_plugins
|
||||||
- "cd src && npm install && cd -"
|
- "cd src && npm install && cd -"
|
||||||
- "npm install -g etherpad-load-test"
|
- "npm install -g etherpad-load-test"
|
||||||
|
@ -135,7 +133,7 @@ jobs:
|
||||||
- "docker run -p 8081:80 --rm --network ep_net --ip 172.23.42.1 -d nginx-latest"
|
- "docker run -p 8081:80 --rm --network ep_net --ip 172.23.42.1 -d nginx-latest"
|
||||||
- "docker run --name etherpad-docker -p 9000:9001 --rm --network ep_net --ip 172.23.42.2 -e 'TRUST_PROXY=true' epl-debian-slim &"
|
- "docker run --name etherpad-docker -p 9000:9001 --rm --network ep_net --ip 172.23.42.2 -e 'TRUST_PROXY=true' epl-debian-slim &"
|
||||||
- "docker run --rm --network ep_net --ip 172.23.42.3 --name anotherip -dt anotherip"
|
- "docker run --rm --network ep_net --ip 172.23.42.3 --name anotherip -dt anotherip"
|
||||||
- "./bin/installDeps.sh"
|
- "./src/bin/installDeps.sh"
|
||||||
script:
|
script:
|
||||||
- "cd src/tests/ratelimit && bash testlimits.sh"
|
- "cd src/tests/ratelimit && bash testlimits.sh"
|
||||||
|
|
||||||
|
|
681
CHANGELOG.md
681
CHANGELOG.md
|
@ -1,684 +1,3 @@
|
||||||
# 2.3.0
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Added possibility to cluster Etherpads behind reverse proxy. There is now a new reverse proxy designed for Etherpads that handles multiple Etherpads and the created pads in them. It will assign the pad assignement to an Etherpad at random but once the choice was made it will always reverse proxy the same backend. This allows to host multiple concurrent Etherpads and benefit from multi core systems even though one Etherpad is singlethreaded.
|
|
||||||
- Added reverse proxy configuration for replacing Nginx. In the past there were some issues with nginx and its configuration. This reverse proxy allows you to handle your configuration with ease.
|
|
||||||
|
|
||||||
If you want to find out more about the reverse proxy method check out the repository https://github.com/ether/etherpad-proxy . It also contains a sample docker-compose file with three Etherpads and one etherpad-proxy. Of course you need to adapt the settings.json.template to your liking and map it into the reverse proxy image before you are ready :).
|
|
||||||
|
|
||||||
|
|
||||||
- Added client authorization to work with Etherpad. Before it would get blocked because it doesn't have the required claim. As this is now fixed etherpad-proxy can also work with your new OAuth2 configuration and retrieve a token via client credentials flow.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.7
|
|
||||||
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- We migrated all important pages to React 19 and React Router v7
|
|
||||||
|
|
||||||
Besides that only dependency updates.
|
|
||||||
|
|
||||||
|
|
||||||
-> Have a merry Christmas and a happy new year. 🎄 🎁
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.6
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Added option to delete a pad by the creator. This option can be found in the settings menu. When you click on it you get a confirm dialog and after that you have the chance to completely erase the pad.
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.5
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Fixed timeslider not scrolling when the revision count is a multiple of 100
|
|
||||||
- Added new Restful API for version 2 of Etherpad. It is available at /api-docs
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.4
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Switched to new SQLite backend
|
|
||||||
- Fixed rusty-store-kv module not found
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.3
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Introduced a new in process database `rustydb` that represents a fast key value store written in Rust.
|
|
||||||
- Readded window._ as a shortcut for getting text
|
|
||||||
- Added support for migrating any ueberdb database to another. You can now switch as you please. See here: https://docs.etherpad.org/cli.html
|
|
||||||
- Further Typescript movements
|
|
||||||
- A lot of security issues fixed and reviewed in this release. Please update.
|
|
||||||
|
|
||||||
|
|
||||||
# 2.2.2
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Removal of Etherpad require kernel: We finally managed to include esbuild to bundle our frontend code together. So no matter how many plugins your server has it is always one JavaScript file. This boosts performance dramatically.
|
|
||||||
- Added log layoutType: This lets you print the log in either colored or basic (black and white text)
|
|
||||||
- Introduced esbuild for bundling CSS files
|
|
||||||
- Cache all files to be bundled in memory for faster load speed
|
|
||||||
|
|
||||||
|
|
||||||
# 2.1.1
|
|
||||||
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Fixed failing Docker build when checked out as git submodule. Thanks to @neurolabs
|
|
||||||
- Fixed: Fallback to websocket and polling when unknown(old) config is present for socket io
|
|
||||||
- Fixed: Next page disabled if zero page by @samyakj023
|
|
||||||
- On CTRL+CLICK bring the window back to focus by Helder Sepulveda
|
|
||||||
|
|
||||||
# 2.1.0
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Added PWA support. You can now add your Etherpad instance to your home screen on your mobile device or desktop.
|
|
||||||
- Fixed live plugin manager versions clashing. Thanks to @yacchin1205
|
|
||||||
- Fixed a bug in the pad panel where pagination was not working correctly when sorting by pad name
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
- Reintroduced APIKey.txt support. You can now switch between APIKey and OAuth2.0 authentication. This can be toggled with the setting authenticationMethod. The default is OAuth2. If you want to use the APIKey method you can set that to `apikey`.
|
|
||||||
|
|
||||||
|
|
||||||
# 2.0.3
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Added documentation for replacing apikeys with oauth2
|
|
||||||
- Bumped live plugin manager to 0.20.0. Thanks to @fgreinacher
|
|
||||||
- Added better documentation for using docker-compose with Etherpad
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# 2.0.2
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Fixed the locale loading in the admin panel
|
|
||||||
- Added OAuth2.0 support for the Etherpad API. You can now log in into the Etherpad API with your admin user using OAuth2
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
- The tests now require generating a token from the OAuth secret. You can find the `generateJWTToken` in the common.ts script for plugin endpoint updates.
|
|
||||||
|
|
||||||
|
|
||||||
# 2.0.1
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
- Fixed a bug where a plugin depending on a scoped dependency would not install successfully.
|
|
||||||
|
|
||||||
|
|
||||||
# 2.0.0
|
|
||||||
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
- Socket io has been updated to 4.7.5. This means that the json.send function won't work anymore and needs to be changed to .emit('message', myObj)
|
|
||||||
- Deprecating npm version 6 in favor of pnpm: We have made the decision to switch to the well established pnpm (https://pnpm.io/). It works by symlinking dependencies into a global directory allowing you to have a cleaner and more reliable environment.
|
|
||||||
- Introducing Typescript to the Etherpad core: Etherpad core logic has been rewritten in Typescript allowing for compiler checking of errors.
|
|
||||||
- Rewritten Admin Panel: The Admin panel has been rewritten in React and now features a more pleasant user experience. It now also features an integrated pad searching with sorting functionality.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Bugfixes
|
|
||||||
- Live Plugin Manager: The live plugin manager caused problems when a plugin had depdendencies defined. This issue is now resolved.
|
|
||||||
|
|
||||||
* Enhancements
|
|
||||||
- pnpm Workspaces: In addition to pnpm we introduced workspaces. A clean way to manage multiple bounded contexts like the admin panel or the bin folder.
|
|
||||||
- Bin folder: The bin folder has been moved from the src folder to the root folder. This change was necessary as the contained scripts do not represent core functionality of the user.
|
|
||||||
- Starting Etherpad: Etherpad can now be started with a single command: `pnpm run prod` in the root directory.
|
|
||||||
- Installing Etherpad: Etherpad no longer symlinks itself in the root directory. This is now also taken care by pnpm, and it just creates a node_modules folder with the src directory`s ep_etherpad-lite folder
|
|
||||||
- Plugins can now be installed simply via the command: `pnpm run plugins i first-plugin second-plugin` or if you want to install from path you can do:
|
|
||||||
`pnpm run plugins i --path ../path-to-plugin`
|
|
||||||
|
|
||||||
|
|
||||||
# 1.9.7
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Added Live Plugin Manager: Plugins are now installed into a separate folder on the host system. This folder is called `plugin_packages`.
|
|
||||||
That way the plugins are separated from the normal etherpad installation.
|
|
||||||
* Make repairPad.js more verbose
|
|
||||||
* Fixed favicon not being loaded correctly
|
|
||||||
|
|
||||||
# 1.9.6
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Prevent etherpad crash when update server is not reachable
|
|
||||||
* Use npm@6 in Docker build
|
|
||||||
* Fix setting the log level in settings.json
|
|
||||||
|
|
||||||
|
|
||||||
# 1.9.5
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* This version deprecates NodeJS16 as it reached its end of life and won't receive any updates. So to get started with Etherpad v1.9.5 you need NodeJS 18 and above.
|
|
||||||
* The bundled windows NodeJS version has been bumped to the current LTS version 20.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* The support for the tidy program to tidy up HTML files has been removed. This decision was made because it hasn't been updated for years and also caused an incompability when exporting a pad with Abiword.
|
|
||||||
|
|
||||||
|
|
||||||
# 1.9.4
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* Log4js has been updated to the latest version. As it involved a bump of 6 major version.
|
|
||||||
A lot has changed since then. Most notably the console appender has been deprecated. You can find out more about it [here](https://github.com/log4js-node/log4js-node)
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Fix for MySQL: The logger calls were incorrectly configured leading to a crash when e.g. somebody uses a different encoding than standard MySQL encoding.
|
|
||||||
|
|
||||||
# 1.9.3
|
|
||||||
|
|
||||||
### Compability changes
|
|
||||||
|
|
||||||
* express-rate-limit has been bumped to 7.0.0: This involves the breaking change that "max: 0"
|
|
||||||
in the importExportRateLimiting is set to always trigger. So set it to your desired value.
|
|
||||||
If you haven't changed that value in the settings.json you are all set.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Bugfixes
|
|
||||||
* Fix etherpad crashing with mongodb database
|
|
||||||
|
|
||||||
* Enhancements
|
|
||||||
* Add surrealdb database support. You can find out more about this database [here](https://surrealdb.com).
|
|
||||||
* Make sqlite faster: The sqlite library has been switched to better-sqlite3. This should lead to better performance.
|
|
||||||
|
|
||||||
# 1.9.2
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Security
|
|
||||||
* Enable session key rotation: This setting can be enabled in the settings.json. It changes the signing key for the cookie authentication in a fixed interval.
|
|
||||||
|
|
||||||
* Bugfixes
|
|
||||||
* Fix appendRevision when creating a new pad via the API without a text.
|
|
||||||
|
|
||||||
|
|
||||||
* Enhancements
|
|
||||||
* Bump JQuery to version 3.7
|
|
||||||
* Update elasticsearch connector to version 8
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* No compability changes as JQuery maintains excellent backwards compatibility.
|
|
||||||
|
|
||||||
#### For plugin authors
|
|
||||||
|
|
||||||
* Please update to JQuery 3.7. There is an excellent deprecation guide over [here](https://api.jquery.com/category/deprecated/). Version 3.1 to 3.7 are relevant for the upgrade.
|
|
||||||
|
|
||||||
# 1.9.1
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Security
|
|
||||||
* Limit requested revisions in timeslider and export to head revision. (affects v1.9.0)
|
|
||||||
|
|
||||||
* Bugfixes
|
|
||||||
* revisions in `CHANGESET_REQ` (timeslider) and export (txt, html, custom)
|
|
||||||
are now checked to be numbers.
|
|
||||||
* bump sql for audit fix
|
|
||||||
* Enhancements
|
|
||||||
* Add keybinding meta-backspace to delete to beginning of line
|
|
||||||
* Fix automatic Windows build via GitHub Actions
|
|
||||||
* Enable docs to be build cross platform thanks to asciidoctor
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
* tests: drop windows 7 test coverage & use chrome latest for admin tests
|
|
||||||
* Require Node 16 for Etherpad and target Node 20 for testing
|
|
||||||
|
|
||||||
|
|
||||||
# 1.9.0
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Windows build:
|
|
||||||
* The bundled `node.exe` was upgraded from v12 to v16.
|
|
||||||
* The bundled `node.exe` is now a 64-bit executable. If you need the 32-bit
|
|
||||||
version you must download and install Node.js yourself.
|
|
||||||
* Improvements to login session management:
|
|
||||||
* `express_sid` cookies and `sessionstorage:*` database records are no longer
|
|
||||||
created unless `requireAuthentication` is `true` (or a plugin causes them to
|
|
||||||
be created).
|
|
||||||
* Login sessions now have a finite lifetime by default (10 days after
|
|
||||||
leaving).
|
|
||||||
* `sessionstorage:*` database records are automatically deleted when the login
|
|
||||||
session expires (with some exceptions that will be fixed in the future).
|
|
||||||
* Requests for static content (e.g., `/robots.txt`) and special pages (e.g.,
|
|
||||||
the HTTP API, `/stats`) no longer create login session state.
|
|
||||||
* The secret used to sign the `express_sid` cookie is now automatically
|
|
||||||
regenerated every day (called *key rotation*) by default. If key rotation is
|
|
||||||
enabled, the now-deprecated `SESSIONKEY.txt` file can be safely deleted
|
|
||||||
after Etherpad starts up (its content is read and saved to the database and
|
|
||||||
used to validate signatures from old cookies until they expire).
|
|
||||||
* The following settings from `settings.json` are now applied as expected (they
|
|
||||||
were unintentionally ignored before):
|
|
||||||
* `padOptions.lang`
|
|
||||||
* `padOptions.showChat`
|
|
||||||
* `padOptions.userColor`
|
|
||||||
* `padOptions.userName`
|
|
||||||
* HTTP API:
|
|
||||||
* Fixed the return value of `getText` when called with a specific revision.
|
|
||||||
* Fixed a potential attribute pool corruption bug with
|
|
||||||
`copyPadWithoutHistory`.
|
|
||||||
* Mappings created by `createGroupIfNotExistsFor` are now removed from the
|
|
||||||
database when the group is deleted.
|
|
||||||
* Fixed race conditions in the `setText`, `appendText`, and `restoreRevision`
|
|
||||||
functions.
|
|
||||||
* Added an optional `authorId` parameter to `appendText`,
|
|
||||||
`copyPadWithoutHistory`, `createGroupPad`, `createPad`, `restoreRevision`,
|
|
||||||
`setHTML`, and `setText`, and bumped the latest API version to 1.3.0.
|
|
||||||
* Fixed a crash if the database is busy enough to cause a query timeout.
|
|
||||||
* New `/health` endpoint for getting information about Etherpad's health (see
|
|
||||||
[draft-inadarei-api-health-check-06](https://www.ietf.org/archive/id/draft-inadarei-api-health-check-06.html)).
|
|
||||||
* Docker now uses the new `/health` endpoint for health checks, which avoids
|
|
||||||
issues when authentication is enabled. It also avoids the unnecessary creation
|
|
||||||
of database records for managing browser sessions.
|
|
||||||
* When copying a pad, the pad's records are copied in batches to avoid database
|
|
||||||
timeouts with large pads.
|
|
||||||
* Exporting a large pad to `.etherpad` format should be faster thanks to bulk
|
|
||||||
database record fetches.
|
|
||||||
* When importing an `.etherpad` file, records are now saved to the database in
|
|
||||||
batches to avoid database timeouts with large pads.
|
|
||||||
|
|
||||||
#### For plugin authors
|
|
||||||
|
|
||||||
* New `expressPreSession` server-side hook.
|
|
||||||
* Pad server-side hook changes:
|
|
||||||
* `padCheck`: New hook.
|
|
||||||
* `padCopy`: New `srcPad` and `dstPad` context properties.
|
|
||||||
* `padDefaultContent`: New hook.
|
|
||||||
* `padRemove`: New `pad` context property.
|
|
||||||
* The `db` property on Pad objects is now public.
|
|
||||||
* New `getAuthorId` server-side hook.
|
|
||||||
* New APIs for processing attributes: `ep_etherpad-lite/static/js/attributes`
|
|
||||||
(low-level API) and `ep_etherpad-lite/static/js/AttributeMap` (high-level
|
|
||||||
API).
|
|
||||||
* The `import` server-side hook has a new `ImportError` context property.
|
|
||||||
* New `exportEtherpad` and `importEtherpad` server-side hooks.
|
|
||||||
* The `handleMessageSecurity` and `handleMessage` server-side hooks have a new
|
|
||||||
`sessionInfo` context property that includes the user's author ID, the pad ID,
|
|
||||||
and whether the user only has read-only access.
|
|
||||||
* The `handleMessageSecurity` server-side hook can now be used to grant write
|
|
||||||
access for the current message only.
|
|
||||||
* The `init_<pluginName>` server-side hooks have a new `logger` context
|
|
||||||
property that plugins can use to log messages.
|
|
||||||
* Prevent infinite loop when exiting the server
|
|
||||||
* Bump dependencies
|
|
||||||
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* Node.js v14.15.0 or later is now required.
|
|
||||||
* The default login session expiration (applicable if `requireAuthentication` is
|
|
||||||
`true`) changed from never to 10 days after the user leaves.
|
|
||||||
|
|
||||||
#### For plugin authors
|
|
||||||
|
|
||||||
* The `client` context property for the `handleMessageSecurity` and
|
|
||||||
`handleMessage` server-side hooks is deprecated; use the `socket` context
|
|
||||||
property instead.
|
|
||||||
* Pad server-side hook changes:
|
|
||||||
* `padCopy`:
|
|
||||||
* The `originalPad` context property is deprecated; use `srcPad` instead.
|
|
||||||
* The `destinationID` context property is deprecated; use `dstPad.id`
|
|
||||||
instead.
|
|
||||||
* `padCreate`: The `author` context property is deprecated; use the new
|
|
||||||
`authorId` context property instead. Also, the hook now runs asynchronously.
|
|
||||||
* `padLoad`: Now runs when a temporary Pad object is created during import.
|
|
||||||
Also, it now runs asynchronously.
|
|
||||||
* `padRemove`: The `padID` context property is deprecated; use `pad.id`
|
|
||||||
instead.
|
|
||||||
* `padUpdate`: The `author` context property is deprecated; use the new
|
|
||||||
`authorId` context property instead. Also, the hook now runs asynchronously.
|
|
||||||
* Returning `true` from a `handleMessageSecurity` hook function is deprecated;
|
|
||||||
return `'permitOnce'` instead.
|
|
||||||
* Changes to the `src/static/js/Changeset.js` library:
|
|
||||||
* The following attribute processing functions are deprecated (use the new
|
|
||||||
attribute APIs instead):
|
|
||||||
* `attribsAttributeValue()`
|
|
||||||
* `eachAttribNumber()`
|
|
||||||
* `makeAttribsString()`
|
|
||||||
* `opAttributeValue()`
|
|
||||||
* `opIterator()`: Deprecated in favor of the new `deserializeOps()` generator
|
|
||||||
function.
|
|
||||||
* `appendATextToAssembler()`: Deprecated in favor of the new `opsFromAText()`
|
|
||||||
generator function.
|
|
||||||
* `newOp()`: Deprecated in favor of the new `Op` class.
|
|
||||||
* The `AuthorManager.getAuthor4Token()` function is deprecated; use the new
|
|
||||||
`AuthorManager.getAuthorId()` function instead.
|
|
||||||
* The exported database records covered by the `exportEtherpadAdditionalContent`
|
|
||||||
server-side hook now include keys like `${customPrefix}:${padId}:*`, not just
|
|
||||||
`${customPrefix}:${padId}`.
|
|
||||||
* Plugin locales should overwrite core's locales Stale
|
|
||||||
* Plugin locales overwrite core locales
|
|
||||||
|
|
||||||
# 1.8.18
|
|
||||||
|
|
||||||
Released: 2022-05-05
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Upgraded ueberDB to fix a regression with CouchDB.
|
|
||||||
|
|
||||||
# 1.8.17
|
|
||||||
|
|
||||||
Released: 2022-02-23
|
|
||||||
|
|
||||||
### Security fixes
|
|
||||||
|
|
||||||
* Fixed a vunlerability in the `CHANGESET_REQ` message handler that allowed a
|
|
||||||
user with any access to read any pad if the pad ID is known.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Fixed a bug that caused all pad edit messages received at the server to go
|
|
||||||
through a single queue. Now there is a separate queue per pad as intended,
|
|
||||||
which should reduce message processing latency when many pads are active at
|
|
||||||
the same time.
|
|
||||||
|
|
||||||
# 1.8.16
|
|
||||||
|
|
||||||
### Security fixes
|
|
||||||
|
|
||||||
If you cannot upgrade to v1.8.16 for some reason, you are encouraged to try
|
|
||||||
cherry-picking the fixes to the version you are running:
|
|
||||||
|
|
||||||
```shell
|
|
||||||
git cherry-pick b7065eb9a0ec..77bcb507b30e
|
|
||||||
```
|
|
||||||
|
|
||||||
* Maliciously crafted `.etherpad` files can no longer overwrite arbitrary
|
|
||||||
non-pad database records when imported.
|
|
||||||
* Imported `.etherpad` files are now subject to numerous consistency checks
|
|
||||||
before any records are written to the database. This should help avoid
|
|
||||||
denial-of-service attacks via imports of malformed `.etherpad` files.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Fixed several `.etherpad` import bugs.
|
|
||||||
* Improved support for large `.etherpad` imports.
|
|
||||||
|
|
||||||
# 1.8.15
|
|
||||||
|
|
||||||
### Security fixes
|
|
||||||
|
|
||||||
* Fixed leak of the writable pad ID when exporting from the pad's read-only ID.
|
|
||||||
This only matters if you treat the writeable pad IDs as secret (e.g., you are
|
|
||||||
not using [ep_padlist2](https://www.npmjs.com/package/ep_padlist2)) and you
|
|
||||||
share the pad's read-only ID with untrusted users. Instead of treating
|
|
||||||
writeable pad IDs as secret, you are encouraged to take advantage of
|
|
||||||
Etherpad's authentication and authorization mechanisms (e.g., use
|
|
||||||
[ep_openid_connect](https://www.npmjs.com/package/ep_openid_connect) with
|
|
||||||
[ep_readonly_guest](https://www.npmjs.com/package/ep_readonly_guest), or write
|
|
||||||
your own
|
|
||||||
[authentication](https://etherpad.org/doc/v1.8.14/#index_authenticate) and
|
|
||||||
[authorization](https://etherpad.org/doc/v1.8.14/#index_authorize) plugins).
|
|
||||||
* Updated dependencies.
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* The `logconfig` setting is deprecated.
|
|
||||||
|
|
||||||
#### For plugin authors
|
|
||||||
|
|
||||||
* Etherpad now uses [jsdom](https://github.com/jsdom/jsdom) instead of
|
|
||||||
[cheerio](https://cheerio.js.org/) for processing HTML imports. There are two
|
|
||||||
consequences of this change:
|
|
||||||
* `require('ep_etherpad-lite/node_modules/cheerio')` no longer works. To fix,
|
|
||||||
your plugin should directly depend on `cheerio` and do `require('cheerio')`.
|
|
||||||
* The `collectContentImage` hook's `node` context property is now an
|
|
||||||
[`HTMLImageElement`](https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement)
|
|
||||||
object rather than a Cheerio Node-like object, so the API is slightly
|
|
||||||
different. See
|
|
||||||
[citizenos/ep_image_upload#49](https://github.com/citizenos/ep_image_upload/pull/49)
|
|
||||||
for an example fix.
|
|
||||||
* The `clientReady` server-side hook is deprecated; use the new `userJoin` hook
|
|
||||||
instead.
|
|
||||||
* The `init_<pluginName>` server-side hooks are now run every time Etherpad
|
|
||||||
starts up, not just the first time after the named plugin is installed.
|
|
||||||
* The `userLeave` server-side hook's context properties have changed:
|
|
||||||
* `auth`: Deprecated.
|
|
||||||
* `author`: Deprecated; use the new `authorId` property instead.
|
|
||||||
* `readonly`: Deprecated; use the new `readOnly` property instead.
|
|
||||||
* `rev`: Deprecated.
|
|
||||||
* Changes to the `src/static/js/Changeset.js` library:
|
|
||||||
* `opIterator()`: The unused start index parameter has been removed, as has
|
|
||||||
the unused `lastIndex()` method on the returned object.
|
|
||||||
* `smartOpAssembler()`: The returned object's `appendOpWithText()` method is
|
|
||||||
deprecated without a replacement available to plugins (if you need one, let
|
|
||||||
us know and we can make the private `opsFromText()` function public).
|
|
||||||
* Several functions that should have never been public are no longer exported:
|
|
||||||
`applyZip()`, `assert()`, `clearOp()`, `cloneOp()`, `copyOp()`, `error()`,
|
|
||||||
`followAttributes()`, `opString()`, `stringOp()`, `textLinesMutator()`,
|
|
||||||
`toBaseTen()`, `toSplices()`.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* Accessibility fix for JAWS screen readers.
|
|
||||||
* Fixed "clear authorship" error (see issue #5128).
|
|
||||||
* Etherpad now considers square brackets to be valid URL characters.
|
|
||||||
* The server no longer crashes if an exception is thrown while processing a
|
|
||||||
message from a client.
|
|
||||||
* The `useMonospaceFontGlobal` setting now works (thanks @Lastpixl!).
|
|
||||||
* Chat improvements:
|
|
||||||
* The message input field is now a text area, allowing multi-line messages
|
|
||||||
(use shift-enter to insert a newline).
|
|
||||||
* Whitespace in chat messages is now preserved.
|
|
||||||
* Docker improvements:
|
|
||||||
* New `HEALTHCHECK` instruction (thanks @Gared!).
|
|
||||||
* New `settings.json` variables: `DB_COLLECTION`, `DB_URL`,
|
|
||||||
`SOCKETIO_MAX_HTTP_BUFFER_SIZE`, `DUMP_ON_UNCLEAN_EXIT` (thanks
|
|
||||||
@JustAnotherArchivist!).
|
|
||||||
* `.ep_initialized` files are no longer created.
|
|
||||||
* Worked around a [Firefox Content Security Policy
|
|
||||||
bug](https://bugzilla.mozilla.org/show_bug.cgi?id=1721296) that caused CSP
|
|
||||||
failures when `'self'` was in the CSP header. See issue #4975 for details.
|
|
||||||
* UeberDB upgraded from v1.4.10 to v1.4.18. For details, see the [ueberDB
|
|
||||||
changelog](https://github.com/ether/ueberDB/blob/master/CHANGELOG.md).
|
|
||||||
Highlights:
|
|
||||||
* The `postgrespool` driver was renamed to `postgres`, replacing the old
|
|
||||||
driver of that name. If you used the old `postgres` driver, you may see an
|
|
||||||
increase in the number of database connections.
|
|
||||||
* For `postgres`, you can now set the `dbSettings` value in `settings.json` to
|
|
||||||
a connection string (e.g., `"postgres://user:password@host/dbname"`) instead
|
|
||||||
of an object.
|
|
||||||
* For `mongodb`, the `dbName` setting was renamed to `database` (but `dbName`
|
|
||||||
still works for backwards compatibility) and is now optional (if unset, the
|
|
||||||
database name in `url` is used).
|
|
||||||
* `/admin/settings` now honors the `--settings` command-line argument.
|
|
||||||
* Fixed "Author *X* tried to submit changes as author *Y*" detection.
|
|
||||||
* Error message display improvements.
|
|
||||||
* Simplified pad reload after importing an `.etherpad` file.
|
|
||||||
|
|
||||||
#### For plugin authors
|
|
||||||
|
|
||||||
* `clientVars` was added to the context for the `postAceInit` client-side hook.
|
|
||||||
Plugins should use this instead of the `clientVars` global variable.
|
|
||||||
* New `userJoin` server-side hook.
|
|
||||||
* The `userLeave` server-side hook has a new `socket` context property.
|
|
||||||
* The `helper.aNewPad()` function (accessible to client-side tests) now
|
|
||||||
accepts hook functions to inject when opening a pad. This can be used to
|
|
||||||
test any new client-side hooks your plugin provides.
|
|
||||||
* Chat improvements:
|
|
||||||
* The `chatNewMessage` client-side hook context has new properties:
|
|
||||||
* `message`: Provides access to the raw message object so that plugins can
|
|
||||||
see the original unprocessed message text and any added metadata.
|
|
||||||
* `rendered`: Allows plugins to completely override how the message is
|
|
||||||
rendered in the UI.
|
|
||||||
* New `chatSendMessage` client-side hook that enables plugins to process the
|
|
||||||
text before sending it to the server or augment the message object with
|
|
||||||
custom metadata.
|
|
||||||
* New `chatNewMessage` server-side hook to process new chat messages before
|
|
||||||
they are saved to the database and relayed to users.
|
|
||||||
* Readability improvements to browser-side error stack traces.
|
|
||||||
* Added support for socket.io message acknowledgments.
|
|
||||||
|
|
||||||
# 1.8.14
|
|
||||||
|
|
||||||
### Security fixes
|
|
||||||
|
|
||||||
* Fixed a persistent XSS vulnerability in the Chat component. In case you can't
|
|
||||||
update to 1.8.14 directly, we strongly recommend to cherry-pick
|
|
||||||
a7968115581e20ef47a533e030f59f830486bdfa. Thanks to sonarsource for the
|
|
||||||
professional disclosure.
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* Node.js v12.13.0 or later is now required.
|
|
||||||
* The `favicon` setting is now interpreted as a pathname to a favicon file, not
|
|
||||||
a URL. Please see the documentation comment in `settings.json.template`.
|
|
||||||
* The undocumented `faviconPad` and `faviconTimeslider` settings have been
|
|
||||||
removed.
|
|
||||||
* MySQL/MariaDB now uses connection pooling, which means you will see up to 10
|
|
||||||
connections to the MySQL/MariaDB server (by default) instead of 1. This might
|
|
||||||
cause Etherpad to crash with a "ER_CON_COUNT_ERROR: Too many connections"
|
|
||||||
error if your server is configured with a low connection limit.
|
|
||||||
* Changes to environment variable substitution in `settings.json` (see the
|
|
||||||
documentation comments in `settings.json.template` for details):
|
|
||||||
* An environment variable set to the string "null" now becomes `null` instead
|
|
||||||
of the string "null". Similarly, if the environment variable is unset and
|
|
||||||
the default value is "null" (e.g., `"${UNSET_VAR:null}"`), the value now
|
|
||||||
becomes `null` instead of the string "null". It is no longer possible to
|
|
||||||
produce the string "null" via environment variable substitution.
|
|
||||||
* An environment variable set to the string "undefined" now causes the setting
|
|
||||||
to be removed instead of set to the string "undefined". Similarly, if the
|
|
||||||
environment variable is unset and the default value is "undefined" (e.g.,
|
|
||||||
`"${UNSET_VAR:undefined}"`), the setting is now removed instead of set to
|
|
||||||
the string "undefined". It is no longer possible to produce the string
|
|
||||||
"undefined" via environment variable substitution.
|
|
||||||
* Support for unset variables without a default value is now deprecated.
|
|
||||||
Please change all instances of `"${FOO}"` in your `settings.json` to
|
|
||||||
`${FOO:null}` to keep the current behavior.
|
|
||||||
* The `DB_*` variable substitutions in `settings.json.docker` that previously
|
|
||||||
defaulted to `null` now default to "undefined".
|
|
||||||
* Calling `next` without argument when using `Changeset.opIterator` does always
|
|
||||||
return a new Op. See b9753dcc7156d8471a5aa5b6c9b85af47f630aa8 for details.
|
|
||||||
|
|
||||||
### Notable enhancements and fixes
|
|
||||||
|
|
||||||
* MySQL/MariaDB now uses connection pooling, which should improve stability and
|
|
||||||
reduce latency.
|
|
||||||
* Bulk database writes are now retried individually on write failure.
|
|
||||||
* Minify: Avoid crash due to unhandled Promise rejection if stat fails.
|
|
||||||
* padIds are now included in /socket.io query string, e.g.
|
|
||||||
`https://video.etherpad.com/socket.io/?padId=AWESOME&EIO=3&transport=websocket&t=...&sid=...`.
|
|
||||||
This is useful for directing pads to separate socket.io nodes.
|
|
||||||
* <script> elements added via aceInitInnerdocbodyHead hook are now executed.
|
|
||||||
* Fix read only pad access with authentication.
|
|
||||||
* Await more db writes.
|
|
||||||
* Disabled wtfnode dump by default.
|
|
||||||
* Send `USER_NEWINFO` messages on reconnect.
|
|
||||||
* Fixed loading in a hidden iframe.
|
|
||||||
* Fixed a race condition with composition. (Thanks @ingoncalves for an
|
|
||||||
exceptionally detailed analysis and @rhansen for the fix.)
|
|
||||||
|
|
||||||
# 1.8.13
|
|
||||||
|
|
||||||
### Notable fixes
|
|
||||||
|
|
||||||
* Fixed a bug in the safeRun.sh script (#4935)
|
|
||||||
* Add more endpoints that do not need authentication/authorization (#4921)
|
|
||||||
* Fixed issue with non-opening device keyboard on smartphones (#4929)
|
|
||||||
* Add version string to iframe_editor.css to prevent stale cache entry (#4964)
|
|
||||||
|
|
||||||
### Notable enhancements
|
|
||||||
|
|
||||||
* Refactor pad loading (no document.write anymore) (#4960)
|
|
||||||
* Improve import/export functionality, logging and tests (#4957)
|
|
||||||
* Refactor CSS manager creation (#4963)
|
|
||||||
* Better metrics
|
|
||||||
* Add test for client height (#4965)
|
|
||||||
|
|
||||||
### Dependencies
|
|
||||||
|
|
||||||
* ueberDB2 1.3.2 -> 1.4.4
|
|
||||||
* express-rate-limit 5.2.5 -> 5.2.6
|
|
||||||
* etherpad-require-kernel 1.0.9 -> 1.0.11
|
|
||||||
|
|
||||||
# 1.8.12
|
|
||||||
|
|
||||||
Special mention: Thanks to Sauce Labs for additional testing tunnels to help us
|
|
||||||
grow! :)
|
|
||||||
|
|
||||||
### Security patches
|
|
||||||
|
|
||||||
* Fixed a regression in v1.8.11 which caused some pad names to cause Etherpad to
|
|
||||||
restart.
|
|
||||||
|
|
||||||
### Notable fixes
|
|
||||||
|
|
||||||
* Fixed a bug in the `dirty` database driver that sometimes caused Node.js to
|
|
||||||
crash during shutdown and lose buffered database writes.
|
|
||||||
* Fixed a regression in v1.8.8 that caused "Uncaught TypeError: Cannot read
|
|
||||||
property '0' of undefined" with some plugins (#4885)
|
|
||||||
* Less warnings in server console for supported element types on import.
|
|
||||||
* Support Azure and other network share installations by using a more truthful
|
|
||||||
relative path.
|
|
||||||
|
|
||||||
### Notable enhancements
|
|
||||||
|
|
||||||
* Dependency updates
|
|
||||||
* Various Docker deployment improvements
|
|
||||||
* Various new translations
|
|
||||||
* Improvement of rendering of plugin hook list and error message handling
|
|
||||||
|
|
||||||
# 1.8.11
|
|
||||||
|
|
||||||
### Notable fixes
|
|
||||||
|
|
||||||
* Fix server crash issue within PadMessageHandler due to SocketIO handling
|
|
||||||
* Fix editor issue with drop downs not being visible
|
|
||||||
* Ensure correct version is passed when loading front end resources
|
|
||||||
* Ensure underscore and jquery are available in original location for plugin comptability
|
|
||||||
|
|
||||||
### Notable enhancements
|
|
||||||
|
|
||||||
* Improved page load speeds
|
|
||||||
|
|
||||||
# 1.8.10
|
|
||||||
|
|
||||||
### Security Patches
|
|
||||||
|
|
||||||
* Resolve potential ReDoS vulnerability in your project - GHSL-2020-359
|
|
||||||
|
|
||||||
### Compatibility changes
|
|
||||||
|
|
||||||
* JSONP API has been removed in favor of using the mature OpenAPI implementation.
|
|
||||||
* Node 14 is now required for Docker Deployments
|
|
||||||
|
|
||||||
### Notable fixes
|
|
||||||
|
|
||||||
* Various performance and stability fixes
|
|
||||||
|
|
||||||
### Notable enhancements
|
|
||||||
|
|
||||||
* Improved line number alignment and user experience around line anchors
|
|
||||||
* Notification to admin console if a plugin is missing during user file import
|
|
||||||
* Beautiful loading and reconnecting animation
|
|
||||||
* Additional code quality improvements
|
|
||||||
* Dependency updates
|
|
||||||
|
|
||||||
# 1.8.9
|
# 1.8.9
|
||||||
|
|
||||||
### Notable fixes
|
### Notable fixes
|
||||||
|
|
|
@ -15,17 +15,9 @@
|
||||||
number of the issue that is being fixed, in the form: Fixes #someIssueNumber
|
number of the issue that is being fixed, in the form: Fixes #someIssueNumber
|
||||||
```
|
```
|
||||||
* if the PR is a **bug fix**:
|
* if the PR is a **bug fix**:
|
||||||
* The commit that fixes the bug should **include a regression test** that
|
* the first commit in the series must be a test that shows the failure
|
||||||
would fail if the bug fix was reverted. Adding the regression test in the
|
* subsequent commits will fix the bug and make the test pass
|
||||||
same commit as the bug fix makes it easier for a reviewer to verify that the
|
* the final commit message should include the text `Fixes: #xxx` to link it to its bug report
|
||||||
test is appropriate for the bug fix.
|
|
||||||
* If there is a bug report, **the pull request description should include the
|
|
||||||
text "`Fixes #xxx`"** so that the bug report is auto-closed when the PR is
|
|
||||||
merged. It is less useful to say the same thing in a commit message because
|
|
||||||
GitHub will spam the bug report every time the commit is rebased, and
|
|
||||||
because a bug number alone becomes meaningless in forks. (A full URL would
|
|
||||||
be better, but ideally each commit is readable on its own without the need
|
|
||||||
to examine an external reference to understand motivation or context.)
|
|
||||||
* think about stability: code has to be backwards compatible as much as possible. Always **assume your code will be run with an older version of the DB/config file**
|
* think about stability: code has to be backwards compatible as much as possible. Always **assume your code will be run with an older version of the DB/config file**
|
||||||
* if you want to remove a feature, **deprecate it instead**:
|
* if you want to remove a feature, **deprecate it instead**:
|
||||||
* write an issue with your deprecation plan
|
* write an issue with your deprecation plan
|
||||||
|
@ -124,7 +116,6 @@ You can build the docs e.g. produce html, using `make docs`. At some point in th
|
||||||
Front-end tests are found in the `tests/frontend/` folder in the repository. Run them by pointing your browser to `<yourdomainhere>/tests/frontend`.
|
Front-end tests are found in the `tests/frontend/` folder in the repository. Run them by pointing your browser to `<yourdomainhere>/tests/frontend`.
|
||||||
|
|
||||||
Back-end tests can be run from the `src` directory, via `npm test`.
|
Back-end tests can be run from the `src` directory, via `npm test`.
|
||||||
You can use `npm test -- --inspect-brk` and navigate to `edge://inspect` or `chrome://inspect` to debug the tests.
|
|
||||||
|
|
||||||
## Things you can help with
|
## Things you can help with
|
||||||
Etherpad is much more than software. So if you aren't a developer then worry not, there is still a LOT you can do! A big part of what we do is community engagement. You can help in the following ways
|
Etherpad is much more than software. So if you aren't a developer then worry not, there is still a LOT you can do! A big part of what we do is community engagement. You can help in the following ways
|
||||||
|
|
167
Dockerfile
167
Dockerfile
|
@ -3,37 +3,10 @@
|
||||||
# https://github.com/ether/etherpad-lite
|
# https://github.com/ether/etherpad-lite
|
||||||
#
|
#
|
||||||
# Author: muxator
|
# Author: muxator
|
||||||
ARG BUILD_ENV=git
|
|
||||||
|
|
||||||
FROM node:alpine AS adminbuild
|
FROM node:10-buster-slim
|
||||||
RUN npm install -g pnpm@latest
|
|
||||||
WORKDIR /opt/etherpad-lite
|
|
||||||
COPY . .
|
|
||||||
RUN pnpm install
|
|
||||||
RUN pnpm run build:ui
|
|
||||||
|
|
||||||
|
|
||||||
FROM node:alpine AS build
|
|
||||||
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
LABEL maintainer="Etherpad team, https://github.com/ether/etherpad-lite"
|
||||||
|
|
||||||
# Set these arguments when building the image from behind a proxy
|
|
||||||
ARG http_proxy=
|
|
||||||
ARG https_proxy=
|
|
||||||
ARG no_proxy=
|
|
||||||
|
|
||||||
ARG TIMEZONE=
|
|
||||||
|
|
||||||
RUN \
|
|
||||||
[ -z "${TIMEZONE}" ] || { \
|
|
||||||
apk add --no-cache tzdata && \
|
|
||||||
cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime && \
|
|
||||||
echo "${TIMEZONE}" > /etc/timezone; \
|
|
||||||
}
|
|
||||||
ENV TIMEZONE=${TIMEZONE}
|
|
||||||
|
|
||||||
# Control the configuration file to be copied into the container.
|
|
||||||
ARG SETTINGS=./settings.json.docker
|
|
||||||
|
|
||||||
# plugins to install while building the container. By default no plugins are
|
# plugins to install while building the container. By default no plugins are
|
||||||
# installed.
|
# installed.
|
||||||
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
||||||
|
@ -42,22 +15,6 @@ ARG SETTINGS=./settings.json.docker
|
||||||
# ETHERPAD_PLUGINS="ep_codepad ep_author_neat"
|
# ETHERPAD_PLUGINS="ep_codepad ep_author_neat"
|
||||||
ARG ETHERPAD_PLUGINS=
|
ARG ETHERPAD_PLUGINS=
|
||||||
|
|
||||||
# local plugins to install while building the container. By default no plugins are
|
|
||||||
# installed.
|
|
||||||
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
|
||||||
#
|
|
||||||
# EXAMPLE:
|
|
||||||
# ETHERPAD_LOCAL_PLUGINS="../ep_my_plugin ../ep_another_plugin"
|
|
||||||
ARG ETHERPAD_LOCAL_PLUGINS=
|
|
||||||
|
|
||||||
# github plugins to install while building the container. By default no plugins are
|
|
||||||
# installed.
|
|
||||||
# If given a value, it has to be a space-separated, quoted list of plugin names.
|
|
||||||
#
|
|
||||||
# EXAMPLE:
|
|
||||||
# ETHERPAD_GITHUB_PLUGINS="ether/ep_plugin"
|
|
||||||
ARG ETHERPAD_GITHUB_PLUGINS=
|
|
||||||
|
|
||||||
# Control whether abiword will be installed, enabling exports to DOC/PDF/ODT formats.
|
# Control whether abiword will be installed, enabling exports to DOC/PDF/ODT formats.
|
||||||
# By default, it is not installed.
|
# By default, it is not installed.
|
||||||
# If given any value, abiword will be installed.
|
# If given any value, abiword will be installed.
|
||||||
|
@ -74,117 +31,47 @@ ARG INSTALL_ABIWORD=
|
||||||
# INSTALL_LIBREOFFICE=true
|
# INSTALL_LIBREOFFICE=true
|
||||||
ARG INSTALL_SOFFICE=
|
ARG INSTALL_SOFFICE=
|
||||||
|
|
||||||
# Install dependencies required for modifying access.
|
# By default, Etherpad container is built and run in "production" mode. This is
|
||||||
RUN apk add --no-cache shadow bash
|
# leaner (development dependencies are not installed) and runs faster (among
|
||||||
|
# other things, assets are minified & compressed).
|
||||||
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
# Follow the principle of least privilege: run as unprivileged user.
|
# Follow the principle of least privilege: run as unprivileged user.
|
||||||
#
|
#
|
||||||
# Running as non-root enables running this image in platforms like OpenShift
|
# Running as non-root enables running this image in platforms like OpenShift
|
||||||
# that do not allow images running as root.
|
# that do not allow images running as root.
|
||||||
#
|
RUN useradd --uid 5001 --create-home etherpad
|
||||||
# If any of the following args are set to the empty string, default
|
|
||||||
# values will be chosen.
|
|
||||||
ARG EP_HOME=
|
|
||||||
ARG EP_UID=5001
|
|
||||||
ARG EP_GID=0
|
|
||||||
ARG EP_SHELL=
|
|
||||||
|
|
||||||
RUN groupadd --system ${EP_GID:+--gid "${EP_GID}" --non-unique} etherpad && \
|
RUN mkdir /opt/etherpad-lite && chown etherpad:0 /opt/etherpad-lite
|
||||||
useradd --system ${EP_UID:+--uid "${EP_UID}" --non-unique} --gid etherpad \
|
|
||||||
${EP_HOME:+--home-dir "${EP_HOME}"} --create-home \
|
|
||||||
${EP_SHELL:+--shell "${EP_SHELL}"} etherpad
|
|
||||||
|
|
||||||
ARG EP_DIR=/opt/etherpad-lite
|
# install abiword for DOC/PDF/ODT export
|
||||||
RUN mkdir -p "${EP_DIR}" && chown etherpad:etherpad "${EP_DIR}"
|
RUN [ -z "${INSTALL_ABIWORD}" ] || (apt update && apt -y install abiword && apt clean && rm -rf /var/lib/apt/lists/*)
|
||||||
|
|
||||||
# the mkdir is needed for configuration of openjdk-11-jre-headless, see
|
# install libreoffice for DOC/PDF/ODT export
|
||||||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
# the mkdir is needed for configuration of openjdk-11-jre-headless, see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863199
|
||||||
RUN \
|
RUN [ -z "${INSTALL_SOFFICE}" ] || (apt update && mkdir -p /usr/share/man/man1 && apt -y install libreoffice && apt clean && rm -rf /var/lib/apt/lists/*)
|
||||||
mkdir -p /usr/share/man/man1 && \
|
|
||||||
npm install pnpm@latest -g && \
|
|
||||||
apk update && apk upgrade && \
|
|
||||||
apk add --no-cache \
|
|
||||||
ca-certificates \
|
|
||||||
curl \
|
|
||||||
git \
|
|
||||||
${INSTALL_ABIWORD:+abiword abiword-plugin-command} \
|
|
||||||
${INSTALL_SOFFICE:+libreoffice openjdk8-jre libreoffice-common}
|
|
||||||
|
|
||||||
USER etherpad
|
USER etherpad
|
||||||
|
|
||||||
WORKDIR "${EP_DIR}"
|
WORKDIR /opt/etherpad-lite
|
||||||
|
|
||||||
# etherpads version feature requires this. Only copy what is really needed
|
COPY --chown=etherpad:0 ./ ./
|
||||||
COPY --chown=etherpad:etherpad ${SETTINGS} ./settings.json
|
|
||||||
COPY --chown=etherpad:etherpad ./var ./var
|
|
||||||
COPY --chown=etherpad:etherpad ./bin ./bin
|
|
||||||
COPY --chown=etherpad:etherpad ./pnpm-workspace.yaml ./package.json ./
|
|
||||||
|
|
||||||
|
# install node dependencies for Etherpad
|
||||||
|
RUN src/bin/installDeps.sh && \
|
||||||
|
rm -rf ~/.npm/_cacache
|
||||||
|
|
||||||
|
# Install the plugins, if ETHERPAD_PLUGINS is not empty.
|
||||||
FROM build AS build_git
|
#
|
||||||
ONBUILD COPY --chown=etherpad:etherpad ./.git/HEA[D] ./.git/HEAD
|
# Bash trick: in the for loop ${ETHERPAD_PLUGINS} is NOT quoted, in order to be
|
||||||
ONBUILD COPY --chown=etherpad:etherpad ./.git/ref[s] ./.git/refs
|
# able to split at spaces.
|
||||||
|
RUN for PLUGIN_NAME in ${ETHERPAD_PLUGINS}; do npm install "${PLUGIN_NAME}" || exit 1; done
|
||||||
FROM build AS build_copy
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
FROM build_${BUILD_ENV} AS development
|
|
||||||
|
|
||||||
ARG ETHERPAD_PLUGINS=
|
|
||||||
ARG ETHERPAD_LOCAL_PLUGINS=
|
|
||||||
ARG ETHERPAD_LOCAL_PLUGINS_ENV=
|
|
||||||
ARG ETHERPAD_GITHUB_PLUGINS=
|
|
||||||
|
|
||||||
COPY --chown=etherpad:etherpad ./src/ ./src/
|
|
||||||
COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/src/ templates/admin./src/templates/admin
|
|
||||||
COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/src/static/oidc ./src/static/oidc
|
|
||||||
|
|
||||||
COPY --chown=etherpad:etherpad ./local_plugin[s] ./local_plugins/
|
|
||||||
|
|
||||||
RUN bash -c ./bin/installLocalPlugins.sh
|
|
||||||
|
|
||||||
RUN bin/installDeps.sh && \
|
|
||||||
if [ ! -z "${ETHERPAD_PLUGINS}" ] || [ ! -z "${ETHERPAD_GITHUB_PLUGINS}" ]; then \
|
|
||||||
pnpm run plugins i ${ETHERPAD_PLUGINS} ${ETHERPAD_GITHUB_PLUGINS:+--github ${ETHERPAD_GITHUB_PLUGINS}}; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
FROM build_${BUILD_ENV} AS production
|
|
||||||
|
|
||||||
ARG ETHERPAD_PLUGINS=
|
|
||||||
ARG ETHERPAD_LOCAL_PLUGINS=
|
|
||||||
ARG ETHERPAD_LOCAL_PLUGINS_ENV=
|
|
||||||
ARG ETHERPAD_GITHUB_PLUGINS=
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
|
||||||
ENV ETHERPAD_PRODUCTION=true
|
|
||||||
|
|
||||||
COPY --chown=etherpad:etherpad ./src ./src
|
|
||||||
COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/src/templates/admin ./src/templates/admin
|
|
||||||
COPY --chown=etherpad:etherpad --from=adminbuild /opt/etherpad-lite/src/static/oidc ./src/static/oidc
|
|
||||||
|
|
||||||
COPY --chown=etherpad:etherpad ./local_plugin[s] ./local_plugins/
|
|
||||||
|
|
||||||
RUN bash -c ./bin/installLocalPlugins.sh
|
|
||||||
|
|
||||||
RUN bin/installDeps.sh && \
|
|
||||||
if [ ! -z "${ETHERPAD_PLUGINS}" ] || [ ! -z "${ETHERPAD_GITHUB_PLUGINS}" ]; then \
|
|
||||||
pnpm run plugins i ${ETHERPAD_PLUGINS} ${ETHERPAD_GITHUB_PLUGINS:+--github ${ETHERPAD_GITHUB_PLUGINS}}; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Copy the configuration file.
|
# Copy the configuration file.
|
||||||
COPY --chown=etherpad:etherpad ${SETTINGS} "${EP_DIR}"/settings.json
|
COPY --chown=etherpad:0 ./settings.json.docker /opt/etherpad-lite/settings.json
|
||||||
|
|
||||||
# Fix group permissions
|
# Fix permissions for root group
|
||||||
# Note: For some reason increases image size from 257 to 334.
|
RUN chmod -R g=u .
|
||||||
# RUN chmod -R g=u .
|
|
||||||
|
|
||||||
USER etherpad
|
|
||||||
|
|
||||||
HEALTHCHECK --interval=5s --timeout=3s \
|
|
||||||
CMD curl --silent http://localhost:9001/health | grep -E "pass|ok|up" > /dev/null || exit 1
|
|
||||||
|
|
||||||
EXPOSE 9001
|
EXPOSE 9001
|
||||||
CMD ["pnpm", "run", "prod"]
|
CMD ["node", "--experimental-worker", "src/node/server.js"]
|
||||||
|
|
32
Makefile
Normal file
32
Makefile
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
doc_sources = $(wildcard doc/*/*.md) $(wildcard doc/*.md)
|
||||||
|
outdoc_files = $(addprefix out/,$(doc_sources:.md=.html))
|
||||||
|
|
||||||
|
docassets = $(addprefix out/,$(wildcard doc/assets/*))
|
||||||
|
|
||||||
|
VERSION = $(shell node -e "console.log( require('./src/package.json').version )")
|
||||||
|
UNAME := $(shell uname -s)
|
||||||
|
|
||||||
|
ensure_marked_is_installed:
|
||||||
|
set -eu; \
|
||||||
|
hash npm; \
|
||||||
|
if [ $(shell npm list --prefix src/bin/doc >/dev/null 2>/dev/null; echo $$?) -ne "0" ]; then \
|
||||||
|
npm ci --prefix=src/bin/doc; \
|
||||||
|
fi
|
||||||
|
|
||||||
|
docs: ensure_marked_is_installed $(outdoc_files) $(docassets)
|
||||||
|
|
||||||
|
out/doc/assets/%: doc/assets/%
|
||||||
|
mkdir -p $(@D)
|
||||||
|
cp $< $@
|
||||||
|
|
||||||
|
out/doc/%.html: doc/%.md
|
||||||
|
mkdir -p $(@D)
|
||||||
|
node src/bin/doc/generate.js --format=html --template=doc/template.html $< > $@
|
||||||
|
ifeq ($(UNAME),Darwin)
|
||||||
|
sed -i '' 's/__VERSION__/${VERSION}/' $@
|
||||||
|
else
|
||||||
|
sed -i 's/__VERSION__/${VERSION}/' $@
|
||||||
|
endif
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf out/
|
376
README.md
376
README.md
|
@ -1,317 +1,165 @@
|
||||||
# Etherpad: A real-time collaborative editor for the web
|
# A real-time collaborative editor for the web
|
||||||
|
<a href="https://hub.docker.com/r/etherpad/etherpad"><img alt="Docker Pulls" src="https://img.shields.io/docker/pulls/etherpad/etherpad"></a>
|
||||||
|
|
||||||

|
[](https://travis-ci.com/github/ether/etherpad-lite)
|
||||||
|
|
||||||
## About
|

|
||||||
|
|
||||||
Etherpad is a real-time collaborative editor [scalable to thousands of
|
# About
|
||||||
simultaneous real time users](http://scale.etherpad.org/). It provides [full
|
Etherpad is a real-time collaborative editor [scalable to thousands of simultaneous real time users](http://scale.etherpad.org/). It provides [full data export](https://github.com/ether/etherpad-lite/wiki/Understanding-Etherpad's-Full-Data-Export-capabilities) capabilities, and runs on _your_ server, under _your_ control.
|
||||||
data
|
|
||||||
export](https://github.com/ether/etherpad-lite/wiki/Understanding-Etherpad's-Full-Data-Export-capabilities)
|
|
||||||
capabilities, and runs on _your_ server, under _your_ control.
|
|
||||||
|
|
||||||
## Try it out
|
**[Try it out](https://video.etherpad.com)**
|
||||||
|
|
||||||
Wikimedia provide a [public Etherpad instance for you to Try Etherpad out.](https://etherpad.wikimedia.org) or [use another public Etherpad instance to see other features](https://github.com/ether/etherpad-lite/wiki/Sites-That-Run-Etherpad#sites-that-run-etherpad)
|
# Installation
|
||||||
|
|
||||||
## Project Status
|
## Requirements
|
||||||
|
- `nodejs` >= **10.17.0**.
|
||||||
|
|
||||||
We're looking for maintainers and have some funding available. Please contact John McLear if you can help.
|
## GNU/Linux and other UNIX-like systems
|
||||||
|
|
||||||
### Code Quality
|
### Quick install on Debian/Ubuntu
|
||||||
|
```
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/codeql-analysis.yml)
|
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
|
||||||
|
sudo apt install -y nodejs
|
||||||
### Testing
|
git clone --branch master https://github.com/ether/etherpad-lite.git &&
|
||||||
|
cd etherpad-lite &&
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/backend-tests.yml)
|
src/bin/run.sh
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/load-test.yml)
|
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/rate-limit.yml)
|
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/dockerfile.yml)
|
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/frontend-admin-tests.yml)
|
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/frontend-tests.yml)
|
|
||||||
[](https://saucelabs.com/u/etherpad)
|
|
||||||
[](https://github.com/ether/etherpad-lite/actions/workflows/windows.yml)
|
|
||||||
|
|
||||||
### Engagement
|
|
||||||
|
|
||||||
[](https://hub.docker.com/r/etherpad/etherpad)
|
|
||||||
[](https://discord.com/invite/daEjfhw)
|
|
||||||
[](https://static.etherpad.org/index.html)
|
|
||||||

|
|
||||||

|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
### Docker-Compose
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
services:
|
|
||||||
app:
|
|
||||||
user: "0:0"
|
|
||||||
image: etherpad/etherpad:latest
|
|
||||||
tty: true
|
|
||||||
stdin_open: true
|
|
||||||
volumes:
|
|
||||||
- plugins:/opt/etherpad-lite/src/plugin_packages
|
|
||||||
- etherpad-var:/opt/etherpad-lite/var
|
|
||||||
depends_on:
|
|
||||||
- postgres
|
|
||||||
environment:
|
|
||||||
NODE_ENV: production
|
|
||||||
ADMIN_PASSWORD: ${DOCKER_COMPOSE_APP_ADMIN_PASSWORD:-admin}
|
|
||||||
DB_CHARSET: ${DOCKER_COMPOSE_APP_DB_CHARSET:-utf8mb4}
|
|
||||||
DB_HOST: postgres
|
|
||||||
DB_NAME: ${DOCKER_COMPOSE_POSTGRES_DATABASE:-etherpad}
|
|
||||||
DB_PASS: ${DOCKER_COMPOSE_POSTGRES_PASSWORD:-admin}
|
|
||||||
DB_PORT: ${DOCKER_COMPOSE_POSTGRES_PORT:-5432}
|
|
||||||
DB_TYPE: "postgres"
|
|
||||||
DB_USER: ${DOCKER_COMPOSE_POSTGRES_USER:-admin}
|
|
||||||
# For now, the env var DEFAULT_PAD_TEXT cannot be unset or empty; it seems to be mandatory in the latest version of etherpad
|
|
||||||
DEFAULT_PAD_TEXT: ${DOCKER_COMPOSE_APP_DEFAULT_PAD_TEXT:- }
|
|
||||||
DISABLE_IP_LOGGING: ${DOCKER_COMPOSE_APP_DISABLE_IP_LOGGING:-false}
|
|
||||||
SOFFICE: ${DOCKER_COMPOSE_APP_SOFFICE:-null}
|
|
||||||
TRUST_PROXY: ${DOCKER_COMPOSE_APP_TRUST_PROXY:-true}
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "${DOCKER_COMPOSE_APP_PORT_PUBLISHED:-9001}:${DOCKER_COMPOSE_APP_PORT_TARGET:-9001}"
|
|
||||||
|
|
||||||
postgres:
|
|
||||||
image: postgres:15-alpine
|
|
||||||
environment:
|
|
||||||
POSTGRES_DB: ${DOCKER_COMPOSE_POSTGRES_DATABASE:-etherpad}
|
|
||||||
POSTGRES_PASSWORD: ${DOCKER_COMPOSE_POSTGRES_PASSWORD:-admin}
|
|
||||||
POSTGRES_PORT: ${DOCKER_COMPOSE_POSTGRES_PORT:-5432}
|
|
||||||
POSTGRES_USER: ${DOCKER_COMPOSE_POSTGRES_USER:-admin}
|
|
||||||
PGDATA: /var/lib/postgresql/data/pgdata
|
|
||||||
restart: always
|
|
||||||
# Exposing the port is not needed unless you want to access this database instance from the host.
|
|
||||||
# Be careful when other postgres docker container are running on the same port
|
|
||||||
# ports:
|
|
||||||
# - "5432:5432"
|
|
||||||
volumes:
|
|
||||||
- postgres_data:/var/lib/postgresql/data
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
postgres_data:
|
|
||||||
plugins:
|
|
||||||
etherpad-var:
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Requirements
|
### Manual install
|
||||||
|
You'll need git and [node.js](https://nodejs.org) installed (minimum required Node version: **10.17.0**).
|
||||||
|
|
||||||
[Node.js](https://nodejs.org/) >= **18.18.2**.
|
**As any user (we recommend creating a separate user called etherpad):**
|
||||||
|
|
||||||
### Windows, macOS, Linux
|
1. Move to a folder where you want to install Etherpad. Clone the git repository: `git clone --branch master git://github.com/ether/etherpad-lite.git`
|
||||||
|
2. Change into the new directory containing the cloned source code: `cd etherpad-lite`
|
||||||
|
3. run `src/bin/run.sh` and open <http://127.0.0.1:9001> in your browser.
|
||||||
|
|
||||||
1. Download the latest Node.js runtime from [nodejs.org](https://nodejs.org/).
|
To update to the latest released version, execute `git pull origin`. The next
|
||||||
2. Install pnpm: `npm install -g pnpm` (Administrator privileges may be required).
|
start with `src/bin/run.sh` will update the dependencies.
|
||||||
3. Clone the repository: `git clone -b master`
|
|
||||||
4. Run `pnpm i`
|
|
||||||
5. Run `pnpm run build:etherpad`
|
|
||||||
6. Run `pnpm run prod`
|
|
||||||
7. Visit `http://localhost:9001` in your browser.
|
|
||||||
|
|
||||||
### Docker container
|
[Next steps](#next-steps).
|
||||||
|
|
||||||
Find [here](doc/docker.adoc) information on running Etherpad in a container.
|
## Windows
|
||||||
|
|
||||||
## Plugins
|
### Prebuilt Windows package
|
||||||
|
This package runs on any Windows machine, but for development purposes, please do a manual install.
|
||||||
|
|
||||||
Etherpad is very customizable through plugins.
|
1. [Download the latest Windows package](https://etherpad.org/#download)
|
||||||
|
2. Extract the folder
|
||||||
|
|
||||||

|
Run `start.bat` and open <http://localhost:9001> in your browser. You like it? [Next steps](#next-steps).
|
||||||
|
|
||||||

|
### Manually install on Windows
|
||||||
|
You'll need [node.js](https://nodejs.org) and (optionally, though recommended) git.
|
||||||
|
|
||||||
### Available Plugins
|
1. Grab the source, either
|
||||||
|
- download <https://github.com/ether/etherpad-lite/zipball/master>
|
||||||
|
- or `git clone --branch master https://github.com/ether/etherpad-lite.git`
|
||||||
|
2. With a "Run as administrator" command prompt execute
|
||||||
|
`src\bin\installOnWindows.bat`
|
||||||
|
|
||||||
For a list of available plugins, see the [plugins
|
Now, run `start.bat` and open <http://localhost:9001> in your browser.
|
||||||
site](https://static.etherpad.org).
|
|
||||||
|
|
||||||
### Plugin Installation
|
Update to the latest version with `git pull origin`, then run
|
||||||
|
`src\bin\installOnWindows.bat`, again.
|
||||||
|
|
||||||
You can install plugins from the admin web interface (e.g.,
|
If cloning to a subdirectory within another project, you may need to do the following:
|
||||||
http://127.0.0.1:9001/admin/plugins).
|
|
||||||
|
|
||||||
Alternatively, you can install plugins from the command line:
|
1. Start the server manually (e.g. `node src/node/server.js`)
|
||||||
|
2. Edit the db `filename` in `settings.json` to the relative directory with the file (e.g. `application/lib/etherpad-lite/var/dirty.db`)
|
||||||
|
3. Add auto-generated files to the main project `.gitignore`
|
||||||
|
|
||||||
```sh
|
## Docker container
|
||||||
cd /path/to/etherpad-lite
|
|
||||||
pnpm run plugins i ep_${plugin_name}
|
Find [here](doc/docker.md) information on running Etherpad in a container.
|
||||||
|
|
||||||
|
# Next Steps
|
||||||
|
|
||||||
|
## Tweak the settings
|
||||||
|
You can modify the settings in `settings.json`.
|
||||||
|
If you need to handle multiple settings files, you can pass the path to a
|
||||||
|
settings file to `src/bin/run.sh` using the `-s|--settings` option: this allows
|
||||||
|
you to run multiple Etherpad instances from the same installation.
|
||||||
|
Similarly, `--credentials` can be used to give a settings override file, `--apikey` to give a different APIKEY.txt file and `--sessionkey` to give a non-default SESSIONKEY.txt.
|
||||||
|
**Each configuration parameter can also be set via an environment variable**, using the syntax `"${ENV_VAR}"` or `"${ENV_VAR:default_value}"`. For details, refer to `settings.json.template`.
|
||||||
|
Once you have access to your `/admin` section settings can be modified through the web browser.
|
||||||
|
|
||||||
|
If you are planning to use Etherpad in a production environment, you should use a dedicated database such as `mysql`, since the `dirtyDB` database driver is only for testing and/or development purposes.
|
||||||
|
|
||||||
|
## Secure your installation
|
||||||
|
If you have enabled authentication in `users` section in `settings.json`, it is a good security practice to **store hashes instead of plain text passwords** in that file. This is _especially_ advised if you are running a production installation.
|
||||||
|
|
||||||
|
Please install [ep_hash_auth plugin](https://www.npmjs.com/package/ep_hash_auth) and configure it.
|
||||||
|
If you prefer, `ep_hash_auth` also gives you the option of storing the users in a custom directory in the file system, without having to edit `settings.json` and restart Etherpad each time.
|
||||||
|
|
||||||
|
## Customize functionalities with plugins
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
Etherpad is very customizable through plugins. Instructions for installing themes and plugins can be found in [the plugin wiki article](https://github.com/ether/etherpad-lite/wiki/Available-Plugins).
|
||||||
|
|
||||||
|
## Getting the full features
|
||||||
|
Run the following command in your Etherpad folder to get all of the features visible in the demo gif:
|
||||||
|
|
||||||
|
```
|
||||||
|
npm install ep_headings2 ep_markdown ep_comments_page ep_align ep_font_color ep_webrtc ep_embedded_hyperlinks2
|
||||||
```
|
```
|
||||||
|
|
||||||
Also see [the plugin wiki
|
## Customize the style with skin variants
|
||||||
article](https://github.com/ether/etherpad-lite/wiki/Available-Plugins).
|
|
||||||
|
|
||||||
### Suggested Plugins
|
Open <http://127.0.0.1:9001/p/test#skinvariantsbuilder> in your browser and start playing !
|
||||||
|
|
||||||
Run the following command in your Etherpad folder to get all of the features
|

|
||||||
visible in the above demo gif:
|
|
||||||
|
|
||||||
```sh
|
|
||||||
pnpm run plugins i \
|
|
||||||
ep_align \
|
|
||||||
ep_comments_page \
|
|
||||||
ep_embedded_hyperlinks2 \
|
|
||||||
ep_font_color \
|
|
||||||
ep_headings2 \
|
|
||||||
ep_markdown \
|
|
||||||
ep_webrtc
|
|
||||||
```
|
|
||||||
|
|
||||||
For user authentication, you are encouraged to run an [OpenID
|
|
||||||
Connect](https://openid.net/connect/) identity provider (OP) and install the
|
|
||||||
following plugins:
|
|
||||||
|
|
||||||
* [ep_openid_connect](https://github.com/ether/ep_openid_connect#readme) to
|
|
||||||
authenticate against your OP.
|
|
||||||
* [ep_guest](https://github.com/ether/ep_guest#readme) to create a
|
|
||||||
"guest" account that has limited access (e.g., read-only access).
|
|
||||||
* [ep_user_displayname](https://github.com/ether/ep_user_displayname#readme)
|
|
||||||
to automatically populate each user's displayed name from your OP.
|
|
||||||
* [ep_stable_authorid](https://github.com/ether/ep_stable_authorid#readme) so
|
|
||||||
that each user's chosen color, display name, comment ownership, etc. is
|
|
||||||
strongly linked to their account.
|
|
||||||
|
|
||||||
### Upgrade Etherpad
|
|
||||||
|
|
||||||
Run the following command in your Etherpad folder to upgrade
|
|
||||||
|
|
||||||
1. Stop any running Etherpad (manual, systemd ...)
|
|
||||||
2. Get present version
|
|
||||||
```sh
|
|
||||||
git -P tag --contains
|
|
||||||
```
|
|
||||||
3. List versions available
|
|
||||||
```sh
|
|
||||||
git -P tag --list "v*" --merged
|
|
||||||
```
|
|
||||||
4. Select the version
|
|
||||||
```sh
|
|
||||||
git checkout v2.2.5
|
|
||||||
git switch -c v2.2.5
|
|
||||||
```
|
|
||||||
5. Upgrade Etherpad
|
|
||||||
```sh
|
|
||||||
./bin/run.sh
|
|
||||||
```
|
|
||||||
6. Stop with [CTRL-C]
|
|
||||||
7. Restart your Etherpad service
|
|
||||||
|
|
||||||
## Next Steps
|
|
||||||
|
|
||||||
### Tweak the settings
|
|
||||||
|
|
||||||
You can modify the settings in `settings.json`. If you need to handle multiple
|
|
||||||
settings files, you can pass the path to a settings file to `bin/run.sh`
|
|
||||||
using the `-s|--settings` option: this allows you to run multiple Etherpad
|
|
||||||
instances from the same installation. Similarly, `--credentials` can be used to
|
|
||||||
give a settings override file, `--apikey` to give a different APIKEY.txt file
|
|
||||||
and `--sessionkey` to give a non-default `SESSIONKEY.txt`. **Each configuration
|
|
||||||
parameter can also be set via an environment variable**, using the syntax
|
|
||||||
`"${ENV_VAR}"` or `"${ENV_VAR:default_value}"`. For details, refer to
|
|
||||||
`settings.json.template`. Once you have access to your `/admin` section,
|
|
||||||
settings can be modified through the web browser.
|
|
||||||
|
|
||||||
If you are planning to use Etherpad in a production environment, you should use
|
|
||||||
a dedicated database such as `mysql`, since the `dirtyDB` database driver is
|
|
||||||
only for testing and/or development purposes.
|
|
||||||
|
|
||||||
### Secure your installation
|
|
||||||
|
|
||||||
If you have enabled authentication in `users` section in `settings.json`, it is
|
|
||||||
a good security practice to **store hashes instead of plain text passwords** in
|
|
||||||
that file. This is _especially_ advised if you are running a production
|
|
||||||
installation.
|
|
||||||
|
|
||||||
Please install [ep_hash_auth plugin](https://www.npmjs.com/package/ep_hash_auth)
|
|
||||||
and configure it. If you prefer, `ep_hash_auth` also gives you the option of
|
|
||||||
storing the users in a custom directory in the file system, without having to
|
|
||||||
edit `settings.json` and restart Etherpad each time.
|
|
||||||
|
|
||||||
### Customize the style with skin variants
|
|
||||||
|
|
||||||
Open http://127.0.0.1:9001/p/test#skinvariantsbuilder in your browser and start
|
|
||||||
playing!
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
## Helpful resources
|
## Helpful resources
|
||||||
|
The [wiki](https://github.com/ether/etherpad-lite/wiki) is your one-stop resource for Tutorials and How-to's.
|
||||||
The [wiki](https://github.com/ether/etherpad-lite/wiki) is your one-stop
|
|
||||||
resource for Tutorials and How-to's.
|
|
||||||
|
|
||||||
Documentation can be found in `doc/`.
|
Documentation can be found in `doc/`.
|
||||||
|
|
||||||
## Development
|
# Development
|
||||||
|
|
||||||
### Things you should know
|
## Things you should know
|
||||||
|
|
||||||
You can debug Etherpad using `bin/debugRun.sh`.
|
You can debug Etherpad using `src/bin/debugRun.sh`.
|
||||||
|
|
||||||
You can run Etherpad quickly launching `bin/fastRun.sh`. It's convenient for
|
You can run Etherpad quickly launching `src/bin/fastRun.sh`. It's convenient for
|
||||||
developers and advanced users. Be aware that it will skip the dependencies
|
developers and advanced users. Be aware that it will skip the dependencies
|
||||||
update, so remember to run `bin/installDeps.sh` after installing a new
|
update, so remember to run `src/bin/installDeps.sh` after installing a new
|
||||||
dependency or upgrading version.
|
dependency or upgrading version.
|
||||||
|
|
||||||
If you want to find out how Etherpad's `Easysync` works (the library that makes
|
If you want to find out how Etherpad's `Easysync` works (the library that makes it really realtime), start with this [PDF](https://github.com/ether/etherpad-lite/raw/master/doc/easysync/easysync-full-description.pdf) (complex, but worth reading).
|
||||||
it really realtime), start with this
|
|
||||||
[PDF](https://github.com/ether/etherpad-lite/raw/master/doc/easysync/easysync-full-description.pdf)
|
|
||||||
(complex, but worth reading).
|
|
||||||
|
|
||||||
### Contributing
|
## Contributing
|
||||||
|
Read our [**Developer Guidelines**](https://github.com/ether/etherpad-lite/blob/master/CONTRIBUTING.md)
|
||||||
|
|
||||||
Read our [**Developer
|
# Get in touch
|
||||||
Guidelines**](https://github.com/ether/etherpad-lite/blob/master/CONTRIBUTING.md)
|
The official channel for contacting the development team is via the [Github issues](https://github.com/ether/etherpad-lite/issues).
|
||||||
|
|
||||||
### HTTP API
|
For **responsible disclosure of vulnerabilities**, please write a mail to the maintainers (a.mux@inwind.it and contact@etherpad.org).
|
||||||
|
Join the official [Etherpad Discord Channel](https://discord.com/invite/daEjfhw)
|
||||||
|
|
||||||
Etherpad is designed to be easily embeddable and provides a [HTTP
|
# HTTP API
|
||||||
API](https://github.com/ether/etherpad-lite/wiki/HTTP-API) that allows your web
|
Etherpad is designed to be easily embeddable and provides a [HTTP API](https://github.com/ether/etherpad-lite/wiki/HTTP-API)
|
||||||
application to manage pads, users and groups. It is recommended to use the
|
that allows your web application to manage pads, users and groups. It is recommended to use the [available client implementations](https://github.com/ether/etherpad-lite/wiki/HTTP-API-client-libraries) in order to interact with this API.
|
||||||
[available client
|
|
||||||
implementations](https://github.com/ether/etherpad-lite/wiki/HTTP-API-client-libraries)
|
|
||||||
in order to interact with this API.
|
|
||||||
|
|
||||||
OpenAPI (previously swagger) definitions for the API are exposed under
|
OpenAPI (previously swagger) definitions for the API are exposed under `/api/openapi.json`.
|
||||||
`/api/openapi.json`.
|
|
||||||
|
|
||||||
### jQuery plugin
|
# jQuery plugin
|
||||||
|
There is a [jQuery plugin](https://github.com/ether/etherpad-lite-jquery-plugin) that helps you to embed Pads into your website.
|
||||||
|
|
||||||
There is a [jQuery plugin](https://github.com/ether/etherpad-lite-jquery-plugin)
|
# Plugin Framework
|
||||||
that helps you to embed Pads into your website.
|
Etherpad offers a plugin framework, allowing you to easily add your own features. By default your Etherpad is extremely light-weight and it's up to you to customize your experience. Once you have Etherpad installed you should [visit the plugin page](https://static.etherpad.org/) and take control.
|
||||||
|
|
||||||
### Plugin Framework
|
# Translations / Localizations (i18n / l10n)
|
||||||
|
Etherpad comes with translations into all languages thanks to the team at [TranslateWiki](https://translatewiki.net/).
|
||||||
|
|
||||||
Etherpad offers a plugin framework, allowing you to easily add your own
|
If you require translations in [plugins](https://static.etherpad.org/) please send pull request to each plugin individually.
|
||||||
features. By default your Etherpad is extremely light-weight and it's up to you
|
|
||||||
to customize your experience. Once you have Etherpad installed you should [visit
|
|
||||||
the plugin page](https://static.etherpad.org/) and take control.
|
|
||||||
|
|
||||||
### Translations / Localizations (i18n / l10n)
|
|
||||||
|
|
||||||
Etherpad comes with translations into all languages thanks to the team at
|
|
||||||
[TranslateWiki](https://translatewiki.net/).
|
|
||||||
|
|
||||||
If you require translations in [plugins](https://static.etherpad.org/) please
|
|
||||||
send pull request to each plugin individually.
|
|
||||||
|
|
||||||
## FAQ
|
|
||||||
|
|
||||||
|
# FAQ
|
||||||
Visit the **[FAQ](https://github.com/ether/etherpad-lite/wiki/FAQ)**.
|
Visit the **[FAQ](https://github.com/ether/etherpad-lite/wiki/FAQ)**.
|
||||||
|
|
||||||
## Get in touch
|
# License
|
||||||
|
|
||||||
The official channel for contacting the development team is via the [GitHub
|
|
||||||
issues](https://github.com/ether/etherpad-lite/issues).
|
|
||||||
|
|
||||||
For **responsible disclosure of vulnerabilities**, please write a mail to the
|
|
||||||
maintainers (a.mux@inwind.it and contact@etherpad.org).
|
|
||||||
|
|
||||||
Join the official [Etherpad Discord
|
|
||||||
Channel](https://discord.com/invite/daEjfhw).
|
|
||||||
|
|
||||||
## License
|
|
||||||
|
|
||||||
[Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html)
|
[Apache License v2](http://www.apache.org/licenses/LICENSE-2.0.html)
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
root: true,
|
|
||||||
env: { browser: true, es2020: true },
|
|
||||||
extends: [
|
|
||||||
'eslint:recommended',
|
|
||||||
'plugin:@typescript-eslint/recommended',
|
|
||||||
'plugin:react-hooks/recommended',
|
|
||||||
],
|
|
||||||
ignorePatterns: ['dist', '.eslintrc.cjs'],
|
|
||||||
parser: '@typescript-eslint/parser',
|
|
||||||
plugins: ['react-refresh'],
|
|
||||||
rules: {
|
|
||||||
'react-refresh/only-export-components': [
|
|
||||||
'warn',
|
|
||||||
{ allowConstantExport: true },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
}
|
|
24
admin/.gitignore
vendored
24
admin/.gitignore
vendored
|
@ -1,24 +0,0 @@
|
||||||
# Logs
|
|
||||||
logs
|
|
||||||
*.log
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
pnpm-debug.log*
|
|
||||||
lerna-debug.log*
|
|
||||||
|
|
||||||
node_modules
|
|
||||||
dist
|
|
||||||
dist-ssr
|
|
||||||
*.local
|
|
||||||
|
|
||||||
# Editor directories and files
|
|
||||||
.vscode/*
|
|
||||||
!.vscode/extensions.json
|
|
||||||
.idea
|
|
||||||
.DS_Store
|
|
||||||
*.suo
|
|
||||||
*.ntvs*
|
|
||||||
*.njsproj
|
|
||||||
*.sln
|
|
||||||
*.sw?
|
|
|
@ -1,30 +0,0 @@
|
||||||
# React + TypeScript + Vite
|
|
||||||
|
|
||||||
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
|
||||||
|
|
||||||
Currently, two official plugins are available:
|
|
||||||
|
|
||||||
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
|
||||||
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
|
||||||
|
|
||||||
## Expanding the ESLint configuration
|
|
||||||
|
|
||||||
If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
|
|
||||||
|
|
||||||
- Configure the top-level `parserOptions` property like this:
|
|
||||||
|
|
||||||
```js
|
|
||||||
export default {
|
|
||||||
// other rules...
|
|
||||||
parserOptions: {
|
|
||||||
ecmaVersion: 'latest',
|
|
||||||
sourceType: 'module',
|
|
||||||
project: ['./tsconfig.json', './tsconfig.node.json'],
|
|
||||||
tsconfigRootDir: __dirname,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`
|
|
||||||
- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`
|
|
||||||
- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list
|
|
|
@ -1,14 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
||||||
<title>Etherpad Admin Dashboard</title>
|
|
||||||
<link rel="icon" href="/favicon.ico">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div id="root"></div>
|
|
||||||
<div id="loading"></div>
|
|
||||||
<script type="module" src="/src/main.tsx"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"name": "admin",
|
|
||||||
"private": true,
|
|
||||||
"version": "2.3.0",
|
|
||||||
"type": "module",
|
|
||||||
"scripts": {
|
|
||||||
"dev": "vite",
|
|
||||||
"build": "tsc && vite build",
|
|
||||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
||||||
"build-copy": "tsc && vite build --outDir ../src/templates/admin --emptyOutDir",
|
|
||||||
"preview": "vite preview"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"@radix-ui/react-switch": "^1.1.4"
|
|
||||||
},
|
|
||||||
"devDependencies": {
|
|
||||||
"@radix-ui/react-dialog": "^1.1.11",
|
|
||||||
"@radix-ui/react-toast": "^1.2.11",
|
|
||||||
"@types/react": "^19.1.2",
|
|
||||||
"@types/react-dom": "^19.1.3",
|
|
||||||
"@typescript-eslint/eslint-plugin": "^8.31.1",
|
|
||||||
"@typescript-eslint/parser": "^8.31.1",
|
|
||||||
"@vitejs/plugin-react-swc": "^3.9.0",
|
|
||||||
"eslint": "^9.25.1",
|
|
||||||
"eslint-plugin-react-hooks": "^5.2.0",
|
|
||||||
"eslint-plugin-react-refresh": "^0.4.20",
|
|
||||||
"i18next": "^25.0.2",
|
|
||||||
"i18next-browser-languagedetector": "^8.1.0",
|
|
||||||
"lucide-react": "^0.503.0",
|
|
||||||
"react": "^19.1.0",
|
|
||||||
"react-dom": "^19.1.0",
|
|
||||||
"react-hook-form": "^7.56.1",
|
|
||||||
"react-i18next": "^15.5.1",
|
|
||||||
"react-router-dom": "^7.5.3",
|
|
||||||
"socket.io-client": "^4.8.1",
|
|
||||||
"typescript": "^5.8.2",
|
|
||||||
"vite": "^6.3.4",
|
|
||||||
"vite-plugin-static-copy": "^2.3.1",
|
|
||||||
"vite-plugin-svgr": "^4.3.0",
|
|
||||||
"zustand": "^5.0.3"
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Meno25",
|
|
||||||
"محمد أحمد عبد الفتاح"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "فعل",
|
|
||||||
"ep_adminpads2_autoupdate-label": "التحديث التلقائي على تغييرات الوسادة",
|
|
||||||
"ep_adminpads2_autoupdate.title": "لتمكين أو تعطيل التحديثات التلقائية للاستعلام الحالي.",
|
|
||||||
"ep_adminpads2_confirm": "هل تريد حقًا حذف الوسادة {{padID}}؟",
|
|
||||||
"ep_adminpads2_delete.value": "حذف",
|
|
||||||
"ep_adminpads2_last-edited": "آخر تعديل",
|
|
||||||
"ep_adminpads2_loading": "جارٍ التحميل...",
|
|
||||||
"ep_adminpads2_manage-pads": "إدارة الفوط",
|
|
||||||
"ep_adminpads2_no-results": "لا توجد نتائج.",
|
|
||||||
"ep_adminpads2_pad-user-count": "عدد المستخدمين الوسادة",
|
|
||||||
"ep_adminpads2_padname": "بادنام",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "مصطلح البحث",
|
|
||||||
"ep_adminpads2_search-button.value": "بحث",
|
|
||||||
"ep_adminpads2_search-done": "اكتمل البحث",
|
|
||||||
"ep_adminpads2_search-error-explanation": "واجه الخادم خطأً أثناء البحث عن منصات:",
|
|
||||||
"ep_adminpads2_search-error-title": "فشل في الحصول على قائمة الوسادة",
|
|
||||||
"ep_adminpads2_search-heading": "ابحث عن الفوط",
|
|
||||||
"ep_adminpads2_title": "إدارة الوسادة",
|
|
||||||
"ep_adminpads2_unknown-error": "خطأ غير معروف",
|
|
||||||
"ep_adminpads2_unknown-status": "حالة غير معروفة"
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"আজিজ",
|
|
||||||
"আফতাবুজ্জামান"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "কার্য",
|
|
||||||
"ep_adminpads2_delete.value": "মুছে ফেলুন",
|
|
||||||
"ep_adminpads2_last-edited": "সর্বশেষ সম্পাদিত",
|
|
||||||
"ep_adminpads2_loading": "লোড হচ্ছে...",
|
|
||||||
"ep_adminpads2_manage-pads": "প্যাড পরিচালনা করুন",
|
|
||||||
"ep_adminpads2_no-results": "ফলাফল নেই",
|
|
||||||
"ep_adminpads2_padname": "প্যাডের নাম",
|
|
||||||
"ep_adminpads2_search-button.value": "অনুসন্ধান",
|
|
||||||
"ep_adminpads2_search-done": "অনুসন্ধান সম্পূর্ণ",
|
|
||||||
"ep_adminpads2_search-error-explanation": "প্যাড অনুসন্ধান করার সময় সার্ভার একটি ত্রুটির সম্মুখীন হয়েছে:",
|
|
||||||
"ep_adminpads2_search-error-title": "প্যাডের তালিকা পেতে ব্যর্থ",
|
|
||||||
"ep_adminpads2_search-heading": "প্যাড অনুসন্ধান করুন",
|
|
||||||
"ep_adminpads2_title": "প্যাড প্রশাসন",
|
|
||||||
"ep_adminpads2_unknown-error": "অজানা ত্রুটি",
|
|
||||||
"ep_adminpads2_unknown-status": "অজানা অবস্থা"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Mguix"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Acció",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Actualització automàtica en cas de canvis de pad",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Activa o desactiva les actualitzacions automàtiques per a la consulta actual.",
|
|
||||||
"ep_adminpads2_confirm": "Esteu segur que voleu suprimir el pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Esborrar",
|
|
||||||
"ep_adminpads2_last-edited": "Darrera modificació",
|
|
||||||
"ep_adminpads2_loading": "S’està carregant…",
|
|
||||||
"ep_adminpads2_manage-pads": "Gestiona els pads",
|
|
||||||
"ep_adminpads2_no-results": "No hi ha cap resultat",
|
|
||||||
"ep_adminpads2_pad-user-count": "Nombre d'usuaris de pads",
|
|
||||||
"ep_adminpads2_padname": "Nom del pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Terme de cerca",
|
|
||||||
"ep_adminpads2_search-button.value": "Cercar",
|
|
||||||
"ep_adminpads2_search-done": "Cerca completa",
|
|
||||||
"ep_adminpads2_search-error-explanation": "El servidor ha trobat un error mentre buscava pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "No s'ha pogut obtenir la llista del pad",
|
|
||||||
"ep_adminpads2_search-heading": "Cerca pads",
|
|
||||||
"ep_adminpads2_title": "Administració del pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Error desconegut",
|
|
||||||
"ep_adminpads2_unknown-status": "Estat desconegut"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Spotter"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Akce",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatická aktualizace změn Padu",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Povolí nebo zakáže automatické aktualizace pro aktuální dotaz.",
|
|
||||||
"ep_adminpads2_confirm": "Opravdu chcete odstranit pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Smazat",
|
|
||||||
"ep_adminpads2_last-edited": "Naposledy upraveno",
|
|
||||||
"ep_adminpads2_loading": "Načítání…",
|
|
||||||
"ep_adminpads2_manage-pads": "Spravovat pady",
|
|
||||||
"ep_adminpads2_no-results": "Žádné výsledky",
|
|
||||||
"ep_adminpads2_pad-user-count": "Počet uživatelů padu",
|
|
||||||
"ep_adminpads2_padname": "Název padu",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Hledaný výraz",
|
|
||||||
"ep_adminpads2_search-button.value": "Hledat",
|
|
||||||
"ep_adminpads2_search-done": "Hledání dokončeno",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Při hledání padů došlo k chybě serveru:",
|
|
||||||
"ep_adminpads2_search-error-title": "Seznam padů se nepodařilo získat",
|
|
||||||
"ep_adminpads2_search-heading": "Hledat pady",
|
|
||||||
"ep_adminpads2_title": "Správa Padu",
|
|
||||||
"ep_adminpads2_unknown-error": "Neznámá chyba",
|
|
||||||
"ep_adminpads2_unknown-status": "Neznámý stav"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Robin Owain"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Gweithred",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Diweddaru newidiadau pad yn otomatig",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Galluogi neu analluogi diweddaru'r ymholiad cyfredol.",
|
|
||||||
"ep_adminpads2_confirm": "Siwr eich bod am ddileu'r pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Dileu",
|
|
||||||
"ep_adminpads2_last-edited": "Golygwyd ddiwethaf",
|
|
||||||
"ep_adminpads2_loading": "Wrthi'n llwytho...",
|
|
||||||
"ep_adminpads2_manage-pads": "Rheoli'r padiau",
|
|
||||||
"ep_adminpads2_no-results": "Dim canlyniad",
|
|
||||||
"ep_adminpads2_pad-user-count": "Cyfri defnyddiwr pad",
|
|
||||||
"ep_adminpads2_padname": "Enwpad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Term chwilio",
|
|
||||||
"ep_adminpads2_search-button.value": "Chwilio",
|
|
||||||
"ep_adminpads2_search-done": "Wedi gorffen",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Nam ar y gweinydd wrth chwilio'r padiau:",
|
|
||||||
"ep_adminpads2_search-error-title": "Methwyd a chael y rhestr pad",
|
|
||||||
"ep_adminpads2_search-heading": "Chwilio am badiau",
|
|
||||||
"ep_adminpads2_title": "Gweinyddiaeth y pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Nam o ryw fath",
|
|
||||||
"ep_adminpads2_unknown-status": "Statws anhysbys"
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Saederup92"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Handling",
|
|
||||||
"ep_adminpads2_delete.value": "Slet",
|
|
||||||
"ep_adminpads2_last-edited": "Sidst redigeret",
|
|
||||||
"ep_adminpads2_loading": "Indlæser...",
|
|
||||||
"ep_adminpads2_no-results": "Ingen resultater",
|
|
||||||
"ep_adminpads2_unknown-error": "Ukendt fejl",
|
|
||||||
"ep_adminpads2_unknown-status": "Ukendt status"
|
|
||||||
}
|
|
|
@ -1,33 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Brettchenweber",
|
|
||||||
"Justman10000",
|
|
||||||
"Lorisobi",
|
|
||||||
"SamTV",
|
|
||||||
"Umlaut",
|
|
||||||
"Zunkelty"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Aktion",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatisch bei Pad-Änderungen updaten",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Aktiviert oder deaktiviert automatische Aktualisierungen für die aktuelle Abfrage.",
|
|
||||||
"ep_adminpads2_confirm": "Willst du das Pad {{padID}} wirklich löschen?",
|
|
||||||
"ep_adminpads2_delete.value": "Löschen",
|
|
||||||
"ep_adminpads2_cleanup": "Historie aufräumen",
|
|
||||||
"ep_adminpads2_last-edited": "Zuletzt bearbeitet",
|
|
||||||
"ep_adminpads2_loading": "Lädt...",
|
|
||||||
"ep_adminpads2_manage-pads": "Pads verwalten",
|
|
||||||
"ep_adminpads2_no-results": "Keine Ergebnisse",
|
|
||||||
"ep_adminpads2_pad-user-count": "Nutzerzahl des Pads",
|
|
||||||
"ep_adminpads2_padname": "Padname",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Suchbegriff",
|
|
||||||
"ep_adminpads2_search-button.value": "Suche",
|
|
||||||
"ep_adminpads2_search-done": "Suche vollendet",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Der Server ist bei der Suche nach Pads auf einen Fehler gestoßen:",
|
|
||||||
"ep_adminpads2_search-error-title": "Pad-Liste konnte nicht abgerufen werden",
|
|
||||||
"ep_adminpads2_search-heading": "Nach Pads suchen",
|
|
||||||
"ep_adminpads2_title": "Pad-Verwaltung",
|
|
||||||
"ep_adminpads2_unknown-error": "Unbekannter Fehler",
|
|
||||||
"ep_adminpads2_unknown-status": "Unbekannter Status"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"1917 Ekim Devrimi",
|
|
||||||
"Mirzali"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Hereketi",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Vurnayışanê pedi otomatik rocane kerê",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Persê mewcudi rê rocaneyışanê otomatika aktiv ke ya zi dewrê ra vecê",
|
|
||||||
"ep_adminpads2_confirm": "Şıma qayılê pedê {{padID}} bıesternê?",
|
|
||||||
"ep_adminpads2_delete.value": "Bestere",
|
|
||||||
"ep_adminpads2_last-edited": "Vurnayışo peyên",
|
|
||||||
"ep_adminpads2_loading": "Bar beno...",
|
|
||||||
"ep_adminpads2_manage-pads": "Pedan idare kerê",
|
|
||||||
"ep_adminpads2_no-results": "Netice çıniyo",
|
|
||||||
"ep_adminpads2_pad-user-count": "Amarê karberanê pedi",
|
|
||||||
"ep_adminpads2_padname": "Padname",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "termê cıgêrayış",
|
|
||||||
"ep_adminpads2_search-button.value": "Cı geyre",
|
|
||||||
"ep_adminpads2_search-done": "Cıgeyrayışi temam",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Server cıgeyrayışê pedan de yew xetaya raşt ame",
|
|
||||||
"ep_adminpads2_search-error-title": "Lista pedi nêgêriye",
|
|
||||||
"ep_adminpads2_search-heading": "Pedan cıgeyrayış",
|
|
||||||
"ep_adminpads2_title": "İdarey pedi",
|
|
||||||
"ep_adminpads2_unknown-error": "Xetaya nêzanıtiye",
|
|
||||||
"ep_adminpads2_unknown-status": "Weziyeto nêzanaye"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Michawiki"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Akcija",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Pśi změnach na zapisniku awtomatiski aktualizěrowaś",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Zmóžnja abo znjemóžnja awtomatiske aktualizacije za aktualne wótpšašowanje.",
|
|
||||||
"ep_adminpads2_confirm": "Cośo napšawdu zapisnik {{padID}} lašowaś?",
|
|
||||||
"ep_adminpads2_delete.value": "Lašowaś",
|
|
||||||
"ep_adminpads2_last-edited": "Slědna změna",
|
|
||||||
"ep_adminpads2_loading": "Zacytujo se...",
|
|
||||||
"ep_adminpads2_manage-pads": "Zapisniki zastojaś",
|
|
||||||
"ep_adminpads2_no-results": "Žedne wuslědki",
|
|
||||||
"ep_adminpads2_pad-user-count": "Licba wužywarjow zapisnika",
|
|
||||||
"ep_adminpads2_padname": "Mě zapisnika",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Pytańske zapśimjeśe",
|
|
||||||
"ep_adminpads2_search-button.value": "Pytaś",
|
|
||||||
"ep_adminpads2_search-done": "Pytanje dokóńcone",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Serwer jo starcył na zmólku, mjaztym až jo pytał za zapisnikami:",
|
|
||||||
"ep_adminpads2_search-error-title": "Lisćina zapisnikow njedajo se wobstaraś",
|
|
||||||
"ep_adminpads2_search-heading": "Za zapisnikami pytaś",
|
|
||||||
"ep_adminpads2_title": "Zapisnikowa administracija",
|
|
||||||
"ep_adminpads2_unknown-error": "Njeznata zmólka",
|
|
||||||
"ep_adminpads2_unknown-status": "Njeznaty status"
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Norhorn"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_delete.value": "Διαγραφή",
|
|
||||||
"ep_adminpads2_last-edited": "Τελευταία απεξεργασία",
|
|
||||||
"ep_adminpads2_loading": "Φόρτωση…",
|
|
||||||
"ep_adminpads2_no-results": "Κανένα αποτέλεσμα",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Αναζήτηση όρων",
|
|
||||||
"ep_adminpads2_search-button.value": "Αναζήτηση",
|
|
||||||
"ep_adminpads2_search-done": "Ολοκλήρωση αναζήτησης",
|
|
||||||
"ep_adminpads2_unknown-error": "Άγνωστο σφάλμα",
|
|
||||||
"ep_adminpads2_unknown-status": "Άγνωστη κατάσταση"
|
|
||||||
}
|
|
|
@ -1,23 +0,0 @@
|
||||||
{
|
|
||||||
"ep_adminpads2_action": "Action",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Auto-update on pad changes",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Enables or disables automatic updates for the current query.",
|
|
||||||
"ep_adminpads2_confirm": "Do you really want to delete the pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Delete",
|
|
||||||
"ep_adminpads2_cleanup": "Cleanup revisions",
|
|
||||||
"ep_adminpads2_last-edited": "Last edited",
|
|
||||||
"ep_adminpads2_loading": "Loading…",
|
|
||||||
"ep_adminpads2_manage-pads": "Manage pads",
|
|
||||||
"ep_adminpads2_no-results": "No results",
|
|
||||||
"ep_adminpads2_pad-user-count": "Pad user count",
|
|
||||||
"ep_adminpads2_padname": "Padname",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Search term",
|
|
||||||
"ep_adminpads2_search-button.value": "Search",
|
|
||||||
"ep_adminpads2_search-done": "Search complete",
|
|
||||||
"ep_adminpads2_search-error-explanation": "The server encountered an error while searching for pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "Failed to get pad list",
|
|
||||||
"ep_adminpads2_search-heading": "Search for pads",
|
|
||||||
"ep_adminpads2_title": "Pad administration",
|
|
||||||
"ep_adminpads2_unknown-error": "Unknown error",
|
|
||||||
"ep_adminpads2_unknown-status": "Unknown status"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Izendegi"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Ekintza",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatikoki eguneratu pad-aren aldaketak daudenean",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Oraingo kontsultarako eguneratze automatikoak gaitu edo desgaitzen du.",
|
|
||||||
"ep_adminpads2_confirm": "Ziur zaude {{padID}} pad-a ezabatu nahi duzula?",
|
|
||||||
"ep_adminpads2_delete.value": "Ezabatu",
|
|
||||||
"ep_adminpads2_last-edited": "Azkenengoz editatua",
|
|
||||||
"ep_adminpads2_loading": "Kargatzen...",
|
|
||||||
"ep_adminpads2_manage-pads": "Kudeatu pad-ak",
|
|
||||||
"ep_adminpads2_no-results": "Emaitzarik ez",
|
|
||||||
"ep_adminpads2_pad-user-count": "Pad-erabiltzaile kopurua",
|
|
||||||
"ep_adminpads2_padname": "Pad-izena",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Bilaketa testua",
|
|
||||||
"ep_adminpads2_search-button.value": "Bilatu",
|
|
||||||
"ep_adminpads2_search-done": "Bilaketa osatu da",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Zerbitzariak errore bat izan du pad-ak bilatzean:",
|
|
||||||
"ep_adminpads2_search-error-title": "Pad-zerrenda eskuratzeak huts egin du",
|
|
||||||
"ep_adminpads2_search-heading": "Bilatu pad-ak",
|
|
||||||
"ep_adminpads2_title": "Pad-en kudeaketa",
|
|
||||||
"ep_adminpads2_unknown-error": "Errore ezezaguna",
|
|
||||||
"ep_adminpads2_unknown-status": "Egoera ezezaguna"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Ibrahima Malal Sarr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Baɗal",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Hesɗitin e jaajol tuma baylagol faɗo",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Hurminat walla daaƴa kesɗitine jaaje wonannde ɗaɓɓitannde wonaande.",
|
|
||||||
"ep_adminpads2_confirm": "Aɗa yiɗi e jaati momtude faɗo {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Momtu",
|
|
||||||
"ep_adminpads2_last-edited": "Taƴtaa sakket",
|
|
||||||
"ep_adminpads2_loading": "Nana loowa…",
|
|
||||||
"ep_adminpads2_manage-pads": "Toppito paɗe",
|
|
||||||
"ep_adminpads2_no-results": "Alaa njaltudi",
|
|
||||||
"ep_adminpads2_pad-user-count": "Limoore huutorɓe faɗo",
|
|
||||||
"ep_adminpads2_padname": "Innde faɗo",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Helmere njiilaw",
|
|
||||||
"ep_adminpads2_search-button.value": "Yiylo",
|
|
||||||
"ep_adminpads2_search-done": "Njiylaw timmii",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Sarworde ndee hawrii e juumre tuma nde yiylotoo faɗo:",
|
|
||||||
"ep_adminpads2_search-error-title": "Horiima heɓde doggol paɗe",
|
|
||||||
"ep_adminpads2_search-heading": "Yiylo paɗe",
|
|
||||||
"ep_adminpads2_title": "Yiylorde paɗe",
|
|
||||||
"ep_adminpads2_unknown-error": "Juumre nde anndaaka",
|
|
||||||
"ep_adminpads2_unknown-status": "Ngonka ka anndaaka"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Artnay",
|
|
||||||
"Kyykaarme",
|
|
||||||
"MITO",
|
|
||||||
"Maantietäjä",
|
|
||||||
"Yupik"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Toiminto",
|
|
||||||
"ep_adminpads2_delete.value": "Poista",
|
|
||||||
"ep_adminpads2_last-edited": "Viimeksi muokattu",
|
|
||||||
"ep_adminpads2_loading": "Ladataan...",
|
|
||||||
"ep_adminpads2_manage-pads": "Hallitse muistioita",
|
|
||||||
"ep_adminpads2_no-results": "Ei tuloksia",
|
|
||||||
"ep_adminpads2_pad-user-count": "Pad-käyttäjien määrä",
|
|
||||||
"ep_adminpads2_padname": "Muistion nimi",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Haettava teksti",
|
|
||||||
"ep_adminpads2_search-button.value": "Etsi",
|
|
||||||
"ep_adminpads2_search-done": "Haku valmis",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Palvelimessa tapahtui virhe etsiessään muistioita:",
|
|
||||||
"ep_adminpads2_search-error-title": "Pad-luettelon hakeminen epäonnistui",
|
|
||||||
"ep_adminpads2_search-heading": "Etsi sisältöä",
|
|
||||||
"ep_adminpads2_unknown-error": "Tuntematon virhe",
|
|
||||||
"ep_adminpads2_unknown-status": "Tuntematon tila"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Verdy p"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Action",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Mise à jour automatique en cas de changements du bloc-notes",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Active ou désactive les mises à jour automatiques pour la requête actuelle.",
|
|
||||||
"ep_adminpads2_confirm": "Voulez-vous vraiment supprimer le bloc-notes {{padID}} ?",
|
|
||||||
"ep_adminpads2_delete.value": "Supprimer",
|
|
||||||
"ep_adminpads2_last-edited": "Dernière modification",
|
|
||||||
"ep_adminpads2_loading": "Chargement en cours...",
|
|
||||||
"ep_adminpads2_manage-pads": "Gérer les bloc-notes",
|
|
||||||
"ep_adminpads2_no-results": "Aucun résultat",
|
|
||||||
"ep_adminpads2_pad-user-count": "Nombre d’utilisateurs du bloc-notes",
|
|
||||||
"ep_adminpads2_padname": "Nom du bloc-notes",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Terme de recherche",
|
|
||||||
"ep_adminpads2_search-button.value": "Rechercher",
|
|
||||||
"ep_adminpads2_search-done": "Recherche terminée",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Le serveur a rencontré une erreur en cherchant des blocs-notes :",
|
|
||||||
"ep_adminpads2_search-error-title": "Échec d’obtention de la liste de blocs-notes",
|
|
||||||
"ep_adminpads2_search-heading": "Rechercher des blocs-notes",
|
|
||||||
"ep_adminpads2_title": "Administration du bloc-notes",
|
|
||||||
"ep_adminpads2_unknown-error": "Erreur inconnue",
|
|
||||||
"ep_adminpads2_unknown-status": "État inconnu"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Ghose"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Accións",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Actualización automática dos cambios",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Activa ou desactiva as actualizacións automáticas para a consulta actual.",
|
|
||||||
"ep_adminpads2_confirm": "Tes a certeza de querer eliminar o pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Eliminar",
|
|
||||||
"ep_adminpads2_last-edited": "Última edición",
|
|
||||||
"ep_adminpads2_loading": "Cargando…",
|
|
||||||
"ep_adminpads2_manage-pads": "Xestionar pads",
|
|
||||||
"ep_adminpads2_no-results": "Sen resultados",
|
|
||||||
"ep_adminpads2_pad-user-count": "Usuarias neste pad",
|
|
||||||
"ep_adminpads2_padname": "Nome do pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Buscar termo",
|
|
||||||
"ep_adminpads2_search-button.value": "Buscar",
|
|
||||||
"ep_adminpads2_search-done": "Busca completa",
|
|
||||||
"ep_adminpads2_search-error-explanation": "O servidor atopou un fallo cando buscaba pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "Non se obtivo a lista de pads",
|
|
||||||
"ep_adminpads2_search-heading": "Buscar pads",
|
|
||||||
"ep_adminpads2_title": "Administración do pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Erro descoñecido",
|
|
||||||
"ep_adminpads2_unknown-status": "Estado descoñecido"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"YaronSh"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "פעולה",
|
|
||||||
"ep_adminpads2_autoupdate-label": "לעדכן אוטומטית כשהמחברת נערכת",
|
|
||||||
"ep_adminpads2_autoupdate.title": "הפעלה או השבתה של עדכונים אוטומטיים לשאילתה הנוכחית.",
|
|
||||||
"ep_adminpads2_confirm": "למחוק את המחברת {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "מחיקה",
|
|
||||||
"ep_adminpads2_last-edited": "עריכה אחרונה",
|
|
||||||
"ep_adminpads2_loading": "בטעינה…",
|
|
||||||
"ep_adminpads2_manage-pads": "ניהול מחברות",
|
|
||||||
"ep_adminpads2_no-results": "אין תוצאות",
|
|
||||||
"ep_adminpads2_pad-user-count": "ספירת משתמשים במחברת",
|
|
||||||
"ep_adminpads2_padname": "שם המחברת",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "הביטוי לחיפוש",
|
|
||||||
"ep_adminpads2_search-button.value": "חיפוש",
|
|
||||||
"ep_adminpads2_search-done": "החיפוש הושלם",
|
|
||||||
"ep_adminpads2_search-error-explanation": "השרת נתקל בשגיאה בעת חיפוש מחברות:",
|
|
||||||
"ep_adminpads2_search-error-title": "קבלת רשימת המחברות נכשלה",
|
|
||||||
"ep_adminpads2_search-heading": "חיפוש אחר מחברות",
|
|
||||||
"ep_adminpads2_title": "ניהול מחברות",
|
|
||||||
"ep_adminpads2_unknown-error": "שגיאה בלתי־ידועה",
|
|
||||||
"ep_adminpads2_unknown-status": "מצב לא ידוע"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Michawiki"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Akcija",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Při změnach na zapisniku awtomatisce aktualizować",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Zmóžnja abo znjemóžnja awtomatiske aktualizacije za aktualne wotprašowanje.",
|
|
||||||
"ep_adminpads2_confirm": "Chceće woprawdźe zapisnik {{padID}} zhašeć?",
|
|
||||||
"ep_adminpads2_delete.value": "Zhašeć",
|
|
||||||
"ep_adminpads2_last-edited": "Poslednja změna",
|
|
||||||
"ep_adminpads2_loading": "Začituje so...",
|
|
||||||
"ep_adminpads2_manage-pads": "Zapisniki rjadować",
|
|
||||||
"ep_adminpads2_no-results": "Žane wuslědki.",
|
|
||||||
"ep_adminpads2_pad-user-count": "Ličba wužiwarjow zapisnika",
|
|
||||||
"ep_adminpads2_padname": "Mjeno zapisnika",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Pytanske zapřijeće",
|
|
||||||
"ep_adminpads2_search-button.value": "Pytać",
|
|
||||||
"ep_adminpads2_search-done": "Pytanje dokónčene",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Serwer je na zmylk storčił, mjeztym zo je za zapisnikami pytał:",
|
|
||||||
"ep_adminpads2_search-error-title": "Lisćina zapisnikow njeda so wobstarać",
|
|
||||||
"ep_adminpads2_search-heading": "Za zapisnikami pytać",
|
|
||||||
"ep_adminpads2_title": "Zapisnikowa administracija",
|
|
||||||
"ep_adminpads2_unknown-error": "Njeznaty zmylk",
|
|
||||||
"ep_adminpads2_unknown-status": "Njeznaty status"
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": []
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Művelet",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Változáskor jegyzetfüzet önműködő frissítése",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Önműködő frissítése az jelenlegi lekérdezéshez be- vagy kikapcsolása.",
|
|
||||||
"ep_adminpads2_confirm": "Biztosan törölni szeretné a(z) {{padID}} jegyzetfüzetet?",
|
|
||||||
"ep_adminpads2_delete.value": "Törlés",
|
|
||||||
"ep_adminpads2_last-edited": "Utoljára szerkesztve",
|
|
||||||
"ep_adminpads2_loading": "Betöltés folyamatban…",
|
|
||||||
"ep_adminpads2_manage-pads": "Jegyzetfüzetek kezelése",
|
|
||||||
"ep_adminpads2_no-results": "Nincs találat",
|
|
||||||
"ep_adminpads2_pad-user-count": "Jegyzetfüzet felhasználók száma",
|
|
||||||
"ep_adminpads2_padname": "Jegyzetfüzet név",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Keresési kifejezés",
|
|
||||||
"ep_adminpads2_search-button.value": "Keresés",
|
|
||||||
"ep_adminpads2_search-done": "Keresés befejezve",
|
|
||||||
"ep_adminpads2_search-error-explanation": "A kiszolgáló hibát észlelt a jegyzetfüzetek keresésekor:",
|
|
||||||
"ep_adminpads2_search-error-title": "Nem sikerült lekérni a jegyzetfüzet listát",
|
|
||||||
"ep_adminpads2_search-heading": "Jegyzetfüzetek keresése",
|
|
||||||
"ep_adminpads2_title": "Jegyzetfüzet felügyelete",
|
|
||||||
"ep_adminpads2_unknown-error": "Ismeretlen hiba",
|
|
||||||
"ep_adminpads2_unknown-status": "Ismeretlen állapot"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"McDutchie"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Action",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Actualisar automaticamente le pad in caso de cambiamentos",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Activa o disactiva le actualisationes automatic pro le consulta actual.",
|
|
||||||
"ep_adminpads2_confirm": "Es tu secur de voler deler le pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Deler",
|
|
||||||
"ep_adminpads2_last-edited": "Ultime modification",
|
|
||||||
"ep_adminpads2_loading": "Cargamento in curso…",
|
|
||||||
"ep_adminpads2_manage-pads": "Gerer pads",
|
|
||||||
"ep_adminpads2_no-results": "Nulle resultato",
|
|
||||||
"ep_adminpads2_pad-user-count": "Numero de usatores del pad",
|
|
||||||
"ep_adminpads2_padname": "Nomine del pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Termino de recerca",
|
|
||||||
"ep_adminpads2_search-button.value": "Cercar",
|
|
||||||
"ep_adminpads2_search-done": "Recerca terminate",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Le servitor ha incontrate un error durante le recerca de pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "Non poteva obtener le lista de pads",
|
|
||||||
"ep_adminpads2_search-heading": "Cercar pads",
|
|
||||||
"ep_adminpads2_title": "Administration de pads",
|
|
||||||
"ep_adminpads2_unknown-error": "Error incognite",
|
|
||||||
"ep_adminpads2_unknown-status": "Stato incognite"
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Beta16",
|
|
||||||
"Luca.favorido"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Azione",
|
|
||||||
"ep_adminpads2_delete.value": "Cancella",
|
|
||||||
"ep_adminpads2_last-edited": "Ultima modifica",
|
|
||||||
"ep_adminpads2_loading": "Caricamento…",
|
|
||||||
"ep_adminpads2_no-results": "Nessun risultato",
|
|
||||||
"ep_adminpads2_search-button.value": "Cerca",
|
|
||||||
"ep_adminpads2_unknown-error": "Errore sconosciuto",
|
|
||||||
"ep_adminpads2_unknown-status": "Stato sconosciuto"
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"ಮಲ್ನಾಡಾಚ್ ಕೊಂಕ್ಣೊ"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "ಕ್ರಿಯೆ",
|
|
||||||
"ep_adminpads2_delete.value": "ಅಳಿಸು",
|
|
||||||
"ep_adminpads2_loading": "ತುಂಬಿಸಲಾಗುತ್ತಿದೆ…",
|
|
||||||
"ep_adminpads2_no-results": "ಯಾವ ಫಲಿತಾಂಶಗಳೂ ಇಲ್ಲ",
|
|
||||||
"ep_adminpads2_search-button.value": "ಹುಡುಕು",
|
|
||||||
"ep_adminpads2_unknown-error": "ಅಪರಿಚಿತ ದೋಷ"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Ykhwong",
|
|
||||||
"그냥기여자"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "동작",
|
|
||||||
"ep_adminpads2_autoupdate-label": "패드 변경 시 자동 업데이트",
|
|
||||||
"ep_adminpads2_autoupdate.title": "현재 쿼리의 자동 업데이트를 활성화하거나 비활성화합니다.",
|
|
||||||
"ep_adminpads2_confirm": "{{padID}} 패드를 삭제하시겠습니까?",
|
|
||||||
"ep_adminpads2_delete.value": "삭제",
|
|
||||||
"ep_adminpads2_last-edited": "최근 편집",
|
|
||||||
"ep_adminpads2_loading": "불러오는 중...",
|
|
||||||
"ep_adminpads2_manage-pads": "패드 관리",
|
|
||||||
"ep_adminpads2_no-results": "결과 없음",
|
|
||||||
"ep_adminpads2_pad-user-count": "패드 사용자 수",
|
|
||||||
"ep_adminpads2_padname": "패드 이름",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "검색어",
|
|
||||||
"ep_adminpads2_search-button.value": "검색",
|
|
||||||
"ep_adminpads2_search-done": "검색 완료",
|
|
||||||
"ep_adminpads2_search-error-explanation": "패드 검색 중 서버에 오류가 발생했습니다:",
|
|
||||||
"ep_adminpads2_search-error-title": "패드 목록 가져오기 실패",
|
|
||||||
"ep_adminpads2_search-heading": "패드 검색",
|
|
||||||
"ep_adminpads2_title": "패드 관리",
|
|
||||||
"ep_adminpads2_unknown-error": "알 수 없는 오류",
|
|
||||||
"ep_adminpads2_unknown-status": "알 수 없는 상태"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Къарачайлы"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Этиу",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Блокнот тюрлендириулеринде автомат халда джангыртыу",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Баргъан излем ючюн автомат халда джангыртыуланы джандын неда джукълат.",
|
|
||||||
"ep_adminpads2_confirm": "{{padID}} блокнотну керти да кетерирге излеймисиз?",
|
|
||||||
"ep_adminpads2_delete.value": "Кетер",
|
|
||||||
"ep_adminpads2_last-edited": "Ахыр тюзетиу",
|
|
||||||
"ep_adminpads2_loading": "Джюклениу…",
|
|
||||||
"ep_adminpads2_manage-pads": "Блокнотланы оноуун эт",
|
|
||||||
"ep_adminpads2_no-results": "Эсебле джокъдула",
|
|
||||||
"ep_adminpads2_pad-user-count": "Блокнот хайырланыучуланы саны",
|
|
||||||
"ep_adminpads2_padname": "Блокнот ат",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Терминни изле",
|
|
||||||
"ep_adminpads2_search-button.value": "Изле",
|
|
||||||
"ep_adminpads2_search-done": "Излеу тамамланды",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Сервер, блокнотланы излеген заманда халат табды:",
|
|
||||||
"ep_adminpads2_search-error-title": "Блокнот тизмеси алынамады",
|
|
||||||
"ep_adminpads2_search-heading": "Блокнотла ючюн излеу",
|
|
||||||
"ep_adminpads2_title": "Блокнот башчылыкъ",
|
|
||||||
"ep_adminpads2_unknown-error": "Билинмеген халат",
|
|
||||||
"ep_adminpads2_unknown-status": "Билинмеген турум"
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Robby",
|
|
||||||
"Volvox"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_confirm": "Wëllt Dir de Pad {{padID}} wierklech läschen?",
|
|
||||||
"ep_adminpads2_delete.value": "Läschen",
|
|
||||||
"ep_adminpads2_loading": "Lueden...",
|
|
||||||
"ep_adminpads2_no-results": "Keng Resultater",
|
|
||||||
"ep_adminpads2_padname": "Padnumm",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Sichbegrëff",
|
|
||||||
"ep_adminpads2_search-button.value": "Sichen",
|
|
||||||
"ep_adminpads2_unknown-error": "Onbekannte Feeler"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Nokeoo"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Veiksmas",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatinis bloknoto keitimų naujinimas",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Įjungia arba išjungia automatinius dabartinės užklausos atnaujinimus.",
|
|
||||||
"ep_adminpads2_confirm": "Ar tikrai norite ištrinti bloknotą {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Ištrinti",
|
|
||||||
"ep_adminpads2_last-edited": "Paskutinis pakeitimas",
|
|
||||||
"ep_adminpads2_loading": "Įkeliama…",
|
|
||||||
"ep_adminpads2_manage-pads": "Tvarkyti bloknotą",
|
|
||||||
"ep_adminpads2_no-results": "Nėra rezultatų",
|
|
||||||
"ep_adminpads2_pad-user-count": "Bloknoto naudotojų skaičius",
|
|
||||||
"ep_adminpads2_padname": "Bloknoto pavadinimas",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Paieškos terminas",
|
|
||||||
"ep_adminpads2_search-button.value": "Paieška",
|
|
||||||
"ep_adminpads2_search-done": "Paieška baigta",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Serveris susidūrė su klaida ieškant bloknotų:",
|
|
||||||
"ep_adminpads2_search-error-title": "Nepavyko gauti bloknotų sąrašo",
|
|
||||||
"ep_adminpads2_search-heading": "Ieškokite bloknotų",
|
|
||||||
"ep_adminpads2_title": "Bloknotų administravimas",
|
|
||||||
"ep_adminpads2_unknown-error": "Nežinoma klaida",
|
|
||||||
"ep_adminpads2_unknown-status": "Nežinoma būsena"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Bjankuloski06"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Дејство",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Самоподнова при измени во тетратката",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Овозможува или оневозможува самоподнова на тековното барање.",
|
|
||||||
"ep_adminpads2_confirm": "Дали навистина сакате да ја избришете тетратката {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Избриши",
|
|
||||||
"ep_adminpads2_last-edited": "Последно уредување",
|
|
||||||
"ep_adminpads2_loading": "Вчитувам…",
|
|
||||||
"ep_adminpads2_manage-pads": "Раководење со тетратки",
|
|
||||||
"ep_adminpads2_no-results": "Нема исход",
|
|
||||||
"ep_adminpads2_pad-user-count": "Корисници на тетратката",
|
|
||||||
"ep_adminpads2_padname": "Назив на тетратката",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Пребаран поим",
|
|
||||||
"ep_adminpads2_search-button.value": "Пребарај",
|
|
||||||
"ep_adminpads2_search-done": "Пребарувањето заврши",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Опслужувачот наиде на грешка при пребарувањето на тетратки:",
|
|
||||||
"ep_adminpads2_search-error-title": "Не можев да го добијам списокот на тетратки",
|
|
||||||
"ep_adminpads2_search-heading": "Пребарај по тетратките",
|
|
||||||
"ep_adminpads2_title": "Администрација на тетратки",
|
|
||||||
"ep_adminpads2_unknown-error": "Непозната грешка",
|
|
||||||
"ep_adminpads2_unknown-status": "Непозната состојба"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Andibecker"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "လုပ်ဆောင်ချက်",
|
|
||||||
"ep_adminpads2_autoupdate-label": "pad အပြောင်းအလဲများတွင်အလိုအလျောက်အပ်ဒိတ်လုပ်ပါ",
|
|
||||||
"ep_adminpads2_autoupdate.title": "လက်ရှိမေးမြန်းမှုအတွက်အလိုအလျောက်အပ်ဒိတ်များကိုဖွင့်ပါသို့မဟုတ်ပိတ်ပါ။",
|
|
||||||
"ep_adminpads2_confirm": "pad {{padID}} ကိုသင်တကယ်ဖျက်ချင်လား။",
|
|
||||||
"ep_adminpads2_delete.value": "ဖျက်ပါ",
|
|
||||||
"ep_adminpads2_last-edited": "နောက်ဆုံးတည်းဖြတ်သည်",
|
|
||||||
"ep_adminpads2_loading": "ဖွင့်နေသည်…",
|
|
||||||
"ep_adminpads2_manage-pads": "pads များကိုစီမံပါ",
|
|
||||||
"ep_adminpads2_no-results": "ရလဒ်မရှိပါ",
|
|
||||||
"ep_adminpads2_pad-user-count": "Pad အသုံးပြုသူအရေအတွက်",
|
|
||||||
"ep_adminpads2_padname": "Padname",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "ဝေါဟာရရှာဖွေပါ",
|
|
||||||
"ep_adminpads2_search-button.value": "ရှာဖွေပါ",
|
|
||||||
"ep_adminpads2_search-done": "ရှာဖွေမှုပြီးပါပြီ",
|
|
||||||
"ep_adminpads2_search-error-explanation": "pads များကိုရှာဖွေစဉ်ဆာဗာသည်အမှားတစ်ခုကြုံခဲ့သည်။",
|
|
||||||
"ep_adminpads2_search-error-title": "pad စာရင်းရယူရန်မအောင်မြင်ပါ",
|
|
||||||
"ep_adminpads2_search-heading": "pads များကိုရှာဖွေပါ",
|
|
||||||
"ep_adminpads2_title": "Pad စီမံခန့်ခွဲမှု",
|
|
||||||
"ep_adminpads2_unknown-error": "အမည်မသိအမှား",
|
|
||||||
"ep_adminpads2_unknown-status": "အခြေအနေမသိ"
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"EdoAug"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Handling",
|
|
||||||
"ep_adminpads2_last-edited": "Sist redigert",
|
|
||||||
"ep_adminpads2_loading": "Laster …",
|
|
||||||
"ep_adminpads2_no-results": "Ingen resultater",
|
|
||||||
"ep_adminpads2_search-button.value": "Søk",
|
|
||||||
"ep_adminpads2_search-done": "Søk fullført"
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Aranka",
|
|
||||||
"McDutchie",
|
|
||||||
"Spinster"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Handeling",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatisch bijwerken bij aanpassingen aan de pad",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Schakelt automatische updates voor de huidige query in of uit.",
|
|
||||||
"ep_adminpads2_confirm": "Wil je de pad {{padID}} echt verwijderen?",
|
|
||||||
"ep_adminpads2_delete.value": "Verwijderen",
|
|
||||||
"ep_adminpads2_last-edited": "Laatst bewerkt",
|
|
||||||
"ep_adminpads2_loading": "Bezig met laden...",
|
|
||||||
"ep_adminpads2_manage-pads": "Pads beheren",
|
|
||||||
"ep_adminpads2_no-results": "Geen resultaten",
|
|
||||||
"ep_adminpads2_pad-user-count": "Aantal gebruikers van de pad",
|
|
||||||
"ep_adminpads2_padname": "Naam van de pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Zoekterm",
|
|
||||||
"ep_adminpads2_search-button.value": "Zoeken",
|
|
||||||
"ep_adminpads2_search-done": "Zoekopdracht voltooid",
|
|
||||||
"ep_adminpads2_search-error-explanation": "De server heeft een fout aangetroffen tijdens het zoeken naar pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "Kan lijst met pads niet ophalen",
|
|
||||||
"ep_adminpads2_search-heading": "Pads zoeken",
|
|
||||||
"ep_adminpads2_title": "Administratie van pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Onbekende fout",
|
|
||||||
"ep_adminpads2_unknown-status": "Onbekende status"
|
|
||||||
}
|
|
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Quentí"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Accion",
|
|
||||||
"ep_adminpads2_delete.value": "Suprimir",
|
|
||||||
"ep_adminpads2_last-edited": "Darrièra edicion",
|
|
||||||
"ep_adminpads2_loading": "Cargament…",
|
|
||||||
"ep_adminpads2_manage-pads": "Gerir los pads",
|
|
||||||
"ep_adminpads2_no-results": "Pas cap de resultat",
|
|
||||||
"ep_adminpads2_padname": "Nom del pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Tèrme de recèrca",
|
|
||||||
"ep_adminpads2_search-button.value": "Recercar",
|
|
||||||
"ep_adminpads2_search-done": "Recèrca acabada",
|
|
||||||
"ep_adminpads2_search-heading": "Cercar de pads",
|
|
||||||
"ep_adminpads2_title": "Administracion de pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Error desconeguda",
|
|
||||||
"ep_adminpads2_unknown-status": "Estat desconegut"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Borichèt"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Assion",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Agiornament automàtich an sle modìfiche ëd plancia",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Abilité o disabilité j'agiornament automàtich për l'arcesta atual.",
|
|
||||||
"ep_adminpads2_confirm": "Veul-lo për da bon dëscancelé la plancia {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Dëscancelé",
|
|
||||||
"ep_adminpads2_last-edited": "Modificà l'ùltima vira",
|
|
||||||
"ep_adminpads2_loading": "Cariament…",
|
|
||||||
"ep_adminpads2_manage-pads": "Gestì le plance",
|
|
||||||
"ep_adminpads2_no-results": "Gnun arzultà",
|
|
||||||
"ep_adminpads2_pad-user-count": "Conteur ëd plancia dl'utent",
|
|
||||||
"ep_adminpads2_padname": "Nòm ëd plancia",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Tèrmin d'arserca",
|
|
||||||
"ep_adminpads2_search-button.value": "Arserca",
|
|
||||||
"ep_adminpads2_search-done": "Arserca completà",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Ël servent a l'ha rancontrà n'eror an sërcand dle plance:",
|
|
||||||
"ep_adminpads2_search-error-title": "Falì a oten-e la lista ëd plance",
|
|
||||||
"ep_adminpads2_search-heading": "Arserca ëd plance",
|
|
||||||
"ep_adminpads2_title": "Aministrassion ëd plance",
|
|
||||||
"ep_adminpads2_unknown-error": "Eror nen conossù",
|
|
||||||
"ep_adminpads2_unknown-status": "Statù nen conossù"
|
|
||||||
}
|
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Duke of Wikipädia",
|
|
||||||
"Eduardo Addad de Oliveira",
|
|
||||||
"Eduardoaddad",
|
|
||||||
"YuriNikolai"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Ação",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Atualizar notas automaticamente",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Habilita ou desabilita atualizações automáticas para a consulta atual.",
|
|
||||||
"ep_adminpads2_confirm": "Você realmente deseja excluir a nota {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Excluir",
|
|
||||||
"ep_adminpads2_last-edited": "Última edição",
|
|
||||||
"ep_adminpads2_loading": "Carregando…",
|
|
||||||
"ep_adminpads2_manage-pads": "Gerenciar notas",
|
|
||||||
"ep_adminpads2_no-results": "Sem resultados",
|
|
||||||
"ep_adminpads2_pad-user-count": "Número de utilizadores na nota",
|
|
||||||
"ep_adminpads2_padname": "Nome da nota",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Termo de pesquisa",
|
|
||||||
"ep_adminpads2_search-button.value": "Pesquisar",
|
|
||||||
"ep_adminpads2_search-done": "Busca completa",
|
|
||||||
"ep_adminpads2_search-error-explanation": "O servidor encontrou um erro enquanto procurava por notas:",
|
|
||||||
"ep_adminpads2_search-error-title": "Falha ao buscar lista de notas",
|
|
||||||
"ep_adminpads2_search-heading": "Pesquisar por notas",
|
|
||||||
"ep_adminpads2_title": "Administração de notas",
|
|
||||||
"ep_adminpads2_unknown-error": "Erro desconhecido",
|
|
||||||
"ep_adminpads2_unknown-status": "Status desconhecido"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Guilha"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Ação",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Atualizar automaticamente as notas",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Ativa ou desativa atualizações automáticas na consulta atual.",
|
|
||||||
"ep_adminpads2_confirm": "Tencionas mesmo eliminar a nota {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Eliminar",
|
|
||||||
"ep_adminpads2_last-edited": "Última edição",
|
|
||||||
"ep_adminpads2_loading": "A carregar...",
|
|
||||||
"ep_adminpads2_manage-pads": "Gerir notas",
|
|
||||||
"ep_adminpads2_no-results": "Sem resultados",
|
|
||||||
"ep_adminpads2_pad-user-count": "Número de utilizadores na nota",
|
|
||||||
"ep_adminpads2_padname": "Nome da nota",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Procurar termo",
|
|
||||||
"ep_adminpads2_search-button.value": "Procurar",
|
|
||||||
"ep_adminpads2_search-done": "Procura completa",
|
|
||||||
"ep_adminpads2_search-error-explanation": "O servidor encontrou um erro enquanto procurava por notas:",
|
|
||||||
"ep_adminpads2_search-error-title": "Falha ao obter lista de notas",
|
|
||||||
"ep_adminpads2_search-heading": "Procurar por notas",
|
|
||||||
"ep_adminpads2_title": "Administração da nota",
|
|
||||||
"ep_adminpads2_unknown-error": "Erro desconhecido",
|
|
||||||
"ep_adminpads2_unknown-status": "Estado desconhecido"
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"BryanDavis"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "{{Identical|Action}}",
|
|
||||||
"ep_adminpads2_delete.value": "{{Identical|Delete}}",
|
|
||||||
"ep_adminpads2_search-button.value": "{{Identical|Search}}"
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"DDPAT",
|
|
||||||
"Ice bulldog",
|
|
||||||
"Megakott",
|
|
||||||
"Okras",
|
|
||||||
"Pacha Tchernof"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Действие",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Автообновление при изменении документа",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Включает или отключает автоматические обновления для текущего запроса.",
|
|
||||||
"ep_adminpads2_confirm": "Вы действительно хотите удалить документ {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Удалить",
|
|
||||||
"ep_adminpads2_last-edited": "Последнее изменение",
|
|
||||||
"ep_adminpads2_loading": "Загружается…",
|
|
||||||
"ep_adminpads2_manage-pads": "Управление документами",
|
|
||||||
"ep_adminpads2_no-results": "Нет результатов",
|
|
||||||
"ep_adminpads2_pad-user-count": "Количество пользователей документа",
|
|
||||||
"ep_adminpads2_padname": "Название документа",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Искать термин",
|
|
||||||
"ep_adminpads2_search-button.value": "Найти",
|
|
||||||
"ep_adminpads2_search-done": "Поиск завершён",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Сервер обнаружил ошибку при поиске документов:",
|
|
||||||
"ep_adminpads2_search-error-title": "Не удалось получить список документов",
|
|
||||||
"ep_adminpads2_search-heading": "Поиск документов",
|
|
||||||
"ep_adminpads2_title": "Администрирование документов",
|
|
||||||
"ep_adminpads2_unknown-error": "Неизвестная ошибка",
|
|
||||||
"ep_adminpads2_unknown-status": "Неизвестный статус"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Adr mm"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Atzione",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Atualizatzione automàtica de is modìficas de su pad",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Ativat o disativat is atualizatziones automàticas pro sa chirca atuale.",
|
|
||||||
"ep_adminpads2_confirm": "Seguru chi boles cantzellare su pad {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Cantzella",
|
|
||||||
"ep_adminpads2_last-edited": "Ùrtima modìfica",
|
|
||||||
"ep_adminpads2_loading": "Carrighende...",
|
|
||||||
"ep_adminpads2_manage-pads": "Gesti is pads",
|
|
||||||
"ep_adminpads2_no-results": "Nissunu resurtadu",
|
|
||||||
"ep_adminpads2_pad-user-count": "Nùmeru de utentes de pads",
|
|
||||||
"ep_adminpads2_padname": "Nòmine de su pad",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Tèrmine de chirca",
|
|
||||||
"ep_adminpads2_search-button.value": "Chirca",
|
|
||||||
"ep_adminpads2_search-done": "Chirca cumpleta",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Su serbidore at agatadu un'errore chirchende pads:",
|
|
||||||
"ep_adminpads2_search-error-title": "Impossìbile otènnere sa lista de pads",
|
|
||||||
"ep_adminpads2_search-heading": "Chirca pads",
|
|
||||||
"ep_adminpads2_title": "Amministratzione de su pad",
|
|
||||||
"ep_adminpads2_unknown-error": "Errore disconnotu",
|
|
||||||
"ep_adminpads2_unknown-status": "Istadu disconnotu"
|
|
||||||
}
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"F Samaritani"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Azioni",
|
|
||||||
"ep_adminpads2_delete.value": "Canzella",
|
|
||||||
"ep_adminpads2_loading": "carrigghendi...",
|
|
||||||
"ep_adminpads2_no-results": "Nisciun risulthaddu",
|
|
||||||
"ep_adminpads2_search-button.value": "Zercha",
|
|
||||||
"ep_adminpads2_search-heading": "Zirchà dati",
|
|
||||||
"ep_adminpads2_unknown-error": "Errori ischunisciddu"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Yardom78"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Akcia",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Automatická aktualizácia zmien na poznámkovom bloku",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Zapne alebo vypne automatickú aktualizáciu.",
|
|
||||||
"ep_adminpads2_confirm": "Skutočne chcete vymazať poznámkový blok {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Vymazať",
|
|
||||||
"ep_adminpads2_last-edited": "Posledná úprava",
|
|
||||||
"ep_adminpads2_loading": "Načítavanie...",
|
|
||||||
"ep_adminpads2_manage-pads": "Spravovať poznámkové bloky",
|
|
||||||
"ep_adminpads2_no-results": "Žiadne výsledky",
|
|
||||||
"ep_adminpads2_pad-user-count": "Počet používateľov poznámkového bloku",
|
|
||||||
"ep_adminpads2_padname": "Názov poznámkového bloku",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Hľadať výraz",
|
|
||||||
"ep_adminpads2_search-button.value": "Hľadať",
|
|
||||||
"ep_adminpads2_search-done": "Hľadanie dokončené",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Pri hľadaní poznámkového bloku došlo k chybe:",
|
|
||||||
"ep_adminpads2_search-error-title": "Nepodarilo sa získať zoznam poznámkových blokov",
|
|
||||||
"ep_adminpads2_search-heading": "Hľadať poznámkový blok",
|
|
||||||
"ep_adminpads2_title": "Správa poznámkového bloku",
|
|
||||||
"ep_adminpads2_unknown-error": "Neznáma chyba",
|
|
||||||
"ep_adminpads2_unknown-status": "Neznámy stav"
|
|
||||||
}
|
|
|
@ -1,20 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Saraiki"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "عمل",
|
|
||||||
"ep_adminpads2_delete.value": "مٹاؤ",
|
|
||||||
"ep_adminpads2_last-edited": "چھیکڑی تبدیلی",
|
|
||||||
"ep_adminpads2_loading": "لوڈ تھین٘دا پئے۔۔۔",
|
|
||||||
"ep_adminpads2_manage-pads": "پیڈ منیج کرو",
|
|
||||||
"ep_adminpads2_no-results": "کوئی نتیجہ کائنی",
|
|
||||||
"ep_adminpads2_padname": "پیڈ ناں",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "ٹرم ڳولو",
|
|
||||||
"ep_adminpads2_search-button.value": "ڳولو",
|
|
||||||
"ep_adminpads2_search-done": "ڳولݨ پورا تھیا",
|
|
||||||
"ep_adminpads2_search-heading": "پیڈاں دی ڳول",
|
|
||||||
"ep_adminpads2_unknown-error": "نامعلوم غلطی",
|
|
||||||
"ep_adminpads2_unknown-status": "نامعلوم حالت"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Eleassar",
|
|
||||||
"HairyFotr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Dejanje",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Samodejno posodabljanje ob spremembah blokcev",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Omogoči ali onemogoči samodejne posodobitve za trenutno poizvedbo.",
|
|
||||||
"ep_adminpads2_confirm": "Ali res želite izbrisati blokec {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Izbriši",
|
|
||||||
"ep_adminpads2_last-edited": "Zadnje urejanje",
|
|
||||||
"ep_adminpads2_loading": "Nalaganje ...",
|
|
||||||
"ep_adminpads2_manage-pads": "Upravljanje blokcev",
|
|
||||||
"ep_adminpads2_no-results": "Ni zadetkov",
|
|
||||||
"ep_adminpads2_pad-user-count": "Število urejevalcev blokca",
|
|
||||||
"ep_adminpads2_padname": "Ime blokca",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Iskalni izraz",
|
|
||||||
"ep_adminpads2_search-button.value": "Išči",
|
|
||||||
"ep_adminpads2_search-done": "Iskanje končano",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Strežnik je med iskanjem blokcev naletel na napako:",
|
|
||||||
"ep_adminpads2_search-error-title": "Ni bilo mogoče pridobiti seznama blokcev",
|
|
||||||
"ep_adminpads2_search-heading": "Iskanje blokcev",
|
|
||||||
"ep_adminpads2_title": "Upravljanje blokcev",
|
|
||||||
"ep_adminpads2_unknown-error": "Neznana napaka",
|
|
||||||
"ep_adminpads2_unknown-status": "Neznano stanje"
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Yupik"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_delete.value": "Siho",
|
|
||||||
"ep_adminpads2_last-edited": "Majemustáá nubástittum",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Uuccâmsääni",
|
|
||||||
"ep_adminpads2_search-button.value": "Uusâ",
|
|
||||||
"ep_adminpads2_unknown-error": "Tubdâmettum feilâ",
|
|
||||||
"ep_adminpads2_unknown-status": "Tubdâmettum tile"
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Yupik"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_delete.value": "Jaukkâd",
|
|
||||||
"ep_adminpads2_last-edited": "Mââimõssân muttum",
|
|
||||||
"ep_adminpads2_no-results": "Ij käunnʼjam ni mii",
|
|
||||||
"ep_adminpads2_padname": "Mošttʼtõspõʹmmai nõmm",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Ooccâmsääʹnn",
|
|
||||||
"ep_adminpads2_search-button.value": "Ooʒʒ",
|
|
||||||
"ep_adminpads2_search-heading": "Ooʒʒ mošttʼtõspõʹmmjid",
|
|
||||||
"ep_adminpads2_unknown-error": "Toobdteʹmes vââʹǩǩ",
|
|
||||||
"ep_adminpads2_unknown-status": "Toobdteʹmes status"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Besnik b"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Veprim",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Vetëpërditësohu, kur nga ndryshime blloku",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Aktivizon ose çaktivizon përditësim të automatizuara për kërkesën e tanishme.",
|
|
||||||
"ep_adminpads2_confirm": "Doni vërtet të fshihet blloku {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Fshije",
|
|
||||||
"ep_adminpads2_last-edited": "Përpunuar së fundi më",
|
|
||||||
"ep_adminpads2_loading": "Po ngarkohet…",
|
|
||||||
"ep_adminpads2_manage-pads": "Administroni blloqe",
|
|
||||||
"ep_adminpads2_no-results": "S’ka përfundime",
|
|
||||||
"ep_adminpads2_pad-user-count": "Numër përdoruesish blloku",
|
|
||||||
"ep_adminpads2_padname": "Emër blloku",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Term kërkimi",
|
|
||||||
"ep_adminpads2_search-button.value": "Kërko",
|
|
||||||
"ep_adminpads2_search-done": "Kërkim i plotë",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Shërbyesi hasi një gabim teksa kërkohej për blloqe:",
|
|
||||||
"ep_adminpads2_search-error-title": "S’u arrit të merrej listë blloqesh",
|
|
||||||
"ep_adminpads2_search-heading": "Kërkoni për blloqe",
|
|
||||||
"ep_adminpads2_title": "Administrim blloku",
|
|
||||||
"ep_adminpads2_unknown-error": "Gabim i panjohur",
|
|
||||||
"ep_adminpads2_unknown-status": "Gjendje e panjohur"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Bengtsson96",
|
|
||||||
"WikiPhoenix"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Åtgärd",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Uppdatera automatiskt när blocket ändras",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Aktivera eller inaktivera automatiska uppdatering för nuvarande förfrågan.",
|
|
||||||
"ep_adminpads2_confirm": "Vill du verkligen radera blocket {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Radera",
|
|
||||||
"ep_adminpads2_last-edited": "Senast redigerad",
|
|
||||||
"ep_adminpads2_loading": "Läser in …",
|
|
||||||
"ep_adminpads2_manage-pads": "Hantera block",
|
|
||||||
"ep_adminpads2_no-results": "Inga resultat",
|
|
||||||
"ep_adminpads2_pad-user-count": "Antal blockanvändare",
|
|
||||||
"ep_adminpads2_padname": "Blocknamn",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Sökord",
|
|
||||||
"ep_adminpads2_search-button.value": "Sök",
|
|
||||||
"ep_adminpads2_search-done": "Sökning slutförd",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Servern stötte på ett fel vid sökning efter block:",
|
|
||||||
"ep_adminpads2_search-error-title": "Misslyckades att hämta blocklista",
|
|
||||||
"ep_adminpads2_search-heading": "Sök efter block",
|
|
||||||
"ep_adminpads2_title": "Blockadministration",
|
|
||||||
"ep_adminpads2_unknown-error": "Okänt fel",
|
|
||||||
"ep_adminpads2_unknown-status": "Okänd status"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Andibecker"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Hatua",
|
|
||||||
"ep_adminpads2_autoupdate-label": "Sasisha kiotomatiki kwenye mabadiliko ya pedi",
|
|
||||||
"ep_adminpads2_autoupdate.title": "Huwasha au kulemaza sasisho otomatiki kwa hoja ya sasa.",
|
|
||||||
"ep_adminpads2_confirm": "Je! Kweli unataka kufuta pedi {{padID}}?",
|
|
||||||
"ep_adminpads2_delete.value": "Futa",
|
|
||||||
"ep_adminpads2_last-edited": "Ilihaririwa mwisho",
|
|
||||||
"ep_adminpads2_loading": "Inapakia...",
|
|
||||||
"ep_adminpads2_manage-pads": "Dhibiti pedi",
|
|
||||||
"ep_adminpads2_no-results": "Hakuna matokeo",
|
|
||||||
"ep_adminpads2_pad-user-count": "Hesabu ya mtumiaji wa pedi",
|
|
||||||
"ep_adminpads2_padname": "Jina la utani",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Neno la utaftaji",
|
|
||||||
"ep_adminpads2_search-button.value": "Tafuta",
|
|
||||||
"ep_adminpads2_search-done": "Utafutaji umekamilika",
|
|
||||||
"ep_adminpads2_search-error-explanation": "Seva ilipata hitilafu wakati wa kutafuta pedi:",
|
|
||||||
"ep_adminpads2_search-error-title": "Imeshindwa kupata orodha ya pedi",
|
|
||||||
"ep_adminpads2_search-heading": "Tafuta pedi",
|
|
||||||
"ep_adminpads2_title": "Usimamizi wa pedi",
|
|
||||||
"ep_adminpads2_unknown-error": "Hitilafu isiyojulikana",
|
|
||||||
"ep_adminpads2_unknown-status": "Hali isiyojulikana"
|
|
||||||
}
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Andibecker"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "การกระทำ",
|
|
||||||
"ep_adminpads2_autoupdate-label": "อัปเดตอัตโนมัติเมื่อเปลี่ยนแผ่น",
|
|
||||||
"ep_adminpads2_autoupdate.title": "เปิดหรือปิดการอัปเดตอัตโนมัติสำหรับคิวรีปัจจุบัน",
|
|
||||||
"ep_adminpads2_confirm": "คุณต้องการลบแพด {{padID}} จริงหรือไม่",
|
|
||||||
"ep_adminpads2_delete.value": "ลบ",
|
|
||||||
"ep_adminpads2_last-edited": "แก้ไขล่าสุด",
|
|
||||||
"ep_adminpads2_loading": "กำลังโหลด…",
|
|
||||||
"ep_adminpads2_manage-pads": "จัดการแผ่นรอง",
|
|
||||||
"ep_adminpads2_no-results": "ไม่มีผลลัพธ์",
|
|
||||||
"ep_adminpads2_pad-user-count": "จำนวนผู้ใช้แพด",
|
|
||||||
"ep_adminpads2_padname": "นามแฝง",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "คำที่ต้องการค้นหา",
|
|
||||||
"ep_adminpads2_search-button.value": "ค้นหา",
|
|
||||||
"ep_adminpads2_search-done": "ค้นหาเสร็จสมบูรณ์",
|
|
||||||
"ep_adminpads2_search-error-explanation": "เซิร์ฟเวอร์พบข้อผิดพลาดขณะค้นหาแผ่นอิเล็กโทรด:",
|
|
||||||
"ep_adminpads2_search-error-title": "ไม่สามารถรับรายการแผ่นรอง",
|
|
||||||
"ep_adminpads2_search-heading": "ค้นหาแผ่นรอง",
|
|
||||||
"ep_adminpads2_title": "การบริหารแผ่น",
|
|
||||||
"ep_adminpads2_unknown-error": "ข้อผิดพลาดที่ไม่รู้จัก",
|
|
||||||
"ep_adminpads2_unknown-status": "ไม่ทราบสถานะ"
|
|
||||||
}
|
|
|
@ -1,17 +0,0 @@
|
||||||
{
|
|
||||||
"@metadata": {
|
|
||||||
"authors": [
|
|
||||||
"Mrkczr"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"ep_adminpads2_action": "Kilos",
|
|
||||||
"ep_adminpads2_delete.value": "Burahin",
|
|
||||||
"ep_adminpads2_last-edited": "Huling binago",
|
|
||||||
"ep_adminpads2_loading": "Naglo-load...",
|
|
||||||
"ep_adminpads2_no-results": "Walang mga resulta",
|
|
||||||
"ep_adminpads2_search-box.placeholder": "Mga katagang hahanapin:",
|
|
||||||
"ep_adminpads2_search-button.value": "Hanapin",
|
|
||||||
"ep_adminpads2_search-done": "Natapos na ang paghahanap",
|
|
||||||
"ep_adminpads2_unknown-error": "Hindi nalalamang kamalian",
|
|
||||||
"ep_adminpads2_unknown-status": "Hindi alam na katayuan"
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue