diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9962fb9ad..207e0ea83 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -13,7 +13,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/craftercms/craftercms/issues) to see if an issue exists for the same problem. + description: Please [search the history](https://github.com/craftersoftware/craftercms/issues) to see if an issue exists for the same problem. options: - label: I have searched the existing issues required: true diff --git a/.github/ISSUE_TEMPLATE/enhancement_request.yml b/.github/ISSUE_TEMPLATE/enhancement_request.yml index a72498ce7..35c326c06 100644 --- a/.github/ISSUE_TEMPLATE/enhancement_request.yml +++ b/.github/ISSUE_TEMPLATE/enhancement_request.yml @@ -27,7 +27,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/craftercms/craftercms/issues) to see if an issue already exists for the same enhancement request. + description: Please [search the history](https://github.com/craftersoftware/craftercms/issues) to see if an issue already exists for the same enhancement request. options: - label: I have searched the existing issues required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index e01821929..899997f7b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -13,7 +13,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/craftercms/craftercms/issues) to see if an issue already exists for the same feature request. + description: Please [search the history](https://github.com/craftersoftware/craftercms/issues) to see if an issue already exists for the same feature request. options: - label: I have searched the existing issues required: true diff --git a/.github/ISSUE_TEMPLATE/quality_request.yml b/.github/ISSUE_TEMPLATE/quality_request.yml index 31e2479a0..6b3a00cb8 100644 --- a/.github/ISSUE_TEMPLATE/quality_request.yml +++ b/.github/ISSUE_TEMPLATE/quality_request.yml @@ -20,7 +20,7 @@ body: - type: checkboxes attributes: label: Duplicates - description: Please [search the history](https://github.com/craftercms/craftercms/issues) to see if an issue already exists for the same enhancement request. + description: Please [search the history](https://github.com/craftersoftware/craftercms/issues) to see if an issue already exists for the same enhancement request. options: - label: I have searched the existing issues required: true diff --git a/README.md b/README.md index 538d0ee9f..144c95730 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Download a pre-built binary archive here: https://craftercms.com/download. Read the docs here: https://craftercms.com/docs/ -This repository is for developers interested in contributing to CrafterCMS, customizing their own release, or building the latest. This parent project helps you build the following: +This repository is for developers interested in contributing to CrafterCMS, customizing their own release, or building the latest. It contains all CrafterCMS modules and helps you build the following: 1. Deployable CrafterCMS binaries 2. Docker images @@ -33,10 +33,10 @@ https://craftercms.com/docs/current/by-role/system-admin/installation.html#requi Let's begin :) -If you're building deployable CrafterCMS binaries, we'll clone the tag where the tag is the release you want to build. For example, if we want to build CrafterCMS version 4.4.4, we'll check the [CrafterCMS tags list](https://github.com/craftercms/craftercms/tags) to get the tag for the version we want, which is `v4.4.4` for our example: +If you're building deployable CrafterCMS binaries, we'll clone the tag where the tag is the release you want to build. For example, if we want to build CrafterCMS version 4.4.4, we'll check the [CrafterCMS tags list](https://github.com/craftersoftware/craftercms/tags) to get the tag for the version we want, which is `v4.4.4` for our example: ```bash -git clone --branch v4.4.4 https://github.com/craftercms/craftercms.git +git clone --branch v4.4.4 https://github.com/craftersoftware/craftercms.git ``` OR @@ -44,10 +44,10 @@ OR If you would like to contribute to CrafterCMS, to build a developer's environment, we'll need to clone the develop branch (default): ```bash -git clone https://github.com/craftercms/craftercms.git +git clone https://github.com/craftersoftware/craftercms.git ``` -For more information on CrafterCMS Git Workflow, please review [CrafterCMS Git Workflow](https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md). +For more information on CrafterCMS Git Workflow, please review [CrafterCMS Git Workflow](https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md). # 2. Summary of Commands and Options @@ -58,7 +58,7 @@ For more information on CrafterCMS Git Workflow, please review [CrafterCMS Git W * `clean` Clean modules * `build` Build modules * `deploy` Deploy modules -* `upgrade` Upgrade modules (same as `selfUpdate`, `clean`, `build`, `deploy`) +* `upgrade` Upgrade modules (same as `selfUpdate`, `clean`, `build`, `deploy`) * `start` Start CrafterCMS * `stop` Stop CrafterCMS * `status` Report status on running environments if any @@ -94,7 +94,7 @@ For more information on CrafterCMS Git Workflow, please review [CrafterCMS Git W * `pushDockerImages`: Push the Docker images to DockerHub (if you have the right permissions), default `false` * `tagDockerImages`: Tag the Docker images with the tag provided (if you have the right permissions), default is not to tag * `rootlessDockerImages`: Docker images without using root at runtime, default `false` -* `dockerTag`: Tag used to build a Docker image, typically the version number, e.g. `4.2.0` +* `dockerTag`: Tag used to build a Docker image, typically the version number, e.g. `5.0.0` * `dockerAuthoringBundle`: Use to point to an external authoring bundle from which to build the Docker images. This can be a remote URL, a local `.tar.gz` file path, or an expanded bundle path. * `dockerDeliveryBundle`: Use to point to an external delivery bundle from which to build the Docker images. This can be a remote URL, a local `.tar.gz` file path, or an expanded bundle path. @@ -133,7 +133,7 @@ To download, build and generate a binary archive from a given tag or branch of t 1. Clone the branch/tag of craftercms that you want to work with ```bash - git clone -b https://github.com/craftercms/craftercms/ + git clone -b https://github.com/craftersoftware/craftercms.git ``` 2. Download, build and bundle the tag/branch that you want to work with @@ -211,25 +211,25 @@ To build, start and stop one of the two environments is similar to building/star The mechanics for working with a single module are similar to working with _all_, with one exception: You can deploy a module to one or both environments (`authoring`/`delivery`). -CrafterCMS comprises the following modules: +CrafterCMS comprises the following modules (among others): -* [`engine`](https://craftercms.com/docs/current/reference/modules/engine/index.html) -* [`studio`](https://craftercms.com/docs/current/reference/modules/studio/index.html) -* [`profile`](https://craftercms.com/docs/current/reference/modules/profile/index.html) -* [`social`](https://craftercms.com/docs/current/reference/modules/social/index.html) -* [`deployer`](https://craftercms.com/docs/current/reference/modules/deployer/index.html) +* [`engine`](https://craftercms.com/docs/current/reference/modules/engine.html) +* [`studio`](https://craftercms.com/docs/current/reference/modules/studio.html) +* [`profile`](https://craftercms.com/docs/current/reference/modules/profile.html) +* [`social`](https://craftercms.com/docs/current/reference/modules/social.html) +* [`deployer`](https://craftercms.com/docs/current/reference/modules/deployer.html) You'll find these projects under the root project directory and ready for you to contribute to in the folder `{Project Root}/{module}`. -### 4.3.1. Forking a Module +### 4.3.1. Forking the Repository -Start by forking the module you want to work on. You can follow the [GitHub instructions](https://help.github.com/articles/fork-a-repo/). -The next step is to switch the origin url location to be the one just forked, to do so you can use [these GitHub instructions](https://help.github.com/articles/changing-a-remote-s-url/). -The last step will be to add an upstream repository from the main `craftercms` repo to your own. Follow [these steps](https://help.github.com/articles/fork-a-repo/#step-3-configure-git-to-sync-your-fork-with-the-original-spoon-knife-repository) +Start by forking this repository. You can follow the [GitHub instructions](https://help.github.com/articles/fork-a-repo/). +The next step is to switch the origin URL to your fork; see [these GitHub instructions](https://help.github.com/articles/changing-a-remote-s-url/). +Then add an upstream remote pointing at the main [craftersoftware/craftercms](https://github.com/craftersoftware/craftercms) repo. Follow [these steps](https://help.github.com/articles/fork-a-repo/#step-3-configure-git-to-sync-your-fork-with-the-original-spoon-knife-repository) to make it happen. You can now work in your local system, and build/deploy and ultimately push to your fork. We welcome code contributions, so please do send us pull-requests. -To update your project with the latest: +To update your local clone with the latest: ```bash ./gradlew selfUpdate @@ -362,7 +362,7 @@ To build the authoring and delivery environments, run the following: The Gradle task above will: 1. Download the dependencies -2. Build all CrafterCMS modules from the source (check the [section](#git) on how to update the source) +2. Build all CrafterCMS modules from the source - ``crafter-authoring`` - ``crafter-delivery`` diff --git a/cli/README.md b/cli/README.md index 370d08975..878542f5f 100644 --- a/cli/README.md +++ b/cli/README.md @@ -55,16 +55,16 @@ For a detailed list of commands & arguments run `crafter-cli help` ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/commons/README.md b/commons/README.md index 89826d4a0..bac1e185d 100644 --- a/commons/README.md +++ b/commons/README.md @@ -7,16 +7,16 @@ Crafter Commons. Learn more about CrafterCMS at https://craftercms.com/docs. ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/core/README.md b/core/README.md index 5f8e47c76..914544a32 100644 --- a/core/README.md +++ b/core/README.md @@ -7,16 +7,16 @@ Crafter Core content rendering library for CrafterCMS. For more information, ple ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/deployer/README.md b/deployer/README.md index 94d334cf1..e2f399d2e 100644 --- a/deployer/README.md +++ b/deployer/README.md @@ -7,16 +7,16 @@ Crafter Deployer is the deployment agent for CrafterCMS. Read the docs for more ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file diff --git a/engine/README.md b/engine/README.md index b6545d54e..e8325a025 100644 --- a/engine/README.md +++ b/engine/README.md @@ -7,16 +7,16 @@ Crafter Engine is the content rendering engine for CrafterCMS. For more informat ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file diff --git a/groovy-sandbox/README.md b/groovy-sandbox/README.md index 390976395..81b6009ab 100644 --- a/groovy-sandbox/README.md +++ b/groovy-sandbox/README.md @@ -1,11 +1,10 @@ -groovy-sandbox -============== +# groovy-sandbox Compile-time transformer to run Groovy code in a restrictive sandbox. Executes untrusted Groovy script safely. [Documentation](http://groovy-sandbox.kohsuke.org/). -#### Maven dependency +## Maven dependency ```xml @@ -25,7 +24,7 @@ Starting with version 1.20, this artifact is only published to the Jenkins Relea ``` -#### Usage +## Usage A good example can be found [here](https://github.com/jenkinsci/groovy-sandbox/tree/master/src/test/groovy/org/kohsuke/groovy/sandbox/robot). This is a simple test that always expects a `SecurityException`: @@ -45,20 +44,20 @@ class Test { } ``` -# Community +## Community -## Contributors +### Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md -## Code of Conduct +### Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md -## Contributing +### Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md -## Git Workflow +### Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/js-sdk/CHANGELOG.md b/js-sdk/CHANGELOG.md index 8e102c338..64d9d1b4d 100644 --- a/js-sdk/CHANGELOG.md +++ b/js-sdk/CHANGELOG.md @@ -123,7 +123,7 @@ ### @craftercms/content - Add ability to specify `flatten` for the `content_store/descriptor` endpoint (via the config argument of the function). -- Make `parseDescriptor` be able to handle the deserialization products of the [recent `crafter-source` & `crafter-source-content-type-id` attribute additions](https://github.com/craftercms/craftercms/issues/4093). +- Make `parseDescriptor` be able to handle the deserialization products of the [recent `crafter-source` & `crafter-source-content-type-id` attribute additions](https://github.com/craftersoftware/craftercms/issues/4093). ### @craftercms/ice - [bugfix] Handle calls to `repaintPencils` before the dependency loader has been configured to avoid incorrect paths to load scripts/css from. diff --git a/js-sdk/README.md b/js-sdk/README.md index a710aaeed..e3cd77d31 100644 --- a/js-sdk/README.md +++ b/js-sdk/README.md @@ -30,13 +30,13 @@ Run `yarn test` on each of the packages to execute all tests. # Community ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/js-sdk/package.json b/js-sdk/package.json index 7f12e4fef..c9d83e1b9 100644 --- a/js-sdk/package.json +++ b/js-sdk/package.json @@ -14,7 +14,8 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/craftercms/craftercms-sdk-js.git" + "url": "git+https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk" }, "keywords": [ "content", @@ -25,9 +26,9 @@ "author": "CrafterCMS", "license": "LGPL-3.0", "bugs": { - "url": "https://github.com/craftercms/craftercms/issues" + "url": "https://github.com/craftersoftware/craftercms/issues" }, - "homepage": "https://github.com/craftercms/craftercms-sdk-js#readme", + "homepage": "https://github.com/craftersoftware/craftercms/tree/develop/js-sdk#readme", "devDependencies": { "prettier": "^3.0.3", "react": "^18.2.0", diff --git a/js-sdk/packages/classes/package.json b/js-sdk/packages/classes/package.json index 1580d697d..347e1e43c 100644 --- a/js-sdk/packages/classes/package.json +++ b/js-sdk/packages/classes/package.json @@ -8,7 +8,8 @@ "typings": "./classes.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/classes" }, "keywords": [ "content management", diff --git a/js-sdk/packages/content/README.md b/js-sdk/packages/content/README.md index 2bcd2cfa8..2dbe1663f 100644 --- a/js-sdk/packages/content/README.md +++ b/js-sdk/packages/content/README.md @@ -118,7 +118,7 @@ Parse a [Descriptor](../models/src/descriptor.ts), [Item](../models/src/item.ts) ### preParseSearchResults Inspects and parses elasticsearch hits and pre-parses objects before they can be sent to parseDescriptor -@see https://github.com/craftercms/craftercms/issues/4057 +@see https://github.com/craftersoftware/craftercms/issues/4057 ```js import { createQuery, search } from '@craftercms/search'; diff --git a/js-sdk/packages/content/package.json b/js-sdk/packages/content/package.json index b7d8abd77..31275af39 100644 --- a/js-sdk/packages/content/package.json +++ b/js-sdk/packages/content/package.json @@ -8,7 +8,8 @@ "typings": "./content.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/content" }, "keywords": [ "content management", diff --git a/js-sdk/packages/ice/package.json b/js-sdk/packages/ice/package.json index e63ae0b03..5bc03b9ac 100644 --- a/js-sdk/packages/ice/package.json +++ b/js-sdk/packages/ice/package.json @@ -8,7 +8,8 @@ "typings": "./ice.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/ice" }, "keywords": [ "In context editing", diff --git a/js-sdk/packages/models/package.json b/js-sdk/packages/models/package.json index 4245d430e..ee6f000c3 100644 --- a/js-sdk/packages/models/package.json +++ b/js-sdk/packages/models/package.json @@ -8,7 +8,8 @@ "typings": "./models.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/models" }, "keywords": [ "content management", diff --git a/js-sdk/packages/redux/package.json b/js-sdk/packages/redux/package.json index f2ca4e9d1..07c450879 100644 --- a/js-sdk/packages/redux/package.json +++ b/js-sdk/packages/redux/package.json @@ -8,7 +8,8 @@ "typings": "./redux.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/redux" }, "keywords": [ "content management", diff --git a/js-sdk/packages/search/package.json b/js-sdk/packages/search/package.json index 8b53979b7..e5469edab 100644 --- a/js-sdk/packages/search/package.json +++ b/js-sdk/packages/search/package.json @@ -8,7 +8,8 @@ "typings": "./search.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/search" }, "keywords": [ "content management", diff --git a/js-sdk/packages/utils/package.json b/js-sdk/packages/utils/package.json index c56e3d84a..a51e71df1 100644 --- a/js-sdk/packages/utils/package.json +++ b/js-sdk/packages/utils/package.json @@ -8,7 +8,8 @@ "typings": "./utils.d.ts", "repository": { "type": "git", - "url": "https://github.com/craftercms/craftercms-sdk-js.git" + "url": "https://github.com/craftersoftware/craftercms.git", + "directory": "js-sdk/packages/utils" }, "keywords": [ "content management", diff --git a/profile/README.md b/profile/README.md index 14379776c..7e4d4cc6d 100644 --- a/profile/README.md +++ b/profile/README.md @@ -1,22 +1,22 @@ -Crafter Profile -=============== +# Crafter Profile + Crafter Profile is the user repository component of CrafterCMS. It's used for authentication and authorization (optionally), for user meta-data augmentation (if the master is some foreign user management system), and for personalization. For more information, please visit: http://craftercms.com/docs. -# Community +## Community -## Contributors +### Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md -## Code of Conduct +### Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md -## Contributing +### Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md -## Git Workflow +### Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/search/README.md b/search/README.md index 59b909df5..29b3d517d 100644 --- a/search/README.md +++ b/search/README.md @@ -1,22 +1,21 @@ -search -====== +# search Crafter Search is the search facade for CrafterCMS. Crafter Search proxies the real search engine deployed behind it. For more information, please visit: https://craftercms.com/docs. -# Community +## Community -## Contributors +### Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md -## Code of Conduct +### Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md -## Contributing +### Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md -## Git Workflow +### Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/social/README.md b/social/README.md index 518006c66..4532d855b 100644 --- a/social/README.md +++ b/social/README.md @@ -1,22 +1,21 @@ -social -====== +# social Crafter Social is the social engine for CrafterCMS. It handles User-Generated-Content (UGC) in the form of object ratings, nested comments, and similar. For more information, please visit: http://craftercms.com/docs. -# Community +## Community -## Contributors +### Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md -## Code of Conduct +### Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md -## Contributing +### Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md -## Git Workflow +### Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/studio-ui/README.md b/studio-ui/README.md index ffd881c21..a7693a7b3 100644 --- a/studio-ui/README.md +++ b/studio-ui/README.md @@ -5,13 +5,13 @@ Studio UI is the authoring interface for CrafterCMS. Learn more at http://crafte # Community ## Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md ## Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md ## Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md ## Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md diff --git a/studio-ui/ui/app/README.md b/studio-ui/ui/app/README.md index 800a938dc..185033bff 100644 --- a/studio-ui/ui/app/README.md +++ b/studio-ui/ui/app/README.md @@ -4,14 +4,14 @@ Studio UI is the authoring interface for CrafterCMS. See -- https://github.com/craftercms/craftercms -- https://craftercms.com/docs/current/reference/modules/studio/index.html#rest-api +- https://github.com/craftersoftware/craftercms +- https://craftercms.com/docs/current/reference/modules/studio.html#rest-api - https://app.swaggerhub.com/apis/craftercms/studio -- https://github.com/craftercms/studio-ui -- https://github.com/craftercms/studio +- https://github.com/craftersoftware/craftercms/tree/develop/studio-ui +- https://github.com/craftersoftware/craftercms/tree/develop/studio To inspect this package, please browse -https://github.com/craftercms/studio-ui/tree/develop/ui/app/src +https://github.com/craftersoftware/craftercms/tree/develop/studio-ui/ui/app/src This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). diff --git a/studio-ui/ui/app/scripts/README.md b/studio-ui/ui/app/scripts/README.md index 49b0e2b88..de2a13022 100644 --- a/studio-ui/ui/app/scripts/README.md +++ b/studio-ui/ui/app/scripts/README.md @@ -5,11 +5,11 @@ Studio UI is the authoring interface for CrafterCMS. This package enables building CrafterCMS extensions using all of its native UI components, utils and APIs. To inspect this package and see what's available please browse: -https://github.com/craftercms/studio-ui/tree/develop/ui/app/src +https://github.com/craftersoftware/craftercms/tree/develop/studio-ui/ui/app/src Other resources: -- https://github.com/craftercms/craftercms -- https://craftercms.com/docs/current/reference/modules/studio/index.html#rest-api +- https://github.com/craftersoftware/craftercms +- https://craftercms.com/docs/current/reference/modules/studio.html#rest-api - https://app.swaggerhub.com/apis/craftercms/studio -- https://github.com/craftercms/studio-ui -- https://github.com/craftercms/studio +- https://github.com/craftersoftware/craftercms/tree/develop/studio-ui +- https://github.com/craftersoftware/craftercms/tree/develop/studio diff --git a/studio-ui/ui/app/src/components/DashletCard/dashletCommons.tsx b/studio-ui/ui/app/src/components/DashletCard/dashletCommons.tsx index aeba3e955..a6645ac06 100644 --- a/studio-ui/ui/app/src/components/DashletCard/dashletCommons.tsx +++ b/studio-ui/ui/app/src/components/DashletCard/dashletCommons.tsx @@ -247,7 +247,7 @@ export function usePackageContextMenu() { const handleContextMenuClick = useCallback( (e: React.MouseEvent, pkg: PublishPackage) => { - // https://github.com/craftercms/craftercms/issues/8552 - Because of a limitation in the back end, the packages at + // https://github.com/craftersoftware/craftercms/issues/8552 - Because of a limitation in the back end, the packages at // this point may not have the full AA. So we need to fetch the package to generate the proper set of options. const currentTarget = e.currentTarget; subscriptionRef.current?.unsubscribe(); diff --git a/studio-ui/ui/app/src/components/ItemDisplay/ItemDisplay.tsx b/studio-ui/ui/app/src/components/ItemDisplay/ItemDisplay.tsx index 60fe13c02..73096c0e8 100644 --- a/studio-ui/ui/app/src/components/ItemDisplay/ItemDisplay.tsx +++ b/studio-ui/ui/app/src/components/ItemDisplay/ItemDisplay.tsx @@ -58,7 +58,7 @@ const ItemDisplay = forwardRef((props, ref) = // region const { ... } = props; const { item, - // @see https://github.com/craftercms/craftercms/issues/5442 + // @see https://github.com/craftersoftware/craftercms/issues/5442 // eslint-disable-next-line @typescript-eslint/no-unused-vars showPublishingTarget = true, showWorkflowState = true, @@ -100,7 +100,7 @@ const ItemDisplay = forwardRef((props, ref) = ...sxs?.root }} > - {/* @see https://github.com/craftercms/craftercms/issues/5442 */} + {/* @see https://github.com/craftersoftware/craftercms/issues/5442 */} {inWorkflow && !shouldItemShowAsStaged(item) ? showWorkflowState && ( ) : ( *': { marginRight: '5px' }, ...sxs?.itemState }}> - {/* @see https://github.com/craftercms/craftercms/issues/5442 */} + {/* @see https://github.com/craftersoftware/craftercms/issues/5442 */} {!isFolder && (inWorkflow ? ( <> diff --git a/studio-ui/ui/app/src/components/PathNavigator/PathNavigator.tsx b/studio-ui/ui/app/src/components/PathNavigator/PathNavigator.tsx index 0ac59b754..f6983a38d 100644 --- a/studio-ui/ui/app/src/components/PathNavigator/PathNavigator.tsx +++ b/studio-ui/ui/app/src/components/PathNavigator/PathNavigator.tsx @@ -120,7 +120,7 @@ export interface PathNavigatorStateProps { order: GetChildrenOptions['order']; } -// @see https://github.com/craftercms/craftercms/issues/5360 +// @see https://github.com/craftersoftware/craftercms/issues/5360 // const menuOptions: Record<'refresh', ContextMenuOptionDescriptor> = { // refresh: { // id: 'refresh', @@ -349,7 +349,7 @@ export function PathNavigator(props: PathNavigatorProps) { }; const onHeaderButtonClick = (anchorEl: Element, type: string) => { - // @see https://github.com/craftercms/craftercms/issues/5360 + // @see https://github.com/craftersoftware/craftercms/issues/5360 onSimpleMenuClick('refresh'); // setWidgetMenu({ // sections: [[toContextMenuOptionsLookup(menuOptions, formatMessage).refresh]], diff --git a/studio-ui/ui/app/src/components/PathNavigator/PathNavigatorUI.tsx b/studio-ui/ui/app/src/components/PathNavigator/PathNavigatorUI.tsx index aa4af1390..405fe7348 100644 --- a/studio-ui/ui/app/src/components/PathNavigator/PathNavigatorUI.tsx +++ b/studio-ui/ui/app/src/components/PathNavigator/PathNavigatorUI.tsx @@ -186,7 +186,7 @@ export function PathNavigatorUI(props: PathNavigatorUIProps) { icon={icon} title={title} locale={state.localeCode} - // @see https://github.com/craftercms/craftercms/issues/5360 + // @see https://github.com/craftersoftware/craftercms/issues/5360 menuButtonIcon={} onMenuButtonClick={onHeaderButtonClick ? (anchor) => onHeaderButtonClick(anchor, 'options') : null} collapsed={state.collapsed} diff --git a/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTree.tsx b/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTree.tsx index 7d001841f..64a0d80a6 100644 --- a/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTree.tsx +++ b/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTree.tsx @@ -118,7 +118,7 @@ interface Menu { loaderItems?: number; } -// @see https://github.com/craftercms/craftercms/issues/5360 +// @see https://github.com/craftersoftware/craftercms/issues/5360 // const translations = defineMessages({ // refresh: { // id: 'words.refresh', @@ -260,7 +260,7 @@ export function PathNavigatorTree(props: PathNavigatorTreeProps) { }; const onHeaderButtonClick = (element: Element) => { - // @see https://github.com/craftercms/craftercms/issues/5360 + // @see https://github.com/craftersoftware/craftercms/issues/5360 onWidgetOptionsClick('refresh'); // setWidgetMenu({ // sections: [[toContextMenuOptionsLookup(menuOptions, formatMessage).refresh]], diff --git a/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTreeUI.tsx b/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTreeUI.tsx index 4d9db9ebb..3bad5b992 100644 --- a/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTreeUI.tsx +++ b/studio-ui/ui/app/src/components/PathNavigatorTree/PathNavigatorTreeUI.tsx @@ -121,7 +121,7 @@ export function PathNavigatorTreeUI(props: PathNavigatorTreeUIProps) { icon={icon} title={title} locale={null} - // @see https://github.com/craftercms/craftercms/issues/5360 + // @see https://github.com/craftersoftware/craftercms/issues/5360 menuButtonIcon={} collapsed={isCollapsed} onMenuButtonClick={onHeaderButtonClick} diff --git a/studio-ui/ui/app/src/utils/contentType.ts b/studio-ui/ui/app/src/utils/contentType.ts index 1435a5cbf..e655ed1a7 100644 --- a/studio-ui/ui/app/src/utils/contentType.ts +++ b/studio-ui/ui/app/src/utils/contentType.ts @@ -217,7 +217,7 @@ export const filterTypesByKeywordsAndObjectType = ( }; export function getNormalizedFolderPathForApi1GetTypes(item: ContentItem): string { - // TODO: https://github.com/craftercms/craftercms/issues/4473 + // TODO: https://github.com/craftersoftware/craftercms/issues/4473 return item.systemType === 'folder' && !item.path.endsWith('/') ? `${item.path}/` : item.path; } diff --git a/studio-ui/ui/guest/src/controls/rte.ts b/studio-ui/ui/guest/src/controls/rte.ts index 118f18fa5..1bf4fdb48 100644 --- a/studio-ui/ui/guest/src/controls/rte.ts +++ b/studio-ui/ui/guest/src/controls/rte.ts @@ -67,7 +67,7 @@ export function initTinyMCE( // If record element is of type inline (doesn't matter the display prop), replace it with a block element (div). // This is because of an issue happening with inline elements (for example a span tag even with 'display: block' style // was still causing an issue, and also for example a div element with 'display: inline' doesn't present the issue). - // https://github.com/craftercms/craftercms/issues/5212 + // https://github.com/craftersoftware/craftercms/issues/5212 if (isRecordElInline) { const recordEl = record.element; const blockEl = document.createElement('div'); @@ -237,11 +237,11 @@ export function initTinyMCE( function replaceLineBreaksIfApplicable(content: string) { if (type === 'textarea') { // Replace line breaks with
for textarea fields - // Address line breaks in textarea fields: https://github.com/craftercms/craftercms/issues/6432 + // Address line breaks in textarea fields: https://github.com/craftersoftware/craftercms/issues/6432 editor.setContent(content.replaceAll('\n', '
'), { format: 'html' }); } else if (isRTE) { // Set content in 'html' format for the editor to exec its internal cleanup mechanisms - // For example, removal of potentially problematic line breaks which we're seeing cause the list plugin to crash (https://github.com/craftercms/craftercms/issues/6514) + // For example, removal of potentially problematic line breaks which we're seeing cause the list plugin to crash (https://github.com/craftersoftware/craftercms/issues/6514) editor.setContent(content, { format: 'html' }); } } diff --git a/studio-ui/ui/uppy/package.json b/studio-ui/ui/uppy/package.json index 09aa11d7f..450b216d0 100644 --- a/studio-ui/ui/uppy/package.json +++ b/studio-ui/ui/uppy/package.json @@ -15,7 +15,7 @@ ], "homepage": "https://craftercms.com", "bugs": { - "url": "https://github.com/craftercms/craftercms/issues" + "url": "https://github.com/craftersoftware/craftercms/issues" }, "repository": { "type": "git", diff --git a/studio/README.md b/studio/README.md index d91643795..e557a8362 100644 --- a/studio/README.md +++ b/studio/README.md @@ -1,22 +1,21 @@ -Crafter Studio -============== +# Crafter Studio Crafter Studio is the authoring environment for CrafterCMS. For more information, please read the [docs.](http://craftercms.com/docs) -# Community +## Community -## Contributors +### Contributors -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTORS.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTORS.md -## Code of Conduct +### Code of Conduct -https://github.com/craftercms/craftercms/blob/develop/CODE_OF_CONDUCT.md +https://github.com/craftersoftware/craftercms/blob/develop/CODE_OF_CONDUCT.md -## Contributing +### Contributing -https://github.com/craftercms/craftercms/blob/develop/CONTRIBUTING.md +https://github.com/craftersoftware/craftercms/blob/develop/CONTRIBUTING.md -## Git Workflow +### Git Workflow -https://github.com/craftercms/craftercms/blob/develop/GIT_WORKFLOW.md \ No newline at end of file +https://github.com/craftersoftware/craftercms/blob/develop/GIT_WORKFLOW.md