From 6528f87afbfc9cb9d6023bf2ae03e0d2634cf8d7 Mon Sep 17 00:00:00 2001 From: Lars Hvam Date: Tue, 28 Nov 2023 19:04:11 +0100 Subject: [PATCH] debug page: open external links in new window (#6671) Co-authored-by: Marc Bernard <59966492+mbtools@users.noreply.github.com> --- src/ui/pages/zcl_abapgit_gui_page_debuginfo.clas.abap | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ui/pages/zcl_abapgit_gui_page_debuginfo.clas.abap b/src/ui/pages/zcl_abapgit_gui_page_debuginfo.clas.abap index 545aef81f..617708f76 100644 --- a/src/ui/pages/zcl_abapgit_gui_page_debuginfo.clas.abap +++ b/src/ui/pages/zcl_abapgit_gui_page_debuginfo.clas.abap @@ -145,8 +145,9 @@ CLASS zcl_abapgit_gui_page_debuginfo IMPLEMENTATION. ri_html->add( '
' ). ri_html->add_a( iv_txt = 'Contribution guidelines for abapGit' - iv_act = 'https://github.com/abapGit/abapGit/blob/main/CONTRIBUTING.md' - iv_typ = zif_abapgit_html=>c_action_type-url ). + iv_act = |{ zif_abapgit_definitions=>c_action-url + }?url=https://github.com/abapGit/abapGit/blob/main/CONTRIBUTING.md| + iv_class = |url| ). ri_html->add( '
' ). ls_release = zcl_abapgit_factory=>get_environment( )->get_basis_release( ). @@ -297,8 +298,8 @@ CLASS zcl_abapgit_gui_page_debuginfo IMPLEMENTATION. rv_html = rv_html && li_html->a( iv_txt = 'Complete list of object types supported by abapGit' - iv_act = 'https://docs.abapgit.org/ref-supported.html' - iv_typ = zif_abapgit_html=>c_action_type-url ). + iv_act = |{ zif_abapgit_definitions=>c_action-url }?url=https://docs.abapgit.org/ref-supported.html| + iv_class = |url| ). rv_html = rv_html && |

Supported object types in this system:

|.