Skip to content

Commit 05577df

Browse files
authored
Merge pull request #4 from bci-oss/feature/rename-omp-to-esmf
Rename all depending files
2 parents b82b1d9 + 8b5306a commit 05577df

File tree

65 files changed

+1857
-14439
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+1857
-14439
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ assignees: ''
1111
A clear and concise description of what the bug is.
1212

1313
**Where**
14-
Indicate the location of the bug (e.g., which component of the SDS SDK JS Aspect Model loader, which API call, which
14+
Indicate the location of the bug (e.g., which component of the ESMF SDK JS Aspect Model loader, which API call, which
1515
command
1616
etc.).
1717

.github/workflows/tagged_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- name: Checkout project
1515
uses: actions/checkout@v3
1616

17-
- run: git config --global user.email "info@open-manufacturing.org"
18-
- run: git config --global user.name "OpenManufacturing"
17+
- run: git config --global user.email "info@eclipse.org"
18+
- run: git config --global user.name "Eclipse Foundation
1919

2020
- name: Cache node modules
2121
uses: actions/cache@v3
@@ -58,7 +58,7 @@ jobs:
5858
overwrite: true
5959
prerelease: false
6060
repo_token: ${{ secrets.GITHUB_TOKEN }}
61-
file: sds-aspect-model-loader-${{ env.tagVersion }}.tgz
61+
file: esmf-aspect-model-loader-${{ env.tagVersion }}.tgz
6262
tag: ${{ github.ref }}
6363

6464
- name: Create GitHub pre-release
@@ -68,5 +68,5 @@ jobs:
6868
overwrite: true
6969
prerelease: true
7070
repo_token: ${{ secrets.GITHUB_TOKEN }}
71-
file: sds-aspect-model-loader-${{ env.tagVersion }}.tgz
71+
file: esmf-aspect-model-loader-${{ env.tagVersion }}.tgz
7272
tag: ${{ github.ref }}

CONTRIBUTING.md

Lines changed: 77 additions & 181 deletions
Large diffs are not rendered by default.

CONVENTIONS.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
# SDS SDK JS Aspect Model loader Code Conventions
1+
# ESMF Code Conventions
22

3-
The following document contains a compilation of conventions and guidelines to format, structure and write code for the
4-
SDS SDK JS Aspect Model loader.
3+
The following document contains a compilation of conventions and guidelines to format, structure and
4+
write code for the ESMF SDK JS Aspect Model loader.
55

66
## General Conventions
77

88
Our code conventions are based on the [Google Typescript Style Guide](https://google.github.io/styleguide/tsguide.html)
9-
but
10-
detailed and adjusted for the needs of the SDS SDK JS Aspect Model loader.
9+
but detailed and adjusted for the needs of the ESMF SDK JS Aspect Model loader.
1110

1211
## Copyright header
1312

@@ -33,8 +32,8 @@ Developer documentation is put into a README.md placed in the project root. This
3332

3433
### User documentation
3534

36-
User documentation (this includes technical documentation on how to use an application or tool from
37-
the SDS SDK JS Aspect Model loader) should be on
35+
User documentation (this includes technical documentation on how to use an application or tool from the SDK) should be
36+
on
3837
its own.
3938
It is written in AsciiDoc, rendered with [Antora](https://antora.org) and the generated static content is
4039
publically hosted for direct user access.
@@ -49,9 +48,3 @@ way more targeted towards writing fully fledged documents and with its multitude
4948
very good source format.
5049
Publishing is realized by means of [Github pages](https://docs.antora.org/antora/2.3/publish-to-github-pages/).
5150

52-
### High Level Documentation
53-
54-
Technical documentation targeted towards components and architecture should be accessible via the developer
55-
documentation.
56-
Corresponding discussions on design etc. can be placed in the project wiki on
57-
[Github](https://github.com/OpenManufacturingPlatform/sds-sdk-js-Aspect Model loader/wiki).

README.md

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SDS JS SDK :: Aspect Model Loader 🚀
1+
# ESMF JS SDK :: Aspect Model Loader 🚀
22

33
## Table of Contents
44

@@ -21,24 +21,20 @@ more [.ttl files](<https://en.wikipedia.org/wiki/Turtle_(syntax)>) into native T
2121

2222
## Getting help
2323

24-
Are you having trouble with SDS SDK JS? We want to help!
24+
Are you having trouble with ESMF JS? We want to help!
2525

26-
* Check the [developer documentation](https://openmanufacturingplatform.github.io)
27-
* Having issues with the SDS SDK JS? Open
28-
a [GitHub issue](https://github.com/OpenManufacturingPlatform/sds-sdk-js-aspect-model-loader/issues).
26+
- Check the [developer documentation](https://openmanufacturingplatform.github.io)
27+
- Having issues with the ESMF JS? Open
28+
a [GitHub issue](https://github.com/eclipse-esmf/esmf-sdk-js-aspect-model-loader/issues).
2929

3030
## Getting started
3131

32-
### Install from the public npm (Currently not available):
32+
### Install from the public npm:
3333

34-
```
35-
npm install @sds/aspect-model-loader
36-
```
37-
38-
### Install from github release repository:
34+
<!-- TODO: Replace this with esmf -->
3935

4036
```
41-
npm install https://github.com/OpenManufacturingPlatform/sds-sdk-js-aspect-model-loader/releases/download/<TAG_VERSION>/sds-aspect-model-loader-x.x.x.tgz
37+
npm install @omp-sdk/aspect-model-loader
4238
```
4339

4440
## Usage
@@ -101,7 +97,7 @@ to update all index files under `src`. For more information see the project http
10197
## Documentation
10298

10399
Further documentation and howto's are provided in the
104-
official [JS SDK Aspect Model loader User Documentation](https://openmanufacturingplatform.github.io/sds-documentation/js-sdk-aml-guide/index.html)
100+
official [JS SDK User Documentation](https://openmanufacturingplatform.github.io/sds-documentation/js-sdk-guide/1.0.0/index.html)
105101

106102
## License
107103

@@ -111,4 +107,3 @@ This program and the accompanying materials are made available under the terms o
111107
[Mozilla Public License, v. 2.0](LICENSE).
112108

113109
The [Notice file](NOTICE.md) details contained third party materials.
114-

documentation/js-sdk-aml-guide/modules/ROOT/pages/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ For example a newly added property and the related value could be shown in the U
2222

2323
[source,bash]
2424
----
25-
npm install @sds/aspect-model-loader
25+
npm install @esmf/aspect-model-loader
2626
----
2727

2828
=== Install from github release repository:
2929

3030
[source,bash]
3131
----
32-
npm install https://github.com/OpenManufacturingPlatform/sds-sdk-js-aspect-model-loader/releases/download/<TAG_VERSION>/sds-aspect-model-loader-x.x.x.tgz
32+
npm install https://github.com/eclipse-esmf/esmf-sdk-js-aspect-model-loader/releases/download/<TAG_VERSION>/esmf-aspect-model-loader-x.x.x.tgz
3333
----
3434

3535
== Usage

0 commit comments

Comments
 (0)