-
Notifications
You must be signed in to change notification settings - Fork 5
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 ab3e833
Showing
2,599 changed files
with
774,405 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,9 @@ | ||
{ | ||
"name": "iCub Firmware Models Documentation", | ||
"build": { | ||
"dockerfile": "../.gitpod.Dockerfile" | ||
}, | ||
"extensions": [], | ||
"forwardPorts": [8000], | ||
"remoteUser": "gitpod" | ||
} |
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,57 @@ | ||
name: GitHub Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- docs | ||
workflow_dispatch: | ||
repository_dispatch: | ||
types: [build_documentation] | ||
|
||
concurrency: | ||
group: publish_gh_pages | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
docs: | ||
name: "Deploy" | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout docs | ||
uses: actions/checkout@main | ||
with: | ||
ref: 'docs' | ||
|
||
- name: Dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install -y python3-wheel python3-setuptools | ||
pip install --upgrade Jinja2 | ||
pip install --user mkdocs | ||
pip install --user $(mkdocs get-deps) | ||
pip install --upgrade pygments | ||
echo "${HOME}/.local/bin" >> ${GITHUB_PATH} | ||
- name: Configure Git | ||
run: | | ||
git config --global push.default upstream | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git | ||
- name: Build Mkdocs | ||
run: | | ||
mkdocs build | ||
- name: Create and prepare gh-pages anew | ||
run: | | ||
git checkout --orphan gh-pages | ||
rm -R `ls -A | grep -v -E "^(.git|site)$"` | ||
mv site/* ./ | ||
- name: Commit and push | ||
run: | | ||
git add . | ||
git commit -m "publish site" | ||
git push --force --set-upstream origin gh-pages |
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,14 @@ | ||
site | ||
*~ | ||
~* | ||
build* | ||
*.slxc | ||
*.autosave | ||
*.mexw64 | ||
*.mexa64 | ||
slprj* | ||
*.zip | ||
*_ert_rtw | ||
cache* | ||
codegen* | ||
derived* |
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 @@ | ||
FROM ubuntu:latest | ||
LABEL org.opencontainers.image.authors="Ugo Pattacini <[email protected]>" | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN apt update && \ | ||
apt install -y sudo apt-utils bash-completion wget ruby git \ | ||
python3 python3-pip python3-setuptools python3-wheel | ||
|
||
RUN pip install mkdocs && \ | ||
wget https://raw.githubusercontent.com/robotology/icub-firmware-models/docs/mkdocs.yml && \ | ||
pip install $(mkdocs get-deps) && \ | ||
rm mkdocs.yml | ||
|
||
RUN gem install yaml | ||
|
||
RUN rm -Rf /var/lib/apt/lists/* | ||
|
||
RUN useradd -l -u 33333 -G sudo -md /home/gitpod -s /bin/bash -p gitpod gitpod && \ | ||
sed -i.bkp -e 's/%sudo\s\+ALL=(ALL\(:ALL\)\?)\s\+ALL/%sudo ALL=NOPASSWD:ALL/g' /etc/sudoers | ||
|
||
EXPOSE 8000 | ||
|
||
WORKDIR /workspace | ||
CMD ["bash"] |
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,5 @@ | ||
image: | ||
file: .gitpod.Dockerfile | ||
ports: | ||
- port: 8000 | ||
onOpen: notify |
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,4 @@ | ||
iCub Firmware Models | ||
==================== | ||
|
||
This repository hosts all the models underlying the iCub Firmware. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
# Welcome to the iCub Firmware Models | ||
This documentation contains a guide to the Simulink models we used to generate the firmware running | ||
onboard the iCub robot. | ||
|
||
#### [:zap:{.blink} Documentation resources for the `AMCBLDC` firmware](models/boards/amcbldc/webview.html){target=_blank}. |
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,17 @@ | ||
window.MathJax = { | ||
tex: { | ||
inlineMath: [["\\(", "\\)"]], | ||
displayMath: [["\\[", "\\]"]], | ||
processEscapes: true, | ||
processEnvironments: true | ||
}, | ||
options: { | ||
ignoreHtmlClass: ".*|", | ||
processHtmlClass: "arithmatex" | ||
} | ||
}; | ||
|
||
document$.subscribe(() => { | ||
MathJax.typesetPromise() | ||
}) | ||
|
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+4.61 KB
...ds/amcbldc/support/lib/images/PaletteIcons-e26999659c2d6918f6ca27f83634b486.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...mcbldc/support/lib/images/PaletteSeparator-400be92ef5f1357d28dde6a113c413bd.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.33 KB
...rds/amcbldc/support/lib/images/SearchIcons-97414211d2404377b601ce8650b0cc1e.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+94 Bytes
.../amcbldc/support/lib/images/activeGradient-5a67c050865044b7c1b06be2441bb0e3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+297 Bytes
...ds/amcbldc/support/lib/images/buttonArrows-9459e0f907067d9fe552f6afbd545f39.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+105 Bytes
.../amcbldc/support/lib/images/buttonDisabled-605efba200cc2b2c519fc536980a7cfb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+122 Bytes
...s/amcbldc/support/lib/images/buttonEnabled-9312f87ce49fdf327b678841d1190bd9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+142 Bytes
...boards/amcbldc/support/lib/images/calendar-b9a94004bfd0d8c863639cd7ff114f7d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.21 KB
.../amcbldc/support/lib/images/calendarArrows-f269f7c4be534c952ff9dc4f7cb9c305.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+998 Bytes
...bldc/support/lib/images/calendarArrows8bit-d90230875973e4c9b096044e314a79c6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.11 KB
...ort/lib/images/checkboxAndRadioButtons_IE6-e175a3e3dca31a3135099544dff0db17.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.36 KB
...pport/lib/images/checkboxRadioButtonStates-8bfb1fb23429f22e4ae51ffffa89fc80.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.36 KB
...cbldc/support/lib/images/checkmarkNoBorder-1269e0d1f90e781e5944aed70cbc6aac.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.62 KB
...cbldc/support/lib/images/checkmarkNoBorder-ce3e9bdc4831c8e6f0208fabc48590a3.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added
BIN
+314 Bytes
...mcbldc/support/lib/images/commonFormArrows-2662516925bb290c4cf58cade79c051f.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.84 KB
...pport/lib/images/commonIconsObjActDisabled-5a2c9016ae40113a1495fece854a20ba.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.85 KB
...t/lib/images/commonIconsObjActDisabled_rtl-e449e32030b00365d6b30f876f2f14b7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.62 KB
...upport/lib/images/commonIconsObjActEnabled-560539bd49cd623775f6fa2061014f1d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.18 KB
...rt/lib/images/commonIconsObjActEnabled8bit-a8364294979a5227e4af94e5816d34de.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.3 KB
...ib/images/commonIconsObjActEnabled8bit_rtl-9227a74823112088a58b18892b3e92d0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.59 KB
...rt/lib/images/commonIconsObjActEnabled_rtl-4cf379869289c7fbe747d9452600009a.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.39 KB
...amcbldc/support/lib/images/dialogCloseIcon-ae2e05eb79ac53028959986dafa517cf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+649 Bytes
...ldc/support/lib/images/dialogCloseIcon8bit-38fbceeccdaf8ffea7bc324f5f6b0d67.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.87 KB
...dels/boards/amcbldc/support/lib/images/dnd-bcb9ab9968eda26ef7c997834c1eb539.png
Oops, something went wrong.
Binary file added
BIN
+3.13 KB
...ldc/support/lib/images/editorIconsDisabled-11159816abf8d9058724a33eb80e7428.png
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
...support/lib/images/editorIconsDisabled_rtl-40e0c7f00f8ae6afc7cb89c9dd4b2f96.png
Oops, something went wrong.
Binary file added
BIN
+3.7 KB
...bldc/support/lib/images/editorIconsEnabled-be18bc672b0ecf2c2a204a28435fec19.png
Oops, something went wrong.
Binary file added
BIN
+4.05 KB
.../support/lib/images/editorIconsEnabled_rtl-d13cd0ea5174f4837b8925c99ab23584.png
Oops, something went wrong.
Binary file added
BIN
+355 Bytes
...ls/boards/amcbldc/support/lib/images/error-599d9a38cb19f45d64cf20cbbc0c9d2f.png
Oops, something went wrong.
Binary file added
BIN
+1.31 KB
...mcbldc/support/lib/images/loadingAnimation-e902db352e0e800182328e7f8e67231d.gif
Oops, something went wrong.
Binary file added
BIN
+630 Bytes
...dc/support/lib/images/loadingAnimation_rtl-b6f1fd46a8f5dd0d0ab385eea4624e18.gif
Oops, something went wrong.
Binary file not shown.
Binary file added
BIN
+4.35 KB
...amcbldc/support/lib/images/progressBarAnim-3ce229c8970745847d39bad895f1c2f1.gif
Oops, something went wrong.
Binary file added
BIN
+127 Bytes
...amcbldc/support/lib/images/progressBarFull-458c1fb90364fcfaf3adf4dec6a10409.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
...ds/amcbldc/support/lib/images/sliderThumbs-187d73a49b15caa02c295f6b99c80b6a.png
Oops, something went wrong.
Binary file added
BIN
+175 Bytes
...ds/amcbldc/support/lib/images/spriteArrows-dc6c8499071417f88ce74177d5b8cc96.png
Oops, something went wrong.
Binary file added
BIN
+101 Bytes
...mcbldc/support/lib/images/standardGradient-6a892e6052ca4ba6dcfacce6804fd818.png
Oops, something went wrong.
Binary file added
BIN
+118 Bytes
...cbldc/support/lib/images/tabBottomSelected-6c36df61b27f81b56197d8f00b36c3b2.png
Oops, something went wrong.
Binary file added
BIN
+110 Bytes
...ldc/support/lib/images/tabBottomUnselected-29e702ae67f362b6ca252a0492765ae5.png
Oops, something went wrong.
Binary file added
BIN
+1.38 KB
...boards/amcbldc/support/lib/images/tabClose-70d68a2c3fdf217f708373e1ccffe763.png
Oops, something went wrong.
Binary file added
BIN
+213 Bytes
...amcbldc/support/lib/images/tabLeftSelected-faf8f5ee883b1bad42e53fe2dea5972e.png
Oops, something went wrong.
Binary file added
BIN
+106 Bytes
...cbldc/support/lib/images/tabLeftUnselected-fa3e5d27ea9dd0f6993bf619d757bd42.png
Oops, something went wrong.
Binary file added
BIN
+272 Bytes
...oards/amcbldc/support/lib/images/tabNested-47fdc13b56d28fa55859c7c463f09720.png
Oops, something went wrong.
Binary file added
BIN
+210 Bytes
...mcbldc/support/lib/images/tabRightSelected-054222db774d313e8844c7a71deec600.png
Oops, something went wrong.
Binary file added
BIN
+105 Bytes
...bldc/support/lib/images/tabRightUnselected-86306eb9a13fc97c4e29aa34ae215f19.png
Oops, something went wrong.
Binary file added
BIN
+120 Bytes
.../amcbldc/support/lib/images/tabTopSelected-ba745e7cadb4d00a7914028ec19d7d07.png
Oops, something went wrong.
Binary file added
BIN
+121 Bytes
...mcbldc/support/lib/images/tabTopUnselected-bb3a9830f23f9b6a94630f3b4027bdd6.png
Oops, something went wrong.
Binary file added
BIN
+713 Bytes
.../boards/amcbldc/support/lib/images/tooltip-3403193148b2f06e4c2f1a525bc25a4c.png
Oops, something went wrong.
Binary file added
BIN
+534 Bytes
...rds/amcbldc/support/lib/images/tooltip8bit-31b71ba21c92d3a81a7eb4b116deea9e.png
Oops, something went wrong.
Binary file added
BIN
+465 Bytes
...mcbldc/support/lib/images/treeExpandImages-16cd882954e198c8508d4d36bde0bcf8.png
Oops, something went wrong.
Binary file added
BIN
+744 Bytes
...dc/support/lib/images/treeExpandImages8bit-5c82af3acdbebc3503f9dbe1d2364cae.png
Oops, something went wrong.
Binary file added
BIN
+4.27 KB
...support/lib/images/ui-icons_222222_256x240-ebe6b6902a408fbf9cac6379a1477525.png
Oops, something went wrong.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
docs/models/boards/amcbldc/support/lib/rights/CodeMirror.rights
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,21 @@ | ||
MIT License | ||
|
||
Copyright (C) 2017 by Marijn Haverbeke <[email protected]> and others | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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,27 @@ | ||
Copyright 2010-2017 Mike Bostock | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, | ||
are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
* Neither the name of the author nor the names of contributors may be used to | ||
endorse or promote products derived from this software without specific prior | ||
written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
32 changes: 32 additions & 0 deletions
32
docs/models/boards/amcbldc/support/lib/rights/Selector.rights
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,32 @@ | ||
/** | ||
* @license | ||
* | ||
* ***** BEGIN LICENSE BLOCK ***** | ||
* Distributed under the "New" BSD License: | ||
* | ||
* Copyright (c) 2010-2016, The Dojo Foundation | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions are met: | ||
* * Redistributions of source code must retain the above copyright notice, this | ||
* list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above copyright notice, | ||
* this list of conditions and the following disclaimer in the documentation | ||
* and/or other materials provided with the distribution. | ||
* * Neither the name of the Dojo Foundation nor the names of its contributors | ||
* may be used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE | ||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
* ***** END LICENSE BLOCK ***** */ |
21 changes: 21 additions & 0 deletions
21
docs/models/boards/amcbldc/support/lib/rights/Vuejs.rights
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,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2018-present, Yuxi (Evan) You | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
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,24 @@ | ||
Copyright (c) 2010, Ajax.org B.V. | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
* Neither the name of Ajax.org B.V. nor the | ||
names of its contributors may be used to endorse or promote products | ||
derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY | ||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
52 changes: 52 additions & 0 deletions
52
docs/models/boards/amcbldc/support/lib/rights/antlrv4-runtime-js.rights
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,52 @@ | ||
[The "BSD 3-clause license"] | ||
Copyright (c) 2012-2017 The ANTLR Project. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions | ||
are met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
3. Neither the name of the copyright holder nor the names of its contributors | ||
may be used to endorse or promote products derived from this software | ||
without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
===== | ||
|
||
MIT License for codepointat.js from https://git.io/codepointat | ||
MIT License for fromcodepoint.js from https://git.io/vDW1m | ||
|
||
Copyright Mathias Bynens <https://mathiasbynens.be/> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
19 changes: 19 additions & 0 deletions
19
docs/models/boards/amcbldc/support/lib/rights/custom-elements.rights
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,19 @@ | ||
# License | ||
|
||
Everything in this repo is BSD style license unless otherwise specified. | ||
|
||
Copyright (c) 2015 The Polymer Authors. All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following disclaimer | ||
in the documentation and/or other materials provided with the | ||
distribution. | ||
* Neither the name of Google Inc. nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
19 changes: 19 additions & 0 deletions
19
docs/models/boards/amcbldc/support/lib/rights/dagre.rights
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,19 @@ | ||
Copyright (c) 2012-2014 Chris Pettitt | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
Oops, something went wrong.