Skip to content

Commit

Permalink
Rename plugins org (codex-team#633)
Browse files Browse the repository at this point in the history
* Rename plugins repo

* Update submodules` remotes

* Bump version
  • Loading branch information
gohabereg authored Mar 2, 2019
1 parent 19d228d commit d9bb7ff
Show file tree
Hide file tree
Showing 22 changed files with 77 additions and 77 deletions.
28 changes: 14 additions & 14 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
[submodule "example/tools/inline-code"]
path = example/tools/inline-code
url = https://github.com/codex-editor/inline-code
url = https://github.com/editor-js/inline-code
[submodule "example/tools/header"]
path = example/tools/header
url = https://github.com/codex-editor/header
url = https://github.com/editor-js/header
[submodule "example/tools/delimiter"]
path = example/tools/delimiter
url = https://github.com/codex-editor/delimiter
url = https://github.com/editor-js/delimiter
[submodule "example/tools/list"]
path = example/tools/list
url = https://github.com/codex-editor/list
url = https://github.com/editor-js/list
[submodule "example/tools/quote"]
path = example/tools/quote
url = https://github.com/codex-editor/quote
url = https://github.com/editor-js/quote
[submodule "example/tools/simple-image"]
path = example/tools/simple-image
url = https://github.com/codex-editor/simple-image
url = https://github.com/editor-js/simple-image
[submodule "src/components/tools/paragraph"]
path = src/components/tools/paragraph
url = https://github.com/codex-editor/paragraph
url = https://github.com/editor-js/paragraph
[submodule "example/tools/marker"]
path = example/tools/marker
url = https://github.com/codex-editor/marker
url = https://github.com/editor-js/marker
[submodule "example/tools/code"]
path = example/tools/code
url = https://github.com/codex-editor/code
url = https://github.com/editor-js/code
[submodule "example/tools/image"]
path = example/tools/image
url = https://github.com/codex-editor/image
url = https://github.com/editor-js/image
[submodule "example/tools/embed"]
path = example/tools/embed
url = https://github.com/codex-editor/embed
url = https://github.com/editor-js/embed
[submodule "example/tools/table"]
path = example/tools/table
url = https://github.com/codex-editor/table
url = https://github.com/editor-js/table
[submodule "example/tools/checklist"]
path = example/tools/checklist
url = https://github.com/codex-editor/checklist
url = https://github.com/editor-js/checklist
[submodule "example/tools/link"]
path = example/tools/link
url = https://github.com/codex-editor/link
url = https://github.com/editor-js/link
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Welcome to testing stage. Please, join a [public Telegram-chat](//t.me/codex_edi
- `New` *Block Selection* — Ability to select Block by `CMD+A`, and the whole Editor by double `CMD+A`. After that, you can copy (`CMD+C`), remove (`Backspace`) or clear (`Enter`) selected Blocks.
- `New` *[Styles API](https://github.com/codex-team/editor.js/blob/master/types/api/styles.d.ts)* — Added `button` class for stylization of any buttons provided by Tools with one unified style.
- `New` *[Notifier API](https://github.com/codex-team/editor.js/blob/master/docs/api.md#notifierapi)* — methods for showing user notifications: on success, errors, warnings, etc.
- `New` *Block Tool*[Table](http://github.com/codex-editor/table) constructor 💪
- `New` *Block Tool*[Table](http://github.com/editor-js/table) constructor 💪
- `New` If one of the Tools is unavailable on Editor initialization, its Blocks will be rendered with *Dummy Block*, describing that user can not edit content of this Block. Dummy Blocks can be moved, removed and saved as normal Blocks. So saved data won't be lost if one of the Tools is failed
- `New` [Public TS-types](https://github.com/codex-team/editor.js/tree/master/types) are presented.
- `Changes` *Tools API* — options `irreplaceable` and `contentless` was removed.
Expand Down Expand Up @@ -74,7 +74,7 @@ Sorry if we missed something. You can join a [Telegram-chat](//t.me/codex_editor

Editor.js is a Block-Styled editor. Blocks are structural units, of which the Entry is composed.
For example, `Paragraph`, `Heading`, `Image`, `Video`, `List` are Blocks. Each Block is represented by Plugin.
We have [many](http://github.com/codex-editor/) ready-to-use Plugins and the [simple API](docs/tools.md) for creation new ones.
We have [many](http://github.com/editor-js/) ready-to-use Plugins and the [simple API](docs/tools.md) for creation new ones.

So how to use the Editor after [Installation](docs/installation.md).

Expand All @@ -83,7 +83,7 @@ So how to use the Editor after [Installation](docs/installation.md).
- Press `TAB` again to leaf Toolbox and select a Block you need. Then press Enter.


![](https://github.com/codex-editor/list/raw/master/assets/example.gif)
![](https://github.com/editor-js/list/raw/master/assets/example.gif)

- Select text fragment and apply a style or insert a link from the Inline Toolbar

Expand Down Expand Up @@ -184,11 +184,11 @@ Copy [editor.js](build/editor.js) file to your project and load it.

Each Block at the Editor.js represented by [Tools](docs/tools.md). There are simple external scripts with own logic. Probably you want to use several Block Tools that should be connected.

For example check out our [Header](https://github.com/codex-editor/header) Tool that represents heading blocks.
For example check out our [Header](https://github.com/editor-js/header) Tool that represents heading blocks.

You can install Header Tool by the same way as the Editor (Node.js, CDN, local file).

Check [Editor.js's community](https://github.com/codex-editor/) to see more ready-to-use Tools.
Check [Editor.js's community](https://github.com/editor-js/) to see more ready-to-use Tools.

**Example:** use Header from CDN

Expand Down
12 changes: 6 additions & 6 deletions dist/editor.js

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions dist/editor.licenses.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,32 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
regenerator-runtime
MIT

@babel/register
MIT
MIT License

Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


codex-notifier
MIT
MIT License
Expand Down Expand Up @@ -353,7 +379,7 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

codex.editor.paragraph
@editorjs/paragraph
MIT
MIT License

Expand All @@ -376,29 +402,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


@babel/register
MIT
MIT License

Copyright (c) 2014-2018 Sebastian McKenzie <sebmck@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 changes: 5 additions & 5 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
- `New` *Block Selection* — Ability to select Block by `CMD+A`, and the whole Editor by double `CMD+A`. After that, you can copy (`CMD+C`), remove (`Backspace`) or clear (`Enter`) selected Blocks.
- `New` *[Styles API](https://github.com/codex-team/editor.js/blob/master/types/api/styles.d.ts)* — Added `button` class for stylization of any buttons provided by Tools with one unified style.
- `New` *[Notifier API](https://github.com/codex-team/editor.js/blob/master/docs/api.md#notifierapi)* — methods for showing user notifications: on success, errors, warnings, etc.
- `New` *Block Tool*[Table](http://github.com/codex-editor/table) constructor 💪
- `New` *Block Tool*[Table](http://github.com/editor-js/table) constructor 💪
- `New` If one of the Tools is unavailable on Editor initialization, its Blocks will be rendered with *Dummy Block*, describing that user can not edit content of this Block. Dummy Blocks can be moved, removed and saved as normal Blocks. So saved data won't be lost if one of the Tools is failed
- `New` [Public TS-types](https://github.com/codex-team/editor.js/tree/master/types) are presented.
- `Changes` *Tools API* — options `irreplaceable` and `contentless` was removed.
Expand All @@ -129,11 +129,11 @@ See a whole [Changelog](/docs/)

### 2.1-beta changelog

- `New` *Tools API* — support pasted content via drag-n-drop or from the Buffer. See [documentation](https://github.com/codex-team/editor.js/blob/master/docs/tools.md#paste-handling) and [example](https://github.com/codex-editor/simple-image/blob/master/src/index.js#L177) at the Simple Image Tool.
- `New` *Tools API* — new `sanitize` getter for Tools for automatic HTML sanitizing of returned data. See [documentation](https://github.com/codex-team/editor.js/blob/master/docs/tools.md#sanitize) and [example](https://github.com/codex-editor/paragraph/blob/master/src/index.js#L121) at the Paragraph Tool
- `New` *Tools API* — support pasted content via drag-n-drop or from the Buffer. See [documentation](https://github.com/codex-team/editor.js/blob/master/docs/tools.md#paste-handling) and [example](https://github.com/editor-js/simple-image/blob/master/src/index.js#L177) at the Simple Image Tool.
- `New` *Tools API* — new `sanitize` getter for Tools for automatic HTML sanitizing of returned data. See [documentation](https://github.com/codex-team/editor.js/blob/master/docs/tools.md#sanitize) and [example](https://github.com/editor-js/paragraph/blob/master/src/index.js#L121) at the Paragraph Tool
- `New` Added `onChange`-callback, fired after any modifications at the Editor. See [documentation](https://github.com/codex-team/editor.js/blob/master/docs/installation.md#features).
- `New` New Inline Tool example — [Marker](https://github.com/codex-editor/marker)
- `New` New Inline Tool example — [Code](https://github.com/codex-editor/code)
- `New` New Inline Tool example — [Marker](https://github.com/editor-js/marker)
- `New` New Inline Tool example — [Code](https://github.com/editor-js/code)
- `New` New [Editor.js PHP](http://github.com/codex-team/codex.editor.backend) — example of server-side implementation with HTML purifying and data validation.
- `Improvements` - Improvements of Toolbar's position calculation.
- `Improvements` — Improved zero-configuration initialization.
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ Copy [editorjs.js](../dist/editor.js) file to your project and load it.

Each Block at the Editor.js represented by [Tools](tools.md). There are simple external scripts with own logic. Probably you want to use several Block Tools that should be connected.

For example check out our [Header](https://github.com/codex-editor/header) Tool that represents heading blocks.
For example check out our [Header](https://github.com/editor-js/header) Tool that represents heading blocks.

You can install Header Tool via the same ways as an Editor (Node.js, CDN, local file).

Check [Editor.js's community](https://github.com/codex-editor/) to see Tools examples.
Check [Editor.js's community](https://github.com/editor-js/) to see Tools examples.

**Example:** use Header from CDN

Expand Down
4 changes: 2 additions & 2 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Editor.js is a Block-Styled editor. Blocks is a structural units, of which the Entry is composed.
For example, `Paragraph`, `Heading`, `Image`, `Video`, `List` are Blocks. Each Block is represented by a Plugin.
We have [many](http://github.com/codex-editor/) ready-to-use Plugins and the [simple API](tools.md) for creation new ones.
We have [many](http://github.com/editor-js/) ready-to-use Plugins and the [simple API](tools.md) for creation new ones.

So how to use the Editor after [Installation](installation.md).

Expand All @@ -13,7 +13,7 @@ So how to use the Editor after [Installation](installation.md).
- Press `TAB` again to leaf Toolbox and select a Block you need. Then press Enter.


![](https://github.com/codex-editor/list/raw/master/assets/example.gif)
![](https://github.com/editor-js/list/raw/master/assets/example.gif)

- Select text fragment and apply a style or insert a link from the Inline Toolbar

Expand Down
4 changes: 2 additions & 2 deletions example/example.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<a class="ce-example__header-logo" href="https://ifmo.su/editor">Editor.js 🤩🧦🤨</a>

<div class="ce-example__header-menu">
<a href="https://github.com/codex-editor/" target="_blank">Plugins</a>
<a href="https://github.com/editor-js/" target="_blank">Plugins</a>
</div>
</div>
<div class="ce-example__content _ce-example__content--small">
Expand All @@ -40,7 +40,7 @@
Also you can load each Tool from CDN or use NPM/Yarn packages.
Read more in Tool's README file. For example:
https://github.com/codex-editor/header#installation
https://github.com/editor-js/header#installation
-->
<script src="./tools/header/dist/bundle.js"></script><!-- Header -->
<script src="./tools/simple-image/dist/bundle.js"></script><!-- Image -->
Expand Down
2 changes: 1 addition & 1 deletion example/tools/checklist
2 changes: 1 addition & 1 deletion example/tools/code
Submodule code updated 8 files
+8 −0 .npmignore
+10 −10 README.md
+3 −3 dist/bundle.js
+0 −5,195 package-lock.json
+15 −17 package.json
+3 −3 src/index.js
+12 −5 webpack.config.js
+1,079 −836 yarn.lock
2 changes: 1 addition & 1 deletion example/tools/delimiter
2 changes: 1 addition & 1 deletion example/tools/embed
2 changes: 1 addition & 1 deletion example/tools/header
Submodule header updated 8 files
+4 −0 .npmignore
+11 −11 README.md
+3 −3 dist/bundle.js
+0 −5,222 package-lock.json
+14 −16 package.json
+4 −4 src/index.js
+11 −4 webpack.config.js
+3,907 −0 yarn.lock
2 changes: 1 addition & 1 deletion example/tools/image
2 changes: 1 addition & 1 deletion example/tools/inline-code
2 changes: 1 addition & 1 deletion example/tools/link
Submodule link updated 6 files
+7 −0 .npmignore
+9 −9 README.md
+0 −7,190 package-lock.json
+13 −10 package.json
+1 −1 src/index.js
+769 −145 yarn.lock
2 changes: 1 addition & 1 deletion example/tools/list
Submodule list updated from bf49d0 to bd3d44
2 changes: 1 addition & 1 deletion example/tools/marker
2 changes: 1 addition & 1 deletion example/tools/quote
Submodule quote updated 7 files
+4 −0 .npmignore
+10 −10 README.md
+1 −1 dist/bundle.js
+14 −16 package.json
+3 −3 src/index.js
+11 −4 webpack.config.js
+1,079 −836 yarn.lock
2 changes: 1 addition & 1 deletion example/tools/simple-image
2 changes: 1 addition & 1 deletion example/tools/table
2 changes: 1 addition & 1 deletion src/components/tools/paragraph

0 comments on commit d9bb7ff

Please sign in to comment.