' ).
- _add ' '.
+ ro_html->add( ' ' ).
APPEND LINES OF ms_merge-stree TO lt_files.
APPEND LINES OF ms_merge-ttree TO lt_files.
diff --git a/src/zabapgit_syntax_highlighter.prog.abap b/src/zabapgit_syntax_highlighter.prog.abap
index 3c10caf4a..8f3273a2b 100644
--- a/src/zabapgit_syntax_highlighter.prog.abap
+++ b/src/zabapgit_syntax_highlighter.prog.abap
@@ -635,8 +635,8 @@ ENDCLASS. " lcl_syntax_xml IMPLEMENTATION
*----------------------------------------------------------------------*
* CLASS ltcl_syntax_cases definition
*----------------------------------------------------------------------*
-CLASS ltcl_syntax_cases DEFINITION FINAL
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT.
+CLASS ltcl_syntax_cases DEFINITION FINAL FOR TESTING RISK LEVEL HARMLESS
+ DURATION SHORT.
PRIVATE SECTION.
@@ -1150,8 +1150,8 @@ ENDCLASS. " ltcl_syntax_cases IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
-CLASS ltcl_syntax_basic_logic DEFINITION FINAL
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT.
+CLASS ltcl_syntax_basic_logic DEFINITION FINAL FOR TESTING RISK LEVEL HARMLESS
+ DURATION SHORT.
PRIVATE SECTION.
diff --git a/src/zabapgit_unit_test.prog.abap b/src/zabapgit_unit_test.prog.abap
index 5e657bf94..c82efc042 100644
--- a/src/zabapgit_unit_test.prog.abap
+++ b/src/zabapgit_unit_test.prog.abap
@@ -1702,8 +1702,8 @@ CLASS ltcl_login_manager IMPLEMENTATION.
ENDCLASS.
-CLASS ltcl_html_action_utils DEFINITION
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT FINAL
+CLASS ltcl_html_action_utils DEFINITION FOR TESTING RISK LEVEL HARMLESS
+ DURATION SHORT FINAL
INHERITING FROM cl_aunit_assert.
PUBLIC SECTION.
@@ -1761,8 +1761,7 @@ CLASS ltcl_html_action_utils IMPLEMENTATION.
ENDCLASS. "ltcl_html_action_utils
-CLASS ltcl_path DEFINITION
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT FINAL
+CLASS ltcl_path DEFINITION FOR TESTING RISK LEVEL HARMLESS DURATION SHORT FINAL
INHERITING FROM cl_aunit_assert.
PUBLIC SECTION.
@@ -1919,8 +1918,8 @@ CLASS ltcl_path IMPLEMENTATION.
ENDCLASS. "ltcl_path
-CLASS ltcl_file_status DEFINITION
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT FINAL
+CLASS ltcl_file_status DEFINITION FOR TESTING RISK LEVEL HARMLESS
+ DURATION SHORT FINAL
INHERITING FROM cl_aunit_assert.
PUBLIC SECTION.
@@ -2020,8 +2019,8 @@ CLASS ltcl_file_status IMPLEMENTATION.
ENDCLASS. "ltcl_file_status
-CLASS ltcl_file_status2 DEFINITION
- FOR TESTING RISK LEVEL HARMLESS DURATION SHORT FINAL
+CLASS ltcl_file_status2 DEFINITION FOR TESTING RISK LEVEL HARMLESS
+ DURATION SHORT FINAL
INHERITING FROM cl_aunit_assert.
PUBLIC SECTION.
diff --git a/src/zabapgit_view_tutorial.prog.abap b/src/zabapgit_view_tutorial.prog.abap
index a73ca6806..631508e1c 100644
--- a/src/zabapgit_view_tutorial.prog.abap
+++ b/src/zabapgit_view_tutorial.prog.abap
@@ -33,58 +33,58 @@ CLASS lcl_gui_view_tutorial IMPLEMENTATION.
CREATE OBJECT ro_html.
- _add '
Tutorial
'.
- _add ''.
+ ro_html->add( '
Tutorial
' ).
+ ro_html->add( '' ).
- _add '
Adding and cloning repos
'.
- _add '
'.
+ ro_html->add( '
Adding and cloning repos
' ).
+ ro_html->add( '
' ).
- _add `
To clone a remote repo (e.g. from github) click `.
+ ro_html->add( `
To clone a remote repo (e.g. from github) click ` ).
ro_html->add_a( iv_txt = '+ Clone' iv_act = gc_action-repo_clone ).
- _add ' from the top menu. This will copy a remote repo to your system.
'.
+ ro_html->add( ' from the top menu. This will copy a remote repo to your system.' ).
- _add `
To add a local package as a repo click `.
+ ro_html->add( `
To add a local package as a repo click ` ).
ro_html->add_a( iv_txt = '+ Offline' iv_act = gc_action-repo_newoffline ).
- _add ' from the top menu. This will track a repo which already exist in'.
- _add ' the system with abapGit. You''ll be able to attach it to remote origin'.
- _add ' or just serialize as a zip file
'.
+ ro_html->add( ' from the top menu. This will track a repo which already exist in' ).
+ ro_html->add( ' the system with abapGit. You''ll be able to attach it to remote origin' ).
+ ro_html->add( ' or just serialize as a zip file' ).
- _add `
Go `.
+ ro_html->add( `
Go ` ).
ro_html->add_a( iv_txt = 'Explore' iv_act = gc_action-go_explore ).
- _add ' to find projects using abapGit
'.
+ ro_html->add( ' to find projects using abapGit' ).
- _add '
'.
+ ro_html->add( '' ).
- _add '
Repository list and favorites
'.
- _add '
'.
+ ro_html->add( '
Repository list and favorites
' ).
+ ro_html->add( '
' ).
ro_html->add( |
To choose a repo press {
lcl_html=>icon( 'three-bars/blue' ) } at the favorite bar.
| ).
ro_html->add( |
To favorite a repo click {
lcl_html=>icon( 'star/darkgrey' ) } icon at repo toolbar.
| ).
- _add '
'.
+ ro_html->add( '
' ).
- _add '
abapGit related repositories
'.
- _add '
'.
- _add '
'.
+ ro_html->add( '
abapGit related repositories
' ).
+ ro_html->add( '
' ).
+ ro_html->add( '
' ).
IF lcl_services_abapgit=>is_installed( ) = abap_true.
- _add 'abapGit installed in package '.
- _add lcl_services_abapgit=>c_package_abapgit.
+ ro_html->add( 'abapGit installed in package ' ).
+ ro_html->add( lcl_services_abapgit=>c_package_abapgit ).
ELSE.
ro_html->add_a( iv_txt = 'install abapGit repo' iv_act = gc_action-abapgit_install ).
- _add ' - To keep abapGit up-to-date (or also to contribute) you need to'.
- _add 'install it as a repository.'.
+ ro_html->add( ' - To keep abapGit up-to-date (or also to contribute) you need to' ).
+ ro_html->add( 'install it as a repository.' ).
ENDIF.
- _add '
'.
- _add '
'.
+ ro_html->add( '
' ).
+ ro_html->add( '
' ).
IF lcl_services_abapgit=>is_installed_pi( ) = abap_true.
- _add 'abapGit plugins installed in package '.
- _add lcl_services_abapgit=>c_package_plugins.
+ ro_html->add( 'abapGit plugins installed in package ' ).
+ ro_html->add( lcl_services_abapgit=>c_package_plugins ).
ELSE.
ro_html->add_a( iv_txt = 'install abapGit plugins' iv_act = gc_action-abapgit_install_pi ).
- _add ' - you can also install plugins to extend supported object types'.
+ ro_html->add( ' - you can also install plugins to extend supported object types' ).
ENDIF.
- _add '