Skip to content

Commit

Permalink
Modify sdk url.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Samsel committed Nov 6, 2017
1 parent a0a0055 commit c612135
Show file tree
Hide file tree
Showing 63 changed files with 136 additions and 136 deletions.
2 changes: 1 addition & 1 deletion .github/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ For more advanced needs (e.g. CKEditor integration in your products, or developm
For more reading visit our supporting resources:

* An extensive [CKEditor 4 documentation](https://docs.ckeditor.com/ckeditor4/docs/) with information about CKEditor features and configuration settings.
* [CKEditor 4 samples](http://sdk.ckeditor.com/) that you can try out and even download to copy and implement in your own environment.
* [CKEditor 4 samples](https://sdk.ckeditor.com/) that you can try out and even download to copy and implement in your own environment.
* A knowledge base with [Frequently Asked Questions](https://support.ckeditor.com/hc/en-us/sections/115000842245-CKEditor-4-FAQ).
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ Other Changes:
- New features:
- CKEditor [Language](http://ckeditor.com/addon/language) plugin support.
- CKEditor [Placeholder](http://ckeditor.com/addon/placeholder) plugin support.
- [Drag&Drop](http://sdk.ckeditor.com/samples/fileupload.html) support.
- [Drag&Drop](https://sdk.ckeditor.com/samples/fileupload.html) support.
- **Experimental** [GRAYT](https://docs.ckeditor.com/ckeditor4/docs/#!/api/CKEDITOR.config-cfg-grayt_autoStartup) (Grammar As You Type) functionality.
- Fixed issues:
* [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98): SCAYT affects dialog double-click. Fixed in SCAYT core.
Expand Down Expand Up @@ -591,7 +591,7 @@ New Features:
* Direct access to clipboard could only be implemented in Chrome, Safari on Mac OS, Opera and Firefox. In other browsers the pastebin must still be used.

* [#12875](http://dev.ckeditor.com/ticket/12875): Samples and toolbar configuration tools.
* The old set of samples shipped with every CKEditor package was replaced with a shiny new single-page sample. This change concluded a long term plan which started from introducing the [CKEditor SDK](http://sdk.ckeditor.com/) and [CKEditor Functionality Overview](https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_features) section in the documentation which essentially redefined the old samples.
* The old set of samples shipped with every CKEditor package was replaced with a shiny new single-page sample. This change concluded a long term plan which started from introducing the [CKEditor SDK](https://sdk.ckeditor.com/) and [CKEditor Functionality Overview](https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_features) section in the documentation which essentially redefined the old samples.
* Toolbar configurators with live previews were introduced. They will be shipped with every CKEditor package and are meant to help in configuring toolbar layouts.

* [#10925](http://dev.ckeditor.com/ticket/10925): The [Media Embed](http://ckeditor.com/addon/embed) and [Semantic Media Embed](http://ckeditor.com/addon/embedsemantic) plugins were introduced. Read more about the new features in the [Embedding Content](https://docs.ckeditor.com/ckeditor4/docs/#!/guide/dev_media_embed) article.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Additionally, all releases have their respective tags in the following form: 4.4
## Samples

The `samples/` folder contains some examples that can be used to test your
installation. Visit [CKEditor 4 SDK](http://sdk.ckeditor.com/) for plenty of samples
installation. Visit [CKEditor 4 SDK](https://sdk.ckeditor.com/) for plenty of samples
showcasing numerous editor features, with source code readily available to view, copy
and use in your own solution.

Expand Down
30 changes: 15 additions & 15 deletions core/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* using the <kbd>Enter</kbd> key.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* @readonly
* @property {Number} [=1]
Expand All @@ -30,7 +30,7 @@ CKEDITOR.ENTER_P = 1;
* using the <kbd>Enter</kbd> key.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* @readonly
* @property {Number} [=2]
Expand All @@ -45,7 +45,7 @@ CKEDITOR.ENTER_BR = 2;
* using the <kbd>Enter</kbd> key.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* @readonly
* @property {Number} [=3]
Expand Down Expand Up @@ -101,7 +101,7 @@ CKEDITOR.config = {
* configuration setting is used.
*
* Read more in the [documentation](#!/guide/dev_uilanguage) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/uilanguages.html).
* [SDK sample](https://sdk.ckeditor.com/samples/uilanguages.html).
*
* // Load the German interface.
* config.language = 'de';
Expand All @@ -115,7 +115,7 @@ CKEDITOR.config = {
* setting is left empty and it is not possible to localize the editor to the user language.
*
* Read more in the [documentation](#!/guide/dev_uilanguage) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/uilanguages.html).
* [SDK sample](https://sdk.ckeditor.com/samples/uilanguages.html).
*
* config.defaultLanguage = 'it';
*
Expand All @@ -134,7 +134,7 @@ CKEDITOR.config = {
* * `'ltr'` &ndash; Indicates a Left-To-Right text direction (like in English).
* * `'rtl'` &ndash; Indicates a Right-To-Left text direction (like in Arabic).
*
* See the [SDK sample](http://sdk.ckeditor.com/samples/language.html).
* See the [SDK sample](https://sdk.ckeditor.com/samples/language.html).
*
* Example:
*
Expand All @@ -158,7 +158,7 @@ CKEDITOR.config = {
* its semantic value and correctness. The editor is optimized for this setting.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* // Not recommended.
* config.enterMode = CKEDITOR.ENTER_BR;
Expand All @@ -175,7 +175,7 @@ CKEDITOR.config = {
* instead of a `<div>`.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* // Not recommended.
* config.forceEnterMode = true;
Expand All @@ -196,7 +196,7 @@ CKEDITOR.config = {
* * {@link CKEDITOR#ENTER_DIV} (3) &ndash; New `<div>` blocks are created.
*
* Read more in the [documentation](#!/guide/dev_enterkey) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/enterkey.html).
* [SDK sample](https://sdk.ckeditor.com/samples/enterkey.html).
*
* Example:
*
Expand Down Expand Up @@ -257,7 +257,7 @@ CKEDITOR.config = {
* `<body>` content only if this setting is disabled.
*
* Read more in the [documentation](#!/guide/dev_fullpage) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/fullpage.html).
* [SDK sample](https://sdk.ckeditor.com/samples/fullpage.html).
*
* config.fullPage = true;
*
Expand All @@ -274,7 +274,7 @@ CKEDITOR.config = {
* **Note:** This configuration option is ignored by [inline editor](#!/guide/dev_inline).
*
* Read more in the [documentation](#!/guide/dev_size) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/size.html).
* [SDK sample](https://sdk.ckeditor.com/samples/size.html).
*
* config.height = 500; // 500 pixels.
* config.height = '25em'; // CSS length.
Expand All @@ -295,7 +295,7 @@ CKEDITOR.config = {
* which the developer has full control over the page HTML code.
*
* Read more in the [documentation](#!/guide/dev_styles) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/styles.html).
* [SDK sample](https://sdk.ckeditor.com/samples/styles.html).
*
* config.contentsCss = '/css/mysitestyles.css';
* config.contentsCss = [ '/css/mysitestyles.css', '/css/anotherfile.css' ];
Expand Down Expand Up @@ -360,7 +360,7 @@ CKEDITOR.config = {
* The editor `tabindex` value.
*
* Read more in the [documentation](#!/guide/dev_tabindex) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/tabindex.html).
* [SDK sample](https://sdk.ckeditor.com/samples/tabindex.html).
*
* config.tabIndex = 1;
*
Expand All @@ -379,7 +379,7 @@ CKEDITOR.config = {
* **Note:** This configuration option is ignored by [inline editor](#!/guide/dev_inline).
*
* Read more in the [documentation](#!/guide/dev_size) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/size.html).
* [SDK sample](https://sdk.ckeditor.com/samples/size.html).
*
* config.width = 850; // 850 pixels wide.
* config.width = '75%'; // CSS unit.
Expand Down Expand Up @@ -437,7 +437,7 @@ CKEDITOR.config = {
* [compatible with this setting](#!/guide/skin_sdk_chameleon).
*
* Read more in the [documentation](#!/guide/dev_uicolor) and see the
* [SDK sample](http://sdk.ckeditor.com/samples/uicolor.html).
* [SDK sample](https://sdk.ckeditor.com/samples/uicolor.html).
*
* // Using a color code.
* config.uiColor = '#AADC6E';
Expand Down
2 changes: 1 addition & 1 deletion core/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@ CKEDITOR.ELEMENT_MODE_INLINE = 3;
* if the linked `<textarea>` element has the `disabled` attribute.
*
* Read more in the [documentation](#!/guide/dev_readonly)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/readonly.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/readonly.html).
*
* config.readOnly = true;
*
Expand Down
6 changes: 3 additions & 3 deletions core/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2346,7 +2346,7 @@
* editor features. To do that, use the {@link #disallowedContent} option.
*
* Read more in the [documentation](#!/guide/dev_acf)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/acf.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/acf.html).
*
* @since 4.1
* @cfg {CKEDITOR.filter.allowedContentRules/Boolean} [allowedContent=null]
Expand Down Expand Up @@ -2377,7 +2377,7 @@
* } );
*
* Read more in the [documentation](#!/guide/dev_acf-section-automatic-mode-and-allow-additional-tags%2Fproperties)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/acf.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/acf.html).
* See also {@link CKEDITOR.config#allowedContent} for more details.
*
* @since 4.1
Expand All @@ -2390,7 +2390,7 @@
* Read more in the [Disallowed Content guide](#!/guide/dev_disallowed_content).
*
* Read more in the [documentation](#!/guide/dev_acf-section-automatic-mode-but-disallow-certain-tags%2Fproperties)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/acf.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/acf.html).
* See also {@link CKEDITOR.config#allowedContent} and {@link CKEDITOR.config#extraAllowedContent}.
*
* @since 4.4
Expand Down
2 changes: 1 addition & 1 deletion core/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -2092,7 +2092,7 @@ CKEDITOR.tools.extend( CKEDITOR.editor.prototype, {
* to prevent loading any styles set.
*
* Read more in the [documentation](#!/guide/dev_styles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/styles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/styles.html).
*
* // Do not load any file. The styles set is empty.
* config.stylesSet = false;
Expand Down
2 changes: 1 addition & 1 deletion plugins/autoembed/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
* For example, there is the `embedsemantic` plugin and the `embedSemantic` widget.
*
* Read more in the [documentation](#!/guide/dev_media_embed-section-automatic-embedding-on-paste)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/mediaembed.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/mediaembed.html).
*
* @since 4.5
* @cfg {String/Function} [autoEmbed_widget='embed,embedSemantic']
Expand Down
8 changes: 4 additions & 4 deletions plugins/autogrow/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
* feature. This option accepts a value in pixels, without the unit (for example: `300`).
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_minHeight = 300;
*
Expand All @@ -181,7 +181,7 @@
* Zero (`0`) means that the maximum height is not limited and the editor will expand infinitely.
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_maxHeight = 400;
*
Expand All @@ -195,7 +195,7 @@
* editor creation.
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_onStartup = true;
*
Expand All @@ -210,7 +210,7 @@
* without the unit (for example: `50`).
*
* Read more in the [documentation](#!/guide/dev_autogrow)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/autogrow.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/autogrow.html).
*
* config.autoGrow_bottomSpace = 50;
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/autogrow/samples/autogrow.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ <h1 class="samples">
<a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Using AutoGrow Plugin
</h1>
<div class="warning deprecated">
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/autogrow.html">brand new version in CKEditor SDK</a>.
This sample is not maintained anymore. Check out its <a href="https://sdk.ckeditor.com/samples/autogrow.html">brand new version in CKEditor SDK</a>.
</div>
<div class="description">
<p>
Expand Down
12 changes: 6 additions & 6 deletions plugins/basicstyles/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ CKEDITOR.plugins.add( 'basicstyles', {
* The style definition that applies the **bold** style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* config.coreStyles_bold = { element: 'b', overrides: 'strong' };
*
Expand All @@ -127,7 +127,7 @@ CKEDITOR.config.coreStyles_bold = { element: 'strong', overrides: 'b' };
* The style definition that applies the *italics* style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* config.coreStyles_italic = { element: 'i', overrides: 'em' };
*
Expand All @@ -145,7 +145,7 @@ CKEDITOR.config.coreStyles_italic = { element: 'em', overrides: 'i' };
* The style definition that applies the <u>underline</u> style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* CKEDITOR.config.coreStyles_underline = {
* element: 'span',
Expand All @@ -161,7 +161,7 @@ CKEDITOR.config.coreStyles_underline = { element: 'u' };
* The style definition that applies the <strike>strikethrough</strike> style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* CKEDITOR.config.coreStyles_strike = {
* element: 'span',
Expand All @@ -178,7 +178,7 @@ CKEDITOR.config.coreStyles_strike = { element: 's', overrides: 'strike' };
* The style definition that applies the subscript style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* CKEDITOR.config.coreStyles_subscript = {
* element: 'span',
Expand All @@ -195,7 +195,7 @@ CKEDITOR.config.coreStyles_subscript = { element: 'sub' };
* The style definition that applies the superscript style to the text.
*
* Read more in the [documentation](#!/guide/dev_basicstyles)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/basicstyles.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/basicstyles.html).
*
* CKEDITOR.config.coreStyles_superscript = {
* element: 'span',
Expand Down
2 changes: 1 addition & 1 deletion plugins/bbcode/samples/bbcode.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 class="samples">
<a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; BBCode Plugin
</h1>
<div class="warning deprecated">
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/bbcode.html">brand new version in CKEditor SDK</a>.
This sample is not maintained anymore. Check out its <a href="https://sdk.ckeditor.com/samples/bbcode.html">brand new version in CKEditor SDK</a>.
</div>
<div class="description">
<p>
Expand Down
6 changes: 3 additions & 3 deletions plugins/codesnippet/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
* See {@link CKEDITOR.plugins.codesnippet.highlighter} to read more.
*
* Read more in the [documentation](#!/guide/dev_codesnippet)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/codesnippet.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/codesnippet.html).
*
* @since 4.4
* @cfg {String} [codeSnippet_codeClass='hljs']
Expand All @@ -447,7 +447,7 @@ CKEDITOR.config.codeSnippet_codeClass = 'hljs';
* you may need to refer to external documentation to set `config.codeSnippet_languages` properly.
*
* Read more in the [documentation](#!/guide/dev_codesnippet-section-changing-supported-languages)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/codesnippet.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/codesnippet.html).
*
* // Restricts languages to JavaScript and PHP.
* config.codeSnippet_languages = {
Expand All @@ -467,7 +467,7 @@ CKEDITOR.config.codeSnippet_codeClass = 'hljs';
* ([highlight.js](http://highlightjs.org/static/test.html)).
*
* Read more in the [documentation](#!/guide/dev_codesnippet-section-changing-highlighter-theme)
* and see the [SDK sample](http://sdk.ckeditor.com/samples/codesnippet.html).
* and see the [SDK sample](https://sdk.ckeditor.com/samples/codesnippet.html).
*
* // Changes the theme to "pojoaque".
* config.codeSnippet_theme = 'pojoaque';
Expand Down
2 changes: 1 addition & 1 deletion plugins/codesnippet/samples/codesnippet.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1 class="samples">
<a href="../../../samples/old/index.html">CKEditor Samples</a> &raquo; Code Snippet Plugin
</h1>
<div class="warning deprecated">
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/codesnippet.html">brand new version in CKEditor SDK</a>.
This sample is not maintained anymore. Check out its <a href="https://sdk.ckeditor.com/samples/codesnippet.html">brand new version in CKEditor SDK</a>.
</div>

<div class="description">
Expand Down
Loading

0 comments on commit c612135

Please sign in to comment.