Skip to content

Commit dc547af

Browse files
committed
fix links and attachments
1 parent d156e28 commit dc547af

31 files changed

+68
-37
lines changed

_config-local-override.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# add any local config overrides here.
2+
# Do not check in your _config.local-override.yml file

antora.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@ title: TinyMCE Documentation
33
version: '4'
44
asciidoc:
55
attributes:
6-
url: https://www.tiny.cloud
6+
product_homepage: https://www.tiny.cloud
77
origin: https://www.tiny.cloud
88
baseurl: localhost:4000/tinymce/4
99
shared_baseurl:
10-
cdnurl: https://cloud.tinymce.com/stable/tinymce.min.js
10+
cdnurl: https://cdn.tiny.cloud/1/no-api-key/tinymce/4.9/tinymce.min.js
11+
moxiemanager_site: https://www.moxiemanager.com
12+
contactpage: https://www.tiny.cloud/contact
13+
pricingpage: https://www.tiny.cloud/pricing
1114
default_meta_keywords: tinymce, documentation, docs, plugins, customizable skins, configuration, examples, html, php, java, javascript, image editor, inline editor, distraction-free editor, classic editor
1215
nav:
1316
- modules/ROOT/nav.adoc
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Version 2.0.6.1 (2012-20-11)
2+
Fixed security issue with google spellchecker.
3+
Version 2.0.6 (2011-29-09)
4+
Fixed incorrect position of suggestion menu.
5+
Fixed handling of mispelled words with no suggestions in PSpellShell engine.
6+
Fixed PSpellShell command on Windows.
7+
Fixed bug where Javascript error is produced when enchant_dict_suggest() returns unexpected result.
8+
Version 2.0.3 (2010-19-04)
9+
Added standalone support. Will use native spellchecker for supported browsers.
10+
Added @package phpdoc comments. Patch contributed by Jacob Santos.
11+
Fixed some PHP missing function issue.
12+
Version 2.0.2 (2008-30-04)
13+
Added new EnchantSpell engine class contributed by Michel Weimerskirch.
14+
Added new general.remote_rpc_url option, enables you to proxy requests to another server.
15+
Fixed security hole in PSpellShell.php file if PSpellShell engine was used.
16+
Version 2.0.1 (2008-07-03)
17+
Fixed bug where spellchecker was auto focusing the editor in IE.
18+
Version 2.0 (2008-30-01)
19+
Fixed bug where the suggestions menu was placed at an incorrect location.
20+
Version 2.0rc1 (2008-14-01)
21+
Moved package from beta to release candidate.
22+
Version 2.0b3 (2007-01-12)
23+
Fixed bug where the suggestions menu could appear at the wrong location.
24+
Version 2.0b2 (2007-29-11)
25+
Fixed bug where the spellchecker was removing the word when it was ignored.
26+
Version 2.0b1 (2007-21-11)
27+
Moved spellchecker from alpha to beta status.
28+
Version 2.0a2 (2007-13-11)
29+
Updated plugin so it works correctly with the TinyMCE 3.0a3 version.
30+
Version 2.0a1 (2007-01-11)
31+
Rewritten version for TinyMCE 3.0 this new version uses JSON RPC.
246 KB
Binary file not shown.
4.44 KB
Binary file not shown.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ anchor:exampleplugin[historical anchor]
5656

5757
Here is an example plugin showing how you add a simple toolbar button and menu item. The button opens a dialog that lets you type in a title that gets inserted into the editor. The menu item will open the TinyMCE site in a dialog.
5858

59-
[source,js]
59+
[source,js,subs="attributes+"]
6060
----
6161
tinymce.PluginManager.add('example', function(editor, url) {
6262
// Add a button that opens a window
@@ -86,7 +86,7 @@ tinymce.PluginManager.add('example', function(editor, url) {
8686
// Open window with a specific url
8787
editor.windowManager.open({
8888
title: 'TinyMCE site',
89-
url: 'https://www.tinymce.com',
89+
url: '{product_homepage}',
9090
width: 800,
9191
height: 600,
9292
buttons: [{

modules/ROOT/pages/api/tinymce/root_tinymce.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ TinyMCE core class.
55
[[properties]]
66
== Properties
77

8-
[cols=",,,",options="header",]
8+
[cols="1,1,2,1",options="header",]
99
|===
1010
|name |type |summary |defined by
1111
|$ |link:{baseurl}/api/tinymce.dom/tinymce.dom.domquery.html[[.param-type]#tinymce.dom.DomQuery#] |Dom query instance. |link:{baseurl}/api/tinymce/root_tinymce.html[tinymce]
@@ -28,7 +28,7 @@ TinyMCE core class.
2828
[[methods]]
2929
== Methods
3030

31-
[cols=",,",options="header",]
31+
[cols="1,3,1",options="header",]
3232
|===
3333
|name |summary |defined by
3434
|link:#add[add()] |Adds an editor instance to the editor collection. This will also set it as the active editor. |link:{baseurl}/api/tinymce/root_tinymce.html[tinymce]

modules/ROOT/pages/api/tinymce/tinymce.annotator.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the annotator api.
55
[[methods]]
66
== Methods
77

8-
[cols=",,",options="header",]
8+
[cols="1,3,1",options="header",]
99
|===
1010
|name |summary |defined by
1111
|link:#annotate[annotate()] |Applies the annotation at the current selection using data |link:{baseurl}/api/tinymce/tinymce.annotator.html[tinymce.Annotator]

modules/ROOT/pages/configure/index.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
:description_short: The most customizable rich text editor.
44
:title_nav: Configure TinyMCE
55
:type: folder
6-
7-
{% assign links = site.data.nav[5].pages %}
8-
{% include index.html links=links %}

modules/ROOT/pages/enterprise/accessibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ Before the introduction of this feature users would have to manually check for e
1515
== Downloading Accessibility Checker
1616
anchor:downloadingaccessibilitychecker[historical anchor]
1717

18-
A https://www.tinymce.com/pricing/[TinyMCE Enterprise] subscription includes the ability to download and install the accessibility feature for the editor.
18+
A link:{pricingpage}[TinyMCE Enterprise] subscription includes the ability to download and install the accessibility feature for the editor.

0 commit comments

Comments
 (0)