Replaces Minio refs with MinIO and minio.io links with min.io #762
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Official company name
Minio
becameMinIO
.This change requires all references in the code and documentation to be modified as
MinIO
and the links,....://xxx.minio.io
, to be....://xxx.min.io
.Description of the change
Here are the changes done .
Used Visual Studio Code Editor regular expressions to find and replace those patterns that match the desired text in all minio-js repo files. Here are the two regular expressions used to complete the job in 2 steps:
files to include
to*.md
, chooseMatch Case
andUse Regular Expression
and replace the links using the following regular expressions:The above regular expression, as can be seen, replaces the links that start with either
slack
ordocs
or ``playor
dl` or `blog` or nothing before `minio.io`.The above regular expression replaces the string "Minio" with "MinIO" except the following forms:
Minio =
, as in a variable setting likevar Minio = ....
in the codeMinio.
as inMinio.Client
in the codeMinio from
as inimport * as Minio from ...
in the codePlease pay specific attention to the following changes:
gulpfile.js
line# 29
package.json
line#s 19, 21
src/main/minio.js
line#s 108, 111, 226
src/main/test/unit/test.js
line#s 280, 290, 300