New upstream release.
This commit is contained in:
commit
659382e466
@ -1,4 +1,4 @@
|
||||
*.py[co]
|
||||
*.sw?
|
||||
doc/build/*
|
||||
swift.egg-info
|
||||
dist
|
||||
|
15
PKG-INFO
Normal file
15
PKG-INFO
Normal file
@ -0,0 +1,15 @@
|
||||
Metadata-Version: 1.0
|
||||
Name: swift
|
||||
Version: 1.0.1
|
||||
Summary: Swift
|
||||
Home-page: https://launchpad.net/swift
|
||||
Author: OpenStack, LLC.
|
||||
Author-email: UNKNOWN
|
||||
License: Apache License (2.0)
|
||||
Description: UNKNOWN
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 4 - Beta
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Operating System :: POSIX :: Linux
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Environment :: No Input/Output (Daemon)
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
swift (1.0.1-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Monty Taylor <mordred@inaugust.com> Mon, 19 Jul 2010 11:22:41 -0500
|
||||
|
||||
swift (1.0.0-1) unstable; urgency=low
|
||||
|
||||
[ Michael Barton ]
|
||||
|
@ -1,4 +1,9 @@
|
||||
[build_sphinx]
|
||||
all_files = 1
|
||||
build-dir = doc/build
|
||||
source-dir = doc/source
|
||||
build-dir = doc/build
|
||||
all_files = 1
|
||||
|
||||
[egg_info]
|
||||
tag_build =
|
||||
tag_date = 0
|
||||
tag_svn_revision = 0
|
||||
|
15
swift.egg-info/PKG-INFO
Normal file
15
swift.egg-info/PKG-INFO
Normal file
@ -0,0 +1,15 @@
|
||||
Metadata-Version: 1.0
|
||||
Name: swift
|
||||
Version: 1.0.1
|
||||
Summary: Swift
|
||||
Home-page: https://launchpad.net/swift
|
||||
Author: OpenStack, LLC.
|
||||
Author-email: UNKNOWN
|
||||
License: Apache License (2.0)
|
||||
Description: UNKNOWN
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 4 - Beta
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Operating System :: POSIX :: Linux
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Environment :: No Input/Output (Daemon)
|
130
swift.egg-info/SOURCES.txt
Normal file
130
swift.egg-info/SOURCES.txt
Normal file
@ -0,0 +1,130 @@
|
||||
AUTHORS
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
README
|
||||
setup.cfg
|
||||
setup.py
|
||||
bin/st
|
||||
bin/swift-account-audit
|
||||
bin/swift-account-auditor
|
||||
bin/swift-account-reaper
|
||||
bin/swift-account-replicator
|
||||
bin/swift-account-server
|
||||
bin/swift-auth-create-account
|
||||
bin/swift-auth-recreate-accounts
|
||||
bin/swift-auth-server
|
||||
bin/swift-container-auditor
|
||||
bin/swift-container-replicator
|
||||
bin/swift-container-server
|
||||
bin/swift-container-updater
|
||||
bin/swift-drive-audit
|
||||
bin/swift-get-nodes
|
||||
bin/swift-init
|
||||
bin/swift-object-auditor
|
||||
bin/swift-object-info
|
||||
bin/swift-object-replicator
|
||||
bin/swift-object-server
|
||||
bin/swift-object-updater
|
||||
bin/swift-proxy-server
|
||||
bin/swift-ring-builder
|
||||
bin/swift-stats-populate
|
||||
bin/swift-stats-report
|
||||
doc/Makefile
|
||||
doc/source/account.rst
|
||||
doc/source/auth.rst
|
||||
doc/source/conf.py
|
||||
doc/source/container.rst
|
||||
doc/source/db.rst
|
||||
doc/source/development_guidelines.rst
|
||||
doc/source/development_saio.rst
|
||||
doc/source/index.rst
|
||||
doc/source/misc.rst
|
||||
doc/source/object.rst
|
||||
doc/source/overview_auth.rst
|
||||
doc/source/overview_reaper.rst
|
||||
doc/source/overview_replication.rst
|
||||
doc/source/overview_ring.rst
|
||||
doc/source/proxy.rst
|
||||
doc/source/ring.rst
|
||||
doc/source/_static/basic.css
|
||||
doc/source/_static/default.css
|
||||
etc/account-server.conf-sample
|
||||
etc/auth-server.conf-sample
|
||||
etc/container-server.conf-sample
|
||||
etc/drive-audit.conf-sample
|
||||
etc/object-server.conf-sample
|
||||
etc/proxy-server.conf-sample
|
||||
etc/rsyncd.conf-sample
|
||||
etc/stats.conf-sample
|
||||
swift/__init__.py
|
||||
swift.egg-info/PKG-INFO
|
||||
swift.egg-info/SOURCES.txt
|
||||
swift.egg-info/dependency_links.txt
|
||||
swift.egg-info/top_level.txt
|
||||
swift/account/__init__.py
|
||||
swift/account/auditor.py
|
||||
swift/account/reaper.py
|
||||
swift/account/server.py
|
||||
swift/auth/__init__.py
|
||||
swift/auth/server.py
|
||||
swift/common/__init__.py
|
||||
swift/common/auth.py
|
||||
swift/common/bufferedhttp.py
|
||||
swift/common/client.py
|
||||
swift/common/constraints.py
|
||||
swift/common/db.py
|
||||
swift/common/db_replicator.py
|
||||
swift/common/direct_client.py
|
||||
swift/common/exceptions.py
|
||||
swift/common/healthcheck.py
|
||||
swift/common/memcached.py
|
||||
swift/common/utils.py
|
||||
swift/common/wsgi.py
|
||||
swift/common/ring/__init__.py
|
||||
swift/common/ring/builder.py
|
||||
swift/common/ring/ring.py
|
||||
swift/container/__init__.py
|
||||
swift/container/auditor.py
|
||||
swift/container/server.py
|
||||
swift/container/updater.py
|
||||
swift/obj/__init__.py
|
||||
swift/obj/auditor.py
|
||||
swift/obj/replicator.py
|
||||
swift/obj/server.py
|
||||
swift/obj/updater.py
|
||||
swift/proxy/__init__.py
|
||||
swift/proxy/server.py
|
||||
test/unit/__init__.py
|
||||
test/unit/account/__init__.py
|
||||
test/unit/account/test_auditor.py
|
||||
test/unit/account/test_reaper.py
|
||||
test/unit/account/test_server.py
|
||||
test/unit/auth/__init__.py
|
||||
test/unit/auth/test_server.py
|
||||
test/unit/common/__init__.py
|
||||
test/unit/common/test_auth.py
|
||||
test/unit/common/test_bufferedhttp.py
|
||||
test/unit/common/test_client.py
|
||||
test/unit/common/test_constraints.py
|
||||
test/unit/common/test_db.py
|
||||
test/unit/common/test_db_replicator.py
|
||||
test/unit/common/test_direct_client.py
|
||||
test/unit/common/test_exceptions.py
|
||||
test/unit/common/test_healthcheck.py
|
||||
test/unit/common/test_memcached.py
|
||||
test/unit/common/test_utils.py
|
||||
test/unit/common/test_wsgi.py
|
||||
test/unit/common/ring/__init__.py
|
||||
test/unit/common/ring/test_builder.py
|
||||
test/unit/common/ring/test_ring.py
|
||||
test/unit/container/__init__.py
|
||||
test/unit/container/test_auditor.py
|
||||
test/unit/container/test_server.py
|
||||
test/unit/container/test_updater.py
|
||||
test/unit/obj/__init__.py
|
||||
test/unit/obj/test_auditor.py
|
||||
test/unit/obj/test_replicator.py
|
||||
test/unit/obj/test_server.py
|
||||
test/unit/obj/test_updater.py
|
||||
test/unit/proxy/__init__.py
|
||||
test/unit/proxy/test_server.py
|
1
swift.egg-info/dependency_links.txt
Normal file
1
swift.egg-info/dependency_links.txt
Normal file
@ -0,0 +1 @@
|
||||
|
2
swift.egg-info/top_level.txt
Normal file
2
swift.egg-info/top_level.txt
Normal file
@ -0,0 +1,2 @@
|
||||
test
|
||||
swift
|
Loading…
Reference in New Issue
Block a user