From fbdbf0bda66c76be4c5148751947cc72fe37f94b Mon Sep 17 00:00:00 2001 From: Shun Miyazawa Date: Thu, 27 Jun 2024 01:55:11 +0000 Subject: [PATCH 1/2] weseek/growi -> growilabs/growi --- .github/workflows/deploy.yml | 2 +- README.md | 2 +- docs/.vuepress/config-docs-growi-org.js | 6 +++--- docs/en/README.md | 8 ++++---- docs/en/admin-guide/admin-cookbook/audit-log-setup.md | 2 +- docs/en/admin-guide/admin-cookbook/custom-rate-limit.md | 2 +- .../admin-guide/admin-cookbook/integrate-with-hackmd.md | 4 ++-- .../admin-guide/admin-cookbook/mongodb-backup-regular.md | 4 ++-- docs/en/admin-guide/admin-cookbook/multi-app.md | 4 ++-- docs/en/admin-guide/downgrading/50x-to-45x.md | 4 ++-- docs/en/admin-guide/getting-started/centos.md | 4 ++-- docs/en/admin-guide/getting-started/docker-compose.md | 6 +++--- docs/en/admin-guide/getting-started/ubuntu-server.md | 4 ++-- .../management-cookbook/setup-search-system.md | 2 +- .../admin-guide/migration-guide/from-bakudankun-crowi.md | 2 +- .../admin-guide/migration-guide/from-crowi-onpremise.md | 4 ++-- .../migration-guide/from-crowi-plus-docker-compose.md | 4 ++-- docs/en/admin-guide/upgrading/34x.md | 4 ++-- docs/en/admin-guide/upgrading/35x.md | 6 +++--- docs/en/admin-guide/upgrading/36x.md | 6 +++--- docs/en/admin-guide/upgrading/41x.md | 4 ++-- docs/en/admin-guide/upgrading/43x.md | 2 +- docs/en/admin-guide/upgrading/50x.md | 6 +++--- docs/en/admin-guide/upgrading/60x.md | 8 ++++---- docs/en/admin-guide/upgrading/61x.md | 8 ++++---- docs/en/admin-guide/upgrading/70x.md | 4 ++-- docs/en/cloud/dataimport-error.md | 2 +- docs/en/cloud/request.md | 2 +- docs/en/cloud/trouble.md | 2 +- docs/en/cloud/version.md | 2 +- docs/en/dev/startup-v2/launch-devcontainer.md | 4 ++-- docs/en/dev/startup-v2/prepare-workspace.md | 8 ++++---- docs/en/dev/startup-v3/dev-env.md | 8 ++++---- docs/en/dev/startup-v3/launch-devcontainer.md | 2 +- docs/en/dev/startup-v4/dev-env.md | 8 ++++---- docs/en/dev/startup-v4/launch-devcontainer.md | 2 +- docs/en/dev/startup-v5/dev-env.md | 8 ++++---- docs/en/dev/startup-v5/launch-devcontainer.md | 2 +- docs/en/guide/features/template.md | 2 +- docs/ja/README.md | 8 ++++---- docs/ja/admin-guide/admin-cookbook/audit-log-setup.md | 2 +- docs/ja/admin-guide/admin-cookbook/custom-rate-limit.md | 2 +- .../admin-guide/admin-cookbook/integrate-with-hackmd.md | 4 ++-- .../admin-guide/admin-cookbook/mongodb-backup-regular.md | 4 ++-- docs/ja/admin-guide/admin-cookbook/multi-app.md | 2 +- docs/ja/admin-guide/downgrading/50x-to-45x.md | 4 ++-- docs/ja/admin-guide/getting-started/almalinux.md | 4 ++-- docs/ja/admin-guide/getting-started/centos.md | 4 ++-- docs/ja/admin-guide/getting-started/docker-compose.md | 6 +++--- docs/ja/admin-guide/getting-started/ubuntu-server.md | 4 ++-- .../management-cookbook/setup-search-system.md | 2 +- .../admin-guide/migration-guide/from-bakudankun-crowi.md | 2 +- .../admin-guide/migration-guide/from-crowi-onpremise.md | 4 ++-- .../migration-guide/from-crowi-plus-docker-compose.md | 4 ++-- docs/ja/admin-guide/upgrading/34x.md | 4 ++-- docs/ja/admin-guide/upgrading/35x.md | 4 ++-- docs/ja/admin-guide/upgrading/36x.md | 6 +++--- docs/ja/admin-guide/upgrading/41x.md | 4 ++-- docs/ja/admin-guide/upgrading/42x.md | 2 +- docs/ja/admin-guide/upgrading/43x.md | 2 +- docs/ja/admin-guide/upgrading/50x.md | 6 +++--- docs/ja/admin-guide/upgrading/60x.md | 8 ++++---- docs/ja/admin-guide/upgrading/61x.md | 8 ++++---- docs/ja/admin-guide/upgrading/70x.md | 4 ++-- docs/ja/cloud/announcement-notification.md | 2 +- docs/ja/cloud/data-migration.md | 2 +- docs/ja/cloud/dataimport-error.md | 2 +- docs/ja/cloud/request.md | 2 +- docs/ja/cloud/trouble.md | 2 +- docs/ja/cloud/version.md | 2 +- docs/ja/dev/startup-v2/launch-devcontainer.md | 4 ++-- docs/ja/dev/startup-v2/prepare-workspace.md | 8 ++++---- docs/ja/dev/startup-v3/dev-env.md | 8 ++++---- docs/ja/dev/startup-v3/launch-devcontainer.md | 2 +- docs/ja/dev/startup-v4/dev-env.md | 8 ++++---- docs/ja/dev/startup-v4/launch-devcontainer.md | 2 +- docs/ja/dev/startup-v5/dev-env.md | 8 ++++---- docs/ja/dev/startup-v5/launch-devcontainer.md | 2 +- docs/ja/guide/features/template.md | 2 +- package.json | 6 +++--- 80 files changed, 165 insertions(+), 165 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 42f532daad..546c64f578 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -56,7 +56,7 @@ jobs: - name: Download and extract GROWI source run: | mkdir -p tmp/growi - export GROWI_ARCHIVE_URL=https://github.com/weseek/growi/archive/master.tar.gz + export GROWI_ARCHIVE_URL=https://github.com/growilabs/growi/archive/master.tar.gz curl -SL $GROWI_ARCHIVE_URL | tar -xz -C tmp/growi --strip-components 1 - name: Build and deploy diff --git a/README.md b/README.md index d5e51a80cf..94f88335b4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # growi-docs -[![Deploy](https://github.com/weseek/growi-docs/actions/workflows/deploy.yml/badge.svg)](https://github.com/weseek/growi-docs/actions/workflows/deploy.yml) +[![Deploy](https://github.com/growilabs/growi-docs/actions/workflows/deploy.yml/badge.svg)](https://github.com/growilabs/growi-docs/actions/workflows/deploy.yml) ## Requirements diff --git a/docs/.vuepress/config-docs-growi-org.js b/docs/.vuepress/config-docs-growi-org.js index 08a9f7a4a4..0a8ce1b1e8 100644 --- a/docs/.vuepress/config-docs-growi-org.js +++ b/docs/.vuepress/config-docs-growi-org.js @@ -88,7 +88,7 @@ module.exports = { }, themeConfig: { context: 'docs-growi-org', - repo: 'weseek/growi-docs', + repo: 'growilabs/growi-docs', docsDir: 'docs', editLinks: true, editLinkText: 'Edit this page on GitHub', @@ -102,7 +102,7 @@ module.exports = { { text: 'Admin Guide', link: '/en/admin-guide/' }, { text: 'Developers Guide', link: '/en/dev/' }, { text: 'API Reference', link: '/en/api/' }, - { text: 'Release Note', link: 'https://github.com/weseek/growi/releases' }, + { text: 'Release Note', link: 'https://github.com/growilabs/growi/releases' }, { text: 'External Sites', items: [ @@ -354,7 +354,7 @@ module.exports = { { text: '管理者ガイド', link: '/ja/admin-guide/' }, { text: '開発ガイド', link: '/ja/dev/' }, { text: 'API リファレンス (英語)', link: '/en/api/' }, - { text: 'リリースノート', link: 'https://github.com/weseek/growi/releases' }, + { text: 'リリースノート', link: 'https://github.com/growilabs/growi/releases' }, { text: '外部サイト', items: [ diff --git a/docs/en/README.md b/docs/en/README.md index 23d76f3da0..5ae7c6e32b 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -8,13 +8,13 @@ footer: © 2018 WESEEK, Inc.
- - + +
- - + +
diff --git a/docs/en/admin-guide/admin-cookbook/audit-log-setup.md b/docs/en/admin-guide/admin-cookbook/audit-log-setup.md index 46cd9ad96c..93b8483dbb 100644 --- a/docs/en/admin-guide/admin-cookbook/audit-log-setup.md +++ b/docs/en/admin-guide/admin-cookbook/audit-log-setup.md @@ -31,4 +31,4 @@ Actions included/excluded in the group set in `AUDIT_LOG_ACTION_GROUP_SIZE` can ## List of supported actions -- [name of action that can be collected](https://github.com/weseek/growi/blob/master/packages/app/src/interfaces/activity.ts#L9) +- [name of action that can be collected](https://github.com/growilabs/growi/blob/master/packages/app/src/interfaces/activity.ts#L9) diff --git a/docs/en/admin-guide/admin-cookbook/custom-rate-limit.md b/docs/en/admin-guide/admin-cookbook/custom-rate-limit.md index f297d401ba..df16f21b8f 100644 --- a/docs/en/admin-guide/admin-cookbook/custom-rate-limit.md +++ b/docs/en/admin-guide/admin-cookbook/custom-rate-limit.md @@ -35,7 +35,7 @@ Endpoints are restricted by default in the table below. Other endpoints that require restrictions have default customized initial values set as restrictions by the following configuration file. - + ## Limit Customization diff --git a/docs/en/admin-guide/admin-cookbook/integrate-with-hackmd.md b/docs/en/admin-guide/admin-cookbook/integrate-with-hackmd.md index 1cc4839326..c6bc08545a 100644 --- a/docs/en/admin-guide/admin-cookbook/integrate-with-hackmd.md +++ b/docs/en/admin-guide/admin-cookbook/integrate-with-hackmd.md @@ -16,9 +16,9 @@ ## Create a new HackMD(CodiMD) container with [growi-docker-compose](/en/admin-guide/getting-started/docker-compose.html) -[This](https://github.com/weseek/growi-docker-compose/tree/master/examples/integrate-with-hackmd) example will be used. +[This](https://github.com/growilabs/growi-docker-compose/tree/master/examples/integrate-with-hackmd) example will be used. -Set up will follow these instructions [README.md](https://github.com/weseek/growi-docker-compose/blob/master/examples/integrate-with-hackmd/README.md). +Set up will follow these instructions [README.md](https://github.com/growilabs/growi-docker-compose/blob/master/examples/integrate-with-hackmd/README.md). 1. Prepare `examples/integrate-with-hackmd/docker-compose.override.yml` 2. Add environment variables to GROWI container diff --git a/docs/en/admin-guide/admin-cookbook/mongodb-backup-regular.md b/docs/en/admin-guide/admin-cookbook/mongodb-backup-regular.md index b98cade8ec..f9cf67284c 100644 --- a/docs/en/admin-guide/admin-cookbook/mongodb-backup-regular.md +++ b/docs/en/admin-guide/admin-cookbook/mongodb-backup-regular.md @@ -46,11 +46,11 @@ See [weseek/mongodb-awesome-backup](https://github.com/weseek/mongodb-awesome-ba If GROWI is installed with [growi-docker-compose](/en/admin-guide/getting-started/docker-compose.html), preparing a backup container is even easier. ::: -* Refer to weseek/growi-docker-compose [Example](https://github.com/weseek/growi-docker-compose/tree/master/examples/backup-mongodb-data), and follow the steps below. +* Refer to growilabs/growi-docker-compose [Example](https://github.com/growilabs/growi-docker-compose/tree/master/examples/backup-mongodb-data), and follow the steps below. 1. clone ```bash - git clone https://github.com/weseek/growi-docker-compose.git growi + git clone https://github.com/growilabs/growi-docker-compose.git growi cd growi ``` 2. Copy `docker-compose.override.yml` to the root directory. diff --git a/docs/en/admin-guide/admin-cookbook/multi-app.md b/docs/en/admin-guide/admin-cookbook/multi-app.md index 18439d8c35..87e1e1a7a1 100644 --- a/docs/en/admin-guide/admin-cookbook/multi-app.md +++ b/docs/en/admin-guide/admin-cookbook/multi-app.md @@ -11,7 +11,7 @@ This chapter introduces how to launch three GROWI sites. ### Build Image ```bash -git clone https://github.com/weseek/growi-docker-compose.git growi +git clone https://github.com/growilabs/growi-docker-compose.git growi cd growi docker build -t growimulti_app . ``` @@ -139,7 +139,7 @@ docker-compose rm app-1 docker-compose rm app-2 docker-compose rm app-3 docker rmi growimulti_app -docker rmi weseek/growi:3 +docker rmi growilabs/growi:3 ``` ### Rebuild Image diff --git a/docs/en/admin-guide/downgrading/50x-to-45x.md b/docs/en/admin-guide/downgrading/50x-to-45x.md index e11a5b9d7b..99abe62350 100644 --- a/docs/en/admin-guide/downgrading/50x-to-45x.md +++ b/docs/en/admin-guide/downgrading/50x-to-45x.md @@ -4,7 +4,7 @@ If you want to downgrade from v5.0 to v4.5 or lower, you need to migrate down th Please follow the steps below. ::: tip -Downgrading is availble for systems running on-premise or running with [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose). +Downgrading is availble for systems running on-premise or running with [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose). Please note that downgrading is not supported for other forms of system operations. ::: @@ -50,7 +50,7 @@ Please undertake it at your own risk as an administrator. 2. Clone the repository in an environment where you can access MongoDB in production ```bash - git clone https://github.com/weseek/growi -b v5.0.0 --depth 1 + git clone https://github.com/growilabs/growi -b v5.0.0 --depth 1 # Get dependent libraries yarn lerna bootstrap diff --git a/docs/en/admin-guide/getting-started/centos.md b/docs/en/admin-guide/getting-started/centos.md index c43dab03f8..dc74317077 100644 --- a/docs/en/admin-guide/getting-started/centos.md +++ b/docs/en/admin-guide/getting-started/centos.md @@ -228,14 +228,14 @@ $ sudo systemctl status mongod ### Installation -Download the source code from [https://github.com/weseek/growi](https://github.com/weseek/growi), and check the latest stable version at [https://github.com/weseek/growi/releases](https://github.com/weseek/growi/releases). +Download the source code from [https://github.com/growilabs/growi](https://github.com/growilabs/growi), and check the latest stable version at [https://github.com/growilabs/growi/releases](https://github.com/growilabs/growi/releases). The installation procedure shown below will be carried out under `/opt/growi`. ```text $ sudo mkdir -p /opt/ $ cd /opt/ -$ sudo git clone https://github.com/weseek/growi /opt/growi +$ sudo git clone https://github.com/growilabs/growi /opt/growi $ cd /opt/growi # Check the tags diff --git a/docs/en/admin-guide/getting-started/docker-compose.md b/docs/en/admin-guide/getting-started/docker-compose.md index 324c418838..48dedc838c 100644 --- a/docs/en/admin-guide/getting-started/docker-compose.md +++ b/docs/en/admin-guide/getting-started/docker-compose.md @@ -13,10 +13,10 @@ Software needed for setup are listed below. ## Download growi-docker-compose -Download or clone source code files from [https://github.com/weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) . +Download or clone source code files from [https://github.com/growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) . ```text -git clone https://github.com/weseek/growi-docker-compose.git growi +git clone https://github.com/growilabs/growi-docker-compose.git growi ``` ## Build GROWI @@ -87,7 +87,7 @@ Remove Docker containers and Docker images. ```text docker-compose rm app mongo elasticseach -docker rmi weseek/growi:5 +docker rmi growilabs/growi:5 ``` Pull latest GROWI, and create a fresh Docker image and build up containers. diff --git a/docs/en/admin-guide/getting-started/ubuntu-server.md b/docs/en/admin-guide/getting-started/ubuntu-server.md index 06f6a44e9e..3b3c7857c8 100644 --- a/docs/en/admin-guide/getting-started/ubuntu-server.md +++ b/docs/en/admin-guide/getting-started/ubuntu-server.md @@ -234,14 +234,14 @@ $ sudo systemctl status mongod ### Installation -Download the source code from [https://github.com/weseek/growi](https://github.com/weseek/growi), and check the latest stable version at [https://github.com/weseek/growi/releases](https://github.com/weseek/growi/releases). +Download the source code from [https://github.com/growilabs/growi](https://github.com/growilabs/growi), and check the latest stable version at [https://github.com/growilabs/growi/releases](https://github.com/growilabs/growi/releases). The installation procedure shown below will be carried out under `/opt/growi`. ```text $ sudo mkdir -p /opt/ $ cd /opt/ -$ sudo git clone https://github.com/weseek/growi /opt/growi +$ sudo git clone https://github.com/growilabs/growi /opt/growi $ cd /opt/growi # Check the tags diff --git a/docs/en/admin-guide/management-cookbook/setup-search-system.md b/docs/en/admin-guide/management-cookbook/setup-search-system.md index 3e3cc6d3ba..8df82306f4 100644 --- a/docs/en/admin-guide/management-cookbook/setup-search-system.md +++ b/docs/en/admin-guide/management-cookbook/setup-search-system.md @@ -9,7 +9,7 @@ This guide will explain how to set up and manage Elasticsearch for full text sea Please refer to system management page for instructions on activating and connecting to Elasticsearch. - docker-compose - - Users of [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) will automatically have Elasticsearch activated by default. No additional setup is required. + - Users of [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) will automatically have Elasticsearch activated by default. No additional setup is required. - ubuntu - Please find instructions for setting up and using Elasticsearch [here](/en/admin-guide/getting-started/ubuntu-server.html#elasticsearch). - Please set the environment variable `ELASTICSEARCH_URI` to the URI of the Elasticsearch instance. you will use for GROWI. diff --git a/docs/en/admin-guide/migration-guide/from-bakudankun-crowi.md b/docs/en/admin-guide/migration-guide/from-bakudankun-crowi.md index 536d821b47..b0846b330f 100644 --- a/docs/en/admin-guide/migration-guide/from-bakudankun-crowi.md +++ b/docs/en/admin-guide/migration-guide/from-bakudankun-crowi.md @@ -2,7 +2,7 @@ ## Overview -- Assuming to migrate from [Crowi docker image + [bakudankun/crowi](https://github.com/crowi/docker-crowi)] to [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose). +- Assuming to migrate from [Crowi docker image + [bakudankun/crowi](https://github.com/crowi/docker-crowi)] to [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose). - Migrate the following data. - MongoDB container's data volume - Uploaded file data from the App container diff --git a/docs/en/admin-guide/migration-guide/from-crowi-onpremise.md b/docs/en/admin-guide/migration-guide/from-crowi-onpremise.md index c82daf840e..c66b7a314b 100644 --- a/docs/en/admin-guide/migration-guide/from-crowi-onpremise.md +++ b/docs/en/admin-guide/migration-guide/from-crowi-onpremise.md @@ -16,7 +16,7 @@ ## Set up Node.js Environment -- Set up Node.js, npm, and yarn. See [README.md#dependencies](https://github.com/weseek/growi/blob/master/README.md#dependencies). +- Set up Node.js, npm, and yarn. See [README.md#dependencies](https://github.com/growilabs/growi/blob/master/README.md#dependencies). - Upgrade Node.js to 10.x - Install yarn @@ -63,7 +63,7 @@ node app.js ```bash # clone -git clone https://github.com/weseek/growi.git +git clone https://github.com/growilabs/growi.git cd growi # install dependencies and build client yarn diff --git a/docs/en/admin-guide/migration-guide/from-crowi-plus-docker-compose.md b/docs/en/admin-guide/migration-guide/from-crowi-plus-docker-compose.md index 66b394018c..cd9660a93c 100644 --- a/docs/en/admin-guide/migration-guide/from-crowi-plus-docker-compose.md +++ b/docs/en/admin-guide/migration-guide/from-crowi-plus-docker-compose.md @@ -18,7 +18,7 @@ DO NOT EDIT `docker-compose.yml`. Only edit `Dockerfile`. * **After** ```docker - FROM weseek/growi:3 + FROM growilabs/growi:3 ENV APP_DIR /opt/growi ``` 2. Because GROWI includes lsx plugin and pukiwiki-like-linker plugin in GROWI official image by default, comment out or delete the lines below. @@ -42,7 +42,7 @@ DO NOT EDIT `docker-compose.yml`. Only edit `Dockerfile`. # ;; # ;; NOTE: In GROWI v3 and later, # ;; 2 of official plugins (growi-plugin-lsx and growi-plugin-pukiwiki-like-linker) - # ;; are now included in the 'weseek/growi' image. + # ;; are now included in the 'growilabs/growi' image. # ;; Therefore you will not need following lines except when you install third-party plugins. # ;; #RUN echo "install plugins" \ diff --git a/docs/en/admin-guide/upgrading/34x.md b/docs/en/admin-guide/upgrading/34x.md index a74f71e098..2c11cd1935 100644 --- a/docs/en/admin-guide/upgrading/34x.md +++ b/docs/en/admin-guide/upgrading/34x.md @@ -8,7 +8,7 @@ v3.4 uses different versions about Node.js and middlewares as below. | MongoDB | 3.4 | 3.6 | | Elasticsearch | 5.3 | 6.6 | -Also, the docker image that is used by [growi-docker-compose](https://github.com/weseek/growi-docker-compose) is modified to the image that provided by official [docker.elastic.co](https://www.docker.elastic.co/) instead of [docker-library/elasticsearch](https://github.com/docker-library/elasticsearch/blob/6854914f0b890840c75b6db9eeaefbc26177df9c/5/Dockerfile). +Also, the docker image that is used by [growi-docker-compose](https://github.com/growilabs/growi-docker-compose) is modified to the image that provided by official [docker.elastic.co](https://www.docker.elastic.co/) instead of [docker-library/elasticsearch](https://github.com/docker-library/elasticsearch/blob/6854914f0b890840c75b6db9eeaefbc26177df9c/5/Dockerfile). ## The case using on premise @@ -27,7 +27,7 @@ Also, the docker image that is used by [growi-docker-compose](https://github.com 1. Upgrade Elasticsearch 6.6 or above and install plugins that were required so far - Since index data can be rebuilt from GROWI's management screen, it can be discarded. -## The case using [growi-docker-compose](https://github.com/weseek/growi-docker-compose) +## The case using [growi-docker-compose](https://github.com/growilabs/growi-docker-compose) 1. Remove existing containers diff --git a/docs/en/admin-guide/upgrading/35x.md b/docs/en/admin-guide/upgrading/35x.md index 07360cb493..c0ef0a40a8 100644 --- a/docs/en/admin-guide/upgrading/35x.md +++ b/docs/en/admin-guide/upgrading/35x.md @@ -11,11 +11,11 @@ Addition, v3.5 no longer supports following features: ## Plugins ::: tip -Systems that are launched by [the official docker image](https://hub.docker.com/r/weseek/growi/) will not be affected +Systems that are launched by [the official docker image](https://hub.docker.com/r/growilabs/growi/) will not be affected ::: -Upgrade the official plugins [weseek/growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx) and [weseek/growi-plugin-pukiwiki-like-linker -](https://github.com/weseek/growi-plugin-pukiwiki-like-linker) to the latest version that are released with schema version 3. +Upgrade the official plugins [growilabs/growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx) and [growilabs/growi-plugin-pukiwiki-like-linker +](https://github.com/growilabs/growi-plugin-pukiwiki-like-linker) to the latest version that are released with schema version 3. ### Upgrade Plugins diff --git a/docs/en/admin-guide/upgrading/36x.md b/docs/en/admin-guide/upgrading/36x.md index 0e1f849e57..35604ede68 100644 --- a/docs/en/admin-guide/upgrading/36x.md +++ b/docs/en/admin-guide/upgrading/36x.md @@ -2,19 +2,19 @@ GROWI v3.6 no longer supports Node.js v8. -v3.5 or below has the bug([weseek/growi#1361](https://github.com/weseek/growi/issues/1361)) that generate two databases wrongly. +v3.5 or below has the bug([growilabs/growi#1361](https://github.com/growilabs/growi/issues/1361)) that generate two databases wrongly. ## Node.js v8 is no longer supported ::: tip -Systems that are launched by [the official docker image](https://hub.docker.com/r/weseek/growi/) will not be affected +Systems that are launched by [the official docker image](https://hub.docker.com/r/growilabs/growi/) will not be affected ::: ### Upgrade Node.js 1. Upgrade Node.js to v10 or v12 -## Avoid [weseek/growi#1361](https://github.com/weseek/growi/issues/1361) +## Avoid [growilabs/growi#1361](https://github.com/growilabs/growi/issues/1361) ::: warning This problem is caused in the situation that using `MONGO_URI` with parameters of the form `?key=value`. diff --git a/docs/en/admin-guide/upgrading/41x.md b/docs/en/admin-guide/upgrading/41x.md index 5cfa648771..0d8550f2cc 100644 --- a/docs/en/admin-guide/upgrading/41x.md +++ b/docs/en/admin-guide/upgrading/41x.md @@ -8,7 +8,7 @@ GROWI v4.1 no longer supports also [growi-plugin-attachment-refs](https://www.np ::: tip -- Systems that are launched by [the official docker image](https://hub.docker.com/r/weseek/growi/) will not be affected +- Systems that are launched by [the official docker image](https://hub.docker.com/r/growilabs/growi/) will not be affected ::: ### Upgrade Node.js @@ -19,7 +19,7 @@ GROWI v4.1 no longer supports also [growi-plugin-attachment-refs](https://www.np ::: tip -- Systems that are launched by [the official docker image](https://hub.docker.com/r/weseek/growi/) will not be affected +- Systems that are launched by [the official docker image](https://hub.docker.com/r/growilabs/growi/) will not be affected - Systems that do not install growi-plugin-attachment-refs will not be affected ::: diff --git a/docs/en/admin-guide/upgrading/43x.md b/docs/en/admin-guide/upgrading/43x.md index 45bc6bc2a6..6af2422485 100644 --- a/docs/en/admin-guide/upgrading/43x.md +++ b/docs/en/admin-guide/upgrading/43x.md @@ -3,7 +3,7 @@ GROWI v4.3 uses `lerna` to manage package dependencies. GROWI v4.3 includes some official plugins in default. -Users no longer need to install [growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx), [growi-plugin-pukiwiki-like-linker](https://github.com/weseek/growi-plugin-pukiwiki-like-linker) and [growi-plugin-attachment-refs](https://github.com/weseek/growi-plugin-attachment-refs) before build client. +Users no longer need to install [growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx), [growi-plugin-pukiwiki-like-linker](https://github.com/growilabs/growi-plugin-pukiwiki-like-linker) and [growi-plugin-attachment-refs](https://github.com/growilabs/growi-plugin-attachment-refs) before build client. ## Change build procedure diff --git a/docs/en/admin-guide/upgrading/50x.md b/docs/en/admin-guide/upgrading/50x.md index 5e4df2fc65..2fdea9e3df 100644 --- a/docs/en/admin-guide/upgrading/50x.md +++ b/docs/en/admin-guide/upgrading/50x.md @@ -24,7 +24,7 @@ If you want to downgrade from v5.0 to v4.5 or lower, you need to migrate down th For more information, please see [Downgrading from v5.0 to v4.5 or lower](/en/admin-guide/downgrading/50x-to-45x.html). ::: tip -Downgrading is available for systems running on-premise or running with [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose). +Downgrading is available for systems running on-premise or running with [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose). Please note that downgrading is not supported for other forms of system operations. ::: @@ -77,9 +77,9 @@ Elastic version 6 and version 7 are officially said to be index compatible, but - Confirm that the index data for GROWI does not exist (if it does exist, then ensure it does not inherit the data of Elasticsearch version 6). 4. Start GROWI v5.0.x. -### If Using [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) +### If Using [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) -In addition to referring to [If Using Docker](#if-using-docker), please refer to this guide on github, [Wiki: Upgrade Elasticsearch from 6.x to 7.x](https://github.com/weseek/growi-docker-compose/wiki/Upgrade-Elasticsearch-from-6.x-to-7.x). +In addition to referring to [If Using Docker](#if-using-docker), please refer to this guide on github, [Wiki: Upgrade Elasticsearch from 6.x to 7.x](https://github.com/growilabs/growi-docker-compose/wiki/Upgrade-Elasticsearch-from-6.x-to-7.x). ## About The New v5 Compatible Format diff --git a/docs/en/admin-guide/upgrading/60x.md b/docs/en/admin-guide/upgrading/60x.md index 8c61951b7f..d56e6b4cd3 100644 --- a/docs/en/admin-guide/upgrading/60x.md +++ b/docs/en/admin-guide/upgrading/60x.md @@ -143,7 +143,7 @@ The notation for drawing charts has been changed. ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI is upgraded. Check out the discussion for batch rewriting of Markdown documents to the new notation. - + ::: @@ -189,7 +189,7 @@ class RemarkPlugin { ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI is upgraded. Check out the discussion for batch rewriting of Markdown documents to the new notation. - + ::: @@ -219,7 +219,7 @@ Content Cell Content Cell ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI is upgraded. Check out the discussion for batch rewriting of Markdown documents to the new notation. - + ::: @@ -270,7 +270,7 @@ Instead, use one of the following notations: ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI is upgraded. Check out the discussion for batch rewriting of Markdown documents to the new notation. - + ::: diff --git a/docs/en/admin-guide/upgrading/61x.md b/docs/en/admin-guide/upgrading/61x.md index 2f45dafd42..daddfdedf3 100644 --- a/docs/en/admin-guide/upgrading/61x.md +++ b/docs/en/admin-guide/upgrading/61x.md @@ -28,7 +28,7 @@ There are changes to the execution environment and supported middleware, so admi ::: tip -- Systems using [official Docker images](https://hub.docker.com/r/weseek/growi/) are not affected +- Systems using [official Docker images](https://hub.docker.com/r/growilabs/growi/) are not affected ::: - Upgrade to v16 or v18 @@ -55,7 +55,7 @@ Please install it with the following command before building. 1. `yarn global add turbo` -For more information, see [README.md](https://github.com/weseek/growi/blob/master/README.md) and [Development Startup](../../dev/startup-v5/start-development.html). +For more information, see [README.md](https://github.com/growilabs/growi/blob/master/README.md) and [Development Startup](../../dev/startup-v5/start-development.html). ### [Specification Change] Change File Save Location Under `FILE_UPLOAD=local` Setting @@ -75,7 +75,7 @@ The location of the `app` package has changed, and the location of the files has Please move existing files after upgrade. Also see discussion below. - + @@ -100,7 +100,7 @@ Please rewrite the relevant links accordingly. ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI version is upgraded. We have provided a script to batch rewrite Markdown documents to the new notation, please check the discussion below. - + ::: diff --git a/docs/en/admin-guide/upgrading/70x.md b/docs/en/admin-guide/upgrading/70x.md index 577b10e4bd..c70120eb84 100644 --- a/docs/en/admin-guide/upgrading/70x.md +++ b/docs/en/admin-guide/upgrading/70x.md @@ -55,7 +55,7 @@ Other than that, there are no special points to note. ::: tip -- Systems using [official Docker images](https://hub.docker.com/r/weseek/growi/) are not affected +- Systems using [official Docker images](https://hub.docker.com/r/growilabs/growi/) are not affected ::: - Upgrade to v18 or v20 @@ -74,7 +74,7 @@ Please check the official Bootstrap [Changes in v5](https://getbootstrap.jp/docs ::: tip The content of pages saved using the previous notation will not automatically change when the GROWI is upgraded. To use a script to bulk rewrite Markdown documents to the new notation, see the following discussion. - + ::: diff --git a/docs/en/cloud/dataimport-error.md b/docs/en/cloud/dataimport-error.md index 083ec4f9f2..21ebb575d9 100644 --- a/docs/en/cloud/dataimport-error.md +++ b/docs/en/cloud/dataimport-error.md @@ -4,7 +4,7 @@ - When migrating, the source GROWI and destination GROWI (GROWI prepared by GROWI.cloud) versions must be the same. - Please refer to [Version](/en/cloud/version.html) for the version change. - - The release note of v4.1.3 is → [here](https://github.com/weseek/growi/releases/tag/v4.1.3) + - The release note of v4.1.3 is → [here](https://github.com/growilabs/growi/releases/tag/v4.1.3) ## If The Above Procedure Does Not Complete The Migration Successfully diff --git a/docs/en/cloud/request.md b/docs/en/cloud/request.md index 35a8b4248a..9af340d4b6 100644 --- a/docs/en/cloud/request.md +++ b/docs/en/cloud/request.md @@ -8,5 +8,5 @@ ## For feature requests or bug reports - Please join our Slack and ask your questions -- Please submit an [Issue](https://github.com/weseek/growi/issues) to GitHub. +- Please submit an [Issue](https://github.com/growilabs/growi/issues) to GitHub. - Join the GROWI workspace on Slack [here](https://communityinviter.com/apps/wsgrowi/invite) diff --git a/docs/en/cloud/trouble.md b/docs/en/cloud/trouble.md index f223c81f5d..95f5aa1276 100644 --- a/docs/en/cloud/trouble.md +++ b/docs/en/cloud/trouble.md @@ -8,7 +8,7 @@ GROWI is OSS and we welcome suggestions and improvement requests from many users ## GitHub_Issue is Here -[GitHub Issue](https://github.com/weseek/growi/issues) +[GitHub Issue](https://github.com/growilabs/growi/issues) ## Contact Slack Here diff --git a/docs/en/cloud/version.md b/docs/en/cloud/version.md index 22684017b9..c7cff7ff30 100644 --- a/docs/en/cloud/version.md +++ b/docs/en/cloud/version.md @@ -6,7 +6,7 @@ version_1.png - The version of the GROWI app can be selected and updated on GROWI.cloud. - When the version is updated, the GROWI app is automatically restarted and the settings are reflected. - - Please refer [here](https://github.com/weseek/growi/releases) for the released version of GROWI. + - Please refer [here](https://github.com/growilabs/growi/releases) for the released version of GROWI. ### GROWI Application Version Update Guide diff --git a/docs/en/dev/startup-v2/launch-devcontainer.md b/docs/en/dev/startup-v2/launch-devcontainer.md index ff7c7f62c0..9bd966a3cc 100644 --- a/docs/en/dev/startup-v2/launch-devcontainer.md +++ b/docs/en/dev/startup-v2/launch-devcontainer.md @@ -10,7 +10,7 @@ The below documentation details our development environment at WESEEK Inc. It ma 1. From the Remote Connection indicator, open the devcontainer repository * indicator * Remote-Containers: Open folder in Container... - * Select the weseek/growi repository + * Select the growilabs/growi repository * WSL path for Windows: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` 1. For first time users wait 5-10 minutes for the download and building of various docker container images. 1. If there was no error, you should see 5 docker container images in the sidebar @@ -37,7 +37,7 @@ To ensure there were no errors in setup, confirm the following information in th file:.git/config core.filemode=true file:.git/config core.bare=false file:.git/config core.logallrefupdates=true - file:.git/config remote.origin.url=https://github.com/weseek/growi.git + file:.git/config remote.origin.url=https://github.com/growilabs/growi.git file:.git/config remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* file:.git/config branch.master.remote=origin file:.git/config branch.master.merge=refs/heads/master diff --git a/docs/en/dev/startup-v2/prepare-workspace.md b/docs/en/dev/startup-v2/prepare-workspace.md index e8fd1f260a..af7f358e8a 100644 --- a/docs/en/dev/startup-v2/prepare-workspace.md +++ b/docs/en/dev/startup-v2/prepare-workspace.md @@ -8,8 +8,8 @@ In order to develop using devcontainer, you need to set up a directory tree as f ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` ## Procedures @@ -24,8 +24,8 @@ In order to develop using devcontainer, you need to set up a directory tree as f ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git # Create an empty directory for plugin development mkdir node_modules ``` diff --git a/docs/en/dev/startup-v3/dev-env.md b/docs/en/dev/startup-v3/dev-env.md index c12f97b1d6..6e5339a6c0 100644 --- a/docs/en/dev/startup-v3/dev-env.md +++ b/docs/en/dev/startup-v3/dev-env.md @@ -157,8 +157,8 @@ In order to develop using devcontainer, you need to set up a directory tree as f ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * If you are using Windows, use WSL to execute the following commands; on Mac use the included terminal @@ -171,6 +171,6 @@ In order to develop using devcontainer, you need to set up a directory tree as f ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/en/dev/startup-v3/launch-devcontainer.md b/docs/en/dev/startup-v3/launch-devcontainer.md index b60c4c6171..c184ae0a87 100644 --- a/docs/en/dev/startup-v3/launch-devcontainer.md +++ b/docs/en/dev/startup-v3/launch-devcontainer.md @@ -10,7 +10,7 @@ The below documentation details our development environment at WESEEK Inc. It ma 1. From the Remote Connection indicator, open the devcontainer repository * indicator * Remote-Containers: Open folder in Container... - * Select the weseek/growi repository + * Select the growilabs/growi repository * WSL path for Windows: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * Replace `{your account}` with your own account name 1. For first time users wait 5-10 minutes for the download and building of various docker container images. diff --git a/docs/en/dev/startup-v4/dev-env.md b/docs/en/dev/startup-v4/dev-env.md index 6ee161e364..280c0727d4 100644 --- a/docs/en/dev/startup-v4/dev-env.md +++ b/docs/en/dev/startup-v4/dev-env.md @@ -104,8 +104,8 @@ In order to develop using devcontainer, you need to set up a directory tree as f ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * If you are using Windows, use WSL to execute the following commands; on Mac use the included terminal @@ -118,6 +118,6 @@ In order to develop using devcontainer, you need to set up a directory tree as f ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/en/dev/startup-v4/launch-devcontainer.md b/docs/en/dev/startup-v4/launch-devcontainer.md index b60c4c6171..c184ae0a87 100644 --- a/docs/en/dev/startup-v4/launch-devcontainer.md +++ b/docs/en/dev/startup-v4/launch-devcontainer.md @@ -10,7 +10,7 @@ The below documentation details our development environment at WESEEK Inc. It ma 1. From the Remote Connection indicator, open the devcontainer repository * indicator * Remote-Containers: Open folder in Container... - * Select the weseek/growi repository + * Select the growilabs/growi repository * WSL path for Windows: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * Replace `{your account}` with your own account name 1. For first time users wait 5-10 minutes for the download and building of various docker container images. diff --git a/docs/en/dev/startup-v5/dev-env.md b/docs/en/dev/startup-v5/dev-env.md index 6a389c6c2d..06aad34691 100644 --- a/docs/en/dev/startup-v5/dev-env.md +++ b/docs/en/dev/startup-v5/dev-env.md @@ -139,8 +139,8 @@ In order to develop using devcontainer, you need to set up a directory tree as f ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * If you are using Windows, use WSL to execute the following commands; on Mac use the included terminal @@ -153,6 +153,6 @@ In order to develop using devcontainer, you need to set up a directory tree as f ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/en/dev/startup-v5/launch-devcontainer.md b/docs/en/dev/startup-v5/launch-devcontainer.md index 0189faaae0..7bd96690b9 100644 --- a/docs/en/dev/startup-v5/launch-devcontainer.md +++ b/docs/en/dev/startup-v5/launch-devcontainer.md @@ -10,7 +10,7 @@ The below documentation details our development environment at WESEEK Inc. It ma 1. From the Command Palette, open the devcontainer repository * Open the Command Palette: `Ctrl+Shift+P` or `` * `Dev Containers: Open folder in Container...` - * Select the weseek/growi repository + * Select the growilabs/growi repository * WSL path for Windows: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * Replace `{your account}` with your own account name 1. For first time users wait 5-10 minutes for the download and building of various docker container images. diff --git a/docs/en/guide/features/template.md b/docs/en/guide/features/template.md index be499f9ba0..19fadebabb 100644 --- a/docs/en/guide/features/template.md +++ b/docs/en/guide/features/template.md @@ -52,7 +52,7 @@ Lower level templates can be used when you want to unify the format of your enti For example, by creating the following template at the top level, you can create a page template that always displays the child page list at the top of the page. -The notation `$lsx()` is from [weseek/growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx). +The notation `$lsx()` is from [growilabs/growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx). ```markdown # Related pages diff --git a/docs/ja/README.md b/docs/ja/README.md index 77482c2d71..fad967b647 100644 --- a/docs/ja/README.md +++ b/docs/ja/README.md @@ -8,13 +8,13 @@ footer: © 2018 WESEEK, Inc.
- - + +
- - + +
diff --git a/docs/ja/admin-guide/admin-cookbook/audit-log-setup.md b/docs/ja/admin-guide/admin-cookbook/audit-log-setup.md index 0d1cbf28af..9bc422f6c2 100644 --- a/docs/ja/admin-guide/admin-cookbook/audit-log-setup.md +++ b/docs/ja/admin-guide/admin-cookbook/audit-log-setup.md @@ -31,4 +31,4 @@ GROWI が収集するログは `SMALL、MEDIUM、LARGE` の3種類のグルー ## 対応しているアクション一覧 -- [収集できるアクション名](https://github.com/weseek/growi/blob/master/packages/app/src/interfaces/activity.ts#L9) +- [収集できるアクション名](https://github.com/growilabs/growi/blob/master/packages/app/src/interfaces/activity.ts#L9) diff --git a/docs/ja/admin-guide/admin-cookbook/custom-rate-limit.md b/docs/ja/admin-guide/admin-cookbook/custom-rate-limit.md index 0ccf723b0f..fa67c30a9d 100644 --- a/docs/ja/admin-guide/admin-cookbook/custom-rate-limit.md +++ b/docs/ja/admin-guide/admin-cookbook/custom-rate-limit.md @@ -31,7 +31,7 @@ GROWIでのAPIのrate limitについて紹介します。 その他、制限が必要なエンドポイントには以下の設定ファイルによって、デフォルトでカスタマイズされた初期値が制限として設定されています。 - + ## 制限のカスタマイズ diff --git a/docs/ja/admin-guide/admin-cookbook/integrate-with-hackmd.md b/docs/ja/admin-guide/admin-cookbook/integrate-with-hackmd.md index 9fdddc21bc..52962edfbc 100644 --- a/docs/ja/admin-guide/admin-cookbook/integrate-with-hackmd.md +++ b/docs/ja/admin-guide/admin-cookbook/integrate-with-hackmd.md @@ -16,9 +16,9 @@ ## [growi-docker-compose](/ja/admin-guide/getting-started/docker-compose.html) で新しく HackMD(CodiMD) コンテナを立てる -[こちら](https://github.com/weseek/growi-docker-compose/tree/master/examples/integrate-with-hackmd) の Example を利用します。 +[こちら](https://github.com/growilabs/growi-docker-compose/tree/master/examples/integrate-with-hackmd) の Example を利用します。 -[README.md](https://github.com/weseek/growi-docker-compose/blob/master/examples/integrate-with-hackmd/README.md) の内容に従ってセットアップします。 +[README.md](https://github.com/growilabs/growi-docker-compose/blob/master/examples/integrate-with-hackmd/README.md) の内容に従ってセットアップします。 1. `examples/integrate-with-hackmd/docker-compose.override.yml` を用意 2. GROWI コンテナに環境変数を設定 diff --git a/docs/ja/admin-guide/admin-cookbook/mongodb-backup-regular.md b/docs/ja/admin-guide/admin-cookbook/mongodb-backup-regular.md index 626bb29beb..f020cc22f0 100644 --- a/docs/ja/admin-guide/admin-cookbook/mongodb-backup-regular.md +++ b/docs/ja/admin-guide/admin-cookbook/mongodb-backup-regular.md @@ -47,12 +47,12 @@ GROWI を [growi-docker-compose](/ja/admin-guide/getting-started/docker-compose.html) で管理している場合、更に簡単にバックアップ用コンテナを起動できます ::: -* [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose/tree/master/examples/backup-mongodb-data) の [Example](https://github.com/weseek/growi-docker-compose/tree/master/examples/backup-mongodb-data) を参考に、以下の手順を行います +* [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose/tree/master/examples/backup-mongodb-data) の [Example](https://github.com/growilabs/growi-docker-compose/tree/master/examples/backup-mongodb-data) を参考に、以下の手順を行います 1. clone ```bash - git clone https://github.com/weseek/growi-docker-compose.git growi + git clone https://github.com/growilabs/growi-docker-compose.git growi cd growi ``` diff --git a/docs/ja/admin-guide/admin-cookbook/multi-app.md b/docs/ja/admin-guide/admin-cookbook/multi-app.md index 26ac9bf1b5..82bfad0a79 100644 --- a/docs/ja/admin-guide/admin-cookbook/multi-app.md +++ b/docs/ja/admin-guide/admin-cookbook/multi-app.md @@ -140,7 +140,7 @@ docker-compose rm app-1 docker-compose rm app-2 docker-compose rm app-3 docker rmi growimulti_app -docker rmi weseek/growi:3 +docker rmi growilabs/growi:3 ``` ### Docker イメージの起動 diff --git a/docs/ja/admin-guide/downgrading/50x-to-45x.md b/docs/ja/admin-guide/downgrading/50x-to-45x.md index dcfe276d8d..e596fbfcfd 100644 --- a/docs/ja/admin-guide/downgrading/50x-to-45x.md +++ b/docs/ja/admin-guide/downgrading/50x-to-45x.md @@ -4,7 +4,7 @@ v5.0 にアップグレードしたシステムを v4.5 系以下にダウング 以下の手順を実施してください。 ::: tip -ダウングレードは、オンプレミス または [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) で運用中のシステムで可能です。 +ダウングレードは、オンプレミス または [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) で運用中のシステムで可能です。 それ以外の形態で運用中のシステムに関してはダウングレードはサポートしておりません。ご了承ください。 ::: @@ -50,7 +50,7 @@ v5.0 にアップグレードしたシステムを v4.5 系以下にダウング 1. 運用中の MongoDB にアクセスできる環境でリポジトリを clone ```bash - git clone https://github.com/weseek/growi -b v5.0.0 --depth 1 + git clone https://github.com/growilabs/growi -b v5.0.0 --depth 1 # 依存ライブラリの取得 yarn lerna bootstrap diff --git a/docs/ja/admin-guide/getting-started/almalinux.md b/docs/ja/admin-guide/getting-started/almalinux.md index a840da1d86..88c145e60b 100644 --- a/docs/ja/admin-guide/getting-started/almalinux.md +++ b/docs/ja/admin-guide/getting-started/almalinux.md @@ -307,14 +307,14 @@ $ sudo dnf install -y git-lfs ### インストール -[https://github.com/weseek/growi](https://github.com/weseek/growi) からソースコードを取得し、[https://github.com/weseek/growi/releases](https://github.com/weseek/growi/releases) にて、最新の安定版のバージョンを確認します。 +[https://github.com/growilabs/growi](https://github.com/growilabs/growi) からソースコードを取得し、[https://github.com/growilabs/growi/releases](https://github.com/growilabs/growi/releases) にて、最新の安定版のバージョンを確認します。 ここでは `/opt/growi` 配下にインストールする手順を記載しています。 ```text $ sudo mkdir -p /opt/ $ cd /opt/ -$ sudo git clone https://github.com/weseek/growi /opt/growi +$ sudo git clone https://github.com/growilabs/growi /opt/growi $ cd /opt/growi # タグの確認 diff --git a/docs/ja/admin-guide/getting-started/centos.md b/docs/ja/admin-guide/getting-started/centos.md index 68684a3f2d..69427c6922 100644 --- a/docs/ja/admin-guide/getting-started/centos.md +++ b/docs/ja/admin-guide/getting-started/centos.md @@ -226,14 +226,14 @@ $ sudo systemctl status mongod ### インストール -[https://github.com/weseek/growi](https://github.com/weseek/growi) からソースコードを取得し、[https://github.com/weseek/growi/releases](https://github.com/weseek/growi/releases) にて、最新の安定版のバージョンを確認します。 +[https://github.com/growilabs/growi](https://github.com/growilabs/growi) からソースコードを取得し、[https://github.com/growilabs/growi/releases](https://github.com/growilabs/growi/releases) にて、最新の安定版のバージョンを確認します。 ここでは `/opt/growi` 配下にインストールする手順を記載しています。 ```text $ sudo mkdir -p /opt/ $ cd /opt/ -$ sudo git clone https://github.com/weseek/growi /opt/growi +$ sudo git clone https://github.com/growilabs/growi /opt/growi $ cd /opt/growi # タグの確認 diff --git a/docs/ja/admin-guide/getting-started/docker-compose.md b/docs/ja/admin-guide/getting-started/docker-compose.md index 75a239af92..1ef5b6b42d 100644 --- a/docs/ja/admin-guide/getting-started/docker-compose.md +++ b/docs/ja/admin-guide/getting-started/docker-compose.md @@ -13,10 +13,10 @@ ## growi-docker-compose のダウンロード -[https://github.com/weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) の「Clone or download」ボタンから、ソースコードをダウンロードもしくは git コマンドにより clone します。 +[https://github.com/growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) の「Clone or download」ボタンから、ソースコードをダウンロードもしくは git コマンドにより clone します。 ```text -git clone https://github.com/weseek/growi-docker-compose.git growi +git clone https://github.com/growilabs/growi-docker-compose.git growi ``` ## GROWI の起動確認 @@ -87,7 +87,7 @@ docker-compose stop ```text docker-compose rm app mongo elasticsearch -docker rmi weseek/growi:5 +docker rmi growilabs/growi:5 ``` 最新版を pull し、Docker イメージを作成した後、コンテナを立ち上げます。 diff --git a/docs/ja/admin-guide/getting-started/ubuntu-server.md b/docs/ja/admin-guide/getting-started/ubuntu-server.md index ee4315aacb..80ed10bf25 100644 --- a/docs/ja/admin-guide/getting-started/ubuntu-server.md +++ b/docs/ja/admin-guide/getting-started/ubuntu-server.md @@ -313,14 +313,14 @@ $ sudo apt update && sudo apt install git-lfs ### インストール -[https://github.com/weseek/growi](https://github.com/weseek/growi) からソースコードを取得し、[https://github.com/weseek/growi/releases](https://github.com/weseek/growi/releases) にて、最新の安定版のバージョンを確認します。 +[https://github.com/growilabs/growi](https://github.com/growilabs/growi) からソースコードを取得し、[https://github.com/growilabs/growi/releases](https://github.com/growilabs/growi/releases) にて、最新の安定版のバージョンを確認します。 ここでは `/opt/growi` 配下にインストールする手順を記載しています。 ```text $ sudo mkdir -p /opt/ $ cd /opt/ -$ sudo git clone https://github.com/weseek/growi /opt/growi +$ sudo git clone https://github.com/growilabs/growi /opt/growi $ cd /opt/growi # タグの確認 diff --git a/docs/ja/admin-guide/management-cookbook/setup-search-system.md b/docs/ja/admin-guide/management-cookbook/setup-search-system.md index d169e56d57..968266c214 100644 --- a/docs/ja/admin-guide/management-cookbook/setup-search-system.md +++ b/docs/ja/admin-guide/management-cookbook/setup-search-system.md @@ -9,7 +9,7 @@ Elasticsearch による全文検索機能を利用するための設定方法を Elasticsearch サーバーの起動と接続に関しては、システム管理者のページを参考にしてください。 - docker-compose - - [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) を利用している場合はデフォルトで Elasticsearch が起動されるので、追加で設定する必要はありません。 + - [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) を利用している場合はデフォルトで Elasticsearch が起動されるので、追加で設定する必要はありません。 - ubuntu - [こちら](/ja/admin-guide/getting-started/ubuntu-server.html#elasticsearch)を参考にインストールおよび起動してください。 - 起動した Elasticsearch の URI を GROWI の環境変数 `ELASTICSEARCH_URI` に設定してください。 diff --git a/docs/ja/admin-guide/migration-guide/from-bakudankun-crowi.md b/docs/ja/admin-guide/migration-guide/from-bakudankun-crowi.md index dcb315e7e7..5a66f59101 100644 --- a/docs/ja/admin-guide/migration-guide/from-bakudankun-crowi.md +++ b/docs/ja/admin-guide/migration-guide/from-bakudankun-crowi.md @@ -3,7 +3,7 @@ ## 概要 -- Crowi の docker image、[bakudankun/crowi](https://github.com/crowi/docker-crowi) を利用している環境から、GROWI 公式の docker-compose を用いたディプロイ方法である [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) への切り替えを想定 +- Crowi の docker image、[bakudankun/crowi](https://github.com/crowi/docker-crowi) を利用している環境から、GROWI 公式の docker-compose を用いたディプロイ方法である [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) への切り替えを想定 - その際、以下のデータ移行を伴うことになる - MongoDB コンテナのデータボリュームからデータを吸い出し、リストアする diff --git a/docs/ja/admin-guide/migration-guide/from-crowi-onpremise.md b/docs/ja/admin-guide/migration-guide/from-crowi-onpremise.md index 905dea38af..28c7796b79 100644 --- a/docs/ja/admin-guide/migration-guide/from-crowi-onpremise.md +++ b/docs/ja/admin-guide/migration-guide/from-crowi-onpremise.md @@ -16,7 +16,7 @@ ## Node.js 実行環境の準備 -- [README.md#dependencies](https://github.com/weseek/growi/blob/master/README.md#dependencies) を参考に、Node.js, npm, yarn をセットアップする +- [README.md#dependencies](https://github.com/growilabs/growi/blob/master/README.md#dependencies) を参考に、Node.js, npm, yarn をセットアップする - Node.js は 10.x にアップグレード - yarn は新規インストール @@ -63,7 +63,7 @@ node app.js ```bash # clone -git clone https://github.com/weseek/growi.git +git clone https://github.com/growilabs/growi.git cd growi # install dependencies and build client yarn diff --git a/docs/ja/admin-guide/migration-guide/from-crowi-plus-docker-compose.md b/docs/ja/admin-guide/migration-guide/from-crowi-plus-docker-compose.md index 7bcfb20007..f171946924 100644 --- a/docs/ja/admin-guide/migration-guide/from-crowi-plus-docker-compose.md +++ b/docs/ja/admin-guide/migration-guide/from-crowi-plus-docker-compose.md @@ -17,7 +17,7 @@ * **After** ```docker - FROM weseek/growi:3 + FROM growilabs/growi:3 ENV APP_DIR /opt/growi ``` 2. GROWI では、lsx プラグインと pukiwiki-like-linker プラグインはオフィシャルイメージに含まれます。そのため、以下の行をコメントアウトするか、削除してください。 @@ -41,7 +41,7 @@ # ;; # ;; NOTE: In GROWI v3 and later, # ;; 2 of official plugins (growi-plugin-lsx and growi-plugin-pukiwiki-like-linker) - # ;; are now included in the 'weseek/growi' image. + # ;; are now included in the 'growilabs/growi' image. # ;; Therefore you will not need following lines except when you install third-party plugins. # ;; #RUN echo "install plugins" \ diff --git a/docs/ja/admin-guide/upgrading/34x.md b/docs/ja/admin-guide/upgrading/34x.md index 53861e6a3f..95782b759c 100644 --- a/docs/ja/admin-guide/upgrading/34x.md +++ b/docs/ja/admin-guide/upgrading/34x.md @@ -9,7 +9,7 @@ v3.4 とそれ以前では、動作対象の環境とミドルウェアのバー | Elasticsearch | 5.3 | 6.6 | -また、[growi-docker-compose](https://github.com/weseek/growi-docker-compose) 利用時に起動する Elasticsearch の Docker イメージは、従来の [docker-library/elasticsearch](https://github.com/docker-library/elasticsearch/blob/6854914f0b890840c75b6db9eeaefbc26177df9c/5/Dockerfile) から、[docker.elastic.co](https://www.docker.elastic.co/) 公式が提供するイメージに変更されました。 +また、[growi-docker-compose](https://github.com/growilabs/growi-docker-compose) 利用時に起動する Elasticsearch の Docker イメージは、従来の [docker-library/elasticsearch](https://github.com/docker-library/elasticsearch/blob/6854914f0b890840c75b6db9eeaefbc26177df9c/5/Dockerfile) から、[docker.elastic.co](https://www.docker.elastic.co/) 公式が提供するイメージに変更されました。 ## オンプレミスで利用している場合 @@ -28,7 +28,7 @@ v3.4 とそれ以前では、動作対象の環境とミドルウェアのバー - インデックスデータは GROWI の管理画面から再構築可能なので、破棄しても構いません -## [growi-docker-compose](https://github.com/weseek/growi-docker-compose) を利用している場合 +## [growi-docker-compose](https://github.com/growilabs/growi-docker-compose) を利用している場合 1. 既存コンテナの削除 diff --git a/docs/ja/admin-guide/upgrading/35x.md b/docs/ja/admin-guide/upgrading/35x.md index e9d03acbb9..5f6e44e380 100644 --- a/docs/ja/admin-guide/upgrading/35x.md +++ b/docs/ja/admin-guide/upgrading/35x.md @@ -11,11 +11,11 @@ v3.5 では、スキーマバージョンが 2 のプラグインをサポート ## プラグインについて ::: tip -[公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +[公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません ::: -公式プラグインである [weseek/growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx) と [weseek/growi-plugin-pukiwiki-like-linker](https://github.com/weseek/growi-plugin-pukiwiki-like-linker) は、スキーマバージョン 3 でリリースされた v3.0.0 へアップグレードしてください。 +公式プラグインである [growilabs/growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx) と [growilabs/growi-plugin-pukiwiki-like-linker](https://github.com/growilabs/growi-plugin-pukiwiki-like-linker) は、スキーマバージョン 3 でリリースされた v3.0.0 へアップグレードしてください。 ### プラグインアップグレード手順 diff --git a/docs/ja/admin-guide/upgrading/36x.md b/docs/ja/admin-guide/upgrading/36x.md index 245ad3ccae..ddc2356de8 100644 --- a/docs/ja/admin-guide/upgrading/36x.md +++ b/docs/ja/admin-guide/upgrading/36x.md @@ -2,19 +2,19 @@ v3.6 では、Node.js v8 はサポートされなくなりました。 -また v3.5 より下位のバージョンには、誤って2つのデータベースが作成されてしまうバグ([weseek/growi#1361](https://github.com/weseek/growi/issues/1361))が存在します。 +また v3.5 より下位のバージョンには、誤って2つのデータベースが作成されてしまうバグ([growilabs/growi#1361](https://github.com/growilabs/growi/issues/1361))が存在します。 ## Node.js v8 のサポートを終了 ::: tip -[公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +[公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません ::: ### Node.js のアップグレード 1. v10 または v12 にアップグレードしてください -## [weseek/growi#1361](https://github.com/weseek/growi/issues/1361) の回避 +## [growilabs/growi#1361](https://github.com/growilabs/growi/issues/1361) の回避 ::: warning この問題は、`MONGO_URI` が、`?key=value` 形式のパラメータを含む URL で運用していた場合に限り影響があります diff --git a/docs/ja/admin-guide/upgrading/41x.md b/docs/ja/admin-guide/upgrading/41x.md index 10b586d3de..e433e37f34 100644 --- a/docs/ja/admin-guide/upgrading/41x.md +++ b/docs/ja/admin-guide/upgrading/41x.md @@ -8,7 +8,7 @@ v4.1 では、Node.js v10 はサポートされなくなり、新たに Node.js ::: tip -- [公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +- [公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません ::: ### Node.js のアップグレード @@ -19,7 +19,7 @@ v4.1 では、Node.js v10 はサポートされなくなり、新たに Node.js ::: tip -- [公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +- [公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません - growi-plugin-attachment-refs をインストールしていない環境では影響はありません ::: diff --git a/docs/ja/admin-guide/upgrading/42x.md b/docs/ja/admin-guide/upgrading/42x.md index ed23b03d76..f18872c4fa 100644 --- a/docs/ja/admin-guide/upgrading/42x.md +++ b/docs/ja/admin-guide/upgrading/42x.md @@ -10,7 +10,7 @@ v4.2 では、ページのコンテンツ幅が狭くなるように調整し、 ::: warning この項目の内容は v4.2 以前の MongoDB を利用している場合に必要な操作です。 -[weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) を利用している場合も操作が必要です。 +[growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) を利用している場合も操作が必要です。 ::: [こちらの手順を参照](/ja/admin-guide/admin-cookbook/upgrade-mongodb.html)して、MongoDB をアップグレードしてください。 diff --git a/docs/ja/admin-guide/upgrading/43x.md b/docs/ja/admin-guide/upgrading/43x.md index ec7e688ead..bdd6140b72 100644 --- a/docs/ja/admin-guide/upgrading/43x.md +++ b/docs/ja/admin-guide/upgrading/43x.md @@ -3,7 +3,7 @@ v4.3 では、パッケージ管理に lerna を利用するようになりました。 -また、本体がいくつかのオフィシャルプラグイン([growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx), [growi-plugin-pukiwiki-like-linker](https://github.com/weseek/growi-plugin-pukiwiki-like-linker) および [growi-plugin-attachment-refs](https://github.com/weseek/growi-plugin-attachment-refs))を初期状態で含むようになりました。 +また、本体がいくつかのオフィシャルプラグイン([growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx), [growi-plugin-pukiwiki-like-linker](https://github.com/growilabs/growi-plugin-pukiwiki-like-linker) および [growi-plugin-attachment-refs](https://github.com/growilabs/growi-plugin-attachment-refs))を初期状態で含むようになりました。 それに伴って、利用者側で上記プラグインを追加してビルドする必要がなくなりました。 diff --git a/docs/ja/admin-guide/upgrading/50x.md b/docs/ja/admin-guide/upgrading/50x.md index 21938c5a49..43e86ed831 100644 --- a/docs/ja/admin-guide/upgrading/50x.md +++ b/docs/ja/admin-guide/upgrading/50x.md @@ -23,7 +23,7 @@ v5.0 にアップグレードしたシステムを v4.5 系以下にダウング 詳しくは [v5.0 系から v4.5 系以下へのダウングレード](/ja/admin-guide/downgrading/50x-to-45x.html) をご覧ください。 ::: tip -ダウングレードは、オンプレミス または [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) で運用中のシステムで可能です。 +ダウングレードは、オンプレミス または [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) で運用中のシステムで可能です。 それ以外の形態で運用中のシステムに関してはダウングレードはサポートしておりません。ご了承ください。 ::: @@ -76,10 +76,10 @@ Elastic 6 系と 7 系は公式にはインデックスに互換性があると - GROWI 用のインデックスデータが存在しない(あるいは存在するとしても Elasticsearch 6 系のデータを引き継いでいない)ことを確認 1. GROWI v5.0.x 起動 -### [weseek/growi-docker-compose](https://github.com/weseek/growi-docker-compose) を利用している場合 +### [growilabs/growi-docker-compose](https://github.com/growilabs/growi-docker-compose) を利用している場合 [docker を利用している場合](#docker-を利用している場合) に沿った手順を -[Wiki: Upgrade Elasticsearch from 6.x to 7.x](https://github.com/weseek/growi-docker-compose/wiki/Upgrade-Elasticsearch-from-6.x-to-7.x) に用意しました。ご覧ください。 +[Wiki: Upgrade Elasticsearch from 6.x to 7.x](https://github.com/growilabs/growi-docker-compose/wiki/Upgrade-Elasticsearch-from-6.x-to-7.x) に用意しました。ご覧ください。 ## 新しい v5 互換形式について diff --git a/docs/ja/admin-guide/upgrading/60x.md b/docs/ja/admin-guide/upgrading/60x.md index 833d8a86b0..0cb457acc1 100644 --- a/docs/ja/admin-guide/upgrading/60x.md +++ b/docs/ja/admin-guide/upgrading/60x.md @@ -143,7 +143,7 @@ Twitter を使った認証機構は廃止されました。 ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるためのディスカッションを確認してください。 - + ::: @@ -189,7 +189,7 @@ class RemarkPlugin { ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるためのディスカッションを確認してください。 - + ::: @@ -219,7 +219,7 @@ Content Cell Content Cell ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるためのディスカッションを確認してください。 - + ::: @@ -272,7 +272,7 @@ v5.x 以前に存在していた以下の独自記法は廃止されました。 ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるためのディスカッションを確認してください。 - + ::: diff --git a/docs/ja/admin-guide/upgrading/61x.md b/docs/ja/admin-guide/upgrading/61x.md index 18701cdd3a..ed2a995a7d 100644 --- a/docs/ja/admin-guide/upgrading/61x.md +++ b/docs/ja/admin-guide/upgrading/61x.md @@ -28,7 +28,7 @@ GROWI v6.1 では、新機能として [Mermaid](https://mermaid.js.org/) によ ::: tip -- [公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +- [公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません ::: - v16 または v18 にアップグレードしてください @@ -56,7 +56,7 @@ GROWI v6.1.0 では Elasticsearch v6 向けのコードを削除し、新たに 1. `yarn global add turbo` -詳しくは [README.md](https://github.com/weseek/growi/blob/master/README_JP.md) および [開発スタートアップ](../../dev/startup-v5/start-development.html) をご覧ください。 +詳しくは [README.md](https://github.com/growilabs/growi/blob/master/README_JP.md) および [開発スタートアップ](../../dev/startup-v5/start-development.html) をご覧ください。 ### [仕様変更] `FILE_UPLOAD=local` 設定下でのファイル保存場所の変更 @@ -76,7 +76,7 @@ AWS S3 や GCP GCS、MongoDB GridFS に保存しているシステムでは必 アップグレード後に既存のファイルを移動させてください。 また以下のディスカッションも参照してください。 - + @@ -102,7 +102,7 @@ GROWI 外の文書やシステムから参照している場合はアクセス ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるスクリプトを提供していますので、以下のディスカッションを確認してください。 - + ::: diff --git a/docs/ja/admin-guide/upgrading/70x.md b/docs/ja/admin-guide/upgrading/70x.md index 1b0c47c52f..039c748676 100644 --- a/docs/ja/admin-guide/upgrading/70x.md +++ b/docs/ja/admin-guide/upgrading/70x.md @@ -57,7 +57,7 @@ Markdown 文書中に Bootstrap の記法を利用して記述されている HT ::: tip -- [公式の Docker イメージ](https://hub.docker.com/r/weseek/growi/)を利用しているシステムには影響はありません +- [公式の Docker イメージ](https://hub.docker.com/r/growilabs/growi/)を利用しているシステムには影響はありません ::: - v18 または v20 にアップグレードしてください @@ -77,7 +77,7 @@ Bootstrap 公式の [v5で変更された内容](https://getbootstrap.jp/docs/5. ::: tip 以前の記法を使って保存されたページの内容は、GROWI 本体をアップグレードしても自動では変更されません。 マークダウン文書を一括で新しい記法に書き換えるためのスクリプトを利用するには、次のディスカッションを参照してください。 - + ::: diff --git a/docs/ja/cloud/announcement-notification.md b/docs/ja/cloud/announcement-notification.md index cc99d1939e..f0559657ac 100644 --- a/docs/ja/cloud/announcement-notification.md +++ b/docs/ja/cloud/announcement-notification.md @@ -15,4 +15,4 @@ GROWI.cloud では [お知らせ/ニュースページ](https://growi.cloud/v2/n ## GROWI アプリに関しての最新情報 -GROWI アプリに関しての最新情報は [GitHub リポジトリ](https://github.com/weseek/growi/) をご確認いただくか、GitHub Releases の [RSS フィード](https://github.com/weseek/growi/releases.atom) を購読していただくことで、最新情報をキャッチアップしていただくことが可能です。 +GROWI アプリに関しての最新情報は [GitHub リポジトリ](https://github.com/growilabs/growi/) をご確認いただくか、GitHub Releases の [RSS フィード](https://github.com/growilabs/growi/releases.atom) を購読していただくことで、最新情報をキャッチアップしていただくことが可能です。 diff --git a/docs/ja/cloud/data-migration.md b/docs/ja/cloud/data-migration.md index 608613c567..1bccc434a6 100644 --- a/docs/ja/cloud/data-migration.md +++ b/docs/ja/cloud/data-migration.md @@ -10,7 +10,7 @@ #### 概要 -- GROWI の バージョン [v3.6.2](https://github.com/weseek/growi/releases) 時点で、GROWI のエクスポート機能、インポート機能が実装されています。 +- GROWI の バージョン [v3.6.2](https://github.com/growilabs/growi/releases) 時点で、GROWI のエクスポート機能、インポート機能が実装されています。 - それぞれ手順についてはGROWI Docs をご参照ください。 - [データアーカイブ](https://docs.growi.org/ja/admin-guide/management-cookbook/export.html) - [アーカイブデータインポート](https://docs.growi.org/ja/admin-guide/management-cookbook/import.html#growi-アーカイブデータインポート) diff --git a/docs/ja/cloud/dataimport-error.md b/docs/ja/cloud/dataimport-error.md index b12742dd4f..171c9e7a29 100644 --- a/docs/ja/cloud/dataimport-error.md +++ b/docs/ja/cloud/dataimport-error.md @@ -6,7 +6,7 @@ - 移行の際は、移行元 GROWI と 移行先 GROWI (GROWI.cloud で用意した GROWI) のバージョンをそろえる必要があります。 - バージョン変更に関しては [/サービス/GROWIアプリ/バージョン] をご参照ください。 - - v4.1.3 のリリースノートは → [こちら](https://github.com/weseek/growi/releases/tag/v4.1.3) + - v4.1.3 のリリースノートは → [こちら](https://github.com/growilabs/growi/releases/tag/v4.1.3) ### 上記手順で正常に移行が完了できていない場合 diff --git a/docs/ja/cloud/request.md b/docs/ja/cloud/request.md index c1a700c93e..e700d06664 100644 --- a/docs/ja/cloud/request.md +++ b/docs/ja/cloud/request.md @@ -14,5 +14,5 @@ - または Slack にご参加いただいてご質問ください - 機能要望、不具合について、 - Slack にご参加いただいてご質問いただくか - - GitHub に [Issue の登録](https://github.com/weseek/growi/issues) をお願いいたします。 + - GitHub に [Issue の登録](https://github.com/growilabs/growi/issues) をお願いいたします。 - Slack の GROWI ワークスペースへのご参加は[こちら](https://communityinviter.com/apps/wsgrowi/invite)から diff --git a/docs/ja/cloud/trouble.md b/docs/ja/cloud/trouble.md index 70c9677e02..43cbb7f5c0 100644 --- a/docs/ja/cloud/trouble.md +++ b/docs/ja/cloud/trouble.md @@ -19,7 +19,7 @@ GROWI は OSS として多くのユーザーからの指摘や改善要望をお ### GitHub_Issueはこちら -[GitHub Issue](https://github.com/weseek/growi/issues) +[GitHub Issue](https://github.com/growilabs/growi/issues) ### Slack へのお問い合わせはこちら diff --git a/docs/ja/cloud/version.md b/docs/ja/cloud/version.md index 45a0c7dec1..82f8957cd4 100644 --- a/docs/ja/cloud/version.md +++ b/docs/ja/cloud/version.md @@ -7,7 +7,7 @@ - GROWI アプリのバージョンを、GROWI.cloud 上で選択、更新することが出来ます。 - バージョンを更新した場合、自動的に GROWI アプリの再起動が行われ、設定が反映されます。 - - GROWI のリリースされているバージョンに関しては [こちら](https://github.com/weseek/growi/releases) をご参照ください。 + - GROWI のリリースされているバージョンに関しては [こちら](https://github.com/growilabs/growi/releases) をご参照ください。 ### GROWIアプリのバージョン更新方法 diff --git a/docs/ja/dev/startup-v2/launch-devcontainer.md b/docs/ja/dev/startup-v2/launch-devcontainer.md index b8ad31ca94..4fa99d5ff7 100644 --- a/docs/ja/dev/startup-v2/launch-devcontainer.md +++ b/docs/ja/dev/startup-v2/launch-devcontainer.md @@ -11,7 +11,7 @@ 1. リモート接続用インジケーターから、devcontainer でリポジトリを開く * indicator * Remote-Containers: Open folder in Container... - * weseek/growi ローカルリポジトリを選択 + * growilabs/growi ローカルリポジトリを選択 * Windows の場合は WSL のパス: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` 1. 初回は各種コンテナイメージのダウンロードとビルドのため、5~10分待つ 1. エラーなく起動したら、サイドバーの Docker メニューで5つのコンテナの起動を確認する @@ -37,7 +37,7 @@ GROWI-Dev devcontainer ウィンドウ内で作業します。 file:.git/config core.filemode=true file:.git/config core.bare=false file:.git/config core.logallrefupdates=true - file:.git/config remote.origin.url=https://github.com/weseek/growi.git + file:.git/config remote.origin.url=https://github.com/growilabs/growi.git file:.git/config remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* file:.git/config branch.master.remote=origin file:.git/config branch.master.merge=refs/heads/master diff --git a/docs/ja/dev/startup-v2/prepare-workspace.md b/docs/ja/dev/startup-v2/prepare-workspace.md index caae3b5938..b3f596f616 100644 --- a/docs/ja/dev/startup-v2/prepare-workspace.md +++ b/docs/ja/dev/startup-v2/prepare-workspace.md @@ -9,8 +9,8 @@ devcontainer で開発するには、以下のような構造のディレクト ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` ## 手順 @@ -25,8 +25,8 @@ devcontainer で開発するには、以下のような構造のディレクト ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git # プラグイン開発時に利用する空のディレクトリを作成 mkdir node_modules ``` diff --git a/docs/ja/dev/startup-v3/dev-env.md b/docs/ja/dev/startup-v3/dev-env.md index a43aa56076..8ff39a58ec 100644 --- a/docs/ja/dev/startup-v3/dev-env.md +++ b/docs/ja/dev/startup-v3/dev-env.md @@ -193,8 +193,8 @@ devcontainer で開発するには、以下のような構造のディレクト ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * 以下の手順を、Windows の場合は WSL 内、Mac の場合はホストPCで作業します @@ -207,6 +207,6 @@ devcontainer で開発するには、以下のような構造のディレクト ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/ja/dev/startup-v3/launch-devcontainer.md b/docs/ja/dev/startup-v3/launch-devcontainer.md index 255024053a..ca6e58be7f 100644 --- a/docs/ja/dev/startup-v3/launch-devcontainer.md +++ b/docs/ja/dev/startup-v3/launch-devcontainer.md @@ -11,7 +11,7 @@ 1. リモート接続用インジケーターから、devcontainer でリポジトリを開く * indicator * Remote-Containers: Open folder in Container... - * weseek/growi ローカルリポジトリを選択 + * growilabs/growi ローカルリポジトリを選択 * Windows の場合は WSL のパス: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * `{your account}` は自身のアカウント名に置き換えてください 1. 初回は各種コンテナイメージのダウンロードとビルドのため、5~10分待つ diff --git a/docs/ja/dev/startup-v4/dev-env.md b/docs/ja/dev/startup-v4/dev-env.md index c592b0cfe7..2648ed1ba3 100644 --- a/docs/ja/dev/startup-v4/dev-env.md +++ b/docs/ja/dev/startup-v4/dev-env.md @@ -140,8 +140,8 @@ devcontainer で開発するには、以下のような構造のディレクト ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * 以下の手順を、Windows の場合は WSL 内、Mac の場合はホストPCで作業します @@ -154,6 +154,6 @@ devcontainer で開発するには、以下のような構造のディレクト ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/ja/dev/startup-v4/launch-devcontainer.md b/docs/ja/dev/startup-v4/launch-devcontainer.md index 255024053a..ca6e58be7f 100644 --- a/docs/ja/dev/startup-v4/launch-devcontainer.md +++ b/docs/ja/dev/startup-v4/launch-devcontainer.md @@ -11,7 +11,7 @@ 1. リモート接続用インジケーターから、devcontainer でリポジトリを開く * indicator * Remote-Containers: Open folder in Container... - * weseek/growi ローカルリポジトリを選択 + * growilabs/growi ローカルリポジトリを選択 * Windows の場合は WSL のパス: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * `{your account}` は自身のアカウント名に置き換えてください 1. 初回は各種コンテナイメージのダウンロードとビルドのため、5~10分待つ diff --git a/docs/ja/dev/startup-v5/dev-env.md b/docs/ja/dev/startup-v5/dev-env.md index a1e2fd706a..5a86d3a646 100644 --- a/docs/ja/dev/startup-v5/dev-env.md +++ b/docs/ja/dev/startup-v5/dev-env.md @@ -146,8 +146,8 @@ devcontainer で開発するには、以下のような構造のディレクト ``` - GROWI - - growi <-- weseek/growi repository - - growi-docker-compose <-- weseek/growi-docker-compose repository + - growi <-- growilabs/growi repository + - growi-docker-compose <-- growilabs/growi-docker-compose repository ``` * 以下の手順を、Windows の場合は WSL 内、Mac の場合はホストPCで作業します @@ -160,6 +160,6 @@ devcontainer で開発するには、以下のような構造のディレクト ```bash mkdir -p ~/Projects/GROWI cd ~/Projects/GROWI -git clone https://github.com/weseek/growi.git -git clone https://github.com/weseek/growi-docker-compose.git +git clone https://github.com/growilabs/growi.git +git clone https://github.com/growilabs/growi-docker-compose.git ``` diff --git a/docs/ja/dev/startup-v5/launch-devcontainer.md b/docs/ja/dev/startup-v5/launch-devcontainer.md index b2201f5cd8..41c4d3cc73 100644 --- a/docs/ja/dev/startup-v5/launch-devcontainer.md +++ b/docs/ja/dev/startup-v5/launch-devcontainer.md @@ -11,7 +11,7 @@ 1. コマンドパレットから、devcontainer でリポジトリを開く * コマンドパレットを開く: `Ctrl + Shift + P` or `` * `Dev Containers: Open folder in Container...` - * weseek/growi ローカルリポジトリを選択 + * growilabs/growi ローカルリポジトリを選択 * Windows の場合は WSL のパス: `\\wsl$\Ubuntu\home\{your account}\Projects\GROWI\growi` * `{your account}` は自身のアカウント名に置き換えてください 1. 初回は各種コンテナイメージのダウンロードとビルドのため、5~10分待つ diff --git a/docs/ja/guide/features/template.md b/docs/ja/guide/features/template.md index 8bb7287be8..2e4e2edae5 100644 --- a/docs/ja/guide/features/template.md +++ b/docs/ja/guide/features/template.md @@ -54,7 +54,7 @@ GROWI ではテンプレートを利用したページを作ることができ 例として、下記のようなテンプレートをトップページに配置することで、常にページ一覧がページ上部に表示されるページを作成できます。 -`$lsx()` という記法は [weseek/growi-plugin-lsx](https://github.com/weseek/growi-plugin-lsx) によるものです。 +`$lsx()` という記法は [growilabs/growi-plugin-lsx](https://github.com/growilabs/growi-plugin-lsx) によるものです。 ```markdown # 関連ページ diff --git a/package.json b/package.json index f8ee45a98c..d553df03cb 100644 --- a/package.json +++ b/package.json @@ -11,13 +11,13 @@ ], "author": "Yuki Takei ", "license": "MIT", - "homepage": "https://github.com/weseek/growi-docs#readme", + "homepage": "https://github.com/growilabs/growi-docs#readme", "repository": { "type": "git", - "url": "git+https://github.com/weseek/growi-docs.git" + "url": "git+https://github.com/growilabs/growi-docs.git" }, "bugs": { - "url": "https://github.com/weseek/growi-docs/issues" + "url": "https://github.com/growilabs/growi-docs/issues" }, "watch": { "apiv3:dev": { From b6fbd7feebee2e983211ea47c6b3fa3660a1c786 Mon Sep 17 00:00:00 2001 From: Shun Miyazawa Date: Thu, 27 Jun 2024 02:01:03 +0000 Subject: [PATCH 2/2] Change of company name --- docs/en/README.md | 4 ++-- docs/ja/README.md | 4 ++-- docs/ja/cloud/invoice_system.md | 6 +++--- docs/ja/cloud/trouble.md | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/en/README.md b/docs/en/README.md index 5ae7c6e32b..212a0adbef 100644 --- a/docs/en/README.md +++ b/docs/en/README.md @@ -3,7 +3,7 @@ home: true heroImage: https://user-images.githubusercontent.com/1638767/68901318-100dd280-0779-11ea-83ab-51f111972ab1.png actionText: Get Started actionLink: /guide/ -footer: © 2018 WESEEK, Inc. +footer: © 2024 GROWI, Inc. --- @@ -28,6 +28,6 @@ footer: © 2018 WESEEK, Inc.

Ever-Growing

-

WESEEK, Inc., together with our community of contributors, is committed to creating the most powerful and desirable communication tool. Please join our Slack with any questions or suggestions!

+

GROWI, Inc., together with our community of contributors, is committed to creating the most powerful and desirable communication tool. Please join our Slack with any questions or suggestions!

diff --git a/docs/ja/README.md b/docs/ja/README.md index fad967b647..066ef5e24a 100644 --- a/docs/ja/README.md +++ b/docs/ja/README.md @@ -3,7 +3,7 @@ home: true heroImage: https://user-images.githubusercontent.com/1638767/68901318-100dd280-0779-11ea-83ab-51f111972ab1.png actionText: ガイドを見る actionLink: /ja/guide/ -footer: © 2018 WESEEK, Inc. +footer: © 2024 GROWI, Inc. --- @@ -28,6 +28,6 @@ footer: © 2018 WESEEK, Inc.

育ち続けるプロジェクト

-

WESEEK, Inc. のエンジニアを中心とした活発なコミュニティが、システムを常に成長させ、ユーザーのみなさまと一緒により良いコミュニケーションツールの在り方を模索します。質問や提案があれば私たちの Slack にご参加ください。

+

GROWI, Inc. のエンジニアを中心とした活発なコミュニティが、システムを常に成長させ、ユーザーのみなさまと一緒により良いコミュニケーションツールの在り方を模索します。質問や提案があれば私たちの Slack にご参加ください。

diff --git a/docs/ja/cloud/invoice_system.md b/docs/ja/cloud/invoice_system.md index 874610747a..f19d38f2a1 100644 --- a/docs/ja/cloud/invoice_system.md +++ b/docs/ja/cloud/invoice_system.md @@ -4,11 +4,11 @@ ### 登録番号について -株式会社WESEEKの適格請求書発行事業者登録番号は以下の通りです。 +株式会社GROWIの適格請求書発行事業者登録番号は以下の通りです。 -T3011101046911 +T9011101097073 -弊社の適格請求書発行事業者公表サイトはこちらをご覧ください。 +弊社の適格請求書発行事業者公表サイトはこちらをご覧ください。 ### 請求書への登録番号の記載について diff --git a/docs/ja/cloud/trouble.md b/docs/ja/cloud/trouble.md index 43cbb7f5c0..ad4bb42180 100644 --- a/docs/ja/cloud/trouble.md +++ b/docs/ja/cloud/trouble.md @@ -2,7 +2,7 @@ ## GROWI アプリの不具合について -オープンソースソフトウェアである [GROWI](https://growi.org) と、その GROWI を起動できるサービスである GROWI.cloud は、共に [WESEEK,Inc](https://weseek.co.jp) が開発・運用をしていますが、それぞれ別のプロジェクトチームで構成されています。 +オープンソースソフトウェアである [GROWI](https://growi.org) と、その GROWI を起動できるサービスである GROWI.cloud は、共に [GROWI,Inc.](https://growi.co.jp) が開発・運用をしていますが、それぞれ別のプロジェクトチームで構成されています。 そのため、GROWI.cloud で構築した GROWI をご利用いただいている際に気付いた本体の疑問点や不具合については、GROWI.cloud のサービスデスクへ問い合わせるよりも直接 GROWI 本体の開発チームやユーザーコミュニ