arco 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/_config.yml +2 -0
  4. data/_includes/cover.html +9 -0
  5. data/_includes/footer.html +3 -0
  6. data/_includes/mathjax.html +22 -0
  7. data/_includes/sidebar.html +23 -0
  8. data/_layouts/default.html +16 -0
  9. data/_layouts/landing.html +11 -0
  10. data/_layouts/post-list.html +30 -0
  11. data/_layouts/post.html +23 -0
  12. data/_layouts/resume.html +5 -0
  13. data/_sass/arco.scss +149 -0
  14. data/_sass/constants.scss +19 -0
  15. data/_sass/cover.scss +113 -0
  16. data/_sass/fonts.scss +55 -0
  17. data/_sass/footer.scss +3 -0
  18. data/_sass/normalize.scss +349 -0
  19. data/_sass/post-list.scss +66 -0
  20. data/_sass/post.scss +37 -0
  21. data/_sass/sidebar.scss +190 -0
  22. data/_sass/syntax-highlighting.scss +129 -0
  23. data/assets/css/main.scss +11 -0
  24. data/assets/flexmasonry/flexmasonry.css +77 -0
  25. data/assets/flexmasonry/flexmasonry.js +7 -0
  26. data/assets/fonts/open-sans/LICENSE.txt +202 -0
  27. data/assets/fonts/open-sans/OpenSans-Bold.ttf +0 -0
  28. data/assets/fonts/open-sans/OpenSans-BoldItalic.ttf +0 -0
  29. data/assets/fonts/open-sans/OpenSans-Italic.ttf +0 -0
  30. data/assets/fonts/open-sans/OpenSans-Regular.ttf +0 -0
  31. data/assets/fonts/roboto-mono/LICENSE.txt +202 -0
  32. data/assets/fonts/roboto-mono/RobotoMono-Bold.ttf +0 -0
  33. data/assets/fonts/roboto-mono/RobotoMono-BoldItalic.ttf +0 -0
  34. data/assets/fonts/roboto-mono/RobotoMono-Italic.ttf +0 -0
  35. data/assets/fonts/roboto-mono/RobotoMono-Regular.ttf +0 -0
  36. data/assets/js/cover-transitions.js +16 -0
  37. data/assets/js/fade-transitions.js +49 -0
  38. data/assets/js/post-grid-init.js +4 -0
  39. data/assets/js/sidebar.js +11 -0
  40. metadata +96 -0
@@ -0,0 +1,129 @@
1
+ @import "constants";
2
+
3
+ pre, code {
4
+ font-family: "Roboto Mono";
5
+ color: #cccccc;
6
+ font-size: 0.9em;
7
+ background-color: #f8f8f8;
8
+ font-size: 14px;
9
+ }
10
+
11
+ code {
12
+ color: $secondary-highlight;
13
+ border-radius: 2px;
14
+ white-space: nowrap;
15
+ }
16
+
17
+ pre { // only apply for code blocks
18
+ overflow: auto;
19
+ display: block;
20
+ padding: 1em;
21
+ margin: 0 0 1em;
22
+ line-height: 1.3;
23
+ word-break: break-all;
24
+ word-wrap: break-word;
25
+ border-radius: 0;
26
+ font-weight: normal;
27
+ }
28
+
29
+ pre code {
30
+ background: transparent;
31
+ white-space: pre;
32
+ overflow: auto;
33
+ word-wrap: normal;
34
+ color: #cccccc;
35
+ span {
36
+ word-break: break-all;
37
+ }
38
+ }
39
+
40
+ .highlight {
41
+ margin: 0;
42
+ pre {
43
+ position: relative;
44
+ }
45
+ pre code {
46
+ color: #cccccc;
47
+ ::before {
48
+ content: attr(data-lang);
49
+ position: absolute;
50
+ top: 0;
51
+ right: 0;
52
+ color: #ccc;
53
+ text-align: right;
54
+ text-transform: uppercase;
55
+ font-size: 0.85em;
56
+ padding: 5px 10px 0;
57
+ line-height: 20px;
58
+ height: 20px;
59
+ font-weight: 600;
60
+ }
61
+ }
62
+ /*! tomorrow night eighties; https://github.com/MozMorris/tomorrow-pygments */
63
+ pre, table { background: #1a2a38 !important; color: #cccccc !important; }
64
+ .hll { background-color: #515151 !important; }
65
+ .c { color: #999999 !important; } /* Comment */
66
+ .err { color: #f2777a !important; } /* Error */
67
+ .k { color: #cc99cc !important; } /* Keyword */
68
+ .l { color: #f99157 !important; } /* Literal */
69
+ .n, .h { color: #cccccc !important; } /* Name */
70
+ .o { color: #66cccc !important; } /* Operator */
71
+ .p { color: #cccccc !important; } /* Punctuation */
72
+ .cm { color: #999999 !important; } /* Comment.Multiline */
73
+ .cp { color: #999999 !important; } /* Comment.Preproc */
74
+ .c1 { color: #999999 !important; } /* Comment.Single */
75
+ .cs { color: #999999 !important; } /* Comment.Special */
76
+ .gd { color: #f2777a !important; } /* Generic.Deleted */
77
+ .ge { font-style: italic !important; } /* Generic.Emph */
78
+ .gh { color: #cccccc !important; font-weight: bold !important; } /* Generic.Heading */
79
+ .gi { color: #99cc99 !important; } /* Generic.Inserted */
80
+ .gp { color: #999999 !important; font-weight: bold !important; } /* Generic.Prompt */
81
+ .gs { font-weight: bold !important; } /* Generic.Strong */
82
+ .gu { color: #66cccc !important; font-weight: bold !important; } /* Generic.Subheading */
83
+ .kc { color: #cc99cc !important; } /* Keyword.Constant */
84
+ .kd { color: #cc99cc !important; } /* Keyword.Declaration */
85
+ .kn { color: #66cccc !important; } /* Keyword.Namespace */
86
+ .kp { color: #cc99cc !important; } /* Keyword.Pseudo */
87
+ .kr { color: #cc99cc !important; } /* Keyword.Reserved */
88
+ .kt { color: #ffcc66 !important; } /* Keyword.Type */
89
+ .ld { color: #99cc99 !important; } /* Literal.Date */
90
+ .m { color: #f99157 !important; } /* Literal.Number */
91
+ .s { color: #99cc99 !important; } /* Literal.String */
92
+ .na { color: #6699cc !important; } /* Name.Attribute */
93
+ .nb { color: #cccccc !important; } /* Name.Builtin */
94
+ .nc { color: #ffcc66 !important; } /* Name.Class */
95
+ .no { color: #f2777a !important; } /* Name.Constant */
96
+ .nd { color: #66cccc !important; } /* Name.Decorator */
97
+ .ni { color: #cccccc !important; } /* Name.Entity */
98
+ .ne { color: #f2777a !important; } /* Name.Exception */
99
+ .nf { color: #6699cc !important; } /* Name.Function */
100
+ .nl { color: #cccccc !important; } /* Name.Label */
101
+ .nn { color: #ffcc66 !important; } /* Name.Namespace */
102
+ .nx { color: #6699cc !important; } /* Name.Other */
103
+ .py { color: #cccccc !important; } /* Name.Property */
104
+ .nt { color: #66cccc !important; } /* Name.Tag */
105
+ .nv { color: #f2777a !important; } /* Name.Variable */
106
+ .ow { color: #66cccc !important; } /* Operator.Word */
107
+ .w { color: #cccccc !important; } /* Text.Whitespace */
108
+ .mf { color: #f99157 !important; } /* Literal.Number.Float */
109
+ .mh { color: #f99157 !important; } /* Literal.Number.Hex */
110
+ .mi { color: #f99157 !important; } /* Literal.Number.Integer */
111
+ .mo { color: #f99157 !important; } /* Literal.Number.Oct */
112
+ .sb { color: #99cc99 !important; } /* Literal.String.Backtick */
113
+ .sc { color: #cccccc !important; } /* Literal.String.Char */
114
+ .sd { color: #999999 !important; } /* Literal.String.Doc */
115
+ .s2 { color: #99cc99 !important; } /* Literal.String.Double */
116
+ .se { color: #f99157 !important; } /* Literal.String.Escape */
117
+ .sh { color: #99cc99 !important; } /* Literal.String.Heredoc */
118
+ .si { color: #f99157 !important; } /* Literal.String.Interpol */
119
+ .sx { color: #99cc99 !important; } /* Literal.String.Other */
120
+ .sr { color: #99cc99 !important; } /* Literal.String.Regex */
121
+ .s1 { color: #99cc99 !important; } /* Literal.String.Single */
122
+ .ss { color: #99cc99 !important; } /* Literal.String.Symbol */
123
+ .bp { color: #cccccc !important; } /* Name.Builtin.Pseudo */
124
+ .vc { color: #f2777a !important; } /* Name.Variable.Class */
125
+ .vg { color: #f2777a !important; } /* Name.Variable.Global */
126
+ .vi { color: #f2777a !important; } /* Name.Variable.Instance */
127
+ .il { color: #f99157 !important; } /* Literal.Number.Integer.Long */
128
+
129
+ }
@@ -0,0 +1,11 @@
1
+ ---
2
+ ---
3
+
4
+ @import "arco";
5
+ @import "cover";
6
+ @import "sidebar";
7
+ @import "footer";
8
+ @import "post-list";
9
+ @import "post";
10
+ @import "normalize";
11
+ @import "syntax-highlighting";
@@ -0,0 +1,77 @@
1
+ /*!
2
+ * FlexMasonry
3
+ * Version: 0.2.3
4
+ * Author: Gilbert Pellegrom <gilbert@pellegrom.me>
5
+ * License: MIT
6
+ */
7
+ .flexmasonry {
8
+ display: flex;
9
+ flex-flow: column wrap;
10
+ align-content: space-between;
11
+ }
12
+
13
+ .flexmasonry-item { width: 100%; }
14
+ .flexmasonry-cols-2 .flexmasonry-item { width: 50%; }
15
+ .flexmasonry-cols-3 .flexmasonry-item { width: 33.333%; }
16
+ .flexmasonry-cols-4 .flexmasonry-item { width: 25%; }
17
+ .flexmasonry-cols-5 .flexmasonry-item { width: 20%; }
18
+ .flexmasonry-cols-6 .flexmasonry-item { width: 16.666%; }
19
+ .flexmasonry-cols-7 .flexmasonry-item { width: 14.285%; }
20
+ .flexmasonry-cols-8 .flexmasonry-item { width: 12.5%; }
21
+
22
+ .flexmasonry-cols-2 .flexmasonry-item:nth-child(2n+1) { order: 1; }
23
+ .flexmasonry-cols-2 .flexmasonry-item:nth-child(2n) { order: 2; }
24
+
25
+ .flexmasonry-cols-3 .flexmasonry-item:nth-child(3n+1) { order: 1; }
26
+ .flexmasonry-cols-3 .flexmasonry-item:nth-child(3n+2) { order: 2; }
27
+ .flexmasonry-cols-3 .flexmasonry-item:nth-child(3n) { order: 3; }
28
+
29
+ .flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+1) { order: 1; }
30
+ .flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+2) { order: 2; }
31
+ .flexmasonry-cols-4 .flexmasonry-item:nth-child(4n+3) { order: 3; }
32
+ .flexmasonry-cols-4 .flexmasonry-item:nth-child(4n) { order: 4; }
33
+
34
+ .flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+1) { order: 1; }
35
+ .flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+2) { order: 2; }
36
+ .flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+3) { order: 3; }
37
+ .flexmasonry-cols-5 .flexmasonry-item:nth-child(5n+4) { order: 4; }
38
+ .flexmasonry-cols-5 .flexmasonry-item:nth-child(5n) { order: 5; }
39
+
40
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+1) { order: 1; }
41
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+2) { order: 2; }
42
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+3) { order: 3; }
43
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+4) { order: 4; }
44
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n+5) { order: 5; }
45
+ .flexmasonry-cols-6 .flexmasonry-item:nth-child(6n) { order: 6; }
46
+
47
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+1) { order: 1; }
48
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+2) { order: 2; }
49
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+3) { order: 3; }
50
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+4) { order: 4; }
51
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+5) { order: 5; }
52
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n+6) { order: 6; }
53
+ .flexmasonry-cols-7 .flexmasonry-item:nth-child(7n) { order: 7; }
54
+
55
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+1) { order: 1; }
56
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+2) { order: 2; }
57
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+3) { order: 3; }
58
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+4) { order: 4; }
59
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+5) { order: 5; }
60
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+6) { order: 6; }
61
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n+7) { order: 7; }
62
+ .flexmasonry-cols-8 .flexmasonry-item:nth-child(8n) { order: 8; }
63
+
64
+ .flexmasonry-break {
65
+ content: "";
66
+ flex-basis: 100%;
67
+ width: 0 !important;
68
+ margin: 0;
69
+ }
70
+ .flexmasonry-break-1 { order: 1; }
71
+ .flexmasonry-break-2 { order: 2; }
72
+ .flexmasonry-break-3 { order: 3; }
73
+ .flexmasonry-break-4 { order: 4; }
74
+ .flexmasonry-break-5 { order: 5; }
75
+ .flexmasonry-break-6 { order: 6; }
76
+ .flexmasonry-break-7 { order: 7; }
77
+
@@ -0,0 +1,7 @@
1
+ /*!
2
+ * FlexMasonry
3
+ * Version: 0.2.3
4
+ * Author: Gilbert Pellegrom <gilbert@pellegrom.me>
5
+ * License: MIT
6
+ */
7
+ var FlexMasonry=function(e){var n={};function t(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,t),o.l=!0,o.exports}return t.m=e,t.c=n,t.d=function(e,n,r){t.o(e,n)||Object.defineProperty(e,n,{enumerable:!0,get:r})},t.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},t.t=function(e,n){if(1&n&&(e=t(e)),8&n)return e;if(4&n&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&n&&"string"!=typeof e)for(var o in e)t.d(r,o,function(n){return e[n]}.bind(null,o));return r},t.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(n,"a",n),n},t.o=function(e,n){return Object.prototype.hasOwnProperty.call(e,n)},t.p="",t(t.s=0)}([function(e,n,t){t(1),e.exports=t(2)},function(e,n,t){},function(e,n,t){"use strict";t.r(n);const r={responsive:!0,breakpointCols:{"min-width: 1500px":6,"min-width: 1200px":5,"min-width: 992px":4,"min-width: 768px":3,"min-width: 576px":2},numCols:4};let o=null,i={},s=[];function a(){s.forEach(function(e){c(e)})}function l(){o&&window.cancelAnimationFrame(o),o=window.requestAnimationFrame(function(){y()})}function c(e){if(d()<2)return void e.style.removeProperty("height");let n=[];Array.from(e.children).forEach(function(e){if(e.classList.contains("flexmasonry-break"))return;const t=window.getComputedStyle(e),r=t.getPropertyValue("order"),o=t.getPropertyValue("height");n[r-1]||(n[r-1]=0),n[r-1]+=Math.ceil(parseFloat(o))});const t=Math.max(...n);e.style.height=t+"px"}function f(e){const n=e.querySelectorAll(".flexmasonry-break");if(Array.from(n).length!==d()-1)for(let n=1;n<d();n++){const t=document.createElement("div");t.classList.add("flexmasonry-break"),t.classList.add("flexmasonry-break-"+n),e.appendChild(t)}}function u(e){e.classList.contains("flexmasonry-cols-"+d())||(e.className=e.className.replace(/(flexmasonry-cols-\d+)/,""),e.classList.add("flexmasonry-cols-"+d()))}function d(){if(!i.responsive)return i.numCols;const e=Object.keys(i.breakpointCols);for(const n of e)if(window.matchMedia("("+n+")").matches)return i.breakpointCols[n];return 1}function m(e,n={}){return i=Object.assign(r,n),u(e),function(e){const n=e.querySelectorAll(".flexmasonry-break");Array.from(n).length!==d()-1&&Array.from(n).forEach(function(e){e.parentNode.removeChild(e)})}(e),f(e),c(e),this}function y(e={}){return s.forEach(function(n){m(n,e)}),this}n.default={init:function(e,n={}){return s="string"==typeof e?document.querySelectorAll(e):e,i=Object.assign(r,n),s.forEach(function(e){!function(e){e.classList.add("flexmasonry"),i.responsive&&e.classList.add("flexmasonry-responsive"),u(e),Array.from(e.children).forEach(function(e){e.classList.add("flexmasonry-item")}),f(e)}(e),c(e)}),window.addEventListener("load",a),window.addEventListener("resize",l),this},refresh:m,refreshAll:y,destroyAll:function(){window.removeEventListener("load",a),window.removeEventListener("resize",l)}}}]).default;
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.