bootstrap-material 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +19 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +32 -0
  5. data/README.md +79 -0
  6. data/Rakefile +1 -0
  7. data/app/assets/fonts/LICENSE.txt +428 -0
  8. data/app/assets/fonts/Material-Design-Icons.eot +0 -0
  9. data/app/assets/fonts/Material-Design-Icons.svg +769 -0
  10. data/app/assets/fonts/Material-Design-Icons.ttf +0 -0
  11. data/app/assets/fonts/Material-Design-Icons.woff +0 -0
  12. data/app/assets/javascripts/bootstrap-material/index.js +4 -0
  13. data/app/assets/javascripts/bootstrap-material/jquery.nouislider.js +668 -0
  14. data/app/assets/javascripts/bootstrap-material/material.js +226 -0
  15. data/app/assets/javascripts/bootstrap-material/ripples.js +324 -0
  16. data/app/assets/javascripts/bootstrap-material/snackbar.js +153 -0
  17. data/app/assets/stylesheets/_bootstrap-material-fullpalette.scss +3 -0
  18. data/app/assets/stylesheets/_bootstrap-material-roboto.scss +1 -0
  19. data/app/assets/stylesheets/_bootstrap-material.scss +3 -0
  20. data/app/assets/stylesheets/bootstrap-material-fullpalette/index.css +5 -0
  21. data/app/assets/stylesheets/bootstrap-material-fullpalette/material-fullpalette.css.erb +73442 -0
  22. data/app/assets/stylesheets/bootstrap-material-fullpalette/ripples.css +41 -0
  23. data/app/assets/stylesheets/bootstrap-material-fullpalette/snackbar.css +35 -0
  24. data/app/assets/stylesheets/bootstrap-material/index.css +5 -0
  25. data/app/assets/stylesheets/bootstrap-material/material.css.erb +8308 -0
  26. data/app/assets/stylesheets/bootstrap-material/ripples.css +41 -0
  27. data/app/assets/stylesheets/bootstrap-material/snackbar.css +35 -0
  28. data/bootstrap-material.gemspec +21 -0
  29. data/lib/bootstrap-material.rb +3 -0
  30. data/lib/bootstrap-material/engine.rb +4 -0
  31. metadata +86 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: dd63c6ac80e1b6e8639b976e565065d893c9dc52
4
+ data.tar.gz: 0b88824df2aec708b8c845ade61aef5915045289
5
+ SHA512:
6
+ metadata.gz: 8870242bb2c08c9f5af0ef51e981525f100155e5275137eae4ffab54c30f91521170afae5d3a4c82e1e4c6bdc0cd4f6414ef6529d4e552be21b5d2d6cfb17ed9
7
+ data.tar.gz: 2caa93c50b5f79313933cfb2c406ea4e8288c16b7d1c4a78d4e16e48afc6068ff4478dc9936a9367583fb444268b4da44b9769050c8ad1759c1341055a5cdc0b
@@ -0,0 +1,19 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ test/dummy_app/log
18
+ tmp
19
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,32 @@
1
+ Bootstrap Material Design theme
2
+ Copyright (C) 2014+ Federico Zivolo
3
+
4
+ This program is free software: you can redistribute it and/or modify
5
+ it under the terms you can find below.
6
+
7
+ You can use this software for free only for no-profit projects.
8
+ If you'd like to use this software in a commercial project you may
9
+ contact the author (Federico Zivolo) of the software and ask for his
10
+ permission and fulfill his conditions.
11
+
12
+ You can edit and/or redistribute this software only providing a copy
13
+ of this license with it.
14
+
15
+ You cannot sell this software, any change to the software must be
16
+ published under the same license of the original software, in case you
17
+ don't want to publish your changes you can use a different license.
18
+ It will be valid only if your changes are not published but
19
+ keep private for personal projects or closed-source projects, in case
20
+ you want to publish your changes you must switch again to the original
21
+ license provided with the software.
22
+
23
+ This software can be sold if used inside a software which uses it as
24
+ dependency, in any case, this license must be included in the
25
+ software.
26
+
27
+ This program is distributed in the hope that it will be useful,
28
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
29
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30
+ GNU General Public License for more details.
31
+
32
+ This license could be edited in any moment without alert.
@@ -0,0 +1,79 @@
1
+ Material Design Gem for Bootstrap
2
+ =========================
3
+
4
+ I decided to package this gem as an update to [Aufree](https://github.com/Aufree/bootstrap-material-design)'s since the repository was marked as inactive.
5
+
6
+ bootstrap-material gives [FezVrasta](https://github.com/FezVrasta/)'s [Bootstrap-Material-Design](https://github.com/FezVrasta/bootstrap-material-design) theme in an easy to use gem.
7
+
8
+ You can find FezVrasta's demo of the theme [here](http://fezvrasta.github.io/bootstrap-material-design/).
9
+
10
+ ## Installation
11
+
12
+ Add it to your Gemfile:
13
+
14
+ ```ruby
15
+ gem 'bootstrap-material'`
16
+ ```
17
+
18
+ Then:
19
+
20
+ ```bash
21
+ bundle
22
+ ```
23
+
24
+ Or just install it:
25
+
26
+ ```bash
27
+ gem install bootstrap-material
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ Note: `bootstrap-sass ~>3.0` is a dependency for this gem, so make sure you have it in your Gemfile and in the asset pipeline!
33
+
34
+ #### On to the good stuff... To use the theme:
35
+
36
+ Require it in your `application.css` (after `bootstrap-sass`):
37
+
38
+ ```css
39
+ *= require bootstrap-material
40
+ ```
41
+
42
+ or, if you would like the full palette of colors:
43
+
44
+ ```css
45
+ *= require bootstrap-material-fullpalette
46
+ ```
47
+
48
+ Next, require it in your `application.js`:
49
+
50
+ ```javascript
51
+ //= require bootstrap-material
52
+ ```
53
+
54
+ Finally, if you would like the Roboto font, enter this line in your `application.css` (after requiring `bootstrap-material`):
55
+
56
+ ```css
57
+ *= require bootstrap-material-roboto
58
+ ```
59
+
60
+ Restart your application and enjoy!
61
+
62
+ ## Todo
63
+
64
+ - [ ] Tests!
65
+ - [ ] Helper functions?
66
+
67
+ ## Thanks
68
+
69
+ * [Bootstrap](http://getbootstrap.com/)
70
+ * [Bootstrap Material Design](https://github.com/FezVrasta/bootstrap-material-design)
71
+ * [Aufree](https://github.com/Aufree/bootstrap-material-design)
72
+
73
+ ## Contributing
74
+
75
+ 1. Fork it
76
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
77
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
78
+ 4. Push to the branch (`git push origin my-new-feature`)
79
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,428 @@
1
+ https://github.com/google/material-design-icons/blob/master/LICENSE
2
+
3
+
4
+ Attribution-ShareAlike 4.0 International
5
+
6
+ =======================================================================
7
+
8
+ Creative Commons Corporation ("Creative Commons") is not a law firm and
9
+ does not provide legal services or legal advice. Distribution of
10
+ Creative Commons public licenses does not create a lawyer-client or
11
+ other relationship. Creative Commons makes its licenses and related
12
+ information available on an "as-is" basis. Creative Commons gives no
13
+ warranties regarding its licenses, any material licensed under their
14
+ terms and conditions, or any related information. Creative Commons
15
+ disclaims all liability for damages resulting from their use to the
16
+ fullest extent possible.
17
+
18
+ Using Creative Commons Public Licenses
19
+
20
+ Creative Commons public licenses provide a standard set of terms and
21
+ conditions that creators and other rights holders may use to share
22
+ original works of authorship and other material subject to copyright
23
+ and certain other rights specified in the public license below. The
24
+ following considerations are for informational purposes only, are not
25
+ exhaustive, and do not form part of our licenses.
26
+
27
+ Considerations for licensors: Our public licenses are
28
+ intended for use by those authorized to give the public
29
+ permission to use material in ways otherwise restricted by
30
+ copyright and certain other rights. Our licenses are
31
+ irrevocable. Licensors should read and understand the terms
32
+ and conditions of the license they choose before applying it.
33
+ Licensors should also secure all rights necessary before
34
+ applying our licenses so that the public can reuse the
35
+ material as expected. Licensors should clearly mark any
36
+ material not subject to the license. This includes other CC-
37
+ licensed material, or material used under an exception or
38
+ limitation to copyright. More considerations for licensors:
39
+ wiki.creativecommons.org/Considerations_for_licensors
40
+
41
+ Considerations for the public: By using one of our public
42
+ licenses, a licensor grants the public permission to use the
43
+ licensed material under specified terms and conditions. If
44
+ the licensor's permission is not necessary for any reason--for
45
+ example, because of any applicable exception or limitation to
46
+ copyright--then that use is not regulated by the license. Our
47
+ licenses grant only permissions under copyright and certain
48
+ other rights that a licensor has authority to grant. Use of
49
+ the licensed material may still be restricted for other
50
+ reasons, including because others have copyright or other
51
+ rights in the material. A licensor may make special requests,
52
+ such as asking that all changes be marked or described.
53
+ Although not required by our licenses, you are encouraged to
54
+ respect those requests where reasonable. More_considerations
55
+ for the public:
56
+ wiki.creativecommons.org/Considerations_for_licensees
57
+
58
+ =======================================================================
59
+
60
+ Creative Commons Attribution-ShareAlike 4.0 International Public
61
+ License
62
+
63
+ By exercising the Licensed Rights (defined below), You accept and agree
64
+ to be bound by the terms and conditions of this Creative Commons
65
+ Attribution-ShareAlike 4.0 International Public License ("Public
66
+ License"). To the extent this Public License may be interpreted as a
67
+ contract, You are granted the Licensed Rights in consideration of Your
68
+ acceptance of these terms and conditions, and the Licensor grants You
69
+ such rights in consideration of benefits the Licensor receives from
70
+ making the Licensed Material available under these terms and
71
+ conditions.
72
+
73
+
74
+ Section 1 -- Definitions.
75
+
76
+ a. Adapted Material means material subject to Copyright and Similar
77
+ Rights that is derived from or based upon the Licensed Material
78
+ and in which the Licensed Material is translated, altered,
79
+ arranged, transformed, or otherwise modified in a manner requiring
80
+ permission under the Copyright and Similar Rights held by the
81
+ Licensor. For purposes of this Public License, where the Licensed
82
+ Material is a musical work, performance, or sound recording,
83
+ Adapted Material is always produced where the Licensed Material is
84
+ synched in timed relation with a moving image.
85
+
86
+ b. Adapter's License means the license You apply to Your Copyright
87
+ and Similar Rights in Your contributions to Adapted Material in
88
+ accordance with the terms and conditions of this Public License.
89
+
90
+ c. BY-SA Compatible License means a license listed at
91
+ creativecommons.org/compatiblelicenses, approved by Creative
92
+ Commons as essentially the equivalent of this Public License.
93
+
94
+ d. Copyright and Similar Rights means copyright and/or similar rights
95
+ closely related to copyright including, without limitation,
96
+ performance, broadcast, sound recording, and Sui Generis Database
97
+ Rights, without regard to how the rights are labeled or
98
+ categorized. For purposes of this Public License, the rights
99
+ specified in Section 2(b)(1)-(2) are not Copyright and Similar
100
+ Rights.
101
+
102
+ e. Effective Technological Measures means those measures that, in the
103
+ absence of proper authority, may not be circumvented under laws
104
+ fulfilling obligations under Article 11 of the WIPO Copyright
105
+ Treaty adopted on December 20, 1996, and/or similar international
106
+ agreements.
107
+
108
+ f. Exceptions and Limitations means fair use, fair dealing, and/or
109
+ any other exception or limitation to Copyright and Similar Rights
110
+ that applies to Your use of the Licensed Material.
111
+
112
+ g. License Elements means the license attributes listed in the name
113
+ of a Creative Commons Public License. The License Elements of this
114
+ Public License are Attribution and ShareAlike.
115
+
116
+ h. Licensed Material means the artistic or literary work, database,
117
+ or other material to which the Licensor applied this Public
118
+ License.
119
+
120
+ i. Licensed Rights means the rights granted to You subject to the
121
+ terms and conditions of this Public License, which are limited to
122
+ all Copyright and Similar Rights that apply to Your use of the
123
+ Licensed Material and that the Licensor has authority to license.
124
+
125
+ j. Licensor means the individual(s) or entity(ies) granting rights
126
+ under this Public License.
127
+
128
+ k. Share means to provide material to the public by any means or
129
+ process that requires permission under the Licensed Rights, such
130
+ as reproduction, public display, public performance, distribution,
131
+ dissemination, communication, or importation, and to make material
132
+ available to the public including in ways that members of the
133
+ public may access the material from a place and at a time
134
+ individually chosen by them.
135
+
136
+ l. Sui Generis Database Rights means rights other than copyright
137
+ resulting from Directive 96/9/EC of the European Parliament and of
138
+ the Council of 11 March 1996 on the legal protection of databases,
139
+ as amended and/or succeeded, as well as other essentially
140
+ equivalent rights anywhere in the world.
141
+
142
+ m. You means the individual or entity exercising the Licensed Rights
143
+ under this Public License. Your has a corresponding meaning.
144
+
145
+
146
+ Section 2 -- Scope.
147
+
148
+ a. License grant.
149
+
150
+ 1. Subject to the terms and conditions of this Public License,
151
+ the Licensor hereby grants You a worldwide, royalty-free,
152
+ non-sublicensable, non-exclusive, irrevocable license to
153
+ exercise the Licensed Rights in the Licensed Material to:
154
+
155
+ a. reproduce and Share the Licensed Material, in whole or
156
+ in part; and
157
+
158
+ b. produce, reproduce, and Share Adapted Material.
159
+
160
+ 2. Exceptions and Limitations. For the avoidance of doubt, where
161
+ Exceptions and Limitations apply to Your use, this Public
162
+ License does not apply, and You do not need to comply with
163
+ its terms and conditions.
164
+
165
+ 3. Term. The term of this Public License is specified in Section
166
+ 6(a).
167
+
168
+ 4. Media and formats; technical modifications allowed. The
169
+ Licensor authorizes You to exercise the Licensed Rights in
170
+ all media and formats whether now known or hereafter created,
171
+ and to make technical modifications necessary to do so. The
172
+ Licensor waives and/or agrees not to assert any right or
173
+ authority to forbid You from making technical modifications
174
+ necessary to exercise the Licensed Rights, including
175
+ technical modifications necessary to circumvent Effective
176
+ Technological Measures. For purposes of this Public License,
177
+ simply making modifications authorized by this Section 2(a)
178
+ (4) never produces Adapted Material.
179
+
180
+ 5. Downstream recipients.
181
+
182
+ a. Offer from the Licensor -- Licensed Material. Every
183
+ recipient of the Licensed Material automatically
184
+ receives an offer from the Licensor to exercise the
185
+ Licensed Rights under the terms and conditions of this
186
+ Public License.
187
+
188
+ b. Additional offer from the Licensor -- Adapted Material.
189
+ Every recipient of Adapted Material from You
190
+ automatically receives an offer from the Licensor to
191
+ exercise the Licensed Rights in the Adapted Material
192
+ under the conditions of the Adapter's License You apply.
193
+
194
+ c. No downstream restrictions. You may not offer or impose
195
+ any additional or different terms or conditions on, or
196
+ apply any Effective Technological Measures to, the
197
+ Licensed Material if doing so restricts exercise of the
198
+ Licensed Rights by any recipient of the Licensed
199
+ Material.
200
+
201
+ 6. No endorsement. Nothing in this Public License constitutes or
202
+ may be construed as permission to assert or imply that You
203
+ are, or that Your use of the Licensed Material is, connected
204
+ with, or sponsored, endorsed, or granted official status by,
205
+ the Licensor or others designated to receive attribution as
206
+ provided in Section 3(a)(1)(A)(i).
207
+
208
+ b. Other rights.
209
+
210
+ 1. Moral rights, such as the right of integrity, are not
211
+ licensed under this Public License, nor are publicity,
212
+ privacy, and/or other similar personality rights; however, to
213
+ the extent possible, the Licensor waives and/or agrees not to
214
+ assert any such rights held by the Licensor to the limited
215
+ extent necessary to allow You to exercise the Licensed
216
+ Rights, but not otherwise.
217
+
218
+ 2. Patent and trademark rights are not licensed under this
219
+ Public License.
220
+
221
+ 3. To the extent possible, the Licensor waives any right to
222
+ collect royalties from You for the exercise of the Licensed
223
+ Rights, whether directly or through a collecting society
224
+ under any voluntary or waivable statutory or compulsory
225
+ licensing scheme. In all other cases the Licensor expressly
226
+ reserves any right to collect such royalties.
227
+
228
+
229
+ Section 3 -- License Conditions.
230
+
231
+ Your exercise of the Licensed Rights is expressly made subject to the
232
+ following conditions.
233
+
234
+ a. Attribution.
235
+
236
+ 1. If You Share the Licensed Material (including in modified
237
+ form), You must:
238
+
239
+ a. retain the following if it is supplied by the Licensor
240
+ with the Licensed Material:
241
+
242
+ i. identification of the creator(s) of the Licensed
243
+ Material and any others designated to receive
244
+ attribution, in any reasonable manner requested by
245
+ the Licensor (including by pseudonym if
246
+ designated);
247
+
248
+ ii. a copyright notice;
249
+
250
+ iii. a notice that refers to this Public License;
251
+
252
+ iv. a notice that refers to the disclaimer of
253
+ warranties;
254
+
255
+ v. a URI or hyperlink to the Licensed Material to the
256
+ extent reasonably practicable;
257
+
258
+ b. indicate if You modified the Licensed Material and
259
+ retain an indication of any previous modifications; and
260
+
261
+ c. indicate the Licensed Material is licensed under this
262
+ Public License, and include the text of, or the URI or
263
+ hyperlink to, this Public License.
264
+
265
+ 2. You may satisfy the conditions in Section 3(a)(1) in any
266
+ reasonable manner based on the medium, means, and context in
267
+ which You Share the Licensed Material. For example, it may be
268
+ reasonable to satisfy the conditions by providing a URI or
269
+ hyperlink to a resource that includes the required
270
+ information.
271
+
272
+ 3. If requested by the Licensor, You must remove any of the
273
+ information required by Section 3(a)(1)(A) to the extent
274
+ reasonably practicable.
275
+
276
+ b. ShareAlike.
277
+
278
+ In addition to the conditions in Section 3(a), if You Share
279
+ Adapted Material You produce, the following conditions also apply.
280
+
281
+ 1. The Adapter's License You apply must be a Creative Commons
282
+ license with the same License Elements, this version or
283
+ later, or a BY-SA Compatible License.
284
+
285
+ 2. You must include the text of, or the URI or hyperlink to, the
286
+ Adapter's License You apply. You may satisfy this condition
287
+ in any reasonable manner based on the medium, means, and
288
+ context in which You Share Adapted Material.
289
+
290
+ 3. You may not offer or impose any additional or different terms
291
+ or conditions on, or apply any Effective Technological
292
+ Measures to, Adapted Material that restrict exercise of the
293
+ rights granted under the Adapter's License You apply.
294
+
295
+
296
+ Section 4 -- Sui Generis Database Rights.
297
+
298
+ Where the Licensed Rights include Sui Generis Database Rights that
299
+ apply to Your use of the Licensed Material:
300
+
301
+ a. for the avoidance of doubt, Section 2(a)(1) grants You the right
302
+ to extract, reuse, reproduce, and Share all or a substantial
303
+ portion of the contents of the database;
304
+
305
+ b. if You include all or a substantial portion of the database
306
+ contents in a database in which You have Sui Generis Database
307
+ Rights, then the database in which You have Sui Generis Database
308
+ Rights (but not its individual contents) is Adapted Material,
309
+
310
+ including for purposes of Section 3(b); and
311
+ c. You must comply with the conditions in Section 3(a) if You Share
312
+ all or a substantial portion of the contents of the database.
313
+
314
+ For the avoidance of doubt, this Section 4 supplements and does not
315
+ replace Your obligations under this Public License where the Licensed
316
+ Rights include other Copyright and Similar Rights.
317
+
318
+
319
+ Section 5 -- Disclaimer of Warranties and Limitation of Liability.
320
+
321
+ a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
322
+ EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
323
+ AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
324
+ ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
325
+ IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
326
+ WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
327
+ PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
328
+ ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
329
+ KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
330
+ ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
331
+
332
+ b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
333
+ TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
334
+ NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
335
+ INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
336
+ COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
337
+ USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
338
+ ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
339
+ DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
340
+ IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
341
+
342
+ c. The disclaimer of warranties and limitation of liability provided
343
+ above shall be interpreted in a manner that, to the extent
344
+ possible, most closely approximates an absolute disclaimer and
345
+ waiver of all liability.
346
+
347
+
348
+ Section 6 -- Term and Termination.
349
+
350
+ a. This Public License applies for the term of the Copyright and
351
+ Similar Rights licensed here. However, if You fail to comply with
352
+ this Public License, then Your rights under this Public License
353
+ terminate automatically.
354
+
355
+ b. Where Your right to use the Licensed Material has terminated under
356
+ Section 6(a), it reinstates:
357
+
358
+ 1. automatically as of the date the violation is cured, provided
359
+ it is cured within 30 days of Your discovery of the
360
+ violation; or
361
+
362
+ 2. upon express reinstatement by the Licensor.
363
+
364
+ For the avoidance of doubt, this Section 6(b) does not affect any
365
+ right the Licensor may have to seek remedies for Your violations
366
+ of this Public License.
367
+
368
+ c. For the avoidance of doubt, the Licensor may also offer the
369
+ Licensed Material under separate terms or conditions or stop
370
+ distributing the Licensed Material at any time; however, doing so
371
+ will not terminate this Public License.
372
+
373
+ d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
374
+ License.
375
+
376
+
377
+ Section 7 -- Other Terms and Conditions.
378
+
379
+ a. The Licensor shall not be bound by any additional or different
380
+ terms or conditions communicated by You unless expressly agreed.
381
+
382
+ b. Any arrangements, understandings, or agreements regarding the
383
+ Licensed Material not stated herein are separate from and
384
+ independent of the terms and conditions of this Public License.
385
+
386
+
387
+ Section 8 -- Interpretation.
388
+
389
+ a. For the avoidance of doubt, this Public License does not, and
390
+ shall not be interpreted to, reduce, limit, restrict, or impose
391
+ conditions on any use of the Licensed Material that could lawfully
392
+ be made without permission under this Public License.
393
+
394
+ b. To the extent possible, if any provision of this Public License is
395
+ deemed unenforceable, it shall be automatically reformed to the
396
+ minimum extent necessary to make it enforceable. If the provision
397
+ cannot be reformed, it shall be severed from this Public License
398
+ without affecting the enforceability of the remaining terms and
399
+ conditions.
400
+
401
+ c. No term or condition of this Public License will be waived and no
402
+ failure to comply consented to unless expressly agreed to by the
403
+ Licensor.
404
+
405
+ d. Nothing in this Public License constitutes or may be interpreted
406
+ as a limitation upon, or waiver of, any privileges and immunities
407
+ that apply to the Licensor or You, including from the legal
408
+ processes of any jurisdiction or authority.
409
+
410
+
411
+ =======================================================================
412
+
413
+ Creative Commons is not a party to its public licenses.
414
+ Notwithstanding, Creative Commons may elect to apply one of its public
415
+ licenses to material it publishes and in those instances will be
416
+ considered the "Licensor." Except for the limited purpose of indicating
417
+ that material is shared under a Creative Commons public license or as
418
+ otherwise permitted by the Creative Commons policies published at
419
+ creativecommons.org/policies, Creative Commons does not authorize the
420
+ use of the trademark "Creative Commons" or any other trademark or logo
421
+ of Creative Commons without its prior written consent including,
422
+ without limitation, in connection with any unauthorized modifications
423
+ to any of its public licenses or any other arrangements,
424
+ understandings, or agreements concerning use of licensed material. For
425
+ the avoidance of doubt, this paragraph does not form part of the public
426
+ licenses.
427
+
428
+ Creative Commons may be contacted at creativecommons.org.