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
| *&---------------------------------------------------------------------* | |
| *& Report ZABAPGIT_ADJUST_CODE | |
| *&---------------------------------------------------------------------* | |
| *& Adjust method implementations for abapGit serializer classes | |
| *&---------------------------------------------------------------------* | |
| REPORT zabapgit_adjust_code. | |
| PARAMETERS p_test AS CHECKBOX DEFAULT 'X'. | |
| CLASS lcl_code DEFINITION. |
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
| CLASS zcl_abapgit_syntax_po DEFINITION | |
| PUBLIC | |
| INHERITING FROM zcl_abapgit_syntax_highlighter | |
| CREATE PUBLIC. | |
| PUBLIC SECTION. | |
| CONSTANTS: | |
| BEGIN OF c_css, | |
| keyword TYPE string VALUE 'keyword', |
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
| *----------------------------------------------------------------------* | |
| * Test of the ABAP Virus Scan Interface * | |
| *----------------------------------------------------------------------* | |
| REPORT zvsi_test. | |
| TYPE-POOLS: | |
| abap. | |
| DATA: | |
| gf_rc TYPE i, |
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
| REPORT zabapgit_repo_labels. | |
| ******************************************************************************** | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2022 abapGit Contributors | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights |
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
| REPORT ztest_round. | |
| DATA p TYPE p LENGTH 10 DECIMALS 2. | |
| DATA r TYPE p LENGTH 10 DECIMALS 2. | |
| DATA i TYPE i. | |
| DO 6 TIMES. | |
| CASE sy-index. | |
| WHEN 1. | |
| p = '123.49'. | |
| WHEN 2. |
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
| ; TextPad syntax definitions, updated for PowerShell 7.2 | |
| ; See also https://skatterbrainz.wordpress.com/2017/04/27/textpad-the-other-editor/ | |
| ; Marc Bernard (Oct 2022) | |
| ; Based on: PowerShell5.syn by David Stein, skatterbrainz.wordpress.com (Apr 2017) | |
| ; Based on: PowerShell3.syn by Matt Boren (Jun 2013) | |
| ; Based on: which was based on contribution for PowerShell 1 by James Booth (Dec 2009) | |
| PERL=1 | |
| [Syntax] |
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
| CLASS zcl_abapgit_object_nspc DEFINITION | |
| PUBLIC | |
| INHERITING FROM zcl_abapgit_objects_super | |
| CREATE PUBLIC . | |
| PUBLIC SECTION. | |
| INTERFACES zif_abapgit_object . | |
| METHODS constructor |
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
| ************************************************************************ | |
| * ZBC_SENDGRID_SETUP | |
| * | |
| * Helper: Adjust the setup of the SMTP node for SendGrid | |
| * | |
| * (c) Marc Bernard Tools 2021 | |
| ************************************************************************ | |
| REPORT zbc_sendgrid_setup. |
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
| CLASS zcl_abapgit_object_srvb DEFINITION PUBLIC INHERITING FROM zcl_abapgit_objects_super FINAL. | |
| PUBLIC SECTION. | |
| INTERFACES zif_abapgit_object. | |
| ALIASES mo_files FOR zif_abapgit_object~mo_files. | |
| METHODS: | |
| constructor | |
| IMPORTING | |
| is_item TYPE zif_abapgit_definitions=>ty_item | |
| iv_language TYPE spras |
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
| METHOD zif_abapgit_exit~custom_serialize_abap_clif. | |
| DATA: | |
| lr_sett_pp TYPE REF TO cl_pretty_printer_wb_settings, | |
| lt_code TYPE rswsourcet, | |
| lt_code_pp TYPE rswsourcet. | |
| CREATE OBJECT lr_sett_pp. | |
| " lowercase setting: |