From 74a3559b28111f62ee44237a3564133337644232 Mon Sep 17 00:00:00 2001 From: Abo Date: Wed, 15 Dec 2021 06:54:32 +0100 Subject: [PATCH] Fix links after org. move (#919) * change links to new org * fixed links * fixed links --- docs/abapGit-installation.md | 2 +- docs/contributing/coding-guidelines.md | 2 +- src/demos/zangry_birds.prog.abap | 4 ++-- src/demos/zdemo_calendar.prog.xml | 4 ++-- src/demos/zdemo_calendar_classes.prog.abap | 4 ++-- src/demos/zdemo_excel1.prog.abap | 2 +- src/zcl_excel_apack.clas.abap | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/abapGit-installation.md b/docs/abapGit-installation.md index 99a4f75..ecf54ab 100644 --- a/docs/abapGit-installation.md +++ b/docs/abapGit-installation.md @@ -4,7 +4,7 @@ ## Procedure -Execute abapGit using the report **ZABAPGIT_FULL**, click on *New Online*, fill the field *Git repository URL* with *https://github.com/sapmentors/abap2xlsx.git*, package with *$abap2xls* if you just want to test. If you want to transport abap2xlsx to production then use a non local package. Click *Create package* if the package doesn't exist yet. Then click *Clone online repo* +Execute abapGit using the report **ZABAPGIT_FULL**, click on *New Online*, fill the field *Git repository URL* with *https://github.com/abap2xlsx/abap2xlsx.git*, package with *$abap2xls* if you just want to test. If you want to transport abap2xlsx to production then use a non local package. Click *Create package* if the package doesn't exist yet. Then click *Clone online repo* ![abapGit New Online Repository](new-online-abap2xlsx.png) diff --git a/docs/contributing/coding-guidelines.md b/docs/contributing/coding-guidelines.md index e763921..bfd3425 100644 --- a/docs/contributing/coding-guidelines.md +++ b/docs/contributing/coding-guidelines.md @@ -1,6 +1,6 @@ # Naming convention of variables, etc. -In abap2xlsx, over time, alas, the ABAP code came to mix different [naming standards](https://github.com/sapmentors/abap2xlsx/issues/773). Naming standards may vary from one class to another, but one naming standards is usually correctly applied in each class. +In abap2xlsx, over time, alas, the ABAP code came to mix different [naming standards](https://github.com/abap2xlsx/abap2xlsx/issues/773). Naming standards may vary from one class to another, but one naming standards is usually correctly applied in each class. It's not possible to impose one naming standards by fixing the existing names, because clients may have developed custom programs which may already refer to them. When it's about adding a new variable, parameter or type in an existing object or method, it's embarrassing to impose one naming standards because that could be inconsistent with the variables, parameters or types which already exist at this place. diff --git a/src/demos/zangry_birds.prog.abap b/src/demos/zangry_birds.prog.abap index 46b5f70..1c3b053 100644 --- a/src/demos/zangry_birds.prog.abap +++ b/src/demos/zangry_birds.prog.abap @@ -722,10 +722,10 @@ START-OF-SELECTION. ip_value = 'Created with abap2xlsx' ip_style = lv_style_credit_guid ). - lo_hyperlink = zcl_excel_hyperlink=>create_external_link( iv_url = 'https://sapmentors.github.io/abap2xlsx' ). + lo_hyperlink = zcl_excel_hyperlink=>create_external_link( iv_url = 'https://abap2xlsx.github.io/abap2xlsx' ). lo_worksheet->set_cell( ip_column = 'AP' ip_row = 24 - ip_value = 'https://sapmentors.github.io/abap2xlsx' + ip_value = 'https://abap2xlsx.github.io/abap2xlsx' ip_style = lv_style_link_guid ip_hyperlink = lo_hyperlink ). diff --git a/src/demos/zdemo_calendar.prog.xml b/src/demos/zdemo_calendar.prog.xml index 00580a1..c266e88 100644 --- a/src/demos/zdemo_calendar.prog.xml +++ b/src/demos/zdemo_calendar.prog.xml @@ -26,7 +26,7 @@ I 002 - Created with abap2xlsx. Find more information at https://github.com/sapmentors/abap2xlsx. + Created with abap2xlsx. Find more information at https://github.com/abap2xlsx/abap2xlsx. 132 @@ -84,7 +84,7 @@ I 002 - Erzeugt mit abap2xlsx. Weitere Informationen unter https://github.com/sapmentors/abap2xlsx. + Erzeugt mit abap2xlsx. Weitere Informationen unter https://github.com/abap2xlsx/abap2xlsx. 132 diff --git a/src/demos/zdemo_calendar_classes.prog.abap b/src/demos/zdemo_calendar_classes.prog.abap index 211f1e3..1e9ef3e 100644 --- a/src/demos/zdemo_calendar_classes.prog.abap +++ b/src/demos/zdemo_calendar_classes.prog.abap @@ -347,8 +347,8 @@ CLASS zcl_helper IMPLEMENTATION. DATA: value TYPE string, hyperlink TYPE REF TO zcl_excel_hyperlink. - value = 'Created with abap2xlsx. Find more information at https://github.com/sapmentors/abap2xlsx.'(002). - hyperlink = zcl_excel_hyperlink=>create_external_link( 'https://github.com/sapmentors/abap2xlsx' ). "#EC NOTEXT + value = 'Created with abap2xlsx. Find more information at https://github.com/abap2xlsx/abap2xlsx.'(002). + hyperlink = zcl_excel_hyperlink=>create_external_link( 'https://github.com/abap2xlsx/abap2xlsx' ). "#EC NOTEXT c_worksheet->set_cell( EXPORTING ip_column = i_from_col " Cell Column diff --git a/src/demos/zdemo_excel1.prog.abap b/src/demos/zdemo_excel1.prog.abap index f660856..5c3c083 100644 --- a/src/demos/zdemo_excel1.prog.abap +++ b/src/demos/zdemo_excel1.prog.abap @@ -28,7 +28,7 @@ START-OF-SELECTION. lo_worksheet->set_cell( ip_column = 'B' ip_row = 2 ip_value = 'Hello world' ). lo_worksheet->set_cell( ip_column = 'B' ip_row = 3 ip_value = sy-datum ). lo_worksheet->set_cell( ip_column = 'C' ip_row = 3 ip_value = sy-uzeit ). - lo_hyperlink = zcl_excel_hyperlink=>create_external_link( iv_url = 'https://sapmentors.github.io/abap2xlsx' ). + lo_hyperlink = zcl_excel_hyperlink=>create_external_link( iv_url = 'https://abap2xlsx.github.io/abap2xlsx' ). lo_worksheet->set_cell( ip_column = 'B' ip_row = 4 ip_value = 'Click here to visit abap2xlsx homepage' ip_hyperlink = lo_hyperlink ). lo_worksheet->set_cell( ip_column = 'B' ip_row = 6 ip_value = '你好,世界' ). diff --git a/src/zcl_excel_apack.clas.abap b/src/zcl_excel_apack.clas.abap index c91160d..a6d6966 100644 --- a/src/zcl_excel_apack.clas.abap +++ b/src/zcl_excel_apack.clas.abap @@ -21,11 +21,11 @@ CLASS zcl_excel_apack IMPLEMENTATION. METHOD constructor. - descriptor-group_id = 'github.com/sapmentors/abap2xlsx'. + descriptor-group_id = 'github.com/abap2xlsx/abap2xlsx'. descriptor-artifact_id = 'abap2xlsx'. descriptor-version = '7.14.0'. descriptor-repository_type = 'abapGit'. - descriptor-git_url = 'https://github.com/sapmentors/abap2xlsx.git'. + descriptor-git_url = 'https://github.com/abap2xlsx/abap2xlsx.git'. ENDMETHOD.