Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LICENSE.md 5.1KB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. Copyright (c) 2015 Tim Caswell (https://github.com/creationix) and other
  2. contributors. All rights reserved.
  3. Permission is hereby granted, free of charge, to any person obtaining a copy
  4. of this software and associated documentation files (the "Software"), to deal
  5. in the Software without restriction, including without limitation the rights
  6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. copies of the Software, and to permit persons to whom the Software is
  8. furnished to do so, subject to the following conditions:
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  14. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  15. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  16. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  17. THE SOFTWARE.
  18. Some files from the tests folder are from joyent/node and mscedex/io.js, a fork
  19. of nodejs/io.js:
  20. - tests/iojs/test-http-parser-durability.js
  21. This file is from https://github.com/mscdex/io.js/blob/js-http-parser/test/pummel/test-http-parser-durability.js
  22. with modifications by Jan Schär (jscissr).
  23. """
  24. Copyright io.js contributors. All rights reserved.
  25. Permission is hereby granted, free of charge, to any person obtaining a copy
  26. of this software and associated documentation files (the "Software"), to
  27. deal in the Software without restriction, including without limitation the
  28. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  29. sell copies of the Software, and to permit persons to whom the Software is
  30. furnished to do so, subject to the following conditions:
  31. The above copyright notice and this permission notice shall be included in
  32. all copies or substantial portions of the Software.
  33. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  34. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  35. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  36. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  37. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  38. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  39. IN THE SOFTWARE.
  40. """
  41. - tests/fixtures/*
  42. tests/parallel/*
  43. tests/testpy/*
  44. tests/common.js
  45. tests/test.py
  46. tests/utils.py
  47. These files are from https://github.com/nodejs/node with changes by
  48. Jan Schär (jscissr).
  49. Node.js is licensed for use as follows:
  50. """
  51. Copyright Node.js contributors. All rights reserved.
  52. Permission is hereby granted, free of charge, to any person obtaining a copy
  53. of this software and associated documentation files (the "Software"), to
  54. deal in the Software without restriction, including without limitation the
  55. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  56. sell copies of the Software, and to permit persons to whom the Software is
  57. furnished to do so, subject to the following conditions:
  58. The above copyright notice and this permission notice shall be included in
  59. all copies or substantial portions of the Software.
  60. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  61. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  62. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  63. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  64. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  65. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  66. IN THE SOFTWARE.
  67. """
  68. This license applies to parts of Node.js originating from the
  69. https://github.com/joyent/node repository:
  70. """
  71. Copyright Joyent, Inc. and other Node contributors. All rights reserved.
  72. Permission is hereby granted, free of charge, to any person obtaining a copy
  73. of this software and associated documentation files (the "Software"), to
  74. deal in the Software without restriction, including without limitation the
  75. rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  76. sell copies of the Software, and to permit persons to whom the Software is
  77. furnished to do so, subject to the following conditions:
  78. The above copyright notice and this permission notice shall be included in
  79. all copies or substantial portions of the Software.
  80. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  81. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  82. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  83. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  84. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  85. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  86. IN THE SOFTWARE.
  87. """