Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/clean-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
SSH_KEY: ${{ secrets.IOTDB_WEBSITE_BUILD_SSH }}
run: |
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "$SSH_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
- name: Checkout iotdb-website repository
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/site-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
run: pnpm build

- name: Deploy staging website
if: contains(github.event.pull_request.labels.*.name, 'deploy-staging')
env:
SSH_KEY: ${{ secrets.IOTDB_WEBSITE_BUILD_SSH }}
run: |
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "$SSH_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
git config --global user.name github-actions
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
Expand Down Expand Up @@ -103,8 +104,8 @@ jobs:
SSH_KEY: ${{ secrets.IOTDB_WEBSITE_BUILD_SSH }}
run: |
mkdir -p ~/.ssh
echo "$SSH_KEY" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
echo "$SSH_KEY" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
git config --global user.name github-actions
git config --global user.email 41898282+github-actions[bot]@users.noreply.github.com
Expand Down
14 changes: 7 additions & 7 deletions src/.vuepress/sidebar/V2.0.x/en-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,16 @@ export const enSidebar = {
collapsible: true,
prefix: 'Basic-Concept/',
children: [
{ text: 'Database Management', link: 'Database-Management' },
{ text: 'Table Management', link: 'Table-Management' },
{ text: 'Database Management', link: 'Database-Management_apache' },
{ text: 'Table Management', link: 'Table-Management_apache' },
{ text: 'Write&Updata Data', link: 'Write-Updata-Data_apache' },
{ text: 'Query Data', link: 'Query-Data_apache' },
{
text: 'Delete Data',
collapsible: true,
children: [
{ text: 'Delete Data', link: 'Delete-Data' },
{ text: 'TTL Delete Data', link: 'TTL-Delete-Data' },
{ text: 'TTL Delete Data', link: 'TTL-Delete-Data_apache' },
{ text: 'SpaceTL Delete Data', link: 'SpaceTL-Delete' },
],
},
Expand All @@ -114,14 +114,14 @@ export const enSidebar = {
{ text: 'Authority Management', link: 'Authority-Management_apache' },
],
},
{ text: 'Tree-to-Table Mapping', link: 'Tree-to-Table' },
{ text: 'Tree-to-Table Mapping', link: 'Tree-to-Table_apache' },
{
text: 'System Maintenance',
collapsible: true,
children: [
{ text: 'Query Performance Analysis', link: 'Query-Performance-Analysis' },
{ text: 'Cluster Maintenance', link: 'Load-Balance' },
{ text: 'Maintenance statement', link: 'Maintenance-commands' },
{ text: 'Maintenance statement', link: 'Maintenance-commands_apache' },
],
},
],
Expand Down Expand Up @@ -212,7 +212,7 @@ export const enSidebar = {
collapsible: true,
prefix: 'SQL-Manual/',
children: [
{ text: 'Metadata Operations', link: 'SQL-Metadata-Operations' },
{ text: 'Metadata Operations', link: 'SQL-Metadata-Operations_apache' },
{ text: 'Data Addition&Deletion', link: 'SQL-Data-Addition-Deletion_apache' },
{
text: 'Data Query',
Expand Down Expand Up @@ -261,7 +261,7 @@ export const enSidebar = {
{ text: 'Sample Data', link: 'Sample-Data' },
{ text: 'Config Manual', link: 'System-Config-Manual' },
{ text: 'Status Codes', link: 'Status-Codes' },
{ text: 'System Tables', link: 'System-Tables' },
{ text: 'System Tables', link: 'System-Tables_apache' },
],
},
{
Expand Down
14 changes: 7 additions & 7 deletions src/.vuepress/sidebar/V2.0.x/zh-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,16 +85,16 @@ export const zhSidebar = {
collapsible: true,
prefix: 'Basic-Concept/',
children: [
{ text: '数据库管理', link: 'Database-Management' },
{ text: '表管理', link: 'Table-Management' },
{ text: '数据库管理', link: 'Database-Management_apache' },
{ text: '表管理', link: 'Table-Management_apache' },
{ text: '写入&更新', link: 'Write-Updata-Data_apache' },
{ text: '数据查询', link: 'Query-Data_apache' },
{
text: '数据删除',
collapsible: true,
children: [
{ text: '数据删除', link: 'Delete-Data' },
{ text: '数据保留时间', link: 'TTL-Delete-Data' },
{ text: '数据保留时间', link: 'TTL-Delete-Data_apache' },
{ text: 'SpaceTL 删除', link: 'SpaceTL-Delete' },
],
},
Expand All @@ -112,14 +112,14 @@ export const zhSidebar = {
collapsible: true,
children: [{ text: '权限管理', link: 'Authority-Management_apache' }],
},
{ text: '树转表视图', link: 'Tree-to-Table' },
{ text: '树转表视图', link: 'Tree-to-Table_apache' },
{
text: '系统运维',
collapsible: true,
children: [
{ text: '查询性能分析', link: 'Query-Performance-Analysis' },
{ text: '集群维护', link: 'Load-Balance' },
{ text: '运维语句', link: 'Maintenance-statement' },
{ text: '运维语句', link: 'Maintenance-statement_apache' },
],
},
],
Expand Down Expand Up @@ -209,7 +209,7 @@ export const zhSidebar = {
collapsible: true,
prefix: 'SQL-Manual/',
children: [
{ text: '元数据操作', link: 'SQL-Metadata-Operations' },
{ text: '元数据操作', link: 'SQL-Metadata-Operations_apache' },
{ text: '数据增删', link: 'SQL-Data-Addition-Deletion_apache' },
{
text: '数据查询',
Expand Down Expand Up @@ -258,7 +258,7 @@ export const zhSidebar = {
{ text: '示例数据', link: 'Sample-Data' },
{ text: '配置参数', link: 'System-Config-Manual' },
{ text: '状态码', link: 'Status-Codes' },
{ text: '系统表', link: 'System-Tables' },
{ text: '系统表', link: 'System-Tables_apache' },
],
},
{
Expand Down
14 changes: 7 additions & 7 deletions src/.vuepress/sidebar_timecho/V2.0.x/en-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,16 +102,16 @@ export const enSidebar = {
collapsible: true,
prefix: 'Basic-Concept/',
children: [
{ text: 'Database Management', link: 'Database-Management' },
{ text: 'Table Management', link: 'Table-Management' },
{ text: 'Database Management', link: 'Database-Management_timecho' },
{ text: 'Table Management', link: 'Table-Management_timecho' },
{ text: 'Write&Updata Data', link: 'Write-Updata-Data_timecho' },
{ text: 'Query Data', link: 'Query-Data_timecho' },
{
text: 'Delete Data',
collapsible: true,
children: [
{ text: 'Delete Data', link: 'Delete-Data' },
{ text: 'TTL Delete Data', link: 'TTL-Delete-Data' },
{ text: 'TTL Delete Data', link: 'TTL-Delete-Data_timecho' },
{ text: 'SpaceTL Delete Data', link: 'SpaceTL-Delete' },
],
},
Expand All @@ -133,15 +133,15 @@ export const enSidebar = {
],
},
{ text: 'Tiered Storage', link: 'Tiered-Storage_timecho' },
{ text: 'Tree-to-Table Mapping', link: 'Tree-to-Table' },
{ text: 'Tree-to-Table Mapping', link: 'Tree-to-Table_timecho' },
{ text: 'Timeseries Featured Analysis', link: 'Timeseries-Featured-Analysis_timecho' },
{
text: 'System Maintenance',
collapsible: true,
children: [
{ text: 'Query Performance Analysis', link: 'Query-Performance-Analysis' },
{ text: 'Cluster Maintenance', link: 'Load-Balance' },
{ text: 'Maintenance statement', link: 'Maintenance-commands' },
{ text: 'Maintenance statement', link: 'Maintenance-commands_timecho' },
],
},
],
Expand Down Expand Up @@ -232,7 +232,7 @@ export const enSidebar = {
collapsible: true,
prefix: 'SQL-Manual/',
children: [
{ text: 'Metadata Operations', link: 'SQL-Metadata-Operations' },
{ text: 'Metadata Operations', link: 'SQL-Metadata-Operations_timecho' },
{ text: 'Data Addition&Deletion', link: 'SQL-Data-Addition-Deletion_timecho' },
{
text: 'Data Query',
Expand Down Expand Up @@ -282,7 +282,7 @@ export const enSidebar = {
{ text: 'Sample Data', link: 'Sample-Data' },
{ text: 'Config Manual', link: 'System-Config-Manual' },
{ text: 'Status Codes', link: 'Status-Codes' },
{ text: 'System Tables', link: 'System-Tables' },
{ text: 'System Tables', link: 'System-Tables_timecho' },
],
},
{
Expand Down
14 changes: 7 additions & 7 deletions src/.vuepress/sidebar_timecho/V2.0.x/zh-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,16 @@ export const zhSidebar = {
collapsible: true,
prefix: 'Basic-Concept/',
children: [
{ text: '数据库管理', link: 'Database-Management' },
{ text: '表管理', link: 'Table-Management' },
{ text: '数据库管理', link: 'Database-Management_timecho' },
{ text: '表管理', link: 'Table-Management_timecho' },
{ text: '写入&更新', link: 'Write-Updata-Data_timecho' },
{ text: '数据查询', link: 'Query-Data_timecho' },
{
text: '数据删除',
collapsible: true,
children: [
{ text: '数据删除', link: 'Delete-Data' },
{ text: '数据保留时间', link: 'TTL-Delete-Data' },
{ text: '数据保留时间', link: 'TTL-Delete-Data_timecho' },
{ text: 'SpaceTL 删除', link: 'SpaceTL-Delete' },
],
},
Expand All @@ -124,15 +124,15 @@ export const zhSidebar = {
],
},
{ text: '多级存储', link: 'Tiered-Storage_timecho' },
{ text: '树转表视图', link: 'Tree-to-Table' },
{ text: '树转表视图', link: 'Tree-to-Table_timecho' },
{ text: '时序特色分析', link: 'Timeseries-Featured-Analysis_timecho' },
{
text: '系统运维',
collapsible: true,
children: [
{ text: '查询性能分析', link: 'Query-Performance-Analysis' },
{ text: '集群维护', link: 'Load-Balance' },
{ text: '运维语句', link: 'Maintenance-statement' },
{ text: '运维语句', link: 'Maintenance-statement_timecho' },
],
},
],
Expand Down Expand Up @@ -223,7 +223,7 @@ export const zhSidebar = {
collapsible: true,
prefix: 'SQL-Manual/',
children: [
{ text: '元数据操作', link: 'SQL-Metadata-Operations' },
{ text: '元数据操作', link: 'SQL-Metadata-Operations_timecho' },
{ text: '数据增删', link: 'SQL-Data-Addition-Deletion_timecho' },
{
text: '数据查询',
Expand Down Expand Up @@ -273,7 +273,7 @@ export const zhSidebar = {
{ text: '示例数据', link: 'Sample-Data' },
{ text: '配置参数', link: 'System-Config-Manual' },
{ text: '状态码', link: 'Status-Codes' },
{ text: '系统表', link: 'System-Tables' },
{ text: '系统表', link: 'System-Tables_timecho' },
],
},
{
Expand Down
Loading