Changes of "Refactor Password Login" #4052 abapGit/abapGit#4052
This file contains 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_object_type_check LINE-SIZE 255. | |
TABLES: objh. | |
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME. | |
SELECT-OPTIONS: | |
s_obj FOR objh-objectname. | |
SELECTION-SCREEN END OF BLOCK b1. | |
TYPES: |
This file contains 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_clas_position_index. | |
DATA: gt_class TYPE TABLE OF seoclsname, | |
go_helper TYPE REF TO cl_oo_source_pos_index_helper. | |
START-OF-SELECTION. | |
CREATE OBJECT go_helper. | |
SELECT obj_name FROM tadir INTO TABLE gt_class |
This file contains 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
/* | |
* ABAPGIT COMMON CSS | |
*/ | |
/* GLOBALS */ | |
body { | |
overflow-x: hidden; | |
} | |
a, a:visited { |
This file contains 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_abapgit_html_viewer. | |
SELECTION-SCREEN BEGIN OF SCREEN 1001. | |
* dummy for triggering screen | |
SELECTION-SCREEN END OF SCREEN 1001. | |
CLASS lcl_gui DEFINITION. | |
PUBLIC SECTION. | |
METHODS on_event |
This file contains 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_parse_fields. | |
CONSTANTS: | |
c_query TYPE string VALUE 'key=00%2601¶m=abc%3defg&value=xxx%3fyyy&option=%25%24123%5f'. | |
DATA: | |
gv_url TYPE string, | |
gs_fields TYPE ihttpnvp, | |
gt_fields TYPE tihttpnvp. |
This file contains 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 ZABAPLINT_LOOKUP | |
*&---------------------------------------------------------------------* | |
*& Takes location of abaplint issue and displays corresponding ABAP code | |
*& or directly jumps to code | |
*& Input example: | |
*& Check failure on line 931 in src/core/#mbtools#cl_tools.clas.abap | |
*&---------------------------------------------------------------------* | |
REPORT zabaplint_lookup. |
This file contains 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_user_exit DEFINITION | |
PUBLIC | |
FINAL | |
CREATE PUBLIC. | |
PUBLIC SECTION. | |
INTERFACES: | |
zif_abapgit_exit. | |
PROTECTED SECTION. | |
PRIVATE SECTION. |
This file contains 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: |
This file contains 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 |
OlderNewer