gremlinpython 3.7.4__py3-none-any.whl → 3.7.5.dev1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gremlin_python/__init__.py +1 -0
- gremlin_python/__version__.py +2 -2
- gremlin_python/driver/useragent.py +1 -1
- gremlin_python/process/graph_traversal.py +49 -0
- {gremlinpython-3.7.4.dist-info → gremlinpython-3.7.5.dev1.dist-info}/METADATA +11 -8
- {gremlinpython-3.7.4.dist-info → gremlinpython-3.7.5.dev1.dist-info}/RECORD +10 -12
- {gremlinpython-3.7.4.dist-info → gremlinpython-3.7.5.dev1.dist-info}/WHEEL +1 -1
- gremlinpython-3.7.4.dist-info/LICENSE +0 -202
- gremlinpython-3.7.4.dist-info/NOTICE +0 -5
- {gremlinpython-3.7.4.data/data → gremlinpython-3.7.5.dev1.dist-info/licenses}/LICENSE +0 -0
- {gremlinpython-3.7.4.data/data → gremlinpython-3.7.5.dev1.dist-info/licenses}/NOTICE +0 -0
- {gremlinpython-3.7.4.dist-info → gremlinpython-3.7.5.dev1.dist-info}/top_level.txt +0 -0
gremlin_python/__init__.py
CHANGED
gremlin_python/__version__.py
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
#
|
|
19
19
|
import platform
|
|
20
20
|
|
|
21
|
-
gremlin_version = "3.7.
|
|
21
|
+
gremlin_version = "3.7.5" # DO NOT MODIFY - Configured automatically by Maven Replacer Plugin
|
|
22
22
|
|
|
23
23
|
def _generate_user_agent():
|
|
24
24
|
application_name = "NotAvailable"
|
|
@@ -1866,10 +1866,18 @@ def aggregate(*args):
|
|
|
1866
1866
|
return __.aggregate(*args)
|
|
1867
1867
|
|
|
1868
1868
|
|
|
1869
|
+
def all_(*args):
|
|
1870
|
+
return __.all_(*args)
|
|
1871
|
+
|
|
1872
|
+
|
|
1869
1873
|
def and_(*args):
|
|
1870
1874
|
return __.and_(*args)
|
|
1871
1875
|
|
|
1872
1876
|
|
|
1877
|
+
def any_(*args):
|
|
1878
|
+
return __.any_(*args)
|
|
1879
|
+
|
|
1880
|
+
|
|
1873
1881
|
def as_(*args):
|
|
1874
1882
|
return __.as_(*args)
|
|
1875
1883
|
|
|
@@ -1930,10 +1938,18 @@ def coin(*args):
|
|
|
1930
1938
|
return __.coin(*args)
|
|
1931
1939
|
|
|
1932
1940
|
|
|
1941
|
+
def combine(*args):
|
|
1942
|
+
return __.combine(*args)
|
|
1943
|
+
|
|
1944
|
+
|
|
1933
1945
|
def concat(*args):
|
|
1934
1946
|
return __.concat(*args)
|
|
1935
1947
|
|
|
1936
1948
|
|
|
1949
|
+
def conjoin(*args):
|
|
1950
|
+
return __.conjoin(*args)
|
|
1951
|
+
|
|
1952
|
+
|
|
1937
1953
|
def constant(*args):
|
|
1938
1954
|
return __.constant(*args)
|
|
1939
1955
|
|
|
@@ -1962,6 +1978,10 @@ def dedup(*args):
|
|
|
1962
1978
|
return __.dedup(*args)
|
|
1963
1979
|
|
|
1964
1980
|
|
|
1981
|
+
def difference(*args):
|
|
1982
|
+
return __.difference(*args)
|
|
1983
|
+
|
|
1984
|
+
|
|
1965
1985
|
def disjunct(*args):
|
|
1966
1986
|
return __.disjunct(*args)
|
|
1967
1987
|
|
|
@@ -2104,6 +2124,10 @@ def inject(*args):
|
|
|
2104
2124
|
return __.inject(*args)
|
|
2105
2125
|
|
|
2106
2126
|
|
|
2127
|
+
def intersect(*args):
|
|
2128
|
+
return __.intersect(*args)
|
|
2129
|
+
|
|
2130
|
+
|
|
2107
2131
|
def is_(*args):
|
|
2108
2132
|
return __.is_(*args)
|
|
2109
2133
|
|
|
@@ -2160,6 +2184,10 @@ def mean(*args):
|
|
|
2160
2184
|
return __.mean(*args)
|
|
2161
2185
|
|
|
2162
2186
|
|
|
2187
|
+
def merge(*args):
|
|
2188
|
+
return __.merge(*args)
|
|
2189
|
+
|
|
2190
|
+
|
|
2163
2191
|
def merge_e(*args):
|
|
2164
2192
|
return __.merge_e(*args)
|
|
2165
2193
|
|
|
@@ -2224,6 +2252,10 @@ def path(*args):
|
|
|
2224
2252
|
return __.path(*args)
|
|
2225
2253
|
|
|
2226
2254
|
|
|
2255
|
+
def product(*args):
|
|
2256
|
+
return __.product(*args)
|
|
2257
|
+
|
|
2258
|
+
|
|
2227
2259
|
def project(*args):
|
|
2228
2260
|
return __.project(*args)
|
|
2229
2261
|
|
|
@@ -2403,6 +2435,7 @@ def values(*args):
|
|
|
2403
2435
|
def where(*args):
|
|
2404
2436
|
return __.where(*args)
|
|
2405
2437
|
|
|
2438
|
+
statics.add_static('E', E)
|
|
2406
2439
|
|
|
2407
2440
|
statics.add_static('V', V)
|
|
2408
2441
|
|
|
@@ -2416,8 +2449,12 @@ statics.add_static('add_v', add_v)
|
|
|
2416
2449
|
|
|
2417
2450
|
statics.add_static('aggregate', aggregate)
|
|
2418
2451
|
|
|
2452
|
+
statics.add_static('all_', all_)
|
|
2453
|
+
|
|
2419
2454
|
statics.add_static('and_', and_)
|
|
2420
2455
|
|
|
2456
|
+
statics.add_static('any_', any_)
|
|
2457
|
+
|
|
2421
2458
|
statics.add_static('as_', as_)
|
|
2422
2459
|
|
|
2423
2460
|
statics.add_static('as_date', as_date)
|
|
@@ -2448,8 +2485,12 @@ statics.add_static('coalesce', coalesce)
|
|
|
2448
2485
|
|
|
2449
2486
|
statics.add_static('coin', coin)
|
|
2450
2487
|
|
|
2488
|
+
statics.add_static('combine', combine)
|
|
2489
|
+
|
|
2451
2490
|
statics.add_static('concat', concat)
|
|
2452
2491
|
|
|
2492
|
+
statics.add_static('conjoin', conjoin)
|
|
2493
|
+
|
|
2453
2494
|
statics.add_static('constant', constant)
|
|
2454
2495
|
|
|
2455
2496
|
statics.add_static('count', count)
|
|
@@ -2464,6 +2505,8 @@ statics.add_static('date_diff', date_diff)
|
|
|
2464
2505
|
|
|
2465
2506
|
statics.add_static('dedup', dedup)
|
|
2466
2507
|
|
|
2508
|
+
statics.add_static('difference', difference)
|
|
2509
|
+
|
|
2467
2510
|
statics.add_static('disjunct', disjunct)
|
|
2468
2511
|
|
|
2469
2512
|
statics.add_static('drop', drop)
|
|
@@ -2532,6 +2575,8 @@ statics.add_static('index', index)
|
|
|
2532
2575
|
|
|
2533
2576
|
statics.add_static('inject', inject)
|
|
2534
2577
|
|
|
2578
|
+
statics.add_static('intersect', intersect)
|
|
2579
|
+
|
|
2535
2580
|
statics.add_static('is_', is_)
|
|
2536
2581
|
|
|
2537
2582
|
statics.add_static('key', key)
|
|
@@ -2560,6 +2605,8 @@ statics.add_static('max_', max_)
|
|
|
2560
2605
|
|
|
2561
2606
|
statics.add_static('mean', mean)
|
|
2562
2607
|
|
|
2608
|
+
statics.add_static('merge', merge)
|
|
2609
|
+
|
|
2563
2610
|
statics.add_static('merge_e', merge_e)
|
|
2564
2611
|
|
|
2565
2612
|
statics.add_static('merge_v', merge_v)
|
|
@@ -2592,6 +2639,8 @@ statics.add_static('out_v', out_v)
|
|
|
2592
2639
|
|
|
2593
2640
|
statics.add_static('path', path)
|
|
2594
2641
|
|
|
2642
|
+
statics.add_static('product', product)
|
|
2643
|
+
|
|
2595
2644
|
statics.add_static('project', project)
|
|
2596
2645
|
|
|
2597
2646
|
statics.add_static('properties', properties)
|
|
@@ -1,12 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: gremlinpython
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.5.dev1
|
|
4
4
|
Summary: Gremlin-Python for Apache TinkerPop
|
|
5
|
-
|
|
6
|
-
Maintainer: Apache TinkerPop
|
|
7
|
-
Maintainer-email: dev@tinkerpop.apache.org
|
|
5
|
+
Maintainer-email: Apache TinkerPop <dev@tinkerpop.apache.org>
|
|
8
6
|
License: Apache 2
|
|
9
|
-
|
|
7
|
+
Project-URL: Homepage, https://tinkerpop.apache.org
|
|
10
8
|
Classifier: Intended Audience :: Developers
|
|
11
9
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
10
|
Classifier: Natural Language :: English
|
|
@@ -15,7 +13,7 @@ Requires-Python: >=3.9
|
|
|
15
13
|
Description-Content-Type: text/x-rst
|
|
16
14
|
License-File: LICENSE
|
|
17
15
|
License-File: NOTICE
|
|
18
|
-
Requires-Dist:
|
|
16
|
+
Requires-Dist: nest_asyncio
|
|
19
17
|
Requires-Dist: aiohttp<4.0.0,>=3.8.0
|
|
20
18
|
Requires-Dist: aenum<4.0.0,>=1.4.5
|
|
21
19
|
Requires-Dist: isodate<1.0.0,>=0.6.0
|
|
@@ -24,6 +22,12 @@ Provides-Extra: kerberos
|
|
|
24
22
|
Requires-Dist: kerberos<2.0.0,>=1.3.0; extra == "kerberos"
|
|
25
23
|
Provides-Extra: ujson
|
|
26
24
|
Requires-Dist: ujson>=2.0.0; extra == "ujson"
|
|
25
|
+
Provides-Extra: test
|
|
26
|
+
Requires-Dist: pytest<7.2.0,>=4.6.4; extra == "test"
|
|
27
|
+
Requires-Dist: radish-bdd==0.18.2; extra == "test"
|
|
28
|
+
Requires-Dist: PyHamcrest<3.0.0,>=1.9.0; extra == "test"
|
|
29
|
+
Requires-Dist: PyYAML>=5.3; extra == "test"
|
|
30
|
+
Dynamic: license-file
|
|
27
31
|
|
|
28
32
|
.. Licensed to the Apache Software Foundation (ASF) under one
|
|
29
33
|
.. or more contributor license agreements. See the NOTICE file
|
|
@@ -144,4 +148,3 @@ Update Vertex
|
|
|
144
148
|
|
|
145
149
|
NOTE that versions suffixed with "rc" are considered release candidates (i.e. pre-alpha, alpha, beta, etc.) and
|
|
146
150
|
thus for early testing purposes only. These releases are not suitable for production.
|
|
147
|
-
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
gremlin_python/__init__.py,sha256=
|
|
2
|
-
gremlin_python/__version__.py,sha256=
|
|
1
|
+
gremlin_python/__init__.py,sha256=hgKnJs3rosLSPPTb3D11rT1WbRFrVcWPNFWhvci8aKs,877
|
|
2
|
+
gremlin_python/__version__.py,sha256=cFRWHaN11XhVO1_PgXXCMHBfI0KeXc0i6qEp-HMDZro,800
|
|
3
3
|
gremlin_python/statics.py,sha256=BXnrfx25Todku_U0ddd-zB4eyQMf2paT5uuN9znK2fQ,2849
|
|
4
4
|
gremlin_python/driver/__init__.py,sha256=rbOOdo_19nz_mHTXVc5p8ZXLI5pUGMfXLKQiw7Olu7g,850
|
|
5
5
|
gremlin_python/driver/client.py,sha256=s-6cV2C0EMpvmyZZXWTq8kiFZEFLdn_HmWMF05mrSzU,8166
|
|
@@ -11,12 +11,12 @@ gremlin_python/driver/request.py,sha256=IlqBmQlT2UU95xbY6z1ajlmNQeDZ4ePzT4uF8M0U
|
|
|
11
11
|
gremlin_python/driver/resultset.py,sha256=_-13igfH1zQ72mgreDptPmUaXnadnprERVQTSZWeIl4,2669
|
|
12
12
|
gremlin_python/driver/serializer.py,sha256=wFCPAltRB2F0p9ZFyD0x2thoBmI81gPFZhAkV5XLBOQ,10244
|
|
13
13
|
gremlin_python/driver/transport.py,sha256=aEXb9oS1SMI9oKWYINnWuYhYaosi6FdsOJ7oj6FzkkY,1246
|
|
14
|
-
gremlin_python/driver/useragent.py,sha256=
|
|
14
|
+
gremlin_python/driver/useragent.py,sha256=f2QqZcPLpPLUeyHdSeOojBJWp1ueeiDG7lqjXkA1el8,1588
|
|
15
15
|
gremlin_python/driver/aiohttp/__init__.py,sha256=xzdixoKYCJCe4aRILYqdartQi4Py5fcQWqif3zzyUC8,787
|
|
16
16
|
gremlin_python/driver/aiohttp/transport.py,sha256=ZOfpSOA1ucw1tNnmp23cRukzoy3mVVKLjEkZpEl8EdE,11392
|
|
17
17
|
gremlin_python/process/__init__.py,sha256=rbOOdo_19nz_mHTXVc5p8ZXLI5pUGMfXLKQiw7Olu7g,850
|
|
18
18
|
gremlin_python/process/anonymous_traversal.py,sha256=A8evyPIAciRGiauDqUbyo4XnG3QTdO28l-TF2K7Ir2g,2448
|
|
19
|
-
gremlin_python/process/graph_traversal.py,sha256=
|
|
19
|
+
gremlin_python/process/graph_traversal.py,sha256=Lg2fg6VRKo58fnMhklGypqdn-auLhkM1s2zL6vN3kf0,70928
|
|
20
20
|
gremlin_python/process/strategies.py,sha256=95WIhzvvqejCEDOlhICGji9HgkwTUySGKt-yNCBTTh8,9474
|
|
21
21
|
gremlin_python/process/translator.py,sha256=NuaA2WfepvgDm3DrNa_u2Qvz70s9t6ICbFltPglQwBI,11147
|
|
22
22
|
gremlin_python/process/traversal.py,sha256=3xYpSeZyCxziA2nP3ZEhwfpcnDFBsy0t8utIYy4PG2c,23122
|
|
@@ -27,11 +27,9 @@ gremlin_python/structure/io/graphbinaryV1.py,sha256=TS2_y6e0IcM8eIjTh_jve7wSgErk
|
|
|
27
27
|
gremlin_python/structure/io/graphsonV2d0.py,sha256=uR8qG8H35RxNpqhamT79w6WEHz5ITyyXD5u881C0J-U,22196
|
|
28
28
|
gremlin_python/structure/io/graphsonV3d0.py,sha256=hJcz8KlHhS_BAwvwKC3dA24POZYK22a3W-AETdksCT4,25518
|
|
29
29
|
gremlin_python/structure/io/util.py,sha256=x0OEkGGX2ajgOuSbz1j3dO3_IlOPnPLV4m6SGAmNAeM,1846
|
|
30
|
-
gremlinpython-3.7.
|
|
31
|
-
gremlinpython-3.7.
|
|
32
|
-
gremlinpython-3.7.
|
|
33
|
-
gremlinpython-3.7.
|
|
34
|
-
gremlinpython-3.7.
|
|
35
|
-
gremlinpython-3.7.
|
|
36
|
-
gremlinpython-3.7.4.dist-info/top_level.txt,sha256=VVeR1g-oOCZBmKIaVzZ7fF2BYrnqOWpw7C2H71ksTAU,15
|
|
37
|
-
gremlinpython-3.7.4.dist-info/RECORD,,
|
|
30
|
+
gremlinpython-3.7.5.dev1.dist-info/licenses/LICENSE,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
|
31
|
+
gremlinpython-3.7.5.dev1.dist-info/licenses/NOTICE,sha256=8gM_LEyfAHZhVj_v_2rkqb4qlc9GJmPCvKDHOHYGpmM,170
|
|
32
|
+
gremlinpython-3.7.5.dev1.dist-info/METADATA,sha256=2B-YgZ4TsDBuqMfE2Gcw2Y7oO6INbS0g4H5pmeFNkbc,6672
|
|
33
|
+
gremlinpython-3.7.5.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
34
|
+
gremlinpython-3.7.5.dev1.dist-info/top_level.txt,sha256=VVeR1g-oOCZBmKIaVzZ7fF2BYrnqOWpw7C2H71ksTAU,15
|
|
35
|
+
gremlinpython-3.7.5.dev1.dist-info/RECORD,,
|
|
@@ -1,202 +0,0 @@
|
|
|
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.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|