Browse Source

Change filenames, add user level, remove drafts, and other edits

pull/758/head
shikha 7 years ago
parent
commit
0b24e084d2
  1. 2
      _data/nav.yml
  2. 8
      configure/jwt-authentication.md
  3. 2
      enterprise/tiny-comments.md
  4. 2
      enterprise/tinydrive.md
  5. 2
      plugins/comments.md

2
_data/nav.yml

@ -419,7 +419,7 @@
- url: "enterprise"
pages:
- url: "tiny-comments"
- url: "drive"
- url: "tinydrive"
- url: "moxiemanager"
- url: "paste-from-word"
- url: "check-spelling"

8
configure/jwt-authentication.md

@ -7,7 +7,7 @@ description: JWT is a common authorization solution for web services.
### Audience
This section is intended to be used by developers with prior knowledge of JSON Web Tokens (or JWTs) in detail, including how they can be used for User Authentication and Session Management in a Web Application. To configure JWT as per the instructions in this section, there will be some coding involved on both the client-side and the server-side.
This section is intended to be used by developers with prior knowledge of JSON Web Tokens (or JWTs) in detail, including how they can be used for User Authentication and Session Management in a Web Application. There will be some coding involved on both the client-side and the server-side to configure JWT as per the instructions in this section.
## Introduction
@ -21,9 +21,9 @@ JWT used by the TinyMCE cloud services are done using a public/private RSA key.
The private/public key pair is created in your [Tiny account page](https://apps.tiny.cloud/my-account/jwt-key-manager/), but we only store the public key on our side. The private key is for you to store in your backend.
## JWT Token Provider URL
## JWT Provider URL
The easiest way to setup JWT token authentication against TinyMCE cloud services is to create a JWT token provider page. This page takes a JSON HTTP POST request and produces a JSON result with the token that the service will then use for all the HTTP requests.
The easiest way to setup JWT authentication against TinyMCE cloud services is to create a JWT provider page. This page takes a JSON HTTP POST request and produces a JSON result with the token that the service will then use for all the HTTP requests.
## PHP Token Provider Example
@ -64,7 +64,7 @@ try {
## Node Token Provider Example
This example shows you how to set up a Node.js express handler that produces the JWT tokens. It requires you to install the Express web framework and the JSON web token Node modules. Each service requires different claims to be provided. The following example shows the sub and name claims needed for Tiny Drive.
This example shows you how to set up a Node.js express handler that produces the JWT. It requires you to install the Express web framework and the JSON web token Node modules. Each service requires different claims to be provided. The following example shows the sub and name claims needed for Tiny Drive.
```js
const express = require('express');

2
enterprise/tiny-comments.md

@ -14,7 +14,7 @@ Users can now add comments to their text from within their TinyMCE editor for co
## Collaborate on your projects within your content
Comments offers the following primary functionality:
Comments offer the following primary functionality:
* A **user interface** to collaborate on content by creating and replying to comments.
* A way to control the delete operation on a comment/comment thread if you want to remove it from your content.

2
enterprise/tinydrive.md

@ -8,7 +8,7 @@ keywords: tinydrive .net php relative_urls
### Cloud-based File and Image Management for TinyMCE
Tiny Drive is a premium TinyMCE plugin for cloud-based asset management and storage solution. Drive is a solution for creating rich text by attaching and embedding images, videos, and other files in your document.
Tiny Drive is a premium TinyMCE plugin for cloud-based asset management and storage solution. The Drive is a solution for creating rich text by attaching and embedding images, videos, and other files in your document.
Drive presents a cloud-based asset management and storage solution that provides the ease of use of Google Drive without the server requirements of a self-hosted asset manager such as our own MoxieManager.

2
plugins/comments.md

@ -37,7 +37,7 @@ Here is a demo to showcase the Comments functionality using storage configured t
We have used the following helper functions in our demo above:
* **setConversation(uid, conversation)**
`setConversation` is a function written to synchronously write a conversation to a form field for submission to the server later..
`setConversation` is a function written to synchronously write a conversation to a form field for submission to the server later.
* **randomString()**
`randomString()` is a function used in the `create` function to return a 62-bits random strings to provision a large number of UIDs.

Loading…
Cancel
Save