-
Notifications
You must be signed in to change notification settings - Fork 77
[DOMA] add longtexts #743
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[DOMA] add longtexts #743
Changes from 24 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
2241145
DOMA: add longtexts
larshp 4c7f1d0
update
larshp efd1820
add to domain
larshp f6975c5
rename
larshp eaf1b89
update
larshp 9f67e91
Merge branch 'main' into hvam/doma1303
larshp c8537f9
Merge branch 'main' into hvam/doma1303
larshp af0b3b3
Merge branch 'main' into hvam/doma1303
larshp bd9374a
Merge branch 'main' into hvam/doma1303
albertmink 658cd9c
Merge branch 'main' into hvam/doma1303
larshp eb9e365
Merge branch 'main' into hvam/doma1303
schneidermic0 35f03e9
cleanup
larshp 29762ef
wip
larshp 4945951
update
larshp fbbb347
fix
larshp c68e17f
exclude
larshp 35f22ea
update example
larshp a5dccd8
Merge branch 'main' into hvam/doma1303
larshp 6e1bf69
fix
larshp 32d485e
test
larshp e46141d
fix
larshp 2460001
Merge branch 'main' into hvam/doma1303
larshp c98ca26
Merge branch 'main' into hvam/doma1303
larshp ec91423
rename files
larshp eee3d3e
Update title/description
schneidermic0 e1afba4
Update title/description
schneidermic0 41b38d4
Merge branch 'main' into hvam/doma1303
larshp 76bb6f1
Merge branch 'main' into hvam/doma1303
schneidermic0 ae7ea06
Merge branch 'main' into hvam/doma1303
larshp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| { | ||
| "$comment": "This file is autogenerated, do not edit manually, see https://github.com/SAP/abap-file-formats for more information.", | ||
| "$schema": "https://json-schema.org/draft/2020-12/schema", | ||
| "$id": "https://github.com/SAP/abap-file-formats/blob/main/file-formats/longtexts-v1.json", | ||
| "title": "ABAP Daemon", | ||
| "description": "ABAP daemon", | ||
| "type": "object", | ||
| "properties": { | ||
| "formatVersion": { | ||
| "title": "ABAP File Format Version", | ||
| "description": "The ABAP file format version", | ||
| "type": "string", | ||
| "const": "1" | ||
|
albertmink marked this conversation as resolved.
|
||
| }, | ||
| "lines": { | ||
| "title": "Start Type", | ||
| "description": "Start type", | ||
| "type": "array", | ||
| "items": { | ||
| "title": "Long Text Line", | ||
| "description": "Long text line with format and content", | ||
| "type": "object", | ||
| "properties": { | ||
| "format": { | ||
| "title": "Format", | ||
| "description": "Paragraph format, max. length 2", | ||
| "type": "string", | ||
| "maxLength": 2 | ||
| }, | ||
| "line": { | ||
| "title": "Line", | ||
| "description": "Long text line content, max. length 72", | ||
| "type": "string", | ||
| "maxLength": 72 | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "required": [ | ||
| "format", | ||
| "line" | ||
| ] | ||
| } | ||
| } | ||
| }, | ||
| "additionalProperties": false, | ||
| "required": [ | ||
| "formatVersion" | ||
| ] | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| { | ||
| "formatVersion": "1", | ||
| "lines": [ | ||
| { | ||
| "format": "P1", | ||
| "line": "This is an example long text for the domain Z_AFF_EXAMPLE." | ||
| }, | ||
| { | ||
| "format": "P1", | ||
| "line": "It describes the meaning and usage of the domain values." | ||
| } | ||
| ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| "! <p class="shorttext synchronized" lang="en">Long text types</p> | ||
| "! Types for AFF long texts | ||
| INTERFACE zif_aff_docu_v1 PUBLIC. | ||
|
|
||
| TYPES: | ||
| "! <p class="shorttext">Long Text Line</p> | ||
| "! Long text line with format and content | ||
| BEGIN OF ty_line, | ||
| "! <p class="shorttext">Format</p> | ||
| "! Paragraph format, max. length 2 | ||
| "! $required | ||
| format TYPE c LENGTH 2, | ||
| "! <p class="shorttext">Line</p> | ||
| "! Long text line content, max. length 72 | ||
| "! $required | ||
| line TYPE c LENGTH 72, | ||
| END OF ty_line, | ||
| "! <p class="shorttext">Long Text Lines</p> | ||
| "! Long text lines | ||
| ty_lines TYPE STANDARD TABLE OF ty_line WITH DEFAULT KEY. | ||
|
|
||
| TYPES: | ||
| "! <p class="shorttext">ABAP Daemon</p> | ||
| "! ABAP daemon | ||
|
schneidermic0 marked this conversation as resolved.
Outdated
|
||
| BEGIN OF ty_main, | ||
| "! $required | ||
| format_version TYPE zif_aff_types_v1=>ty_format_version, | ||
| "! <p class="shorttext">Start Type</p> | ||
| "! Start type | ||
| lines TYPE ty_lines, | ||
| END OF ty_main. | ||
|
|
||
| ENDINTERFACE. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "formatVersion": "1", | ||
| "header": { | ||
| "description": "Common types for longtexts", | ||
| "originalLanguage": "en" | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.