mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 04:36:49 +08:00

* Set filter for file open and save dialogs Set the file filter dropdown and default to *.ZIP in file open and save dialogs * Add new setting for default commit comment New abapGit setting to define a default for the comment used for commits. Object and/or filename can added to the comment automatically, which works similar to GitHub if a single file is changed. If multiple objects are changed, then object/file count is included in the default for the comment. * Update CLAS ZCL_ABAPGIT_GUI_PAGE_COMMIT * Fix text for $object Fixed case when one object with multiple files was changed * Pretty print Co-authored-by: Lars Hvam <larshp@hotmail.com>
34 lines
872 B
ABAP
34 lines
872 B
ABAP
INTERFACE zif_abapgit_frontend_services PUBLIC.
|
|
METHODS file_upload
|
|
IMPORTING
|
|
!iv_path TYPE string
|
|
RETURNING
|
|
VALUE(rv_xstr) TYPE xstring
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS file_download
|
|
IMPORTING
|
|
!iv_path TYPE string
|
|
!iv_xstr TYPE xstring
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS show_file_save_dialog
|
|
IMPORTING
|
|
!iv_title TYPE string
|
|
!iv_extension TYPE string
|
|
!iv_default_filename TYPE string
|
|
RETURNING
|
|
VALUE(rv_path) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
METHODS show_file_open_dialog
|
|
IMPORTING
|
|
!iv_title TYPE string
|
|
!iv_extension TYPE string
|
|
!iv_default_filename TYPE string
|
|
RETURNING
|
|
VALUE(rv_path) TYPE string
|
|
RAISING
|
|
zcx_abapgit_exception .
|
|
ENDINTERFACE.
|