Skip to content

Commit d7c82b3

Browse files
committed
fixing some links
1 parent 1f0c5cf commit d7c82b3

File tree

17 files changed

+62
-60
lines changed

17 files changed

+62
-60
lines changed

antora.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ asciidoc:
77
origin: https://www.tiny.cloud
88
baseurl: localhost:4000/tinymce/4
99
shared_baseurl:
10-
cdnurl: https://cdn.tiny.cloud/1/no-api-key/tinymce/4.9/tinymce.min.js
10+
cdnurl: https://cdn.tiny.cloud/1/no-api-key/tinymce/4/tinymce.min.js
1111
downloadspage: https://www.tiny.cloud/get-tiny/downloads/
12+
blogsite: https://www.tiny.cloud/blog/
1213
contactpage: https://www.tiny.cloud/contact
1314
pricingpage: https://www.tiny.cloud/pricing
1415
moxiemanagerhome: https://www.moxiemanager.com
1516
moxiemanagerdocs: https://www.moxiemanager.com/documentation/
1617
accountsignuppage: https://www.tiny.cloud/auth/signup
18+
skintool: http://skin.tiny.cloud/t4/
1719
tinymceproductsfeatures: https://www.tiny.cloud/tinymce/features/
1820
default_meta_keywords: tinymce, documentation, docs, plugins, customizable skins, configuration, examples, html, php, java, javascript, image editor, inline editor, distraction-free editor, classic editor
1921
nav:

modules/ROOT/pages/advanced/creating-a-skin.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
:keywords: create creator skin icomoon
77
:title_nav: Create a Skin
88

9-
Creating a new skin will allow you to alter the appearance of TinyMCE. If you would like to create your skin, there are two ways of doing so. The simplest way is to use the http://skin.tinymce.com/[TinyMCE Skin Creator] tool. The other option is to manually modify `less` files and build them using the node js build process. Since the skin creator is pretty self-explanatory, we will focus on the manual method in this tutorial.
9+
Creating a new skin will allow you to alter the appearance of TinyMCE. If you would like to create your skin, there are two ways of doing so. The simplest way is to use the link:{skintool}[TinyMCE Skin Creator] tool. The other option is to manually modify `less` files and build them using the node js build process. Since the skin creator is pretty self-explanatory, we will focus on the manual method in this tutorial.
1010

1111
[[preparation]]
1212
== Preparation

modules/ROOT/pages/advanced/keyboard-shortcuts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,4 @@ NOTE: Browsers/Screen Readers provide additional shortcuts within the editor con
174174
== Add custom shortcuts to TinyMCE
175175
anchor:addcustomshortcutstotinymce[historical anchor]
176176

177-
If you would like to add your custom keyboard shortcuts to TinyMCE, https://go.tinymce.com/blog/creating-keyboard-shortcuts-tinymce/[this post on our blog] will help you get started.
177+
If you would like to add your custom keyboard shortcuts to TinyMCE, link:{blogsite}creating-keyboard-shortcuts-tinymce/[this post on our blog] will help you get started.

modules/ROOT/pages/cloud-deployment-guide/editor-and-features.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ anchor:step1embedthetinymcecloudscripttagintoyourwebpage[historical anchor]
2121

2222
To load TinyMCE for the very first time, you need to embed the TinyMCE editor code into your application. The code embedding is done by adding the following script tag into your app, or in the case of a web page the `<head>` of the page:
2323

24-
[source,js]
24+
[source,js,subs=+attributes]
2525
----
26-
<script src="{cdnurl}?apiKey=your_API_key"></script>
26+
<script src="{cdnurl}"></script>
2727
----
2828

2929
[[step-2-load-customize-and-interact-with-tinymce]]
@@ -87,9 +87,9 @@ anchor:step1replaceexistingreferencetotinymceminjs[historical anchor]
8787

8888
Migrating from a Self-hosted environment to the Cloud is a relatively straightforward process. Please remove your existing script tag that loads TinyMCE's JavaScript (typically a reference to `tinymce.min.js` either hosted in your application or available via one our legacy CDNs). Now, replace this script tag with the following:
8989

90-
[source,js]
90+
[source,js,subs=+attributes]
9191
----
92-
<script src="{cdnurl}?apiKey=your_API_key"></script>
92+
<script src="{cdnurl}"></script>
9393
----
9494

9595
[[step-2-update-custom-plugin-paths]]

modules/ROOT/pages/cloud-deployment-guide/editor-plugin-version.adoc

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ When deploying the link:{rootDir}cloud-deployment-guide/editor-and-features.html
1313

1414
Our documented default for loading TinyMCE via our Cloud is:
1515

16-
[source,js]
16+
[source,js,subs=+attributes]
1717
----
18-
<script src="{cdnurl}?apiKey=your_API_key"></script>
18+
<script src="{cdnurl}"></script>
1919
----
2020

2121
The `stable` in this URL specifies the latest release of TinyMCE that completed our quality assurance testing process, successfully. If you are not using the latest, stable TinyMCE version, you can customize this value. You'll find all https://cloud.tinymce.com/versions/tiny[supported versions here].
@@ -33,9 +33,9 @@ Major version number (e.g. "4").
3333

3434
The following would load TinyMCE _4.latest.latest_:
3535

36-
[source,js]
36+
[source,js,subs=+attributes]
3737
----
38-
<script src="https://cloud.tinymce.com/4/tinymce.min.js?apiKey=your_API_key"></script>
38+
<script src="{cdnurl}"></script>
3939
----
4040

4141
==== Example
@@ -46,7 +46,7 @@ The following would load TinyMCE _4.3.latest_:
4646

4747
[source,js]
4848
----
49-
<script src="https://cloud.tinymce.com/4.3/tinymce.min.js?apiKey=your_API_key"></script>
49+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4.3/tinymce.min.js"></script>
5050
----
5151

5252
==== Example
@@ -57,7 +57,7 @@ The following would load TinyMCE _4.3.2_:
5757

5858
[source,js]
5959
----
60-
<script src="https://cloud.tinymce.com/4.3.2/tinymce.min.js?apiKey=your_API_key"></script>
60+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4.3.2/tinymce.min.js"></script>
6161
----
6262

6363
If you enter a version that doesn't exist, you get a *HTTP 404* error in response.
@@ -80,7 +80,7 @@ This channel deploys the absolute latest released TinyMCE version seen in the li
8080

8181
[source,js]
8282
----
83-
<script src="https://cloud.tinymce.com/dev/tinymce.min.js?apiKey=your_API_key"></script>
83+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/dev/tinymce.min.js"></script>
8484
----
8585

8686
[[testing-release-channel]]
@@ -93,20 +93,20 @@ This channel deploys the current candidate for release to the `stable` channel.
9393

9494
[source,js]
9595
----
96-
<script src="https://cloud.tinymce.com/testing/tinymce.min.js?apiKey=your_API_key"></script>
96+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/testing/tinymce.min.js"></script>
9797
----
9898

9999
[[stable-release-channel]]
100100
==== stable release channel
101101
anchor:stablereleasechannel[historical anchor]
102102

103-
This channel deploys the latest release of TinyMCE that has passed our quality assurance process. The current version of TinyMCE available through the `stable` channel https://cloud.tinymce.com/stable/version.txt[can be found here].
103+
This channel deploys the latest release of TinyMCE that has passed our quality assurance process. The current version of TinyMCE available through the `stable` channel https://cdn.tiny.cloud/1/no-api-key/tinymce/stable/version.txt[can be found here].
104104

105105
===== Example
106106

107-
[source,js]
107+
[source,js,subs=+attributes]
108108
----
109-
<script src="{cdnurl}?apiKey=your_API_key"></script>
109+
<script src="{cdnurl}"></script>
110110
----
111111

112112
[[specifying-the-version-of-featuresplugins-deployed-from-the-cloud]]
@@ -119,77 +119,77 @@ Whether you're deploying both the link:{rootDir}cloud-deployment-guide/editor-an
119119
=== PowerPaste
120120

121121
* link:{rootDir}plugins/powerpaste.html[Developer documentation]
122-
* https://plugins.tinymce.com/versions/powerpaste[Supported versions]
122+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/powerpaste/available-versions[Supported versions]
123123

124124
.Example
125125
[source,js]
126126
----
127-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&powerpaste=2.1.8"></script>
127+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?powerpaste=2.1.8"></script>
128128
----
129129

130130
[[spell-checker-pro]]
131131
=== Spell Checker Pro
132132
anchor:spellcheckerpro[historical anchor]
133133

134134
* link:{rootDir}plugins/tinymcespellchecker.html[Developer documentation]
135-
* https://plugins.tinymce.com/versions/tinymcespellchecker[Supported versions]
135+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/tinymcespellchecker/available-versions[Supported versions]
136136

137137
.Example
138138
[source,js]
139139
----
140-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&tinymcespellchecker=0.9.6"></script>
140+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?tinymcespellchecker=0.9.6"></script>
141141
----
142142

143143
[[accessibility-checker]]
144144
=== Accessibility Checker
145145
anchor:accessibilitychecker[historical anchor]
146146

147147
* link:{rootDir}plugins/a11ychecker.html[Developer documentation]
148-
* https://plugins.tinymce.com/versions/a11ychecker[Supported versions]
148+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/a11ychecker/available-versions[Supported versions]
149149

150150
.Example
151151
[source,js]
152152
----
153-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&a11ychecker=1.0.2"></script>
153+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?a11ychecker=1.0.2"></script>
154154
----
155155

156156
[[advanced-code-editor]]
157157
=== Advanced Code Editor
158158
anchor:advancedcodeeditor[historical anchor]
159159

160160
* link:{rootDir}plugins/advcode.html[Developer documentation]
161-
* https://plugins.tinymce.com/versions/advcode[Supported versions]
161+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/advcode/available-versions[Supported versions]
162162

163163
.Example
164164
[source,js]
165165
----
166-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&advcode=1.0.2"></script>
166+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?advcode=1.0.2"></script>
167167
----
168168

169169
[[enhanced-media-embed]]
170170
=== Enhanced Media Embed
171171
anchor:enhancedmediaembed[historical anchor]
172172

173173
* link:{rootDir}plugins/mediaembed.html[Developer documentation]
174-
* https://plugins.tinymce.com/versions/mediaembed[Supported versions]
174+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/mediaembed/available-versions[Supported versions]
175175

176176
.Example
177177
[source,js]
178178
----
179-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&mediaembed=0.0.1"></script>
179+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?mediaembed=0.0.1"></script>
180180
----
181181

182182
[[link-checker]]
183183
=== Link Checker
184184
anchor:linkchecker[historical anchor]
185185

186186
* link:{rootDir}plugins/linkchecker.html[Developer documentation]
187-
* https://plugins.tinymce.com/versions/linkchecker[Supported versions]
187+
* http://cdn.tiny.cloud/1/no-api-key/tinymce-plugins/linkchecker/available-versions[Supported versions]
188188

189189
.Example
190190
[source,js]
191191
----
192-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&linkchecker=1.0.0"></script>
192+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?linkchecker=1.0.0"></script>
193193
----
194194

195195
[[specifying-a-self-hosted-deployment-of-featuresplugins]]
@@ -208,7 +208,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
208208
.Example
209209
[source,js]
210210
----
211-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&powerpaste=sdk"></script>
211+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?powerpaste=sdk"></script>
212212
----
213213

214214
=== Spell Checker Pro
@@ -218,7 +218,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
218218
.Example
219219
[source,js]
220220
----
221-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&tinymcespellchecker=sdk"></script>
221+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?tinymcespellchecker=sdk"></script>
222222
----
223223

224224
=== Accessibility Checker
@@ -228,7 +228,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
228228
.Example
229229
[source,js]
230230
----
231-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&a11ychecker=sdk"></script>
231+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?a11ychecker=sdk"></script>
232232
----
233233

234234
=== Advanced Code Editor
@@ -238,7 +238,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
238238
.Example
239239
[source,js]
240240
----
241-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&advcode=sdk"></script>
241+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?advcode=sdk"></script>
242242
----
243243

244244
=== Enhanced Media Embed
@@ -248,7 +248,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
248248
.Example
249249
[source,js]
250250
----
251-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&mediaembed=sdk"></script>
251+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?mediaembed=sdk"></script>
252252
----
253253

254254
=== Link Checker
@@ -258,7 +258,7 @@ from the Cloud. It also won't display any warning or error messages if you're no
258258
.Example
259259
[source,js]
260260
----
261-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&linkchecker=sdk"></script>
261+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?linkchecker=sdk"></script>
262262
----
263263

264264
[[examples]]
@@ -278,7 +278,7 @@ The following example would load:
278278
----
279279
<html>
280280
<head>
281-
<script src="https://cloud.tinymce.com/4.5.0/tinymce.min.js?apiKey=your_API_key&powerpaste=2.1.8&advcode=1.0.2"></script>
281+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4.5.0/tinymce.min.js?powerpaste=2.1.8&advcode=1.0.2"></script>
282282
</head>
283283
<body>
284284
<textarea><p>test textarea</p></textarea>
@@ -310,7 +310,7 @@ The following example would load:
310310
----
311311
<html>
312312
<head>
313-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key&powerpaste=2.1.8&advcode=sdk"></script>
313+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js?powerpaste=2.1.8&advcode=sdk"></script>
314314
</head>
315315
<body>
316316
<textarea><p>test textarea</p></textarea>

modules/ROOT/pages/cloud-deployment-guide/features-only.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Within your webpage, after you've specified your script tag to load the TinyMCE
1717

1818
[source,js]
1919
----
20-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key"></script>
20+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js"></script>
2121
----
2222

2323
[[step-2-specify-purchased-tinymce-plugins-and-toolbar-buttons]]
@@ -52,7 +52,7 @@ Here is a complete example, whereby:
5252
<html>
5353
<head>
5454
<script src="https://your_server/tinymce.min.js"></script>
55-
<script src="https://cloud.tinymce.com/stable/plugins.min.js?apiKey=your_API_key"></script>
55+
<script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/4/plugins.min.js"></script>
5656
</head>
5757
<body>
5858
<textarea><p>test textarea</p></textarea>

modules/ROOT/pages/general-configuration-guide/basic-setup.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ You will find full list of link:{rootDir}configure/index.html[configuration opti
233233

234234
To help get you started, let's walk through an example of a basic TinyMCE configuration.
235235

236-
[source,html]
236+
[source,html,subs=+attributes]
237237
----
238238
<!DOCTYPE html>
239239
<html>
@@ -273,7 +273,7 @@ First, we want to select only the `textarea` with the id `myTextarea`.
273273
selector: '#myTextarea',
274274
----
275275

276-
We next choose a theme, in this case, the modern theme (which is the default theme, so this isn't needed. You can, however, create your own themes using the http://skin.tinymce.com/[TinyMCE Skin Creator]).
276+
We next choose a theme, in this case, the modern theme (which is the default theme, so this isn't needed. You can, however, create your own themes using the link:{skintool}[TinyMCE Skin Creator]).
277277

278278
[source,js]
279279
----

modules/ROOT/pages/general-configuration-guide/customize-ui.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ However, TinyMCE skins are much easier to make thanks to the TinyMCE Skin Creato
2020

2121
Unlike TinyMCE themes, which affect much more than just the editor's user interface, skins only change the editor's appearance.
2222

23-
If you would like to create your skins the best (and easiest) place to start is the http://skin.tinymce.com/[TinyMCE Skin Creator].
23+
If you would like to create your skins the best (and easiest) place to start is the link:{skintool}[TinyMCE Skin Creator].
2424

2525
Once you've created your skin, download it, unzip the file, and place it in the ``js/skins ``folder of your TinyMCE install. Then activate it using code similar to this:
2626

modules/ROOT/pages/general-configuration-guide/multiple-editors.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ anchor:multipleeditorinstancessharingthesameconfiguration[historical anchor]
1515

1616
In the following example, the page is broken into two separate editable areas, each sharing a single editor configuration. Each editable `div` is provided the same `class` of 'myeditablediv'. When the user clicks within the content area, TinyMCE is loaded for just that area.
1717

18-
[source,html]
18+
[source,html,subs=+attributes]
1919
----
2020
<!DOCTYPE html>
2121
<html>
@@ -56,7 +56,7 @@ In this next example, each editable area is loaded with an instance of TinyMCE w
5656

5757
[source,html]
5858
----
59-
<!DOCTYPE html>
59+
<!DOCTYPE html,subs=+attributes>
6060
<html>
6161
<head>
6262
<script src="{cdnurl}"></script>

modules/ROOT/pages/general-configuration-guide/use-tinymce-inline.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ anchor:enablinginlineeditingmode[historical anchor]
5757

5858
Enabling inline editing mode is simple. Setting the `inline` configuration property to `true` is all that's needed, in combination with a normal `selector`. It is important to keep in mind that, unlike the classic form-based mode, inline only works with content that is within a block element (e.g. `div`, `h1`). An example of using inline editing mode with a div is as follows:
5959

60-
[source,html]
60+
[source,html,subs=+attributes]
6161
----
6262
<!DOCTYPE html>
6363
<html>

0 commit comments

Comments
 (0)