-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 13caf52
Showing
62 changed files
with
16,792 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Describe the steps to reproduce the behavior, including: | ||
|
||
1. Console command or API call parameters | ||
2. Custom configuration, if used | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Environment** | ||
- OS: Darwin, Windows or Linux | ||
- Running in docker? | ||
- `abap --version` output | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ "main" ] | ||
schedule: | ||
- cron: '15 0 * * 5' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'javascript' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
|
||
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# queries: security-extended,security-and-quality | ||
|
||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v2 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
|
||
# If the Autobuild fails above, remove it and uncomment the following three lines. | ||
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. | ||
|
||
# - run: | | ||
# echo "Run, Build Application using script" | ||
# ./location_of_script_within_repo/buildscript.sh | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# OS metadata | ||
.DS_Store | ||
Thumbs.db | ||
|
||
# editors | ||
.idea | ||
*.iml | ||
*.code-workspace | ||
.vscode | ||
|
||
# folders | ||
.env | ||
node_modules | ||
dist | ||
|
||
# filetypes | ||
*.trc | ||
*.log | ||
*.ini | ||
*.gz | ||
*.swp | ||
~* | ||
|
||
# local test files | ||
/*.js | ||
|
||
# sap nwrfc sdk | ||
nwrfcsdk | ||
NWRFCSDK* | ||
NWRFCSDK/ | ||
nwrfcsdk/ | ||
work | ||
|
||
# src | ||
abap-api-tools/* | ||
!abap-api-tools/README.md | ||
|
||
abap-value-help |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
abap-api-tools/api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: fundamental-tools | ||
Upstream-Contact: Srdjan Boskovic <srdjan.boskovic@sap.com> | ||
Source: https://github.com/SAP/fundamental-tools | ||
Disclaimer: The code in this project may include calls to APIs (“API Calls”) of | ||
SAP or third-party products or services developed outside of this project | ||
(“External Products”). | ||
“APIs” means application programming interfaces, as well as their respective | ||
specifications and implementing code that allows software to communicate with | ||
other software. | ||
API Calls to External Products are not licensed under the open source license | ||
that governs this project. The use of such API Calls and related External | ||
Products are subject to applicable additional agreements with the relevant | ||
provider of the External Products. In no event shall the open source license | ||
that governs this project grant any rights in or to any External Products,or | ||
alter, expand or supersede any terms of the applicable additional agreements. | ||
If you have a valid license agreement with SAP for the use of a particular SAP | ||
External Product, then you may make use of any API Calls included in this | ||
project’s code for that SAP External Product, subject to the terms of such | ||
license agreement. If you do not have a valid license agreement for the use of | ||
a particular SAP External Product, then you may only make use of any API Calls | ||
in this project for that SAP External Product for your internal, non-productive | ||
and non-commercial test and evaluation of such API Calls. Nothing herein grants | ||
you any rights to use or access any SAP External Product, or provide any third | ||
parties the right to use of access any SAP External Product, through API Calls. | ||
|
||
# Default | ||
Files: * | ||
Copyright: 2020 SAP SE or an SAP affiliate company and node-rfc contributors | ||
License: Apache-2.0 | ||
|
||
# Source code, tests, documentation | ||
Files: abap-api-tools/abap-api/** abap-api-tools/api/** abap-api-tools/config/** abap-api-tools/src/** abap-api-tools/tests/** abap-api-tools/.gitignore abap-api-tools/tsconfig.json assets/** doc/** docker/** *.md abap-value-help/** abap-api-tools/web-application-code-explorer/** | ||
Copyright: 2015-2023 SAP SE Srdjan Boskovic <srdjan.boskovic@sap.com> | ||
License: Apache-2.0 | ||
|
||
# Project metadata and configuration files | ||
Files: *.ini *.json .gitignore .editorconfig .prettierignore LICENSE LICENSES/** api/** config/** .github/** | ||
Copyright: 2015-2023 SAP SE Srdjan Boskovic <srdjan.boskovic@sap.com> | ||
License: Apache-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# SAP Open Source Code of Conduct | ||
|
||
SAP adopts the [Contributor's Covenant 2.1](https://www.contributor-covenant.org/version/2/1/code_of_conduct/) | ||
across our open source projects to ensure a welcoming and open culture for everyone involved. | ||
|
||
## Our Pledge | ||
|
||
We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, caste, color, religion, or sexual identity and orientation. | ||
|
||
We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. | ||
|
||
## Our Standards | ||
|
||
Examples of behavior that contributes to a positive environment for our community include: | ||
|
||
* Demonstrating empathy and kindness toward other people | ||
* Being respectful of differing opinions, viewpoints, and experiences | ||
* Giving and gracefully accepting constructive feedback | ||
* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience | ||
* Focusing on what is best not just for us as individuals, but for the overall community | ||
|
||
Examples of unacceptable behavior include: | ||
|
||
* The use of sexualized language or imagery, and sexual attention or advances of any kind | ||
* Trolling, insulting or derogatory comments, and personal or political attacks | ||
* Public or private harassment | ||
* Publishing others' private information, such as a physical or email address, without their explicit permission | ||
* Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
||
## Enforcement Responsibilities | ||
|
||
Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. | ||
|
||
Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. | ||
|
||
## Scope | ||
|
||
This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. | ||
|
||
## Enforcement | ||
|
||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at [ospo@sap.com](mailto:ospo@sap.com) (SAP Open Source Program Office). All complaints will be reviewed and investigated promptly and fairly. | ||
|
||
All community leaders are obligated to respect the privacy and security of the reporter of any incident. | ||
|
||
## Enforcement Guidelines | ||
|
||
Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: | ||
|
||
### 1. Correction | ||
|
||
**Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. | ||
|
||
**Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested. | ||
|
||
### 2. Warning | ||
|
||
**Community Impact**: A violation through a single incident or series of actions. | ||
|
||
**Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban. | ||
|
||
### 3. Temporary Ban | ||
|
||
**Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. | ||
|
||
**Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. | ||
|
||
### 4. Permanent Ban | ||
|
||
**Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. | ||
|
||
**Consequence**: A permanent ban from any sort of public interaction within the community. | ||
|
||
## Attribution | ||
|
||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.1, available at [https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. | ||
|
||
Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. | ||
|
||
For answers to common questions about this code of conduct, see the FAQ at [https://www.contributor-covenant.org/faq][FAQ]. Translations are available at [https://www.contributor-covenant.org/translations][translations]. | ||
|
||
[homepage]: https://www.contributor-covenant.org | ||
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html | ||
[Mozilla CoC]: https://github.com/mozilla/diversity | ||
[FAQ]: https://www.contributor-covenant.org/faq | ||
[translations]: https://www.contributor-covenant.org/translations |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Contributing to node-rfc | ||
|
||
We're excited that you're interested in contributing to fundamental-tools! Your contribution can make this library even better. Please read the guidelines regarding contributions: | ||
|
||
- [Issues and Bugs](#issues-and-bugs) | ||
- [Feature Requests](#feature-requests) | ||
- [Contribute Code](#contribute-code) | ||
|
||
## Issues and Bugs | ||
|
||
If you find a bug or some other issue with any part of the library, please [submit an issue](https://github.com/SAP/fundamental-tools/issues). Before doing so, please make sure that: | ||
|
||
- The issue is not a duplicate issue. | ||
- The issue has not been fixed in a newer release of the library. | ||
- The issue is reproducible. | ||
- Your explanation is clear and complete. | ||
- You provide example code and/or screenshots (recommended). | ||
|
||
If you meet the above criteria, you can submit issues with our [GitHub issue tracker](https://github.com/SAP/fundamental-tools/issues/new). Please use [labels](#usage-of-labels) to categorize your issue. | ||
|
||
## Feature Requests | ||
|
||
You can also use the issue tracker to request a new feature or enhancement. Even if you want to implement the feature yourself, please first submit an issue detailing your proposal so that we may discuss it with you and the community before moving forward. Please use [labels](#usage-of-labels) when creating feature requests. | ||
|
||
### Usage of Labels | ||
|
||
GitHub offers labels to categorize issues. You can use the following labels: | ||
|
||
Labels for issue categories: | ||
|
||
- bug: Something isn't working / Issues in the code. | ||
- documentation: Issues with the documentation (repo and website documentation). | ||
- enhancement: New feature or enhancement requests. | ||
|
||
Status of open issues: | ||
|
||
- (no label): The default status. | ||
- unconfirmed: The issue needs to be confirmed as being a bug or future enhancement. | ||
- approved: The issue is confirmed as being a bug to be fixed or enhancement to be developed. | ||
- author action: The issue's creator needs to provide additional information. | ||
- contribution welcome: The fix or enhancement is approved and you are invited to contribute to it. | ||
|
||
Status of closed issues: | ||
|
||
- fixed: A fix for the issue was provided. | ||
- duplicate: The issue is also reported in a different ticket and is being managed there. | ||
- invalid: The reported issue will not be addressed. | ||
- works: The issue cannot be reproduced, or the feature is working as expected. | ||
- wontfix: The issue will not be fixed. | ||
|
||
## Contribute Code | ||
|
||
You are welcome to contribute code to fundamental-tools in order to fix issues or to add new features. | ||
|
||
### Developer Certificate of Origin (DCO) | ||
|
||
Due to legal reasons, contributors will be asked to accept a DCO before submitting the first pull request to this project. This happens in an automated fashion during the submission process. SAP uses [the standard DCO text of the Linux Foundation](https://developercertificate.org/). | ||
|
||
### Contribution Content Guidelines | ||
|
||
You must follow the coding style as best you can when submitting code. Take note of naming conventions, separation of concerns, and formatting rules. You can use the code formatter [Prettier](https://prettier.io/) to handle some of this for you automatically. | ||
|
||
### Unit testing | ||
|
||
All components should have associated unit tests created with a code coverage score of at least 85%. Be an overachiever and shoot for 100% :) [Learn how to create unit tests](./UNIT-TESTING.md) | ||
|
||
### How to contribute - the Process | ||
|
||
1. Make sure the issue you've filed in the [issue tracker] has the label "contribution welcome" - otherwise, it is not ready to be worked on. | ||
2. Fork the `fundamental-tools` repository to your GitHub account. | ||
3. Create a branch for your issue or feature, and commit or push your changes on that branch. | ||
4. Create a Pull Request from your forked repository to `github.com/SAP/fundamental-tools`. In the subject of the pull request, briefly describe the bug fix or enhancement you're contributing. In the pull request description, please provide a link to the issue in the issue tracker. | ||
5. Follow the link posted by the CLA assistant to your pull request and accept it, as described above. | ||
6. Wait for our code review and approval. We may ask you for additional commits, or make changes to your pull request ourselves. | ||
- Note that the fundamental-tools developers also have their regular duties so, depending on the required effort for reviewing, testing, and clarification, this may take a while. | ||
7. Once the change has been approved, we inform you in a comment. | ||
8. Your pull request cannot be merged directly into the branch (internal SAP processes), but is merged internally and immediately appears in the public repository as well. | ||
9. We close the pull request. You can then delete the now obsolete branch. |
Oops, something went wrong.