Skip to content

Commit 50f0d41

Browse files
authored
Merge pull request #18 from abap2UI5/adjustements
update
2 parents b47adec + 121bcd3 commit 50f0d41

File tree

12 files changed

+43
-21
lines changed

12 files changed

+43
-21
lines changed

docs/.vitepress/config.mjs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,10 @@ export default defineConfig({
2020
themeConfig: {
2121
logo: '/logo.png',
2222
footer: {
23-
message: 'Released under the MIT License',
24-
copyright: '2023-present abap2UI5'
23+
message: `
24+
<a href="/docs/resources/license">License</a> |
25+
<a href="/docs/resources/contact">Contact</a>`,
26+
copyright: `Copyright © 2023-${new Date().getFullYear()} abap2UI5`,
2527
},
2628
editLink: {
2729
pattern: 'https://github.com/abap2UI5/abap2UI5-documentation/tree/main/docs/:path',
@@ -101,12 +103,13 @@ export default defineConfig({
101103
{ text: 'Translation, i18n', link: '/development/translation' },
102104
{ text: 'Popups, Popover', link: '/development/popups' },
103105
{ text: 'Specifics', collapsed : "false" , items: [
104-
{ text: 'Barcode Scanning', link: '/development/barcodes' },
105-
{ text: 'File Handling', link: '/development/files', },
106-
{ text: 'XLSX', link: '/development/xlsx', },
107-
{ text: 'Logging', link: '/development/logging' },
108-
{ text: 'Device Capabilities', link: '/development/ndc' },
109-
{ text: 'CDS, EML', link: '/development/cds' },
106+
{ text: 'Barcode Scanning', link: '/development/specific/barcodes' },
107+
{ text: 'File Handling', link: '/development/specific/files', },
108+
{ text: 'XLSX', link: '/development/specific/xlsx', },
109+
{ text: 'Logging', link: '/development/specific/logging' },
110+
{ text: 'Device Capabilities', link: '/development/specific/ndc' },
111+
{ text: 'Drag & Drop', link: '/development/specific/drag' },
112+
{ text: 'CDS, EML', link: '/development/specific/cds' },
110113
]
111114
},
112115
]
@@ -158,7 +161,7 @@ export default defineConfig({
158161
] },
159162
{ text: 'Technical Background', collapsed : "false" , link: '/advanced/insights/insights' , items: [
160163
{ text: 'General', link: '/advanced/insights/insights' },
161-
{ text: 'abaplint', link: '/advanced/insights/abaplint' },
164+
{ text: 'Linting', link: '/advanced/insights/linting' },
162165
{ text: 'open-abap', link: '/advanced/insights/open_abap' },
163166
]
164167
},
@@ -171,9 +174,10 @@ export default defineConfig({
171174
items: [
172175
{ text: 'Changelog', link: '/resources/changelog' },
173176
{ text: 'Blogs', link: '/resources/blogs' },
174-
{ text: 'References', link: '/resources/references' },
175177
{ text: 'License', link: '/resources/license' },
178+
{ text: 'Contact', link: '/resources/contact' },
176179
{ text: 'Community', items: [
180+
{ text: 'References', link: '/resources/references' },
177181
{ text: 'Support', link: '/resources/support' },
178182
{ text: 'Contribution', link: '/resources/contribution' },
179183
{ text: 'Sponsor', link: '/resources/sponsor' },
@@ -182,14 +186,10 @@ export default defineConfig({
182186
]
183187
}
184188
],
189+
outline: [2,6],
185190
socialLinks: [
186191
{ icon: 'linkedin', link: 'https://www.linkedin.com/company/abap2ui5/' },
187192
{ icon: 'github', link: 'https://www.github.com/abap2UI5/abap2UI5' },
188-
189193
]
190194
},
191-
// Aktiviert den "On This Page"-Bereich
192-
outline: {
193-
level: [2,6]
194-
}
195195
})
Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
---
22
outline: [2, 4]
33
---
4-
# abaplint
4+
# Linting
5+
6+
The frontend JS code and the backend abap code are static code checked with every PR.
7+
8+
### abaplint
59

610
The project uses [abaplint](https://abaplint.app/) for static code analysis, ensuring code quality and adherence to ABAP best practices.
711

8-
### Configuration
12+
#### Configuration
913
You can review the project-specific abaplint configuration [here.](https://github.com/abap2UI5/abap2UI5/blob/main/ci/abaplint/abaplint.jsonc)
1014

11-
### Dashboard
15+
#### Dashboard
1216
All statistics and results from the abaplint analysis are available on the abaplint dashboard [here.](https://abaplint.app/stats/abap2UI5/abap2UI5)
1317

18+
### ui5lint
19+
20+
The project uses the [ui5linter]((https://github.com/SAP/ui5-linter)) for static code analysis of frontend artifacts. The linter checks for issues such as deprecated API usage and ensures compatibility with UI5 2.x.
21+
22+
#### Configuration
23+
The default configuration is applied.

docs/development/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ METHOD z2ui5_if_app~main.
119119
ENDMETHOD.
120120
```
121121

122-
::: tipp
123-
This is just a demonstration. In this case, it would be easier to access `mv_name` directly since it’s automatically updated by the framework.
122+
::: tip
123+
This is just a demonstration. In this case, it would be easier to access `name` directly since it’s automatically updated by the framework.
124124
:::
125125

126126
### Frontend
File renamed without changes.
File renamed without changes.

docs/development/specific/drag.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Drag & Drop
2+
3+
With abap2UI5 you can leverages the drag-and-drop events of UI5 controls. To learn more, explore the sample `z2ui5_cl_demo_app_307`.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)