-
Notifications
You must be signed in to change notification settings - Fork 38
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 9751e7d
Showing
996 changed files
with
528,791 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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 @@ | ||
music-encoding.org |
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,90 @@ | ||
# Contributing Guidelines | ||
|
||
If you wish to contribute changes to the MEI website, you can edit the files directly on GitHub. The website is written in a dialect of Markdown called [kramdown](https://kramdown.gettalong.org/quickref.html). | ||
|
||
[//]: # (In the guidelines you will see links to "Edit this section". Clicking on this will open up an editor in GitHub, where you will be able to click on the 'pencil' to edit the text of the section.) | ||
|
||
When you are finished, you can then “Propose a file change”, where you can write a brief summary of your changes and their motivations, and then “Create a Pull Request”, which will alert the MEI Technical Team of your proposed change. If there are any questions or problems with your suggested change, a discussion can happen on the Pull Request, and then it will be merged into the website. | ||
|
||
In some cases you will see special markup that will create automatic contents. If you need help with this Markdown, the Technical Team will be happy to help. | ||
|
||
For complex contributions, you may wish to get the website running on your local machine, and submit a larger Pull Request. This will be explained in the next section. | ||
|
||
## Editing the website locally | ||
|
||
If you wish to contribute significant changes, you will likely want to checkout the code from this repository and work on it locally. To do so you will need to install Jekyll, which requires Ruby. This guide will assume you have a functioning Ruby environment, with the `gem` and `bundle` commands available. If you do not, please follow [these instructions](https://docs.github.com/en/pages/setting-up-a-github-pages-site-with-jekyll/testing-your-github-pages-site-locally-with-jekyll) on getting these set up. | ||
|
||
### Step 1: Fork the website | ||
|
||
You should fork the website into your own account using the “Fork” button on GitHub. This will make a copy of the music-encoding.github.io repository which you can edit. | ||
|
||
### Step 2: Clone to local machine | ||
|
||
In order to work with the repo offline you neet to clone the code to your local machine, e.g. by clicking the green “Code” button at the top and following one of the corresponding instructions. | ||
|
||
### Step 2: Create a new branch | ||
|
||
Create a new branch for your changes on your local Git repository. You should make it a descriptive name, like ‘feature_new-project’, ‘fix_broken-links’ or similar. | ||
|
||
### Step 3: Build and serve the website locally | ||
|
||
For properly reviewing any changes made to your local copy of the MEI website in your browser, you need Jekyll to build and serve the page on your local machine. There are two recommended options for doing this: | ||
|
||
a. Run Jekyll on your machine natively | ||
b. Run Jekyll in a Docker container | ||
|
||
#### Step 3a: Run Jekyll on your machine natively | ||
|
||
To install and run Jekyll natively on your machine, please follow these steps: | ||
|
||
1. Install Jekyll | ||
|
||
Run `bundle install` in the root directory of your local clone of this repository. This will install all of the requirements for running the site locally. | ||
|
||
Windows users should check out this step-by-step guide to setting up Jekyll on Windows: [https://jekyll-windows.juthilo.com/](https://jekyll-windows.juthilo.com/) | ||
|
||
2. Run the Jekyll server | ||
|
||
You can run the Jekyll service locally with `bundle exec jekyll serve --baseurl=""`. This will compile the site and start serving the content locally. Since compiling can take a while, you can add the option `-V` to get a more verbose output and information about the running compilation steps. Once it's ready, you can open your browser and visit `http://localhost:4000` to see your local version of the website. | ||
|
||
#### Step 3b: Run Jekyll in a Docker container | ||
|
||
To avoid installing Jekyll natively and to assure it comes with all the necessary dependencies, you can run it in a preconfigured container image. The publishers of Jekyll offer a corresponding Docker image for such purposes. To run it, please follow these instructions: | ||
|
||
1. Install Docker | ||
|
||
If not already installed on your machine, download and install Docker from [https://www.docker.com/](https://www.docker.com/). | ||
|
||
2. Run Jekyll with Docker | ||
|
||
Make sure to start docker before running the following command in the root directory of your local clone of this repository: | ||
|
||
```bash | ||
docker run --rm -it --volume="$PWD:/srv/jekyll:Z" --publish 4000:4000 jekyll/jekyll jekyll serve | ||
``` | ||
|
||
Detailed explanations of this command can be found in the [Docker Command-line reference](https://docs.docker.com/engine/reference/run/) but here’s a concise explanation: | ||
|
||
| Command Particle | Description | | ||
|:-----------------|:-----------------------------------------------------------------------------------------| | ||
| --rm | automatically clean up the container and remove the file system when the container exits | | ||
| --it | keeps the shell open | | ||
| --volume | mount a folder from the host as volume in container, here the current working directory (`$PWD`) gets mounted into `/srv/jekyll` in the docker container | | ||
| --publish | specifies the ports the container publishes | | ||
| jekyll/jekyll | the name of the Dockerimage | | ||
| jekyll serve | execute jekyll to serve the website | | ||
|
||
|
||
This will compile the site and start serving the content locally. Information on the compilation process will be output to the command shell. Once it's ready, you can open your browser and visit `http://localhost:4000` to see your local version of the website. | ||
### Step 5. Make your changes and commit | ||
You should now be able to make your changes. Try to keep your commits as ‘atomic’ as possible; that is, commit only the changes necessary for a given set of functionality. Avoid large commits that change a lot of things, as this makes it harder to review your changes for unintended side effects and potential problems. | ||
### Step 6. Propose a Pull Request | ||
Once all of your changes have been committed and pushed to your fork, you can propose a change to the main music-encoding.github.io repository by opening a [Pull Request](https://help.github.com/articles/about-pull-requests/). This will alert the Technical Team that you have a change you wish to contribute. The 'Technical Team will review your changes and may ask for modifications or clarification in the Pull Request. Once your changes have been reviewed and accepted, they will be merged in and will then be available on the website. | ||
|
||
### Step 7. Delete your local branch (optional) | ||
|
||
When your pull request has been accepted, it is then safe to delete the branch that you created in Step 2. This will ensure you do not have older branches around that get progressively outdated. |
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,181 @@ | ||
Educational Community License | ||
|
||
Version 2.0, April 2007 | ||
|
||
http://opensource.org/licenses/ECL-2.0 | ||
|
||
The Educational Community License version 2.0 ("ECL") consists of the Apache | ||
2.0 license, modified to change the scope of the patent grant in section 3 to | ||
be specific to the needs of the education communities using this license. The | ||
original Apache 2.0 license can be found at: | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
|
||
1. Definitions. | ||
|
||
"License" shall mean the terms and conditions for use, reproduction, and | ||
distribution as defined by Sections 1 through 9 of this document. | ||
|
||
"Licensor" shall mean the copyright owner or entity authorized by the | ||
copyright owner that is granting the License. | ||
|
||
"Legal Entity" shall mean the union of the acting entity and all other | ||
entities that control, are controlled by, or are under common control with | ||
that entity. For the purposes of this definition, "control" means (i) the | ||
power, direct or indirect, to cause the direction or management of such | ||
entity, whether by contract or otherwise, or (ii) ownership of fifty percent | ||
(50%) or more of the outstanding shares, or (iii) beneficial ownership of such | ||
entity. | ||
|
||
"You" (or "Your") shall mean an individual or Legal Entity exercising | ||
permissions granted by this License. | ||
|
||
"Source" form shall mean the preferred form for making modifications, | ||
including but not limited to software source code, documentation source, and | ||
configuration files. | ||
|
||
"Object" form shall mean any form resulting from mechanical transformation or | ||
translation of a Source form, including but not limited to compiled object | ||
code, generated documentation, and conversions to other media types. | ||
|
||
"Work" shall mean the work of authorship, whether in Source or Object form, | ||
made available under the License, as indicated by a copyright notice that is | ||
included in or attached to the work (an example is provided in the Appendix | ||
below). | ||
|
||
"Derivative Works" shall mean any work, whether in Source or Object form, that | ||
is based on (or derived from) the Work and for which the editorial revisions, | ||
annotations, elaborations, or other modifications represent, as a whole, an | ||
original work of authorship. For the purposes of this License, Derivative | ||
Works shall not include works that remain separable from, or merely link (or | ||
bind by name) to the interfaces of, the Work and Derivative Works thereof. | ||
|
||
"Contribution" shall mean any work of authorship, including the original | ||
version of the Work and any modifications or additions to that Work or | ||
Derivative Works thereof, that is intentionally submitted to Licensor for | ||
inclusion in the Work by the copyright owner or by an individual or Legal | ||
Entity authorized to submit on behalf of the copyright owner. For the purposes | ||
of this definition, "submitted" means any form of electronic, verbal, or | ||
written communication sent to the Licensor or its representatives, including | ||
but not limited to communication on electronic mailing lists, source code | ||
control systems, and issue tracking systems that are managed by, or on behalf | ||
of, the Licensor for the purpose of discussing and improving the Work, but | ||
excluding communication that is conspicuously marked or otherwise designated | ||
in writing by the copyright owner as "Not a Contribution." | ||
|
||
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf | ||
of whom a Contribution has been received by Licensor and subsequently | ||
incorporated within the Work. | ||
|
||
2. Grant of Copyright License. | ||
|
||
Subject to the terms and conditions of this License, each Contributor hereby | ||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, | ||
irrevocable copyright license to reproduce, prepare Derivative Works of, | ||
publicly display, publicly perform, sublicense, and distribute the Work and | ||
such Derivative Works in Source or Object form. | ||
|
||
3. Grant of Patent License. | ||
|
||
Subject to the terms and conditions of this License, each Contributor hereby | ||
grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, | ||
irrevocable (except as stated in this section) patent license to make, have | ||
made, use, offer to sell, sell, import, and otherwise transfer the Work, where | ||
such license applies only to those patent claims licensable by such | ||
Contributor that are necessarily infringed by their Contribution(s) alone or | ||
by combination of their Contribution(s) with the Work to which such | ||
Contribution(s) was submitted. If You institute patent litigation against any | ||
entity (including a cross-claim or counterclaim in a lawsuit) alleging that | ||
the Work or a Contribution incorporated within the Work constitutes direct or | ||
contributory patent infringement, then any patent licenses granted to You | ||
under this License for that Work shall terminate as of the date such | ||
litigation is filed. Any patent license granted hereby with respect to | ||
contributions by an individual employed by an institution or organization is | ||
limited to patent claims where the individual that is the author of the Work | ||
is also the inventor of the patent claims licensed, and where the organization | ||
or institution has the right to grant such license under applicable grant and | ||
research funding agreements. No other express or implied licenses are granted. | ||
|
||
4. Redistribution. | ||
|
||
You may reproduce and distribute copies of the Work or Derivative Works | ||
thereof in any medium, with or without modifications, and in Source or Object | ||
form, provided that You meet the following conditions: | ||
|
||
You must give any other recipients of the Work or Derivative Works a copy of | ||
this License; and You must cause any modified files to carry prominent notices | ||
stating that You changed the files; and You must retain, in the Source form of | ||
any Derivative Works that You distribute, all copyright, patent, trademark, | ||
and attribution notices from the Source form of the Work, excluding those | ||
notices that do not pertain to any part of the Derivative Works; and If the | ||
Work includes a "NOTICE" text file as part of its distribution, then any | ||
Derivative Works that You distribute must include a readable copy of the | ||
attribution notices contained within such NOTICE file, excluding those notices | ||
that do not pertain to any part of the Derivative Works, in at least one of | ||
the following places: within a NOTICE text file distributed as part of the | ||
Derivative Works; within the Source form or documentation, if provided along | ||
with the Derivative Works; or, within a display generated by the Derivative | ||
Works, if and wherever such third-party notices normally appear. The contents | ||
of the NOTICE file are for informational purposes only and do not modify the | ||
License. You may add Your own attribution notices within Derivative Works that | ||
You distribute, alongside or as an addendum to the NOTICE text from the Work, | ||
provided that such additional attribution notices cannot be construed as | ||
modifying the License. You may add Your own copyright statement to Your | ||
modifications and may provide additional or different license terms and | ||
conditions for use, reproduction, or distribution of Your modifications, or | ||
for any such Derivative Works as a whole, provided Your use, reproduction, and | ||
distribution of the Work otherwise complies with the conditions stated in this | ||
License. | ||
|
||
5. Submission of Contributions. | ||
|
||
Unless You explicitly state otherwise, any Contribution intentionally | ||
submitted for inclusion in the Work by You to the Licensor shall be under the | ||
terms and conditions of this License, without any additional terms or | ||
conditions. Notwithstanding the above, nothing herein shall supersede or | ||
modify the terms of any separate license agreement you may have executed with | ||
Licensor regarding such Contributions. | ||
|
||
6. Trademarks. | ||
|
||
This License does not grant permission to use the trade names, trademarks, | ||
service marks, or product names of the Licensor, except as required for | ||
reasonable and customary use in describing the origin of the Work and | ||
reproducing the content of the NOTICE file. | ||
|
||
7. Disclaimer of Warranty. | ||
|
||
Unless required by applicable law or agreed to in writing, Licensor provides | ||
the Work (and each Contributor provides its Contributions) on an "AS IS" | ||
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
implied, including, without limitation, any warranties or conditions of TITLE, | ||
NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You | ||
are solely responsible for determining the appropriateness of using or | ||
redistributing the Work and assume any risks associated with Your exercise of | ||
permissions under this License. | ||
|
||
8. Limitation of Liability. | ||
|
||
In no event and under no legal theory, whether in tort (including negligence), | ||
contract, or otherwise, unless required by applicable law (such as deliberate | ||
and grossly negligent acts) or agreed to in writing, shall any Contributor be | ||
liable to You for damages, including any direct, indirect, special, | ||
incidental, or consequential damages of any character arising as a result of | ||
this License or out of the use or inability to use the Work (including but not | ||
limited to damages for loss of goodwill, work stoppage, computer failure or | ||
malfunction, or any and all other commercial damages or losses), even if such | ||
Contributor has been advised of the possibility of such damages. | ||
|
||
9. Accepting Warranty or Additional Liability. | ||
|
||
While redistributing the Work or Derivative Works thereof, You may choose to | ||
offer, and charge a fee for, acceptance of support, warranty, indemnity, or | ||
other liability obligations and/or rights consistent with this License. | ||
However, in accepting such obligations, You may act only on Your own behalf | ||
and on Your sole responsibility, not on behalf of any other Contributor, and | ||
only if You agree to indemnify, defend, and hold each Contributor harmless for | ||
any liability incurred by, or claims asserted against, such Contributor by | ||
reason of your accepting any such warranty or additional liability. | ||
|
||
END OF TERMS AND CONDITIONS |
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,25 @@ | ||
# The MEI Website | ||
|
||
[![Check Links](https://github.com/music-encoding/music-encoding.github.io/actions/workflows/link-checker.yml/badge.svg)](https://github.com/music-encoding/music-encoding.github.io/actions/workflows/link-checker.yml) | ||
[![Jekyll Build](https://github.com/music-encoding/music-encoding.github.io/actions/workflows/jekyll.yml/badge.svg)](https://github.com/music-encoding/music-encoding.github.io/actions/workflows/jekyll.yml) | ||
[![License](https://img.shields.io/github/license/music-encoding/music-encoding.github.io)](https://github.com/music-encoding/music-encoding.github.io/blob/main/LICENSE) | ||
|
||
This is the MEI website, available at [https://music-encoding.org](https://music-encoding.org). | ||
|
||
## License | ||
|
||
This repo is released under the [ECL-2.0](LICENSE), and original creations contributed to this repo are accepted under the same license. | ||
|
||
## Contributing | ||
|
||
For information about contributing and developing the website locally, please refer to the [Contributing Guidelines](CONTRIBUTING.md) | ||
|
||
## Third-party components | ||
|
||
### Spectre.css | ||
|
||
The MEI website uses [Spectre.css](https://picturepan2.github.io/spectre/) as published at <https://github.com/picturepan2/spectre> under the terms of the MIT-license. | ||
|
||
## Continuous integration and deployment | ||
|
||
This website is being built automatically whenever a commit is pushed to the main branch. |
Oops, something went wrong.