diff --git a/website/docs/security/trex_sandbox_test.md b/website/docs/security/trex_sandbox_test.md index 70fa1020..7a6bea48 100644 --- a/website/docs/security/trex_sandbox_test.md +++ b/website/docs/security/trex_sandbox_test.md @@ -3,10 +3,10 @@ title: Create and Test Sandboxed Extensions description: Create and test sandboxed extensions --- -To provide security for customers, Tableau supports a type of dashboard or viz extension that runs in a sandbox. These Sandboxed Extensions are hosted by Tableau and employ W3C standards, such as Content Security Policy (CSP), to ensure the extension can't make network calls outside of the hosting Tableau Server. This means a Sandboxed Extension can query data in the workbook using the Extensions API, but it can't send that data anywhere outside of the sandbox. This topic provides information to help you get started creating and testing Sandboxed Extensions. +To provide security for customers, Tableau supports a type of dashboard or viz extension that runs in a sandbox. These Sandboxed Extensions are hosted by Tableau and use W3C standards, such as Content Security Policy (CSP), to ensure the extension can't make network calls outside the hosting Tableau Server. This means a Sandboxed Extension can query data in the workbook using the Extensions API, but it can't send that data anywhere outside the sandbox. The results of the query are on the client computer (in the browser) and can't be sent anywhere. This topic provides information to help you get started creating and testing Sandboxed Extensions. :::note -If your extension requires resources of outside services, you should not create a Sandboxed Extension. Dashboard and viz extensions that don't run in the sandbox environment are called Network Enabled Extensions. While Sandboxed Extensions are allowed to run by default on Tableau Server and Tableau Cloud, Network Enabled Extensions require server and site administrator approval and need to be added to safe list for a site. +If your extension requires resources of outside services, you shouldn't create a Sandboxed Extension. Dashboard and viz extensions that don't run in the sandbox environment are called Network Enabled Extensions. While Sandboxed Extensions are allowed to run by default on Tableau Server and Tableau Cloud, Network Enabled Extensions require server and site administrator approval and must be added to safe list for a site. ::: --- diff --git a/website/static/api/index.html b/website/static/api/index.html index db70f41c..2897fb6f 100644 --- a/website/static/api/index.html +++ b/website/static/api/index.html @@ -6,7 +6,7 @@ Tableau Extensions - +
@@ -69,7 +69,7 @@

Tableau Extensions API

the classes and methods for communicating with Tableau components. The Tableau Extensions API library supports both dashboard extensions and viz extensions (only available in beta), although not all interfaces and methods apply to both extensions. For an overview of how the API is organized, - see Tableau Extensions API Basics.

+ see Tableau Extensions API Basics.

Note: To see all the methods and properties for the Extensions API interfaces, select the Inherited option in the upper-right corner of your browser window. This option shows any methods and properties inherited from base classes.
@@ -113,15 +113,15 @@

Tableau Extensions API

Dashboard extensions

The following diagram shows the relationship between the extensions namespace and the worksheets in - the dashboard. For more information, see Tableau Extensions API Basics.

-

Extensions API namespace hierarchy

+ the dashboard. For more information, see Tableau Extensions API Basics.

+

Extensions API namespace hierarchy


-

Viz extensions (available in beta only)

+

Viz extensions

The following diagram shows the relationship between the extensions namespace and the worksheets in - the workbook. For more information, see Tableau Extensions API Basics.

-

Viz Extensions API namespace hierarchy

+ the workbook. For more information, see Tableau Extensions API Basics.

+

Viz Extensions API namespace hierarchy


diff --git a/website/static/img/tab_ext_class_worksheet.png b/website/static/img/tab_ext_class_worksheet.png new file mode 100644 index 00000000..1fc384db Binary files /dev/null and b/website/static/img/tab_ext_class_worksheet.png differ