Skip to content

Commit c2ccfbe

Browse files
authored
update
1 parent 32d9245 commit c2ccfbe

File tree

4 files changed

+199
-2
lines changed

4 files changed

+199
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

package-lock.json

+165
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "abap2ui5-samples",
3+
"private": true,
4+
"version": "1.0.0",
5+
"description": "abap2UI5-local",
6+
"scripts": {
7+
"syfixes": "find . -type f -name '*.abap' -exec sed -i -e 's/ RAISE EXCEPTION TYPE cx_sy_itab_line_not_found/ ASSERT 1 = 0/g' {} + ",
8+
"downport": "abaplint --fix .github/abaplint/abap_702.jsonc && npm run syfixes && cp -f .github/abaplint/abap_702.jsonc abaplint.jsonc",
9+
"init_downport": "git clone --branch 702 https://github.com/abap2UI5/abap2UI5 && cp -r abap2UI5/src src",
10+
"cleanup_downport": "rm -rf abap2UI5 && rm -rf src/src"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/abap2UI5/samples.git"
15+
},
16+
"license": "MIT",
17+
"bugs": {
18+
"url": "https://github.com/abap2UI5/samples.git"
19+
},
20+
"homepage": "https://github.com/abap2UI5/samples#readme",
21+
"devDependencies": {
22+
"@abaplint/cli": "^2.113.86",
23+
"@abaplint/database-sqlite": "^2.10.20",
24+
"@abaplint/runtime": "^2.10.23",
25+
"@abaplint/transpiler-cli": "^2.10.23"
26+
},
27+
"dependencies": {
28+
"abapmerge": "^0.16.6",
29+
"npm-check-updates": "^17.1.13"
30+
}
31+
}

src/zabap2ui5.prog.abap

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
REPORT zabap2ui5 LINE-SIZE 100.
22

3-
CLASS zcl_abap2ui5_standalone DEFINITION FINAL CREATE PUBLIC.
3+
CLASS zcl_abap2ui5_local DEFINITION FINAL CREATE PUBLIC.
44

55
PUBLIC SECTION.
66
INTERFACES if_http_extension.
@@ -9,7 +9,7 @@ CLASS zcl_abap2ui5_standalone DEFINITION FINAL CREATE PUBLIC.
99
PRIVATE SECTION.
1010
ENDCLASS.
1111

12-
CLASS zcl_abap2ui5_standalone IMPLEMENTATION.
12+
CLASS zcl_abap2ui5_local IMPLEMENTATION.
1313

1414
METHOD if_http_extension~handle_request.
1515

0 commit comments

Comments
 (0)