Skip to content

Commit 8cee724

Browse files
authored
update
1 parent f3b0f4b commit 8cee724

File tree

2 files changed

+26
-30
lines changed

2 files changed

+26
-30
lines changed

docs/.vitepress/config.mjs

Lines changed: 24 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default defineConfig({
1818
{ text: 'Getting Started', link: '/get_started/quickstart' },
1919
{ text: 'Development', link: '/' },
2020
{ text: 'Administration', link: '/' },
21+
{ text: 'More', link: '/' },
2122
{ text: 'Resources', link: '/resources/blogs' }
2223
],
2324
sidebar: [
@@ -40,42 +41,47 @@ export default defineConfig({
4041
text: 'Development',
4142
collapsed: true,
4243
items: [
43-
{ text: 'Basics', link: '/features/faq' },
44+
{ text: 'Basics', collapsed: true , items: [
45+
{ text: 'Theme', link: '/get_started/configuration#theme' },
46+
{ text: 'UI5 Bootstrapping', link: '/get_started/configuration#ui5-bootstrapping' },
47+
{ text: 'CSP', link: '/get_started/configuration#Content-Security-Policy' },
48+
{ text: 'Title', link: '/get_started/configuration#title' }
49+
]},
4450
{ text: 'Debugging', link: '/features/' },
4551
{ text: 'Localization, i18n', link: '/features/' },
4652
{ text: 'Stateful Sessions', link: '/features/' },
4753
{
48-
text: 'Addons', collapsed: false, items: [
54+
text: 'Addons', items: [
4955
{ text: 'Custom Controls', link: '/markdown-examples' },
5056
{ text: 'Popups', link: '/api-examples' },
51-
{ text: 'Layout & Variants', link: '/api-examples' },
57+
{ text: 'Layouts & Variants', link: '/api-examples' },
58+
]
59+
},
60+
{
61+
text: 'Extensibility',
62+
items: [
63+
{ text: 'Custom JS', link: '/features/' },
64+
{ text: 'Custom Controls', link: '/features/' },
65+
{ text: 'External Libraries', link: '/features/' },
5266
]
5367
},
54-
]
55-
},
56-
{
57-
text: 'Extensibility',
58-
collapsed: true,
59-
items: [
60-
{ text: 'Custom Controls', link: '/features/' },
61-
{ text: 'External Libraries', link: '/features/' },
6268
]
6369
},
6470
{
6571
text: 'Administration',
6672
collapsed: true,
6773
items: [
68-
{ text: 'Configuration', collapsed: true , items: [
74+
{ text: 'Basics', collapsed: true , items: [
6975
{ text: 'Theme', link: '/get_started/configuration#theme' },
7076
{ text: 'UI5 Bootstrapping', link: '/get_started/configuration#ui5-bootstrapping' },
7177
{ text: 'CSP', link: '/get_started/configuration#Content-Security-Policy' },
7278
{ text: 'Title', link: '/get_started/configuration#title' }
7379
]},
74-
{ text: 'Fiori Launchpad', link: '/features/' },
75-
{ text: 'Productive Usage', link: '/features/' },
7680
{ text: 'Performance', link: '/features/faq' },
7781
{ text: 'Security', link: '/features/faq' },
82+
{ text: 'Productive Usage', link: '/features/' },
7883
{ text: 'UI5 Framework', link: '/features/faq' },
84+
{ text: 'Fiori Launchpad', link: '/features/' },
7985
{
8086
text: 'Setup',
8187
items: [
@@ -87,24 +93,14 @@ export default defineConfig({
8793
}
8894
]
8995
},
90-
// {
91-
// text: 'Technical Details',
92-
// collapsed: true,
93-
// items: [
94-
// { text: 'Communication', link: '/features/' },
95-
// { text: 'Persistence', link: '/features/' },
96-
// { text: 'Data Binding', link: '/features/' },
97-
// { text: 'User Interface', link: '/features/faq' },
98-
// ]
99-
// },
10096
{
10197
text: 'More Features',
10298
collapsed: true,
10399
items: [
104-
{ text: 'BTP Workzone', link: '/features/' },
105-
{ text: 'Remotely App Call', link: '/features/' },
106-
{ text: 'Downporting', link: '/features/' },
107-
{ text: 'Multiple Installations', link: '/features/' },
100+
{ text: 'BTP Workzone', link: '/features/' },
101+
{ text: 'Remotely App Call', link: '/features/' },
102+
{ text: 'Downporting', link: '/features/' },
103+
{ text: 'Renaming', link: '/features/' },
108104
]
109105
},
110106
{

docs/get_started/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Create a new HTTP Service with the following handler implementation:
1515
```abap
1616
CLASS zcl_my_handler_onprem DEFINITION
1717
PUBLIC
18-
CREATE PUBLIC .
18+
CREATE PUBLIC.
1919
2020
PUBLIC SECTION.
2121
INTERFACES if_http_extension.
@@ -37,7 +37,7 @@ ENDCLASS.
3737
```abap
3838
CLASS zcl_my_handler_cloud DEFINITION
3939
PUBLIC
40-
CREATE PUBLIC .
40+
CREATE PUBLIC.
4141
4242
PUBLIC SECTION.
4343
INTERFACES if_http_service_extension.

0 commit comments

Comments
 (0)