Skip to content

Commit b01f44f

Browse files
committed
Replace MBT with apm
1 parent 0e93a04 commit b01f44f

File tree

7 files changed

+15
-21
lines changed

7 files changed

+15
-21
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Marc Bernard Tools
1+
# Contributing to apm
22

3-
Marc Bernard Tools welcomes your suggestions and contributions! Before opening your first issue or pull request, please review our [Code of Conduct](https://github.com/Marc-Bernard-Tools/.github/blob/main/CODE_OF_CONDUCT.md) to understand how our community interacts in an inclusive and respectful manner.
3+
apm welcomes your suggestions and contributions! Before opening your first issue or pull request, please review our [Code of Conduct](CODE_OF_CONDUCT.md) to understand how our community interacts in an inclusive and respectful manner.
44

55
## General Advice
66

@@ -12,7 +12,7 @@ Marc Bernard Tools welcomes your suggestions and contributions! Before opening y
1212

1313
* Commit often, whenever something is working, and is a step in the right direction do a commit or PR. This way other contributors can see the changes, and it will minimize the risk of merge conflicts.
1414

15-
* If you don't have the time or knowledge to fix the problem yourself, you can still make it move along faster by providing an accurate description or a repo which reproduces the issue.
15+
* If you don't have the time or knowledge to fix the problem yourself, you can still make it move along faster by providing an accurate description or a repo that reproduces the issue.
1616

1717
## Bug Reports
1818

@@ -32,7 +32,7 @@ A good bug report should not leave others needing to chase you up for more infor
3232

3333
### Compatibility
3434

35-
Marc Bernard Tools are targeted for SAP Basis 7.31 and higher, so the code should only contain expressions and statements that works on 7.31. abaplint will automatically check every pull request for language syntax that is not available on these releases.
35+
apm is targeted for SAP Basis 7.40 and higher, so the code should only contain expressions and statements that work on 7.40. abaplint will automatically check every pull request for language syntax that is not available on these releases.
3636

3737
### Linting
3838

@@ -48,10 +48,10 @@ Variables are prefixed using the standard setting in [abapOpenChecks](http://doc
4848

4949
### Internationalization (I18N)
5050

51-
Currently, Marc Bernard Tools support only English language. Neither objects nor text literals are translated. Therefore, all objects shall be set to English as the original language. Text literals in the code shall be maintained in English.
51+
Currently, apm supports only the English language. Neither objects nor text literals are translated. Therefore, all objects shall be set to English as the original language. Text literals in the code shall be maintained in English.
5252

5353
## Contribution Licensing
5454

5555
Most of our code is distributed under the terms of the [license](LICENSE), and when you contribute code that you wrote to our repositories, you agree that you are contributing under those same terms. In addition, by submitting your contributions you are indicating that you have the right to submit those contributions under those terms.
5656

57-
If you wish to contribute code or documentation *authored by others*, or using the terms of any other license, please indicate that clearly in your pull request so that the project team can discuss the situation with you.
57+
If you wish to contribute code or documentation *authored by others* or use the terms of any other license, please indicate that clearly in your pull request so that the project team can discuss the situation with you.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright 2022 apm.to Inc. <https://apm.to>
3+
Copyright 2024 apm.to Inc. <https://apm.to>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

LICENSES/MIT.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 Marc Bernard <https://marcbernardtools.com/>
4-
53
Permission is hereby granted, free of charge, to any person obtaining a copy
64
of this software and associated documentation files (the "Software"), to deal
75
in the Software without restriction, including without limitation the rights

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,5 +203,5 @@ Made with ❤ in Canada
203203

204204
Copyright 2025 apm.to Inc. <https://apm.to>
205205

206-
Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Blueksy and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn
206+
Follow [@marcf.be](https://bsky.app/profile/marcf.be) on Bluesky and [@marcfbe](https://linkedin.com/in/marcfbe) or LinkedIn
207207

package.abap.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "xxx",
3-
"version": "1.0.0",
4-
"description": "XXX",
2+
"name": "html-diff",
3+
"version": "1.0.1",
4+
"description": "HTML Diff",
55
"type": "module",
66
"keywords": [
77
"abap",
@@ -10,7 +10,7 @@
1010
],
1111
"homepage": "https://abappm.com",
1212
"bugs": {
13-
"url": "https://github.com/abapPM/ABAP-XXX"
13+
"url": "https://github.com/abapPM/ABAP-HTML-Diff"
1414
},
1515
"license": "MIT",
1616
"author": {
@@ -26,7 +26,7 @@
2626
}
2727
],
2828
"repository": {
29-
"url": "https://github.com/abapPM/ABAP-XXX"
29+
"url": "https://github.com/abapPM/ABAP-HTML-Diff"
3030
},
3131
"funding": {
3232
"type": "github",

src/zcl_htmldiff.clas.abap

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ CLASS zcl_htmldiff DEFINITION
55
************************************************************************
66
* ABAP HTML Diff
77
*
8-
* https://github.com/Marc-Bernard-Tools/ABAP-HTML-Diff
9-
*
108
* This is a port of JavaScript (https://github.com/alaorneto/htmldiffer, no license)
119
* which is a port of CoffeeScript (https://github.com/tnwinc/htmldiff.js, MIT license)
1210
* which is a port of the original Ruby (https://github.com/myobie/htmldiff, MIT license)
1311
*
14-
* Copyright 2022 Marc Bernard <https://marcbernardtools.com/>
12+
* Copyright 2024 apm.to Inc. <https://apm.to>
1513
* SPDX-License-Identifier: MIT
1614
************************************************************************
1715

src/zif_htmldiff.intf.abap

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ INTERFACE zif_htmldiff PUBLIC.
44
************************************************************************
55
* ABAP HTML Diff Interface
66
*
7-
* https://github.com/Marc-Bernard-Tools/ABAP-HTML-Diff
8-
*
97
* This is a port of JavaScript (https://github.com/alaorneto/htmldiffer, no license)
108
* which is a port of CoffeeScript (https://github.com/tnwinc/htmldiff.js, MIT license)
119
* which is a port of the original Ruby (https://github.com/myobie/htmldiff, MIT license)
1210
*
13-
* Copyright 2022 Marc Bernard <https://marcbernardtools.com/>
11+
* Copyright 2024 apm.to Inc. <https://apm.to>
1412
* SPDX-License-Identifier: MIT
1513
************************************************************************
1614

0 commit comments

Comments
 (0)