Marc Bernard
Marc Bernard
Nice to have... Renaming local classes is only necessary if there's a naming conflict. In abapGit, the local classes actually have unique names, so merge would work without renaming. Maybe...
Some of the constants have the same values. Therefore the case block doesn't work correctly: https://github.com/abapGit/abapGit/blob/463f112c85001b964c8cb40162bd066f48affc16/src/objects/tabl/zcl_abapgit_object_tabl_ddl.clas.abap#L157-L164 @larshp
What's the point of this "self-dependency" that's not a valid range definition? https://github.com/thysultan/stylis/blob/b8c0878307ce600c7ec5082f5f940febf663a722/package.json#L51 I suggest removing it
Hi Paul, I used your repo for an extended test of abapGit 🧪 (I do that with many ABAP open-source projects but haven't gotten to yours, yet). Since you have...
### Issue description Over 500 open source packages are listed but abapGit is missing https://support.sap.com/content/dam/launchpad/en_us/osln/osln/73554900100900008093_20240117061308.pdf Please add it ### Feedback Type (Optional) content gaps ### Page Title on SAP Help...
Thanks for including abapGit! This just clarifies which version is installed and replaces the link to the installation guide with upgrade instructions.
The password popup is referenced in two places: - `ZABAPLINT_CONFIG` - `ZABAPLINT_DEPENDENCIES` It seems the first can be removed completely: ```abap REPORT zabaplint_config. *TABLES sscrfields. *INCLUDE zabapgit_password_dialog. *INCLUDE zabapgit_forms. *INITIALIZATION....
"Web version" is not able to load dependencies. Therefore, objects that rely on dependencies are marked with errors. For example, in abapGit:  Missing dependencies:  The "not found" errors...
I'm trying to parse https://raw.githubusercontent.com/abapedia/steampunk-2305-api/main/src/_status.json with AJSON. ```json { "clas,/dmo/cx_rap_generator": { "status": "RELEASED", "successors": [] }, "clas,/iwbep/cl_cp_factory_remote": { "status": "RELEASED", "successors": [] }, "clas,/iwbep/cl_cp_factory_unit_tst": { "status": "RELEASED", "successors": [] },...
JSONPath could be a nice addition (https://restfulapi.net/json-jsonpath/):  Def: ```abap methods jsonpath importing iv_path type string returning value(ro_json) type if_asjon. ``` Example: ```abap lo_json->jsonpath( '$..attributes' ). ``` Anyone up for...