Skip to content

Commit 171ebe8

Browse files
xdmodtyearke
authored andcommitted
Initial import of Open XDMoD 6.5
0 parents  commit 171ebe8

File tree

1,165 files changed

+167567
-0
lines changed

Some content is hidden

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

1,165 files changed

+167567
-0
lines changed

.editorconfig

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
charset = utf-8
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
indent_style = space
13+
indent_size = 4
14+
15+
# Indentation override for all JS under lib directory
16+
[package.json]
17+
indent_size = 2
18+
19+
[*.{remarkrc,eslintrc}]
20+
indent_size = 2
21+
22+
[*.md]
23+
trim_trailing_whitespace = false

.eslintrc.json

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"env": {},
3+
"globals": {},
4+
"extends": "eslint:recommended",
5+
"rules": {
6+
"curly": 2,
7+
"guard-for-in": 2,
8+
"no-extend-native": 2,
9+
"block-scoped-var": 1,
10+
"no-use-before-define": 2,
11+
"no-caller": 2,
12+
"no-sequences": 2,
13+
"no-new": 2,
14+
"no-extra-parens": 1,
15+
"dot-notation": [
16+
1,
17+
{
18+
"allowPattern": "^[a-z]+(_[a-z]+)+$"
19+
}
20+
],
21+
"no-implicit-coercion": [
22+
2,
23+
{
24+
"boolean": true,
25+
"number": true,
26+
"string": false
27+
}
28+
],
29+
"no-multi-spaces": 2,
30+
"key-spacing": [
31+
2,
32+
{
33+
"beforeColon": false,
34+
"afterColon": true
35+
}
36+
],
37+
"comma-spacing": [
38+
2,
39+
{
40+
"before": false,
41+
"after": true
42+
}
43+
],
44+
"semi-spacing": [
45+
2,
46+
{
47+
"before": false,
48+
"after": true
49+
}
50+
],
51+
"no-spaced-func": 2,
52+
"no-trailing-spaces": 2,
53+
"eol-last": 2,
54+
"semi": 2,
55+
"space-infix-ops": 2,
56+
"consistent-this": [
57+
1,
58+
"self"
59+
],
60+
"linebreak-style": [
61+
2,
62+
"unix"
63+
],
64+
"keyword-spacing": 1
65+
}
66+
}

.github/CONTRIBUTING.md

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# How to Contribute
2+
3+
Third-party patches are essential for keeping XDMoD great. There are a
4+
few guidelines that we need contributors to follow so that we can have a
5+
chance of keeping on top of things.
6+
7+
## Getting Started
8+
9+
* Contact us about the feature or bug fix you intend to work on before you start.
10+
* The change may be something we are already working on internally, or we
11+
may have advice on how best to proceed.
12+
* If working on a bug fix, include:
13+
* Steps to reproduce the bug
14+
* The earliest version that you know has the bug
15+
* We can be **publicly** reached via:
16+
* The issues tab of this repository
17+
* The XDMoD mailing list (see [the Open XDMoD support page][support])
18+
* We can be **privately** reached via:
19+
* The XDMoD support email address (see [the Open XDMoD support page][support])
20+
* Once you have the go-ahead, fork the repository on GitHub and make the
21+
changes there.
22+
23+
## Making Changes
24+
25+
* Create a topic branch from where you want to base your work.
26+
* Base your work on the oldest version of XDMoD you want to change. If you
27+
want to fix a bug in XDMoD 6.5 and newer, you would create a topic branch
28+
on `xdmod6.5` (`git checkout -b fix/my_contribution xdmod6.5`).
29+
* Make commits of logical units. ([Squash](https://www.youtube.com/watch?v=qh9KtjfjzCU)
30+
your commits before submission if necessary.)
31+
* Check for unnecessary whitespace with `git diff --check` before committing.
32+
33+
## Style Guidelines (linting)
34+
35+
* If there exists a linter config file for some aspect of the project (e.g. `.eslintrc.json`, `.editorconfig`, `.remarkrc`), please use the associated linter with the config.
36+
* If there is no applicable linter or linter config when editing a file, try to stick with its current style.
37+
* Make sure that you fix any errors found by all configured linters (e.g. remark-lint, ESLint, phpcs).
38+
* If an error or warning can't be fixed, please add comments to the pull/commit explaining why.
39+
* We realize that all code, including existing code, might not pass the linters (as configured).
40+
* If you want to fix stylistic errors for an entire file that you're working on (which is appreciated!), fix it in a separate commit before starting on any functional code changes. This makes it easier to see the functional changes.
41+
* Please do not submit changes that are _purely_ style fixes. While we would love to see the code get tidied up, every change introduced increases the chance of conflicts for someone else's work in progress.
42+
43+
## Submitting Changes
44+
45+
* Make sure you have followed the style guidelines.
46+
* Push your changes to a topic branch in your fork of the repository.
47+
* All relevant documentation should be added to or updated as part of your pull request.
48+
* Submit a pull request to the repository.
49+
* After feedback has been given, we expect responses (comments and/or commits) within two weeks. After two weeks of inactivity, we may close the pull request.
50+
51+
[support]: http://open.xdmod.org/support.html

.github/ISSUE_TEMPLATE.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!--- Provide a general summary of the issue in the Title above -->
2+
3+
## Expected Behavior
4+
<!--- If you're describing a bug, tell us what should happen -->
5+
<!--- If you're suggesting a change/improvement, tell us how it should work -->
6+
7+
## Current Behavior
8+
<!--- If describing a bug, tell us what happens instead of the expected behavior -->
9+
<!--- If suggesting a change/improvement, explain the difference from current behavior -->
10+
11+
## Possible Solution
12+
<!--- Not obligatory, but suggest a fix/reason for the bug, -->
13+
<!--- or ideas how to implement the addition or change -->
14+
15+
## Steps to Reproduce (for bugs)
16+
<!--- Provide a link to a live example, or an unambiguous set of steps to -->
17+
<!--- reproduce this bug. Include code to reproduce, if relevant -->
18+
1.
19+
2.
20+
3.
21+
4.
22+
23+
## Context
24+
<!--- How has this issue affected you? What are you trying to accomplish? -->
25+
<!--- Providing context helps us come up with a solution that is most useful in the real world -->
26+
27+
## Your Environment
28+
<!--- Include as many relevant details about the environment you experienced the bug in -->
29+
* Version used:
30+
* Environment name and version (e.g. Chrome 39, Node.js 5.4):
31+
* Operating system and version (desktop or mobile):
32+
* Link to your project:

.github/PULL_REQUEST_TEMPLATE.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
## Description
4+
<!--- Describe your changes in detail -->
5+
<!--- Include screenshots for GUI changes if appropriate -->
6+
<!--- If any documentation outside of this repo needs to be added or updated,
7+
please include links to the relevant docs and how they should be changed -->
8+
9+
## Motivation and Context
10+
<!--- Why is this change required? What problem does it solve? -->
11+
<!--- If it fixes an open issue, please link to the issue here. -->
12+
13+
## Tests performed
14+
<!--- Please describe in detail how you tested your changes. -->
15+
<!--- Include details of your testing environment, and the tests you ran to -->
16+
<!--- see how your change affects other areas of the code, etc. -->
17+
18+
## Types of changes
19+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
20+
- [ ] Bug fix (non-breaking change which fixes an issue)
21+
- [ ] New feature (non-breaking change which adds functionality)
22+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
23+
24+
## Checklist:
25+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
26+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
27+
- [ ] My code follows the code style of this project as found in the **CONTRIBUTING** document.
28+
- [ ] I have added tests to cover my changes.
29+
- [ ] All new and existing tests passed.

0 commit comments

Comments
 (0)