Skip to content

Commit 1708160

Browse files
authored
Merge pull request #559 from d45/d45/community
Adding Community Portal page
2 parents 2832bf7 + 0196cdc commit 1708160

31 files changed

+5027
-9
lines changed

website/docs/dashext/trex_examples.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ The best way to learn how to build your own extensions is to look at the sample
1111

1212
- You can also create dashboard extensions using TypeScript. See the TypeScript dashboard sample code in [Samples-TypeScript](https://github.com/tableau/extensions-api/tree/main/Samples-Typescript/Dashboard?=target="_blank") on GitHub.
1313

14-
<!-- - You can also check out the dashboard extensions from the community, see [Community Extensions](pathname:///community/).
15-
-->
14+
You can also check out the dashboard extensions from the community, see [Community Extensions](pathname:///community/).
15+
1616
---
1717

1818
The following instructions assume that you have already downloaded and extracted the files or have cloned the Extensions API SDK to your desktop.

website/docs/publish/trex_contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Contribute your extension to the Community
77
portal to share your work with other developers. To make it easier for others to use your extension,
88
we ask that you include a link to a hosted version of your extension. -->
99

10-
Submit your extension to the [Community Extension](https://github.com/tableau/extensions-api/tree/main/community)
10+
Submit your extension to the [Community Extension](pathname:///community)
1111
portal to share your work with other developers. To make it easier for others to use your extension,
1212
we ask that you include a link to a hosted version of your extension.
1313

website/docusaurus.config.js

+34-6
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ const getConfig = async () => {
101101
label: 'Tutorial',
102102
href: 'https://github.com/tableau/extensions-api/blob/main/Tutorial/Dashboard/readme.md',
103103
},
104-
/* {
104+
{
105105
label: 'Community Extensions',
106-
href: 'https://tableau.github.io/extensions-api/community/',
107-
} */
106+
to: 'pathname:///community',
107+
}
108108
/* {
109109
type: 'docSidebar',
110110
position: 'left',
@@ -167,10 +167,10 @@ const getConfig = async () => {
167167
label: 'Slack',
168168
href: 'https://join.slack.com/t/tableau-datadev/shared_invite/zt-1q4rrimsh-lHHKzrhid1MR4aMOkrnAFQ',
169169
},
170-
/* {
170+
{
171171
label: 'Community Extensions',
172-
href: 'https://tableau.github.io/extensions-api/community/',
173-
}, */
172+
to: 'pathname:///community',
173+
},
174174
],
175175
},
176176
{
@@ -216,6 +216,34 @@ const getConfig = async () => {
216216
anonymizeIP: true,
217217
},
218218
],
219+
220+
/* [
221+
'@docusaurus/plugin-client-redirects',
222+
{
223+
redirects: [
224+
// /docs/oldDoc -> /docs/newDoc
225+
// publish folder
226+
{
227+
to: '/docs/publish/trex_publish',
228+
from: '/docs/trex_publish',
229+
},
230+
{
231+
to: '/docs/publish/trex_contributing',
232+
from: '/docs/trex_contributing',
233+
},
234+
{
235+
to: '/docs/publish/trex_sandbox_publish',
236+
from: '/docs/trex_sandbox_publish',
237+
},
238+
// dashext folder
239+
{
240+
to: '/docs/dashext/trex_getstarted',
241+
from: '/docs/trex_getstarted',
242+
},
243+
],
244+
},
245+
], */
246+
219247
// '@cmfcmf/docusaurus-search-local',
220248
/* [
221249
require.resolve("@easyops-cn/docusaurus-search-local"),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
3+
<dashboard-extension id="com.tableau.extensions.beta.3dscatterplot" extension-version="0.6.0">
4+
<default-locale>en_US</default-locale>
5+
<name resource-id="name"/>
6+
<description>vis.js 3-D Scatter Plot</description>
7+
<author name="mantsui" email="[email protected]" organization="personal" website="https://www.linkedin.com/in/man-tsui-83840415/"/>
8+
<min-api-version>0.8</min-api-version>
9+
<source-location>
10+
<url>https://mantsui.github.io/Ext_visjs_3d_scatter</url>
11+
</source-location>
12+
<icon></icon>
13+
<context-menu>
14+
<configure-context-menu-item/>
15+
</context-menu>
16+
</dashboard-extension>
17+
<resources>
18+
<resource id="name">
19+
<text locale="en_US">3-D Scatter Plot</text>
20+
</resource>
21+
</resources>
22+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
3+
<dashboard-extension id="com.datablick.extension.d3.projections" extension-version="0.1.0">
4+
<default-locale>en_US</default-locale>
5+
<name resource-id="name"/>
6+
<description>d3.js Projections</description>
7+
<author name="DataBlick" email="[email protected]" organization="DataBlick" website="https://www.datablick.com"/>
8+
<min-api-version>1.1</min-api-version>
9+
<source-location>
10+
<url>https://demartsc.github.io/tableau-d3-projections-plugin/</url>
11+
</source-location>
12+
<icon></icon>
13+
<context-menu>
14+
<configure-context-menu-item />
15+
</context-menu>
16+
</dashboard-extension>
17+
<resources>
18+
<resource id="name">
19+
<text locale="en_US">d3.js Projections</text>
20+
</resource>
21+
</resources>
22+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
3+
<dashboard-extension id="com.tableau.extensions.beta.d3sankey" extension-version="0.6.0">
4+
<default-locale>en_US</default-locale>
5+
<name resource-id="name"/>
6+
<description>D3 Sankey</description>
7+
<author name="mantsui" email="[email protected]" organization="personal" website="https://www.linkedin.com/in/man-tsui-83840415/"/>
8+
<min-api-version>0.8</min-api-version>
9+
<source-location>
10+
<url>https://mantsui.github.io/Ext_D3_Sankey</url>
11+
</source-location>
12+
<icon></icon>
13+
<context-menu>
14+
<configure-context-menu-item/>
15+
</context-menu>
16+
</dashboard-extension>
17+
<resources>
18+
<resource id="name">
19+
<text locale="en_US">D3 Sankey</text>
20+
</resource>
21+
</resources>
22+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
3+
<dashboard-extension id="com.tableau.extensions.samples.filtering" extension-version="0.6.0">
4+
<default-locale>en_US</default-locale>
5+
<name resource-id="name"/>
6+
<description>D3 Zoomable Sunburst</description>
7+
<author name="mantsui" email="[email protected]" organization="personal" website="https://www.linkedin.com/in/man-tsui-83840415/"/>
8+
<min-api-version>0.8</min-api-version>
9+
<source-location>
10+
<url>https://mantsui.github.io/Ext_D3_Sunburst</url>
11+
</source-location>
12+
<icon></icon>
13+
<context-menu>
14+
<configure-context-menu-item/>
15+
</context-menu>
16+
</dashboard-extension>
17+
<resources>
18+
<resource id="name">
19+
<text locale="en_US">D3 Zoomable Sunburst</text>
20+
</resource>
21+
</resources>
22+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest manifest-version="0.1" xmlns="http://www.tableau.com/xml/extension_manifest">
3+
<dashboard-extension id="com.tableau.extensions.beta.d3treemap" extension-version="0.6.0">
4+
<default-locale>en_US</default-locale>
5+
<name resource-id="name"/>
6+
<description>D3 Zoomable Treemap</description>
7+
<author name="mantsui" email="[email protected]" organization="personal" website="https://www.linkedin.com/in/man-tsui-83840415/"/>
8+
<min-api-version>0.8</min-api-version>
9+
<source-location>
10+
<url>https://mantsui.github.io/Ext_D3_Treemap</url>
11+
</source-location>
12+
<icon></icon>
13+
<context-menu>
14+
<configure-context-menu-item/>
15+
</context-menu>
16+
</dashboard-extension>
17+
<resources>
18+
<resource id="name">
19+
<text locale="en_US">D3 Zoomable Treemap</text>
20+
</resource>
21+
</resources>
22+
</manifest>

0 commit comments

Comments
 (0)