swift 2.23.2__py3-none-any.whl → 2.35.0__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.
- swift/__init__.py +29 -50
- swift/account/auditor.py +21 -118
- swift/account/backend.py +33 -28
- swift/account/reaper.py +37 -28
- swift/account/replicator.py +22 -0
- swift/account/server.py +60 -26
- swift/account/utils.py +28 -11
- swift-2.23.2.data/scripts/swift-account-audit → swift/cli/account_audit.py +23 -13
- swift-2.23.2.data/scripts/swift-config → swift/cli/config.py +2 -2
- swift/cli/container_deleter.py +5 -11
- swift-2.23.2.data/scripts/swift-dispersion-populate → swift/cli/dispersion_populate.py +8 -7
- swift/cli/dispersion_report.py +10 -9
- swift-2.23.2.data/scripts/swift-drive-audit → swift/cli/drive_audit.py +63 -21
- swift/cli/form_signature.py +3 -7
- swift-2.23.2.data/scripts/swift-get-nodes → swift/cli/get_nodes.py +8 -2
- swift/cli/info.py +183 -29
- swift/cli/manage_shard_ranges.py +708 -37
- swift-2.23.2.data/scripts/swift-oldies → swift/cli/oldies.py +25 -14
- swift-2.23.2.data/scripts/swift-orphans → swift/cli/orphans.py +7 -3
- swift/cli/recon.py +196 -67
- swift-2.23.2.data/scripts/swift-recon-cron → swift/cli/recon_cron.py +17 -20
- swift-2.23.2.data/scripts/swift-reconciler-enqueue → swift/cli/reconciler_enqueue.py +2 -3
- swift/cli/relinker.py +807 -126
- swift/cli/reload.py +135 -0
- swift/cli/ringbuilder.py +217 -20
- swift/cli/ringcomposer.py +0 -1
- swift/cli/shard-info.py +4 -3
- swift/common/base_storage_server.py +9 -20
- swift/common/bufferedhttp.py +48 -74
- swift/common/constraints.py +20 -15
- swift/common/container_sync_realms.py +9 -11
- swift/common/daemon.py +25 -8
- swift/common/db.py +198 -127
- swift/common/db_auditor.py +168 -0
- swift/common/db_replicator.py +95 -55
- swift/common/digest.py +141 -0
- swift/common/direct_client.py +144 -33
- swift/common/error_limiter.py +93 -0
- swift/common/exceptions.py +25 -1
- swift/common/header_key_dict.py +2 -9
- swift/common/http_protocol.py +373 -0
- swift/common/internal_client.py +129 -59
- swift/common/linkat.py +3 -4
- swift/common/manager.py +284 -67
- swift/common/memcached.py +396 -147
- swift/common/middleware/__init__.py +4 -0
- swift/common/middleware/account_quotas.py +211 -46
- swift/common/middleware/acl.py +3 -8
- swift/common/middleware/backend_ratelimit.py +230 -0
- swift/common/middleware/bulk.py +22 -34
- swift/common/middleware/catch_errors.py +1 -3
- swift/common/middleware/cname_lookup.py +6 -11
- swift/common/middleware/container_quotas.py +1 -1
- swift/common/middleware/container_sync.py +39 -17
- swift/common/middleware/copy.py +12 -0
- swift/common/middleware/crossdomain.py +22 -9
- swift/common/middleware/crypto/__init__.py +2 -1
- swift/common/middleware/crypto/crypto_utils.py +11 -15
- swift/common/middleware/crypto/decrypter.py +28 -11
- swift/common/middleware/crypto/encrypter.py +12 -17
- swift/common/middleware/crypto/keymaster.py +8 -15
- swift/common/middleware/crypto/kms_keymaster.py +2 -1
- swift/common/middleware/dlo.py +15 -11
- swift/common/middleware/domain_remap.py +5 -4
- swift/common/middleware/etag_quoter.py +128 -0
- swift/common/middleware/formpost.py +73 -70
- swift/common/middleware/gatekeeper.py +8 -1
- swift/common/middleware/keystoneauth.py +33 -3
- swift/common/middleware/list_endpoints.py +4 -4
- swift/common/middleware/listing_formats.py +85 -49
- swift/common/middleware/memcache.py +4 -81
- swift/common/middleware/name_check.py +3 -2
- swift/common/middleware/proxy_logging.py +160 -92
- swift/common/middleware/ratelimit.py +17 -10
- swift/common/middleware/read_only.py +6 -4
- swift/common/middleware/recon.py +59 -22
- swift/common/middleware/s3api/acl_handlers.py +25 -3
- swift/common/middleware/s3api/acl_utils.py +6 -1
- swift/common/middleware/s3api/controllers/__init__.py +6 -0
- swift/common/middleware/s3api/controllers/acl.py +3 -2
- swift/common/middleware/s3api/controllers/bucket.py +242 -137
- swift/common/middleware/s3api/controllers/logging.py +2 -2
- swift/common/middleware/s3api/controllers/multi_delete.py +43 -20
- swift/common/middleware/s3api/controllers/multi_upload.py +219 -133
- swift/common/middleware/s3api/controllers/obj.py +112 -8
- swift/common/middleware/s3api/controllers/object_lock.py +44 -0
- swift/common/middleware/s3api/controllers/s3_acl.py +2 -2
- swift/common/middleware/s3api/controllers/tagging.py +57 -0
- swift/common/middleware/s3api/controllers/versioning.py +36 -7
- swift/common/middleware/s3api/etree.py +22 -9
- swift/common/middleware/s3api/exception.py +0 -4
- swift/common/middleware/s3api/s3api.py +113 -41
- swift/common/middleware/s3api/s3request.py +384 -218
- swift/common/middleware/s3api/s3response.py +126 -23
- swift/common/middleware/s3api/s3token.py +16 -17
- swift/common/middleware/s3api/schema/delete.rng +1 -1
- swift/common/middleware/s3api/subresource.py +7 -10
- swift/common/middleware/s3api/utils.py +27 -10
- swift/common/middleware/slo.py +665 -358
- swift/common/middleware/staticweb.py +64 -37
- swift/common/middleware/symlink.py +52 -19
- swift/common/middleware/tempauth.py +76 -58
- swift/common/middleware/tempurl.py +192 -174
- swift/common/middleware/versioned_writes/__init__.py +51 -0
- swift/common/middleware/{versioned_writes.py → versioned_writes/legacy.py} +27 -26
- swift/common/middleware/versioned_writes/object_versioning.py +1482 -0
- swift/common/middleware/x_profile/exceptions.py +1 -4
- swift/common/middleware/x_profile/html_viewer.py +18 -19
- swift/common/middleware/x_profile/profile_model.py +1 -2
- swift/common/middleware/xprofile.py +10 -10
- swift-2.23.2.data/scripts/swift-container-server → swift/common/recon.py +13 -8
- swift/common/registry.py +147 -0
- swift/common/request_helpers.py +324 -57
- swift/common/ring/builder.py +67 -25
- swift/common/ring/composite_builder.py +1 -1
- swift/common/ring/ring.py +177 -51
- swift/common/ring/utils.py +1 -1
- swift/common/splice.py +10 -6
- swift/common/statsd_client.py +205 -0
- swift/common/storage_policy.py +49 -44
- swift/common/swob.py +86 -102
- swift/common/{utils.py → utils/__init__.py} +2191 -2762
- swift/common/utils/base.py +131 -0
- swift/common/utils/config.py +433 -0
- swift/common/utils/ipaddrs.py +256 -0
- swift/common/utils/libc.py +345 -0
- swift/common/utils/logs.py +859 -0
- swift/common/utils/timestamp.py +412 -0
- swift/common/wsgi.py +555 -536
- swift/container/auditor.py +14 -100
- swift/container/backend.py +552 -227
- swift/container/reconciler.py +126 -37
- swift/container/replicator.py +96 -22
- swift/container/server.py +397 -176
- swift/container/sharder.py +1580 -639
- swift/container/sync.py +94 -88
- swift/container/updater.py +53 -32
- swift/obj/auditor.py +153 -35
- swift/obj/diskfile.py +466 -217
- swift/obj/expirer.py +406 -124
- swift/obj/mem_diskfile.py +7 -4
- swift/obj/mem_server.py +1 -0
- swift/obj/reconstructor.py +523 -262
- swift/obj/replicator.py +249 -188
- swift/obj/server.py +213 -122
- swift/obj/ssync_receiver.py +145 -85
- swift/obj/ssync_sender.py +113 -54
- swift/obj/updater.py +653 -139
- swift/obj/watchers/__init__.py +0 -0
- swift/obj/watchers/dark_data.py +213 -0
- swift/proxy/controllers/account.py +11 -11
- swift/proxy/controllers/base.py +848 -604
- swift/proxy/controllers/container.py +452 -86
- swift/proxy/controllers/info.py +3 -2
- swift/proxy/controllers/obj.py +1009 -490
- swift/proxy/server.py +185 -112
- swift-2.35.0.dist-info/AUTHORS +501 -0
- swift-2.35.0.dist-info/LICENSE +202 -0
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/METADATA +52 -61
- swift-2.35.0.dist-info/RECORD +201 -0
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/WHEEL +1 -1
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/entry_points.txt +43 -0
- swift-2.35.0.dist-info/pbr.json +1 -0
- swift/locale/de/LC_MESSAGES/swift.po +0 -1216
- swift/locale/en_GB/LC_MESSAGES/swift.po +0 -1207
- swift/locale/es/LC_MESSAGES/swift.po +0 -1085
- swift/locale/fr/LC_MESSAGES/swift.po +0 -909
- swift/locale/it/LC_MESSAGES/swift.po +0 -894
- swift/locale/ja/LC_MESSAGES/swift.po +0 -965
- swift/locale/ko_KR/LC_MESSAGES/swift.po +0 -964
- swift/locale/pt_BR/LC_MESSAGES/swift.po +0 -881
- swift/locale/ru/LC_MESSAGES/swift.po +0 -891
- swift/locale/tr_TR/LC_MESSAGES/swift.po +0 -832
- swift/locale/zh_CN/LC_MESSAGES/swift.po +0 -833
- swift/locale/zh_TW/LC_MESSAGES/swift.po +0 -838
- swift-2.23.2.data/scripts/swift-account-auditor +0 -23
- swift-2.23.2.data/scripts/swift-account-info +0 -51
- swift-2.23.2.data/scripts/swift-account-reaper +0 -23
- swift-2.23.2.data/scripts/swift-account-replicator +0 -34
- swift-2.23.2.data/scripts/swift-account-server +0 -23
- swift-2.23.2.data/scripts/swift-container-auditor +0 -23
- swift-2.23.2.data/scripts/swift-container-info +0 -51
- swift-2.23.2.data/scripts/swift-container-reconciler +0 -21
- swift-2.23.2.data/scripts/swift-container-replicator +0 -34
- swift-2.23.2.data/scripts/swift-container-sharder +0 -33
- swift-2.23.2.data/scripts/swift-container-sync +0 -23
- swift-2.23.2.data/scripts/swift-container-updater +0 -23
- swift-2.23.2.data/scripts/swift-dispersion-report +0 -24
- swift-2.23.2.data/scripts/swift-form-signature +0 -20
- swift-2.23.2.data/scripts/swift-init +0 -119
- swift-2.23.2.data/scripts/swift-object-auditor +0 -29
- swift-2.23.2.data/scripts/swift-object-expirer +0 -33
- swift-2.23.2.data/scripts/swift-object-info +0 -60
- swift-2.23.2.data/scripts/swift-object-reconstructor +0 -33
- swift-2.23.2.data/scripts/swift-object-relinker +0 -41
- swift-2.23.2.data/scripts/swift-object-replicator +0 -37
- swift-2.23.2.data/scripts/swift-object-server +0 -27
- swift-2.23.2.data/scripts/swift-object-updater +0 -23
- swift-2.23.2.data/scripts/swift-proxy-server +0 -23
- swift-2.23.2.data/scripts/swift-recon +0 -24
- swift-2.23.2.data/scripts/swift-ring-builder +0 -24
- swift-2.23.2.data/scripts/swift-ring-builder-analyzer +0 -22
- swift-2.23.2.data/scripts/swift-ring-composer +0 -22
- swift-2.23.2.dist-info/DESCRIPTION.rst +0 -166
- swift-2.23.2.dist-info/RECORD +0 -220
- swift-2.23.2.dist-info/metadata.json +0 -1
- swift-2.23.2.dist-info/pbr.json +0 -1
- {swift-2.23.2.dist-info → swift-2.35.0.dist-info}/top_level.txt +0 -0
swift-2.23.2.dist-info/RECORD
DELETED
@@ -1,220 +0,0 @@
|
|
1
|
-
swift/__init__.py,sha256=AvD-wceaoqTNHTQJES-KUoe3WCsGdoDEvpNd40s70As,3129
|
2
|
-
swift/account/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
|
-
swift/account/auditor.py,sha256=EfF5ZbRbA19q0OadHBwx_1cns6SfVOvqSZRVXZ08UDc,6606
|
4
|
-
swift/account/backend.py,sha256=q3SKqfWF7lCcfjw3ha19M3GgjXdUvdLlchCwJaOkqH0,24793
|
5
|
-
swift/account/reaper.py,sha256=crRB3Nng4H5a773FPekGqn34Aex4PkJEnTKBLLgyvXk,24574
|
6
|
-
swift/account/replicator.py,sha256=NHvQdpscOo-Iw4EulOb1iaAXO5MHRihGrth29Agj6tU,850
|
7
|
-
swift/account/server.py,sha256=4Mi3v5duOrCTsO31yC81zAK2cod3PCOPPpFTYN4h3Po,14165
|
8
|
-
swift/account/utils.py,sha256=gGJhFYd4lNrCZ1EdouZPRb8g6T8L6lDtFoRxgTPd8e0,4031
|
9
|
-
swift/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
10
|
-
swift/cli/container_deleter.py,sha256=nPrGE2AILnQD5lJRKJXStmtiOdwCmT_5MMkCx7EW1-A,7187
|
11
|
-
swift/cli/dispersion_report.py,sha256=wHyaV0ZqydtvpPcMj6OV_UZmoUUodPY0ypir-yC4Jls,17644
|
12
|
-
swift/cli/form_signature.py,sha256=rSfX6_yzcZ_jNgMj01yfbbcWOtWa9APHoNoUuZGUYFo,5558
|
13
|
-
swift/cli/info.py,sha256=qzbE5-W-EsyRfq2Ru7egskPXrH6REo2IJVgu3KuHf2Q,24832
|
14
|
-
swift/cli/manage_shard_ranges.py,sha256=WREKCIv01U8pCsRxU-cSAcQfWUWZsOvR1NCk8vZiF_A,20604
|
15
|
-
swift/cli/recon.py,sha256=MxRvBxUg9IfDS02G6Rto1eMClOvCia854u1kgdP9qbM,49134
|
16
|
-
swift/cli/relinker.py,sha256=VAlzgWswXT7fi6IhqnHJlND09WbwZ3IMsM2tColAyeE,6046
|
17
|
-
swift/cli/ring_builder_analyzer.py,sha256=Ak_qi_UnQU7509RQunK6ANB1b_MW_GL1MnxOHAxjLKA,11977
|
18
|
-
swift/cli/ringbuilder.py,sha256=arMU1kuv04M89vfGhREQmr9KD8Ey4CH3iA3kFAisMyQ,57549
|
19
|
-
swift/cli/ringcomposer.py,sha256=pXzs9LbE8RA6z6uDRBb-zvrsGkLSxVsuz58LCcxMNCo,6553
|
20
|
-
swift/cli/shard-info.py,sha256=1b46q_gswAyxSh5_7bKu5w2XGd8ESp-xSv4TEkyFtMg,7398
|
21
|
-
swift/common/__init__.py,sha256=E68YBcsI0CguVRZOPIx-uJaAq32swceKJwT8a4F6-G4,35
|
22
|
-
swift/common/base_storage_server.py,sha256=qNi4_USHppU-N-ZWxiOLwbSJ3sf1-yYbVLsMoQxmkd4,3145
|
23
|
-
swift/common/bufferedhttp.py,sha256=psTGpJ3NcwrxATMhnshlTCG1uJg17rMV9LMs0O5F-fQ,12433
|
24
|
-
swift/common/constraints.py,sha256=gnTPbHPQu7ceuRzwWwhRT-7AA1bW6amJCYsKFEpPn44,16906
|
25
|
-
swift/common/container_sync_realms.py,sha256=DPDpvn1r3npGRUQnyYIom05iiEsCeJq5ciLolcBkId4,6510
|
26
|
-
swift/common/daemon.py,sha256=i8BZLcCcRXpQ8yeV70bxFhaMUceegVufWqWp0IkBi7U,11679
|
27
|
-
swift/common/db.py,sha256=gpnMPush7m_Zp5LkInDvLtZhheT4bFI7AQxkro1vlPk,41525
|
28
|
-
swift/common/db_replicator.py,sha256=rVFGTKtSmFZrs4oUJqltaL0wn5puAYmYF1y6d54WTFg,44381
|
29
|
-
swift/common/direct_client.py,sha256=QamO_9EzVyUKEZKht_xzux8VoLuo8ss34T99mZz-7HM,24921
|
30
|
-
swift/common/exceptions.py,sha256=-1fx8CBApW7YQxw-E9UOcupbbIGynnMw_Fh_uS-5nIY,5682
|
31
|
-
swift/common/header_key_dict.py,sha256=xO0O7eJrrvGtu1NjaTP-WxygKscWAuhWNSRZJxp3mdI,2466
|
32
|
-
swift/common/http.py,sha256=ih6tclv8ZAo1BcQOZ-Z54J6T_-yiebfkS0_Qtg618EE,4623
|
33
|
-
swift/common/internal_client.py,sha256=SbIucdZnOLg_7GNEn96SdSdgSIXYKsBzkbAvGc6eGU8,37413
|
34
|
-
swift/common/linkat.py,sha256=xaQgYZB9IZDQfQzfnDoncTd7jhKmroPOzV3ZSxI7D6s,2388
|
35
|
-
swift/common/manager.py,sha256=vql3FlGrmuSuaB5hT9i0CrgXBhEOsunHI-Rlre7Suvw,28577
|
36
|
-
swift/common/memcached.py,sha256=iDr7dPV-u9-SXo64Aqmow42v1iUNZQHni1JfhtP2e_Q,20443
|
37
|
-
swift/common/request_helpers.py,sha256=Yhu6Yci-55-ubalHccv6yp-Wo2ik_dbMkty2FU1WXFE,29467
|
38
|
-
swift/common/splice.py,sha256=R6q8xYVfEPYZPBM-exFwYmdfcj-ZXUj5pOwXG5lRcos,5421
|
39
|
-
swift/common/storage_policy.py,sha256=ttzhhwZ4DsUkwk0b_iyhxK5c_PPrsiASwAvyl7-87QY,36963
|
40
|
-
swift/common/swob.py,sha256=BUjyefGApZKDYdia_j50LtaboefcpWI-goG2boYpnYc,60517
|
41
|
-
swift/common/utils.py,sha256=1eEZosNCx_qeldDRpVR0vExAOTqZzYVhiJ5VXIw9_Ws,202699
|
42
|
-
swift/common/wsgi.py,sha256=T1LsZh88euTsMe54Xtiv0RAOsAFJdL7PGEwbggPIWps,53940
|
43
|
-
swift/common/middleware/__init__.py,sha256=IOJ-Iadd42h9ew4GUcWaPPR8IdRdzGuppNaN1vzainc,1419
|
44
|
-
swift/common/middleware/account_quotas.py,sha256=gZypm3j8KS1YSDRuTVON7aXm0G0zDlP03MLjnVhqMnY,4932
|
45
|
-
swift/common/middleware/acl.py,sha256=FywN0QxDT_L_5MtMpXwgunOWwOQ-uisfMqac9i4VGQ8,11619
|
46
|
-
swift/common/middleware/bulk.py,sha256=vo4k1mT_uocFQAF_J5qI5A58GIFxNSwMdPQZYpw7S2I,35438
|
47
|
-
swift/common/middleware/catch_errors.py,sha256=NDJFj_A3Zl4lryJsh8SNHGWGpG5_Kp-PxGeh3qvWKww,5895
|
48
|
-
swift/common/middleware/cname_lookup.py,sha256=EivVUlElWS59HN3MlXzD2j1TC8allNZt6M6D10EDTAg,8604
|
49
|
-
swift/common/middleware/container_quotas.py,sha256=pCoFn-hurSvrDgiPSxNeXF1G3q4HoogsB6S5Sp0z2io,5441
|
50
|
-
swift/common/middleware/container_sync.py,sha256=o5UPr-BpFZwLjolMT58qu9s3A-kG7DhhqamIFux-xrs,6628
|
51
|
-
swift/common/middleware/copy.py,sha256=waLTon9OKj79ajQ_d0v9evt6wTkRZSaWp2GuvbnSsmc,19228
|
52
|
-
swift/common/middleware/crossdomain.py,sha256=GY0zukZIPDk5h301d_3UjASXD8lyQKnoGw8UDjIZ7o4,3486
|
53
|
-
swift/common/middleware/dlo.py,sha256=NMeEPAMjh1X4afJKZLtsdhLSZApvrFdDjVVsd9mH8S0,19902
|
54
|
-
swift/common/middleware/domain_remap.py,sha256=jmjG6n3kfs6DNR29ZpwxbwSwvWohgjqsfvYjdQnvRi8,8670
|
55
|
-
swift/common/middleware/formpost.py,sha256=r40rkqBfEcL9pL4CoQf2yS-n8CUiBXp5bz-bexf68gY,18411
|
56
|
-
swift/common/middleware/gatekeeper.py,sha256=Rz-b5IKoPdMI0g4OgWtEzM9sEqacaTHLU5m9lz3JJ98,5494
|
57
|
-
swift/common/middleware/healthcheck.py,sha256=3F4UgutBgQpTYfe_Oh2Kh8cQfUbdT0_k4BrmZnjK97M,2075
|
58
|
-
swift/common/middleware/keystoneauth.py,sha256=xOsvIRA4DrBu6oZam6hah1ns_CjUJVwZhO-dC-FJL0M,25235
|
59
|
-
swift/common/middleware/list_endpoints.py,sha256=sAiohDn48UpN9ykyU1H5xQsoCvbqG96w1rvAADY7DSM,10060
|
60
|
-
swift/common/middleware/listing_formats.py,sha256=1BmrF1P4qpyZzdDNReTpYHYtAnqs52Z0c5S_at_9BSY,8450
|
61
|
-
swift/common/middleware/memcache.py,sha256=2nphT6snUz0azP5my-FF4foyG7KeJfKs_uYojt9ah6E,4681
|
62
|
-
swift/common/middleware/name_check.py,sha256=SYjLKLKDmZa76oWrqs5B96aRDqKhaHTD90x_BWXEBiA,5332
|
63
|
-
swift/common/middleware/proxy_logging.py,sha256=mldJNZpWg9e7h828JuadXer9F_fHzISOvlXUz7zguXQ,19750
|
64
|
-
swift/common/middleware/ratelimit.py,sha256=Y-J6t6tdrUphACsVabV4I4bxHbL-XSbYE3VA5ji8oe4,14017
|
65
|
-
swift/common/middleware/read_only.py,sha256=MF8o7WcuQtjF5KLG9yLLGD5pb_foq_cui8X5SU28Z7U,4433
|
66
|
-
swift/common/middleware/recon.py,sha256=c4C4xvkmoDbWZM_FtRhKQUBEEKvpPux7RrbnRJTJj5E,16404
|
67
|
-
swift/common/middleware/slo.py,sha256=-fl25zT5DyTPvRvkybGXALZ68pMsQ3l_edcAAnwNgqw,69153
|
68
|
-
swift/common/middleware/staticweb.py,sha256=VjWcfyOyfhnYIxhouhHxapowTqdplTqzOClCRcAh0Z8,24651
|
69
|
-
swift/common/middleware/symlink.py,sha256=M-Q2s5YHR9DW1d30qTNZE6itcajOJhnNQKi6EagaVOo,33453
|
70
|
-
swift/common/middleware/tempauth.py,sha256=P2NmB2broZmTd5DdsA_9m_uk71t-LcbiusONHKZtfjY,37286
|
71
|
-
swift/common/middleware/tempurl.py,sha256=AGvN2IZZRlFt1IuBdP1DUqamATw423RL2JbvuR15VTA,36070
|
72
|
-
swift/common/middleware/versioned_writes.py,sha256=7D9IWWF10Q8OlUW1WPzQBOkTeGfCljAZPFusKMW-2Mk,38477
|
73
|
-
swift/common/middleware/xprofile.py,sha256=cn_jvy6fSjm-tfKlMGxGRjbN23oG1QlizxZVzQIkjd8,9918
|
74
|
-
swift/common/middleware/crypto/__init__.py,sha256=LUCx98QVGPq_nzI6_GlgpOnmgdRiKGoqsEM4IPuRV5U,1465
|
75
|
-
swift/common/middleware/crypto/crypto_utils.py,sha256=yEu9cgPNBOAseT42PyaBqJ89g-HVgJtTeygoMhR7VRg,11480
|
76
|
-
swift/common/middleware/crypto/decrypter.py,sha256=qTw-1Q86EkS0ghPdfhINERhrreCNe5B2qID7YedtOac,19714
|
77
|
-
swift/common/middleware/crypto/encrypter.py,sha256=0dRcyI9LgHQcV3ee0UwyH0URNPr5DG3jrRMOZnP3Z3M,16923
|
78
|
-
swift/common/middleware/crypto/keymaster.py,sha256=RLHPF-bzk4hREo2OIhdVjgRLQ8OPzGmToSFNR9glPOg,17452
|
79
|
-
swift/common/middleware/crypto/kmip_keymaster.py,sha256=aC3RZlFnYEimO3EslaGwOfUNWLRRs6v86mlOcJXqdb0,7128
|
80
|
-
swift/common/middleware/crypto/kms_keymaster.py,sha256=xrgtW3bbS82qA65qIOvZmStw9jAIv_ias5roV5fS_-s,5054
|
81
|
-
swift/common/middleware/s3api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
-
swift/common/middleware/s3api/acl_handlers.py,sha256=xxZK948MFHvwhfyfkqsyNSeJCK21EO_ZG-dazgCnM-0,16305
|
83
|
-
swift/common/middleware/s3api/acl_utils.py,sha256=yi0MrXlQPcB6MHd_BY_ectsZFzTEGUm9DOvWgCiITVA,3687
|
84
|
-
swift/common/middleware/s3api/etree.py,sha256=Ycj-XDKlv2prz1wjsG601ta5jDBped4WZe9Y3VUn8ZY,4220
|
85
|
-
swift/common/middleware/s3api/exception.py,sha256=WCX1bwuTZKFXjZb72f-5qqfPrY7xfnewuS6l2fWHilo,904
|
86
|
-
swift/common/middleware/s3api/s3api.py,sha256=wGrL3hBX9WD6yYQ1DgjzDWVonacCMj1NYCOfMspBYvE,16257
|
87
|
-
swift/common/middleware/s3api/s3request.py,sha256=LLTLfmOLOt7OrW41KiqKanictY3le0mQQ987wwv-eXg,61958
|
88
|
-
swift/common/middleware/s3api/s3response.py,sha256=ZuX9lLnmHkh6Ftt08uc9CG88IjxAJoDoKsFzls5yntM,22857
|
89
|
-
swift/common/middleware/s3api/s3token.py,sha256=icr_bXUbvF1yGzFiB3TqYLF-4UPtxQK-sgi3FGPnwxY,17398
|
90
|
-
swift/common/middleware/s3api/subresource.py,sha256=KUGJlh2sqeTSNzrLqQPPZk0tioG2H5glVhgV6dWg4YU,18297
|
91
|
-
swift/common/middleware/s3api/utils.py,sha256=_KVwIt9PuI1RbRNjncUU30HQa_B0PLpp9OaKhAtE1UE,5884
|
92
|
-
swift/common/middleware/s3api/controllers/__init__.py,sha256=fDvKNI0jrF-lBI7mio_ujT9H88VyJpYqW1x9xPBnKZc,1943
|
93
|
-
swift/common/middleware/s3api/controllers/acl.py,sha256=b9q_e_n3KGElxyf-VRyKnYwjzk4Q3P8FHmeoTbp_OC8,4909
|
94
|
-
swift/common/middleware/s3api/controllers/base.py,sha256=1Nk1d_R8xJRZhSx8Kxdn0Inew-mXgUHLDrHHbarnBT0,2947
|
95
|
-
swift/common/middleware/s3api/controllers/bucket.py,sha256=EW45Y-9hnAd_zOVslAfC80UvKiCQULMATvnI9QC4AjM,12686
|
96
|
-
swift/common/middleware/s3api/controllers/location.py,sha256=LZmlOaZ5pyhGV28oijnTxWMC-qaWHDup_77O4qeRQdE,1410
|
97
|
-
swift/common/middleware/s3api/controllers/logging.py,sha256=VuaW9ZZnBsxLyime4ROwqFJEzg49DNg4466epIdYfrM,1678
|
98
|
-
swift/common/middleware/s3api/controllers/multi_delete.py,sha256=3vXe6Pqxi6_EfeOxoXI0fPZ5L-hygUdKmZPn2N5XMhI,6565
|
99
|
-
swift/common/middleware/s3api/controllers/multi_upload.py,sha256=ATcuzuauo-6XEHIDsg8sc-m7pFnaaCOUR_gk0Y-ZHDA,31182
|
100
|
-
swift/common/middleware/s3api/controllers/obj.py,sha256=WtpD35_qIUHgEtHrxDWIgwUS7MESbuDAC6zieq1yn1w,5996
|
101
|
-
swift/common/middleware/s3api/controllers/s3_acl.py,sha256=ejD_xyUytXKtypsgmQY9048Fr5oVOaVN6XKAc7kV42E,2082
|
102
|
-
swift/common/middleware/s3api/controllers/service.py,sha256=6DXsCxflLy85GcaqT1dA7GBO2dzpaVXuoWIBVb8xDeQ,2526
|
103
|
-
swift/common/middleware/s3api/controllers/versioning.py,sha256=_XPLI-honxaOltbd8tsNJp-D88Kr0hU7sVhv4fbq4Qs,1624
|
104
|
-
swift/common/middleware/s3api/schema/access_control_policy.rng,sha256=riSrECYKs8_tHkU53JDU7dka94uBJ2ABvu5bH_Ad4_I,443
|
105
|
-
swift/common/middleware/s3api/schema/bucket_logging_status.rng,sha256=DXdR_wA8_g2dYm6mXIvasOjfS-KRqZv61ju29X0xYBc,780
|
106
|
-
swift/common/middleware/s3api/schema/common.rng,sha256=xOwtIPkrrf5WQD22tr7sqxCgIL2A-O7vTYZY0z_Z91s,2009
|
107
|
-
swift/common/middleware/s3api/schema/complete_multipart_upload.rng,sha256=TRMRN4tqcAbCwyrS-j3JU536vKXFHKjPt1FCTOH59Q8,568
|
108
|
-
swift/common/middleware/s3api/schema/complete_multipart_upload_result.rng,sha256=iA-MGc1tL9RWVIZFRXjt2whW3Q5PhM3uCYefhNqJaY0,557
|
109
|
-
swift/common/middleware/s3api/schema/copy_object_result.rng,sha256=CVubRWBWhLrE93FoYWDqGmc0AfkqY9RLay22rbvsjk4,399
|
110
|
-
swift/common/middleware/s3api/schema/copy_part_result.rng,sha256=yCDjlFv9cAyweMbT9nuaUITsg42Po23BNI7nFhYhzME,397
|
111
|
-
swift/common/middleware/s3api/schema/create_bucket_configuration.rng,sha256=L19vVt_6FbcqZdCND_m5EesvPwBTBSZr2mQgk9rRb0g,321
|
112
|
-
swift/common/middleware/s3api/schema/delete.rng,sha256=JoYoFXTpTiU49ERdHWmpM0z5SLY_WS-jC4zEWTMcaDg,802
|
113
|
-
swift/common/middleware/s3api/schema/delete_result.rng,sha256=9RNNwL86-YEkHVPq14xnyOF42SVQ7GqKPXHlPgpRW5E,1412
|
114
|
-
swift/common/middleware/s3api/schema/error.rng,sha256=-o_HRk80tIqZjDhLHjyah1tXUAfyudY2I4Pzi9AglmE,732
|
115
|
-
swift/common/middleware/s3api/schema/initiate_multipart_upload_result.rng,sha256=mMurA2dehxTLBrLliAxMuqD7IxXqD7UvbjxTRyG5Ah8,482
|
116
|
-
swift/common/middleware/s3api/schema/lifecycle_configuration.rng,sha256=7blkhhSNUnqJrOu35hK3hUsTeozPkyQ7IXWtiu3wKV4,1555
|
117
|
-
swift/common/middleware/s3api/schema/list_all_my_buckets_result.rng,sha256=XOmP3pyLlWC1yLS_OKg5qEMSf7NXA3iBsNtl3MJyTr0,700
|
118
|
-
swift/common/middleware/s3api/schema/list_bucket_result.rng,sha256=qeIEumH7vpPQhX7VZA3HUfzaNmOMwd1rk_0SlHs8-j0,2562
|
119
|
-
swift/common/middleware/s3api/schema/list_multipart_uploads_result.rng,sha256=S0D_iB5B8ldLqTkARqBL712_2wfTnQeK7YxJdxmzTUM,2059
|
120
|
-
swift/common/middleware/s3api/schema/list_parts_result.rng,sha256=Yzdla3TPUR1FlPJrFz_GmRZSq7WGAucGRtpcMsdcmik,1657
|
121
|
-
swift/common/middleware/s3api/schema/list_versions_result.rng,sha256=KLUcfHGN5a_-KCnBayPd6bHS07kbrE0oZQBAb7T3-bU,3005
|
122
|
-
swift/common/middleware/s3api/schema/location_constraint.rng,sha256=VK1bgBrAmijS537envEDmirCQcdf7RklULnUT8FujM8,269
|
123
|
-
swift/common/middleware/s3api/schema/versioning_configuration.rng,sha256=gogpuRGUc5q8bKYS-iIgrcb4D3j7O_5H4s71YwNHvuw,652
|
124
|
-
swift/common/middleware/x_profile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
-
swift/common/middleware/x_profile/exceptions.py,sha256=SqY5ctBPu9_PINZGWQeXt8_OfDFg_Mk8zi3vl-hfW7M,1057
|
126
|
-
swift/common/middleware/x_profile/html_viewer.py,sha256=13IQHt878ROtWxh-2Ryp4reUmnpp1rwtSFARv6IuPEA,21362
|
127
|
-
swift/common/middleware/x_profile/profile_model.py,sha256=E7YoHPvlbSawaWzlSRmicsJZK0Nh7lA1RJpXb9Dw0r8,10237
|
128
|
-
swift/common/ring/__init__.py,sha256=WgGFseZj8r2UtBCBcZiCgzbUoWCGv4ND1MCEv5IW7aA,758
|
129
|
-
swift/common/ring/builder.py,sha256=O8vULmTJjhkujVWgNh0ATxk_1sYe_ycOz_IWf1SYP_U,79519
|
130
|
-
swift/common/ring/composite_builder.py,sha256=uGu95dOlk6gSYQROIeRvQE46rH0OXRtxKuvPkpHWRv8,31542
|
131
|
-
swift/common/ring/ring.py,sha256=V-MlootNJyldVNtud5kLfd0jEICG5EnUdeQfJWre27M,20578
|
132
|
-
swift/common/ring/utils.py,sha256=5Su7-LLT6nGaOKDZ3_SU1-TiQpWdUR1cQ1WzLIpR3aM,26082
|
133
|
-
swift/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
|
-
swift/container/auditor.py,sha256=pNUOU56vkMYDMAMoLrIKOjCgXTMSGSMPPNWiiCGsup0,5328
|
135
|
-
swift/container/backend.py,sha256=hSAUFYV-XXenK0RPmpdUTPS6VL0JmsmonL9iGwX3wVA,92981
|
136
|
-
swift/container/reconciler.py,sha256=QujGDrUOHVKzCmSs9XFwKtc37KGB4H9mx_3bVLfhCc4,32609
|
137
|
-
swift/container/replicator.py,sha256=Qq1XZBHwsbhbppP8PJr4Gz3d3dE6JWzW0FQVTOA_Jj4,16826
|
138
|
-
swift/container/server.py,sha256=karsVjNTuYeKbXpCWwbY-_jaN5d08UnkouvPND1rL2k,39146
|
139
|
-
swift/container/sharder.py,sha256=I4BLL1YRD8dX7MlcqnbxlaOhfnAje3Pa-BltNBZAWc8,75218
|
140
|
-
swift/container/sync.py,sha256=ovlAglx3T87SLgbDn_UiPC0P0WNdW470APcXlm5qOIQ,30451
|
141
|
-
swift/container/sync_store.py,sha256=f2bPjM6uyW7dg9QUkhJR1G2L-CSmADbS_jL-d-9SNwI,6843
|
142
|
-
swift/container/updater.py,sha256=6tEswGPOy5EkXG3ita1q5Dvfzn4QDZvV0auJ8tt-2aA,14739
|
143
|
-
swift/locale/de/LC_MESSAGES/swift.po,sha256=iw0-DB7ZqCtH_d5ce91nQGhhLtc_kJdllJi-6Mys4CM,38294
|
144
|
-
swift/locale/en_GB/LC_MESSAGES/swift.po,sha256=zrgD5m0Y2R1_ElpxN2vGWYqHmZKJzfesaAw-lw3HwaI,36195
|
145
|
-
swift/locale/es/LC_MESSAGES/swift.po,sha256=Il9rwEtdSM-ibeboVGU-eefROVAUZzE21wq7xnZ9fCM,34260
|
146
|
-
swift/locale/fr/LC_MESSAGES/swift.po,sha256=C1Svjq9Xfu95GU67I858jS0FhYRXHGVDkf_mZdsDWyw,28178
|
147
|
-
swift/locale/it/LC_MESSAGES/swift.po,sha256=x-GsGwawM7jinRlaql8cbAkv5_zKHrxsDcORmnknfVo,27760
|
148
|
-
swift/locale/ja/LC_MESSAGES/swift.po,sha256=NbhluHY70dolvtM4sjoMxMhEhZg9TCC-fMHmj40Kuxg,32689
|
149
|
-
swift/locale/ko_KR/LC_MESSAGES/swift.po,sha256=VeYtEC1fosrMw-CkJGdVItFqNHG9wsZSyiE6bJaHQbw,30918
|
150
|
-
swift/locale/pt_BR/LC_MESSAGES/swift.po,sha256=qt0wcfpSmFSJymROTeMwRdPdGoVPsKy-v-qrMeLV0kg,27127
|
151
|
-
swift/locale/ru/LC_MESSAGES/swift.po,sha256=e-XamJAcdxao2KE_QCDi-yDv6hbjq-kYHJKesuoEldw,33976
|
152
|
-
swift/locale/tr_TR/LC_MESSAGES/swift.po,sha256=eSCt9MNOvwv-9ZuTQvF9lnxwg4V7dxbZgQY7Yn3-T_I,25144
|
153
|
-
swift/locale/zh_CN/LC_MESSAGES/swift.po,sha256=nmbqEaqcuGUfV0-s4CvdsbWyQdIei-wwd5k-9EFyq1Y,24452
|
154
|
-
swift/locale/zh_TW/LC_MESSAGES/swift.po,sha256=4DZsg_ea1JO_9U5Ath-Q3SPMU-g7yFVzZizqt6XU-r8,25654
|
155
|
-
swift/obj/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
156
|
-
swift/obj/auditor.py,sha256=xWziih4r7to4eFj3CfyGKpmebUse_ESWTHlxZ5NL6jQ,19627
|
157
|
-
swift/obj/diskfile.py,sha256=hQXd__20VWUM44v_xNyYtxSH3AYfGIu2ciRo_1Lx_W0,150642
|
158
|
-
swift/obj/expirer.py,sha256=snTTj_RoBY8Qpr4Oc-EnUC4mmuQCh0Myo3DsxW8M1tM,20678
|
159
|
-
swift/obj/mem_diskfile.py,sha256=tUneKC9lvTxqZlnxMsT6ja4_Y05rtxP8LSbKemOHY0g,17195
|
160
|
-
swift/obj/mem_server.py,sha256=_LvbwKSVkpvTvSKnr68OqGnfX9_R7tHK5E-ebfJSZHE,1965
|
161
|
-
swift/obj/reconstructor.py,sha256=fbTV0fEXqmZyov6d-ic5SFHIHFGOymeHOlTZAMNsed0,58547
|
162
|
-
swift/obj/replicator.py,sha256=vNzrVO4A4MwUyowkhIoBh4-Tj67senebRIMEY9OOWSM,50281
|
163
|
-
swift/obj/server.py,sha256=cI04rIMrQ6k6rafH333iuFduemUT8pnJXGNTLBx300I,65447
|
164
|
-
swift/obj/ssync_receiver.py,sha256=3kjXvLVoWPZfrISNqKLKzIGQZKsS9WsW5kfUxFbK_kg,21944
|
165
|
-
swift/obj/ssync_sender.py,sha256=TcS2_Pq2ril98dPPtlElJgqkkXAf7cSyrmUTLxKwYu4,21480
|
166
|
-
swift/obj/updater.py,sha256=xY6hvb8q1zlMHd29p2oDZCJBKoy493VjfVAdD-Gxi3A,21291
|
167
|
-
swift/proxy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
-
swift/proxy/server.py,sha256=hblzgPME4XwjKLvl82FoS6qfoQxegZQLALweC8UU1qU,33727
|
169
|
-
swift/proxy/controllers/__init__.py,sha256=w3H7qtpUavnczPLXJtiaDJISr2TAcihou9Q04ysRg3U,982
|
170
|
-
swift/proxy/controllers/account.py,sha256=u33NFYLMKh0tuKr1HBvKCkxVWyZN78KYMtxRFIK1NxU,8379
|
171
|
-
swift/proxy/controllers/base.py,sha256=dAXLvNoPLwcecao-fI3mOWCmq64ZyQuof7VgrG5Frjc,94019
|
172
|
-
swift/proxy/controllers/container.py,sha256=CVVkz5XAdK0Lxngq6PrKWA2OEb8rOdljrJ_HzGqOWEc,18342
|
173
|
-
swift/proxy/controllers/info.py,sha256=kRdkaKuVoIFBossJ3bBsIHA7GSQZC2rIpJvXIUnwWDA,3801
|
174
|
-
swift/proxy/controllers/obj.py,sha256=sNvOH5fZgNbF1Lu3isObHZrvjav8Uwm1gNPxoHQD5Wk,125819
|
175
|
-
swift-2.23.2.data/scripts/swift-account-audit,sha256=4g99WubWHx0NwZctAqAtPPITVlSQNDrgLMNjFPSdmk4,16422
|
176
|
-
swift-2.23.2.data/scripts/swift-account-auditor,sha256=7Rv7iNLdx_AFPyDiCfBIlI2MyktnGUaRFCbclhs0aIw,872
|
177
|
-
swift-2.23.2.data/scripts/swift-account-info,sha256=uWnDnBdy-UPWuzsfnkNWTFVJ_hRwlME4I-1QzQfB6PA,1715
|
178
|
-
swift-2.23.2.data/scripts/swift-account-reaper,sha256=cShVUVEAYare4Y7_YnvQq_sk5TRa_P6IpJmIEDndhoI,869
|
179
|
-
swift-2.23.2.data/scripts/swift-account-replicator,sha256=3WfAFxjOhQtBKA_Kp8XHYjdlhc749MuiXLhDV0CwwvA,1424
|
180
|
-
swift-2.23.2.data/scripts/swift-account-server,sha256=ChjT_FdIOoT831O7XbzGWUzvfkkMHAWib9fzPI16zG4,831
|
181
|
-
swift-2.23.2.data/scripts/swift-config,sha256=dVW_fs8qMoErBmFRhPMRe9NXaKtesKUXS_LkmD7cCDU,3080
|
182
|
-
swift-2.23.2.data/scripts/swift-container-auditor,sha256=_6w3v5m6--Ly1P8Hr5ymVVWcLzkcVJrXouTGjlM73yI,878
|
183
|
-
swift-2.23.2.data/scripts/swift-container-info,sha256=3TWWb1mjDWhARLRKGa0q0B8ngGxoPIBb8pHCNXRf-SU,1721
|
184
|
-
swift-2.23.2.data/scripts/swift-container-reconciler,sha256=OkLmgJWhXgyJAyjfMwyXC5YV6hJtLCSFTJCZ8GpSgJE,838
|
185
|
-
swift-2.23.2.data/scripts/swift-container-replicator,sha256=mpTaU5JGCPmP8es4ImDchJcQyjGj1C9YpeyQOg6CxWE,1430
|
186
|
-
swift-2.23.2.data/scripts/swift-container-server,sha256=jSen3yGUVE6ROyWCWwzOP09-4ZNABEyf0YUZKT6-R0E,833
|
187
|
-
swift-2.23.2.data/scripts/swift-container-sharder,sha256=LpKLBAS0WrbZ2fvimrvbZYPybS5j7kIZAgflqR5Gkiw,1441
|
188
|
-
swift-2.23.2.data/scripts/swift-container-sync,sha256=CstcpsvwRxfKoIlnSRN5JR9DuyWtVFKDTWQoHAhyC4g,869
|
189
|
-
swift-2.23.2.data/scripts/swift-container-updater,sha256=9V8fkM0jikjtAXSm-6Tvx-veJxGXCQyC1W1BMCelNew,878
|
190
|
-
swift-2.23.2.data/scripts/swift-dispersion-populate,sha256=ZC4Z4W4NjmQoQu3L76lJsuOppfy1OBBcr4RIVd3vNGY,11409
|
191
|
-
swift-2.23.2.data/scripts/swift-dispersion-report,sha256=aY4GzuRqTKERW0hm0ot6VYDk139lU1VDP30cjjlo-eA,726
|
192
|
-
swift-2.23.2.data/scripts/swift-drive-audit,sha256=KnrGQbA793osGqow5anQ13Pi1FPIW-pXUUZp_NicCpk,8737
|
193
|
-
swift-2.23.2.data/scripts/swift-form-signature,sha256=2FG-zmTeF0F1xX15_VtWdk4_qeJxutk3S5KdoVk2rF0,681
|
194
|
-
swift-2.23.2.data/scripts/swift-get-nodes,sha256=-I-gQD_65-a_MpoqPdpRREsD1s5q1kCs1y1opPTJrU8,2696
|
195
|
-
swift-2.23.2.data/scripts/swift-init,sha256=q5NOmFOTWJ34g5L6LwzSXzbGCjt_y3az8iz7wQ1f1rA,5097
|
196
|
-
swift-2.23.2.data/scripts/swift-object-auditor,sha256=wS5U9bhxE28CO72tV5dQKmTaaklyCuAHK_ealswjiXs,1212
|
197
|
-
swift-2.23.2.data/scripts/swift-object-expirer,sha256=8SWD9EU28aEdrDm6qxIGmaH7ACkdn-HX1e3_Lr7vNcs,1494
|
198
|
-
swift-2.23.2.data/scripts/swift-object-info,sha256=3oggJ3ZF531W7LM5CKYR1QEpK1rW2Cdt_3o1zicz1wk,1986
|
199
|
-
swift-2.23.2.data/scripts/swift-object-reconstructor,sha256=dnm1p2jHrES8-6lLNGAEuw0wvrqWiS74mqgLll7LLxI,1431
|
200
|
-
swift-2.23.2.data/scripts/swift-object-relinker,sha256=fJkCdJANysl8SQq3bTc9fIYEbwHOu4Tm1C3FeNYH8EE,1594
|
201
|
-
swift-2.23.2.data/scripts/swift-object-replicator,sha256=aLlEMBR6RVOw8UFm4tqtBZNPntrYxgQHbxjhxMQZVsg,1644
|
202
|
-
swift-2.23.2.data/scripts/swift-object-server,sha256=OQEmPwr3QcWL2D40Vmt49v5-ohqYu7t6Q2rbv01AJnM,954
|
203
|
-
swift-2.23.2.data/scripts/swift-object-updater,sha256=bwG2KI9cGCDPKYzpnfIYHT6x4y1pCJ4dgqUhVZmnxIQ,866
|
204
|
-
swift-2.23.2.data/scripts/swift-oldies,sha256=tz0OsAryCBW6-6C4z1J34VIgip5Klp3gRWhyckg97tY,2997
|
205
|
-
swift-2.23.2.data/scripts/swift-orphans,sha256=LasdlgiZHGpC7U20gHVl49mBDA2C2zj-_llCGKepLJk,5005
|
206
|
-
swift-2.23.2.data/scripts/swift-proxy-server,sha256=FbGNEKWnNaBhdDijyNL7lokgtpGgImvHYqJhw1HXUfs,829
|
207
|
-
swift-2.23.2.data/scripts/swift-recon,sha256=08VMHgSFgI9w-IND7PjFvyyVwGTJiVAjDEjrQjSMBow,725
|
208
|
-
swift-2.23.2.data/scripts/swift-recon-cron,sha256=hHA50YiQsa5E3M1jSaiP3q3E6hoqeyROSf-dlIX4wPM,2732
|
209
|
-
swift-2.23.2.data/scripts/swift-reconciler-enqueue,sha256=MUj9Zo_sgBsHxG-CJ675FiJn0duMa5EJfKZAoiO6mpM,2547
|
210
|
-
swift-2.23.2.data/scripts/swift-ring-builder,sha256=vgDjHTkkBgXRkouUk78tL43xx5MpCMAbCZXhxEyzSBQ,731
|
211
|
-
swift-2.23.2.data/scripts/swift-ring-builder-analyzer,sha256=184GLK94EO7EQhO3Rc8G61sPttJVNOqvMZoD_R83bMM,724
|
212
|
-
swift-2.23.2.data/scripts/swift-ring-composer,sha256=AnR7DIcCZ-cgLpgyCiRaDgL1BZaRWJUPhtQ03VhkDKI,700
|
213
|
-
swift-2.23.2.dist-info/DESCRIPTION.rst,sha256=uCeJV98kmXi1AMU2mMpzxFGLpmNxGAo282L_KqVakXw,5901
|
214
|
-
swift-2.23.2.dist-info/METADATA,sha256=s3LKSovAvvKwCLN5MGmmphiuyqtsplMbPG_e7VYEGfw,8742
|
215
|
-
swift-2.23.2.dist-info/RECORD,,
|
216
|
-
swift-2.23.2.dist-info/WHEEL,sha256=8Lm45v9gcYRm70DrgFGVe4WsUtUMi1_0Tso1hqPGMjA,92
|
217
|
-
swift-2.23.2.dist-info/entry_points.txt,sha256=8j3iEZiniyJ7eDPzO69kCMDxo4b_COLumcqwfxnzX1A,2744
|
218
|
-
swift-2.23.2.dist-info/metadata.json,sha256=rYPtUNt_Z32u3BwbiL9B4OLQC2il40WLFklO3Ac1Nu4,5831
|
219
|
-
swift-2.23.2.dist-info/pbr.json,sha256=jhiKrVTOYhXZT7aWf6tMKLta-D3O7-ygeVhQyX7y5ys,48
|
220
|
-
swift-2.23.2.dist-info/top_level.txt,sha256=nVzNOToyzq0MM7JtrpalfOaPV9UIfm_lXhHX0duhVps,6
|
@@ -1 +0,0 @@
|
|
1
|
-
{"classifiers": ["Development Status :: 5 - Production/Stable", "Environment :: OpenStack", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: Apache Software License", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7"], "extensions": {"python.commands": {"wrap_console": {"swift-container-deleter": "swift.cli.container_deleter:main", "swift-manage-shard-ranges": "swift.cli.manage_shard_ranges:main"}}, "python.details": {"contacts": [{"email": "openstack-discuss@lists.openstack.org", "name": "OpenStack", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://docs.openstack.org/swift/latest/"}}, "python.exports": {"console_scripts": {"swift-container-deleter": "swift.cli.container_deleter:main", "swift-manage-shard-ranges": "swift.cli.manage_shard_ranges:main"}, "paste.app_factory": {"account": "swift.account.server:app_factory", "container": "swift.container.server:app_factory", "mem_object": "swift.obj.mem_server:app_factory", "object": "swift.obj.server:app_factory", "proxy": "swift.proxy.server:app_factory"}, "paste.filter_factory": {"account_quotas": "swift.common.middleware.account_quotas:filter_factory", "bulk": "swift.common.middleware.bulk:filter_factory", "catch_errors": "swift.common.middleware.catch_errors:filter_factory", "cname_lookup": "swift.common.middleware.cname_lookup:filter_factory", "container_quotas": "swift.common.middleware.container_quotas:filter_factory", "container_sync": "swift.common.middleware.container_sync:filter_factory", "copy": "swift.common.middleware.copy:filter_factory", "crossdomain": "swift.common.middleware.crossdomain:filter_factory", "dlo": "swift.common.middleware.dlo:filter_factory", "domain_remap": "swift.common.middleware.domain_remap:filter_factory", "encryption": "swift.common.middleware.crypto:filter_factory", "formpost": "swift.common.middleware.formpost:filter_factory", "gatekeeper": "swift.common.middleware.gatekeeper:filter_factory", "healthcheck": "swift.common.middleware.healthcheck:filter_factory", "keymaster": "swift.common.middleware.crypto.keymaster:filter_factory", "keystoneauth": "swift.common.middleware.keystoneauth:filter_factory", "kmip_keymaster": "swift.common.middleware.crypto.kmip_keymaster:filter_factory", "kms_keymaster": "swift.common.middleware.crypto.kms_keymaster:filter_factory", "list_endpoints": "swift.common.middleware.list_endpoints:filter_factory", "listing_formats": "swift.common.middleware.listing_formats:filter_factory", "memcache": "swift.common.middleware.memcache:filter_factory", "name_check": "swift.common.middleware.name_check:filter_factory", "proxy_logging": "swift.common.middleware.proxy_logging:filter_factory", "ratelimit": "swift.common.middleware.ratelimit:filter_factory", "read_only": "swift.common.middleware.read_only:filter_factory", "recon": "swift.common.middleware.recon:filter_factory", "s3api": "swift.common.middleware.s3api.s3api:filter_factory", "s3token": "swift.common.middleware.s3api.s3token:filter_factory", "slo": "swift.common.middleware.slo:filter_factory", "staticweb": "swift.common.middleware.staticweb:filter_factory", "symlink": "swift.common.middleware.symlink:filter_factory", "tempauth": "swift.common.middleware.tempauth:filter_factory", "tempurl": "swift.common.middleware.tempurl:filter_factory", "versioned_writes": "swift.common.middleware.versioned_writes:filter_factory", "xprofile": "swift.common.middleware.xprofile:filter_factory"}, "swift.diskfile": {"erasure_coding.fs": "swift.obj.diskfile:ECDiskFileManager", "replication.fs": "swift.obj.diskfile:DiskFileManager"}}}, "extras": ["keystone", "kmip_keymaster", "kms_keymaster", "test"], "generator": "bdist_wheel (0.30.0)", "metadata_version": "2.0", "name": "swift", "run_requires": [{"requires": ["PasteDeploy (>=1.3.3)", "PyECLib (>=1.3.1)", "cryptography (>=2.0.2)", "eventlet (>=0.25.0)", "greenlet (>=0.3.2)", "lxml (>=3.4.1)", "netifaces (!=0.10.0,!=0.10.1,>=0.8)", "requests (>=2.14.2)", "six (>=1.10.0)"]}, {"extra": "test", "requires": ["bandit (>=1.1.0)", "boto (>=2.32.1)", "boto3 (>=1.9)", "botocore (>=1.12)", "coverage (>=3.6)", "docutils (>=0.11)", "fixtures (>=3.0.0)", "hacking (<0.12,>=0.11.0)", "keystonemiddleware (>=4.17.0)", "mock (>=2.0)", "nose (>=1.3.7)", "nosehtmloutput (>=0.0.3)", "nosexcover (>=1.0.10)", "os-testr (>=0.8.0)", "python-keystoneclient (!=2.1.0,>=2.0.0)", "python-openstackclient (>=3.12.0)", "python-swiftclient (>=3.2.0)", "reno (>=1.8.0)", "requests-mock (>=1.2.0)"]}, {"extra": "kms_keymaster", "requires": ["castellan (>=0.13.0)", "oslo.config (!=4.3.0,!=4.4.0,>=4.0.0)"]}, {"extra": "keystone", "requires": ["keystonemiddleware (>=4.17.0)"]}, {"extra": "kmip_keymaster", "requires": ["pykmip (>=0.7.0)"]}, {"environment": "(python_version<'3.3')", "requires": ["ipaddress (>=1.0.16)"]}, {"environment": "(python_version=='2.7')", "requires": ["dnspython (>=1.15.0)"]}, {"environment": "(sys_platform!='win32')", "requires": ["xattr (>=0.4)"]}], "summary": "OpenStack Object Storage", "test_requires": [{"requires": ["bandit (>=1.1.0)", "boto (>=2.32.1)", "boto3 (>=1.9)", "botocore (>=1.12)", "coverage (>=3.6)", "docutils (>=0.11)", "fixtures (>=3.0.0)", "hacking (<0.12,>=0.11.0)", "keystonemiddleware (>=4.17.0)", "mock (>=2.0)", "nose (>=1.3.7)", "nosehtmloutput (>=0.0.3)", "nosexcover (>=1.0.10)", "os-testr (>=0.8.0)", "python-keystoneclient (!=2.1.0,>=2.0.0)", "python-openstackclient (>=3.12.0)", "python-swiftclient (>=3.2.0)", "reno (>=1.8.0)", "requests-mock (>=1.2.0)"]}], "version": "2.23.2"}
|
swift-2.23.2.dist-info/pbr.json
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"git_version": "ab921f22f", "is_release": true}
|
File without changes
|