Skip to content

Commit

Permalink
Merge branch 'main' into remove/notebookDownloadButton
Browse files Browse the repository at this point in the history
  • Loading branch information
joergmann authored Dec 3, 2024
2 parents bfc2ad0 + 0f6d1db commit 6709f59
Show file tree
Hide file tree
Showing 25 changed files with 315 additions and 346 deletions.
3 changes: 2 additions & 1 deletion .vitepress/theme/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@

--vp-c-text-1: #000;
h1, h2, h3, h4, h5 { color: rgba(60, 60, 67) }
h6 { color: transparent; position: absolute; margin-top: -7.7em; right: 0px; } // we use h6 for alternative anchor targets


/* inverts image colors in dark mode */
Expand Down Expand Up @@ -346,7 +347,7 @@ main {
.prefer::before { content: 'Prefer: '; color: #0a0 }
.avoid::before { content: 'Avoid: '; color: #e00 }

.good .green { color:#0a0 };
.good, .green { color:#0a0 };
.bad, .red, .important { color:darkred; .dark & { color:#e00 } }
.grey { color:#777 };

Expand Down
50 changes: 25 additions & 25 deletions about/bad-practices.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,31 +66,31 @@ Alternative frameworks or toolsets follow code generation approaches. Swagger do

<span class="centered">

| Feature | Swagger | CAP |
|--------------------------------------|:----------------------------------------------------:|:-----------------------------------------:|
| Lines of code for service definition | **~555**{.h3} <br/>written in YAML {.red} | **~11**{.h3} <br/>written in CDS {.green} |
| Lines of code for implementation | **~500**{.h3} <br/>generated <br/>boilerplate {.red} | **0**{.h3} {.green} |
| Size of framework library | 16 MB {.red} | 10 MB {.green} |
| CRUDQ served on DB, including... | | |
| Deep Reads & Writes | | |
| Deep Hierarchies | | |
| Aggregations | | |
| Pagination | | |
| Sorting | | |
| Search | | |
| Filtering | | |
| Primary Keys | | |
| Access Control | | |
| Localized Data | | |
| Managed Data | | |
| Media Data | | |
| Temporal Data | | |
| Fiori Draft Handling | | |
| Exclusive Locking | | |
| Conflict Detection (via ETags) | | |
| Data Replication (upcomming) | | |
| Data Privacy | | |
| ... | | |
| Feature | Swagger | CAP |
|--------------------------------------|:--------------------:|:---------------------:|
| Lines of code for service definition | **~555**{.h3}{.red} | **~11**{.h3} {.green} |
| Lines of code for implementation | **~500**{.h3} {.red} | **0**{.h3} {.green} |
| Size of framework library | 16 MB {.red} | 10 MB {.green} |
| CRUDQ served on DB, including... | | &check; |
| Deep Reads & Writes | | &check; |
| Deep Hierarchies | | &check; |
| Aggregations | | &check; |
| Pagination | | &check; |
| Sorting | | &check; |
| Search | | &check; |
| Filtering | | &check; |
| Primary Keys | | &check; |
| Access Control | | &check; |
| Localized Data | | &check; |
| Managed Data | | &check; |
| Media Data | | &check; |
| Temporal Data | | &check; |
| Fiori Draft Handling | | &check; |
| Exclusive Locking | | &check; |
| Conflict Detection (via ETags) | | &check; |
| Data Replication (upcomming) | | &check; |
| Data Privacy | | &check; |
| ... | | &check; |

</span>

Expand Down
Loading

0 comments on commit 6709f59

Please sign in to comment.