Skip to content

Commit 2503591

Browse files
committed
New GA4 ID; redirects
1 parent e01c89b commit 2503591

File tree

4 files changed

+3022
-550
lines changed

4 files changed

+3022
-550
lines changed

website/docs/dashext/trex_examples.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ The [Samples-Typescript](https://github.com/tableau/extensions-api/tree/master/S
3939

4040
Finds and displays all the parameters in the dashboard and then sets an event listener that waits for a parameter to change, which triggers a refresh.
4141

42+
- **[PdfViewer (Typescript)](https://github.com/tableau/extensions-api/tree/master/Samples-Typescript/Dashboard/PdfViewer?=target="_blank")**
43+
44+
Demonstrates how to use Extensions API features, such as settings, configuration, and parameters in a Typescript application. The sample allows PDF files to be viewed in a networked dashboard extension.
45+
46+
4247
- **[Settings](https://github.com/tableau/extensions-api/tree/master/Samples/Dashboard/Settings?=target="_blank")**
4348

4449
Uses the `settings` namespace to save settings (key-value pairs) for the extension. Demonstrates how you can save settings for each instance of an extension, which enables sharing common views of a workbook.

website/docusaurus.config.js

Lines changed: 40 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -231,12 +231,12 @@ const getConfig = async () => {
231231
'@docusaurus/plugin-google-gtag',
232232
{
233233
// trackingID: 'UA-625217-51',
234-
trackingID: '376609887',
234+
trackingID: '469571326',
235235
anonymizeIP: true,
236236
},
237237
],
238238

239-
/* [
239+
[
240240
'@docusaurus/plugin-client-redirects',
241241
{
242242
redirects: [
@@ -246,22 +246,53 @@ const getConfig = async () => {
246246
to: '/docs/publish/trex_publish',
247247
from: '/docs/trex_publish',
248248
},
249-
{
250-
to: '/docs/publish/trex_contributing',
251-
from: '/docs/trex_contributing',
252-
},
253249
{
254250
to: '/docs/publish/trex_sandbox_publish',
255251
from: '/docs/trex_sandbox_publish',
256252
},
257-
// dashext folder
253+
// (portal page fix)
258254
{
259-
to: '/docs/dashext/trex_getstarted',
255+
to: '/docs',
260256
from: '/docs/trex_getstarted',
261257
},
258+
// (dev portal page fix)
259+
{
260+
to: '/docs/publish/trex_contributing',
261+
from: '/docs/trex_contributing',
262+
},
263+
// (dev portal page fix)
264+
{
265+
to: '/docs/security/trex_security',
266+
from: '/docs/trex_security',
267+
},
268+
// dev portal page fix
269+
{
270+
to: '/docs/debug/trex_debugging',
271+
from: '/docs/trex_debugging',
272+
},
273+
// dev portal page fix
274+
{
275+
to: '/docs/debug/trex_debug_server',
276+
from: '/docs/trex_debug_server',
277+
},
278+
// dev portal page fix
279+
{
280+
to: '/docs/debug/trex_logging',
281+
from: '/docs/trex_logging',
282+
},
283+
// dev portal page fix
284+
{
285+
to: '/docs/security/trex_xss_guidance',
286+
from: '/docs/trex_xss_guidance',
287+
},
288+
// dev portal page fix
289+
{
290+
to: '/docs/security/trex_sandbox_test',
291+
from: '/docs/trex_sandbox_test',
292+
},
262293
],
263294
},
264-
], */
295+
],
265296

266297
],
267298

website/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,12 @@
1919
},
2020
"dependencies": {
2121
"@babel/helper-explode-assignable-expression": "^7.18.6",
22-
"@docusaurus/core": "^3.4.0",
23-
"@docusaurus/plugin-google-tag-manager": "^3.4.0",
24-
"@docusaurus/preset-classic": "^3.4.0",
25-
"@docusaurus/theme-mermaid": "^3.4.0",
26-
"@docusaurus/utils-validation": "^3.4.0",
22+
"@docusaurus/core": "^3.7.0",
23+
"@docusaurus/plugin-client-redirects": "^3.7.0",
24+
"@docusaurus/plugin-google-tag-manager": "^3.7.0",
25+
"@docusaurus/preset-classic": "^3.7.0",
26+
"@docusaurus/theme-mermaid": "^3.7.0",
27+
"@docusaurus/utils-validation": "^3.7.0",
2728
"@easyops-cn/docusaurus-search-local": "^0.40.1",
2829
"@mdx-js/react": "^3.0.0",
2930
"clsx": "^1.2.1",
@@ -36,8 +37,8 @@
3637
"tslib": "^2.6.2"
3738
},
3839
"devDependencies": {
39-
"@docusaurus/module-type-aliases": "^3.4.0",
40-
"@docusaurus/types": "^3.4.0",
40+
"@docusaurus/module-type-aliases": "^3.7.0",
41+
"@docusaurus/types": "^3.7.0",
4142
"@tsconfig/docusaurus": "^1.0.5",
4243
"prettier": "^2.8.4",
4344
"ts-node": "^10.9.1",

0 commit comments

Comments
 (0)