commit bf1a39980928767c343b48304163032155bdca7e
Merge: 25d52a2 a1c2cdb
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Feb 20 11:02:23 2014 +0000

    Merge "Fixed detail list for security-services"

commit 25d52a23030b2e898f1ac914f6268304fe8cefe3
Merge: 6326845 e416fc9
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Feb 20 10:29:31 2014 +0000

    Merge "Fixes bug with path to ssh keys"

commit e416fc97ffb84b16ea709025137c657e88bad95b
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Wed Feb 19 12:52:17 2014 +0200

    Fixes bug with path to ssh keys
    
    Adds expansion of '~', if it is used in path to ssh key
    
    Closes: bug 1282031
    Change-Id: I82cc98908bbd547dfa42d2d0da68fab3601b0406

commit 63268451aa262417ff39d0e0955825d4dc820aef
Merge: e0efa6e ce2ac69
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Feb 19 19:46:43 2014 +0000

    Merge "Removes use of timeutils.set_time_override"

commit a1c2cdbc7e793a05ea7c590979e25ecb8fe272a0
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Feb 19 14:09:24 2014 +0200

    Fixed detail list for security-services
    
    Added passing collection to resource.
    
    Change-Id: I06ba968e203d06671724314f25b6da58b073761f
    Closes-Bug: #1282057

commit e0efa6e563f3b473e672401e5abeb0cfc526849c
Merge: 9d163f2 e9d14b4
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Feb 18 11:27:34 2014 +0000

    Merge "Added to devstack plugin passwords for services"

commit 9d163f2c417cd558234d33b450a199ef523075a4
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Tue Feb 18 11:16:26 2014 +0200

    Removed cinder artifacts in devstack plugin
    
    In manila's devstack plugin left some artifacts
    from cinder. So, it should be replaced with
    proper data.
    
    Change-Id: Ic0d04e63a1ac6ea84e1ce0394e1bde2b1423c273

commit e9d14b4aa1b65b096a4101b7ad9b4bfa3a4e2eaf
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Tue Feb 18 11:04:30 2014 +0200

    Added to devstack plugin passwords for services
    
    Drivers use neutron, and neutron auth requires password,
    currently devstack does not set password by default.
    Same to nova and cinder.
    
    Change-Id: I5637b938ecbf6813111213e7e5908f456b531c7d

commit 21980f84f2de5c8803650f125e282d4d493568a2
Merge: feca18a 49e167f
Author: Jenkins <jenkins@review.openstack.org>
Date:   Mon Feb 17 10:14:50 2014 +0000

    Merge "Fix devstack plugin's usage of RECLONE option"

commit feca18a1ca7ac5cce4a2d0b1cdc9667b9e7b0f3f
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Wed Jan 29 13:43:34 2014 +0200

    Generic driver
    
    Generic driver, that uses cinder volumes as backend and nova instances
    to reach multitenancy
    
    Implements: bp generic-driver
    Change-Id: I1d8d4ff15ecbbe2ea0c794d93de950616422279b

commit 49e167fdd0b8985255377abc390b6b8c88ae8593
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Thu Feb 13 15:29:42 2014 +0200

    Fix devstack plugin's usage of RECLONE option
    
    Current code redefines "reclone" option and devstack
    always reclones manila's code. It should depend on
    devstack's localrc definition of reclone
    
    Change-Id: Ie04895a12e348c08329fc5cc1d997710daed056f
    Closes-Bug: 1279799

commit ce2ac6901d8d147dbe39f0d360cdeec268257637
Author: Zhongyue Luo <zhongyue.nah@intel.com>
Date:   Wed Feb 12 15:45:44 2014 +0800

    Removes use of timeutils.set_time_override
    
    The set_time_override function in timeutils was written as a
    helper function to mock utcnow for unittests before 'mock' was
    generally used. Now that we have mock and fixture, we no longer
    need to use it.
    
    Change-Id: Ida9b5b0130a38f45e1f51bf4fbdb1d1a5851cf82
    Partial-Bug: #1266962

commit ce5eeb7364d656c8791786fc2f002a82753febf2
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Wed Jan 29 13:37:46 2014 +0200

    Adds modules for managing network interfaces for generic driver
    
    Adds modules for creating and managing
    logical interfaces. This modules create logical
    interface and attach it to OVS or Linux bridge
    to associate with neutron port.
    Module manila.network.linux.ip_lib.py executes
    linux 'ip' command for logical interface setup.
    Module manila.network.linux.interface.py
    is responsible for plugging logical interface
    into OVS or Linux bridge.
    Class in module manila.network.linux.ovs_lib.py
    represents OVS bridge and allows to manage it.
    
    Partially implements: bp generic-driver
    Change-Id: Iaa97e961f1670479a59a2f9adba5953d271b1818

commit 61a52b88d10ae3cc3b5d03cd60d51b7842a2aa88
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Sat Jan 25 02:03:41 2014 +0200

    Extends neutron api with methods needed for generic driver
    
    Adds functions for managing networks, subnets, routers
    
    Partially implements: bp generic-driver
    Change-Id: I513e914148b260451a9247f3b987ad9c6818b472

commit 9a7e113b3accdc4085be588c8ea1d7473aca7704
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Thu Jan 9 13:20:40 2014 +0200

    Adds nova api needed for generic driver implementation
    
    Generic driver will use nova instances to reach multitenancy,
    so this patch adds a module for interacting with nova.
    
    Partially implements: bp generic-driver
    Change-Id: Ic51971f0fe72bcbbe364e8f6aa4c59a8ec267c83

commit fbde9ae88fcde2e9f378d7592d9e56710bd16bb5
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Mon Dec 30 13:46:45 2013 +0200

    Adds cinder api needed for generic driver implementation
    
    Generic driver will use cinder volumes as back-end for shares,
    so this patch adds a module for interacting with cinder.
    
    Partially implements: bp generic-driver
    Change-Id: Ide3d98efa8cf38994548934ad445f3561f5e3106

commit 2be7b3b782c0666097d031cbc89e1af724785dab
Merge: c7bbab2 9ae1349
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Feb 6 17:01:30 2014 +0000

    Merge "Add policy checks in share networks API"

commit c7bbab22896d6cd4097e2b1474e9cfc4d6c3733d
Merge: 8bc4867 826b156
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Feb 6 17:00:20 2014 +0000

    Merge "Fix policy.py"

commit 8bc48675ec77fd63b8c866fcb9561c3156afdf07
Merge: e8ade68 5525e97
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Feb 6 16:59:27 2014 +0000

    Merge "Add network id verification on share creation"

commit e8ade681b61ad3052d990907081a7427269de591
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Tue Feb 4 14:13:11 2014 +0200

    Squash all migrations into one
    
    Migration #12 have fixed bug
    https://bugs.launchpad.net/manila/+bug/1272303,
    but introduced a new one. Because that bug
    was rather architectural, we need to address
    that architectural flaw instead of fixing
    bugs as they come.
    Closes-Bug: #1275044
    
    Change-Id: I260a90abd1107c62b687118d5d4a01d7199ea56f

commit 5525e97571fcb6d73720289ad9ae21c84ff60a9c
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Wed Feb 5 18:03:21 2014 +0200

    Add network id verification on share creation
    
    Change-Id: Icf69bfe993b2145f8a4403bcd709a9edfc75de99
    Closes-Bug: #1273600

commit 9ae134954fad334593a2dffe83b111799ebae68b
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Wed Feb 5 16:51:48 2014 +0200

    Add policy checks in share networks API
    
    Add sample policy configuration for share
    network API.
    Closes-Bug: #1271943
    
    Change-Id: I77aad91014d7c0ef125192bddeae7aafaaed3aef

commit 826b15692ee0cfa509d82d13fbba09c56c9c6b27
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Fri Jan 31 18:37:11 2014 +0200

    Fix policy.py
    
    Because inside check_policy() there is hardcoded
    'share' target prepended to all policies, any
    policy we check will be checked against 'share'
    policy. Change check_policy() to use explicit
    target and action instead of just action.
    Change wrap_check_policy decorator to be a
    decorator maker which accepts resource name
    as an argument.
    Closes-Bug: #1274951
    Partial-Bug: #1271943
    
    Change-Id: I85c184035619d78107d56ea94918f608d8d7c282

commit 9312341359098835e93257006e86e2b8e1e12981
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Tue Feb 4 19:07:06 2014 +0200

    Updated from global requirements
    
    Change-Id: If99b11499a780f8beb81305f8c49753715a213e9

commit 6de896e5c5fb8bb8dd22497b35ba9aebdb5add62
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Fri Jan 31 19:31:52 2014 +0200

    Fix bad calls to model_query()
    
    model_query() function was changed recently
    to use 'model' object as a second positional
    argument, so all callers need to adhere to
    this requirement.
    Fix 'bad' model_query().
    Remove 'skips' from tests that were failing
    due to bad model_query() calls.
    Closes-Bug: #1275026
    
    Change-Id: Ibf3d45c6a37493cc0ced7cc6e6c552f27b6e4338

commit 0f6a7cb42223b77368f0083e64e75bb126e791ae
Merge: 9bde483 a842c55
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 30 14:03:10 2014 +0000

    Merge "Change manila DB to have working unique constraint"

commit 9bde483ddf578ec131a3ff19330926c3e6ed1ae9
Merge: 6cf9f9c b103503
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 30 13:52:44 2014 +0000

    Merge "Fixes handling of duplicate share access rule creation"

commit a842c554e699174fdcc3a771c968ac978c4135a8
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Fri Jan 24 15:59:29 2014 +0200

    Change manila DB to have working unique constraint
    
    Because Manila DB uses 'soft delete', we can't use
    unique constaints properly. Solution is to change
    'deleted' column from Boolean to the type of 'id'
    column and write value of 'id' to 'delete'
    on delete operation. To apply unique constr only
    to not deleted records we will be adding
    'deleted' column to every uc from now on.
    
    Closes-Bug: #1272303
    Change-Id: Ia673b91c7d7f700a25824766486a82f07203f3b6

commit 6cf9f9c83861e7e32f9ce90f2c35b5b73aa7fb10
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Wed Jan 29 18:28:28 2014 +0200

    Change 'deleted' to Boolean in project_user_quotas
    
    Change-Id: I7604ba4b938d5ff73bcf3b1f9152cc6aa4f1c0c8
    Closes-Bug: #1274165

commit b103503d07debf8c96e918f343f083b8dfff04db
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Wed Jan 29 17:49:49 2014 +0200

    Fixes handling of duplicate share access rule creation
    
    Closes: bug 1274163
    Change-Id: Id6d649dcf03c5be9ce6fd7204dfa725d59582412

commit 7eca7e3d7dab7224d9f02dc290f9b088199f2b8a
Merge: 37c63d6 67ce7ad
Author: Jenkins <jenkins@review.openstack.org>
Date:   Fri Jan 24 14:16:55 2014 +0000

    Merge "Fixes empty network_info for share"

commit 67ce7ad16eddc77b4faaf7f81f4c0da225c5ab1b
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Fri Jan 24 15:32:21 2014 +0200

    Fixes empty network_info for share
    
    Make _setup_share_network method in share
    manager return new network db reference
    
    Closes bug 1272335
    
    Change-Id: I36392d2308c8e135eefb50a96ea9f41fac405a9e

commit 37c63d60b44dc3bd90c52f608cdca10556551d8c
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Thu Jan 23 09:23:01 2014 -0500

    Use actual rootwrap option in manila.conf instead deprecated one
    
    Change-Id: I0096e751cbf1b31944e8a7b15b46914dd79c340b
    Closes-Bug: #1267547

commit 0b5a4fc6e76f088426e2bf18bb57ee3db6518eb8
Merge: 687705f b6c3281
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 23 13:52:36 2014 +0000

    Merge "Fix xml response for create/update security service"

commit 687705fa299ee66db0e1170bb8ec536ea2690190
Merge: 85a4629 8a229a2
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 23 13:52:35 2014 +0000

    Merge "Add 'password' field to the security service"

commit 85a46293f2ed511ed138952cb945d3f8ae98d629
Merge: b29b678 f128d23
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 23 13:33:50 2014 +0000

    Merge "Fix manila's devstack plugin for using Fedora/CentOS/RHEL distro"

commit b29b678a2ed84c3d790b577deacc0cb7b23de6bc
Merge: a538680 b92c6f4
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 23 13:30:36 2014 +0000

    Merge "Adds network creation to ShareManager"

commit a538680b53bcda4beb011a057f0c4e7b1bb0a6b2
Merge: c81ad66 a9247ae
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 23 13:30:29 2014 +0000

    Merge "Checking if access rule exists in share api"

commit b6c32818805780ceb95b023969f340de027636df
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Jan 23 14:42:21 2014 +0200

    Fix xml response for create/update security service
    
    Changed xml template for create/update security service
    from SecurityServiceTemplates to SecurityServiceTemplate
    
    Closes bug 1269829
    
    Change-Id: I07f2847b8897cfbc2ee3e1952709925c3c056774

commit 8a229a2c6e395d130c6205b74971b8b5d800f640
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Thu Jan 23 13:33:36 2014 +0200

    Add 'password' field to the security service
    
    Change-Id: I8a6d146645b33d7baff52902b7187b09cdbdf63a

commit b92c6f4595afa4f2250349a7caea927be7a3174e
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Fri Dec 20 13:40:20 2013 +0200

    Adds network creation to ShareManager
    
    Partially implements: bp join-tenant-network
    
    Change-Id: I85a69e882ad299b059e40bfea850a169e6e4660d

commit a9247ae15b5c7969837cb7acc2ef9c876070aec2
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Jan 22 16:48:39 2014 +0200

    Checking if access rule exists in share api
    
    Added db method share_access_get_all_by_type_and_access.
    
    Closes bug 1271520
    Change-Id: I07702622cc920a04f8333bcf0634f01467c29965

commit c81ad66e7e9cda6034b31722bad54c924233d3ad
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Tue Jan 14 16:28:06 2014 +0200

    Add share's networks API
    
    Add server side for share's networks. Implemented controller
    will carry user requests to the DB and thus will allow
    user to manage share's networks data.
    
    Add share's networks support to the share API.
    
    Partially implements bp: join-tenant-network
    
    Change-Id: Ie4f3945255a049e80083f08a39d7f703a5c75c5e

commit d3131f40d214bfa902750f65c8da804c467ddd3a
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Thu Dec 5 15:51:32 2013 +0200

    Add share's networks DB model, API and neutron support
    
    Add share's networks DB models and API for managing
    data about tenant's networks.
    Add neutron network plug-in which will be responsible
    for managing neutron network resources (creating
    and deleting ports).
    
    Partially implements bp: join-tenant-network
    
    Change-Id: I20249f3640a10fc3ed55003a817a994efdb64681

commit f128d235f5f6505ea749972df5e7ade40a731ad9
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Tue Jan 21 20:33:36 2014 +0400

    Fix manila's devstack plugin for using Fedora/CentOS/RHEL distro
    
    Move distro-specified commands into special conditions.
    Make changes to related places.
    
    Change-Id: I386e70b1f173909ccd5a31f3207047d54f7bc0d0
    Closes-Bug: #1271100

commit c450c15f1ca192449c69a0d1b72e023a3f90f9c4
Merge: 74a5a7c 419ef80
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Jan 16 20:04:45 2014 +0000

    Merge "glusterfs: Add GlusterFS driver"

commit 74a5a7c3b9691043ca61637b6461c942650cfdb7
Merge: d68efa4 a2240d9
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Jan 15 13:21:01 2014 +0000

    Merge "Add manila's tempest-plugin"

commit a2240d911af03dac79381fe319396bbb30e56174
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Tue Jan 14 15:46:34 2014 +0200

    Add manila's tempest-plugin
    
    Adds plugin for tempest as for devstack
    Purpose - run tempest in ci job for manila project
    
    Partially implements bp: tempest-job
    
    Change-Id: I7a24a8fe6ca44f75d74e0c941dc25e561e79f81a

commit d68efa454cec29a804297a88aa35e3aaaf8bcd19
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Fri Jan 10 15:11:47 2014 +0200

    Security service API
    
    Added security service controller to
    Manila v1 API.
    
    Partially implements bp: join-tenant-network
    Change-Id: Ic11feb44547bf438d925261b587edc828eac31c1

commit 55f42ea27c07f1879adda2774fd429ca624f8afe
Author: Aleks Chirko <achirko@mirantis.com>
Date:   Wed Dec 18 17:34:00 2013 +0200

    Add security service DB model and API.
    
    Add support for managing security services information.
    
    User will be able to create description for services
    such as ldap, kerberos and active directory.
    Security service record will contain type of service
    (kerberos, ldap or ad), ip address of dns server, security
    service server hostname or ip, domain, sid (security identifier)
    and other auxiliary data.
    
    Partially implements bp: join-tenant-network
    
    Change-Id: I50e1f96496a40840aad97b77024a11302a1dd997

commit 32b69b5ba49521108ae8d5f3039be767d2ce6da5
Merge: 14774cf 9edddea
Author: Jenkins <jenkins@review.openstack.org>
Date:   Mon Jan 13 14:48:21 2014 +0000

    Merge "Remove redundant options in devstack plugin"

commit 9edddea74d021a796d5b85b03fe3a0b7181c00a0
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Sat Jan 11 11:11:29 2014 +0200

    Remove redundant options in devstack plugin
    
    In manila's devstack plugin configures manila.conf file,
    and it has redundant options, which is not used and
    deprecated.
    
    Change-Id: Iaf8f3ce925006cf423f46528e27abd8305c0c6e7

commit 14774cf8778a1f371bfad8bd98b325aac56cc1b4
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Thu Jan 9 13:16:16 2014 +0200

    Fix bug with full access to reset-state
    
    "Reset state" commands should be available only for admins.
    
    Change-Id: I34116212e91988f0282f7045449be61f581a3fce
    Closes-Bug: #1267432

commit d68e8a41a672ab1343f2093eab591f4592693a64
Merge: 4e39fb9 a78db60
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Jan 8 16:06:01 2014 +0000

    Merge "Adds an ability to reset snapshot state"

commit 419ef809effc3a695b7e8bcadf9be05b2cfff327
Author: Ram Raja <rraja@redhat.com>
Date:   Wed Nov 20 11:49:26 2013 +0530

    glusterfs: Add GlusterFS driver
    
    Added class GlusterfsShareDriver,
    derived from manila.share.driver.ShareDriver,
    implementing create and delete share capabilities
    and access control.
    
    Change-Id: I909ad28d316d071dd1a4790843eae25ade4a9c95

commit 4e39fb94c0ddb999dd8665a8c1de2140b43f977d
Author: vponomaryov <vponomaryov@mirantis.com>
Date:   Mon Jan 6 16:22:56 2014 +0200

    Fix manila's devstack plugin
    
    After devstack installation with manila, in some cases,
    database wasn't installed.
    
    Change-Id: I12069049d284e3039fa825a1cacda70e12911025

commit a78db602640355688caa88a8608c5a473eafe2bb
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Thu Dec 19 17:27:32 2013 +0200

    Adds an ability to reset snapshot state
    
    Partially implements: bp manila-client-enhancements
    Change-Id: Iff9fd0b588b90eae4c9475fe28883322abca8246

commit dc253dce03a1fd963e230682be1f55ab97f70db2
Merge: ad89416 7b1f1a3
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Dec 25 12:32:05 2013 +0000

    Merge "Refactoring driver interfaces"

commit ad89416af4c51c04dfa5ceece27e987bae141674
Merge: 7d4b39d fe8acf0
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Dec 24 12:13:23 2013 +0000

    Merge "Adds validation of access rules"

commit fe8acf0ef647b7f46f8596b133c1827061ba8fa6
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Wed Dec 18 15:01:29 2013 +0200

    Adds validation of access rules
    
    Partially implements: bp improve-acl-functionality
    Change-Id: I46d3edcadf33afef6fac242284dc6d61b4712bc1

commit 7d4b39d83df6041c52ca56594c373244f58932e5
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Thu Dec 19 13:09:35 2013 +0200

    Adds admin actions extension to provide reset-state command
    
    Partially implements: bp manila-client-enhancements
    Change-Id: I9c2968e7c8c05ce31ac0aafa83f46e2072dce338

commit 7b1f1a3b38bf073bd8369b04690bce1e5e1fd692
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Fri Dec 13 14:17:49 2013 +0200

    Refactoring driver interfaces
    
    Added method create_share_form_snapshot to
    manila.share.driver.ShareDriver.
    
    Removed methods allocate_container, allocate_container_from_snapshot,
    create_export, deallocate_container, remove_export
    
    Implements bp refacto-driver-interfaces
    
    Change-Id: I9f1c26b189f50aedc8e19864a172557700adf849

commit 488b11bdd1a9fcbfe0d078ce3e0eef3fa09dbf96
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Nov 28 22:39:54 2013 +0200

    Move NetAppApiClient to separate module
    
    Created module manila.share.drivers.netapp.api.
    
    Implements bp add-netapp-clustered-share-driver
    
    Change-Id: I944fc688c18dceeeb114b5b84b5a8b6b1bf23b45

commit a8166d2e29da04c5eb04f92f84d697cc3203af8f
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Nov 28 22:26:04 2013 +0200

    Moved netapp.py from drivers to drivers/netapp.
    
    Change-Id: Icfc1479476860e0155c43796a6f2e0d630b2d9b8

commit fb9b861b2c8b12f28f0d597764a6bae78a0b75de
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Thu Dec 5 14:59:40 2013 +0200

    Insert validation of losetup duplicates
    
    Change-Id: I38b95a67ae8e102b167320ce11c74588fe5b4415

commit 24577d8dcecbab777492bf60c355aba9d1be2fe2
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Thu Dec 5 14:24:11 2013 +0200

    Remove redundant options for manila
    
    There were not only backend-specific options,
    but and deprecated options for this backend.
    
    Change-Id: I4c1e46c9b9b415e7884c887dba5551046596c5bd

commit 03e32815912309153e5da3b4ccfa0eeccfb28ed6
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Thu Dec 5 13:40:25 2013 +0200

    Place devstack files to proper dirs
    
    Change-Id: I2e12e6573ebc4cb01a8bc464009ac63ef9a93780

commit dd017220fb00c8a4d12097638d6744433c8caeb9
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Thu Dec 5 12:03:55 2013 +0200

    Fixes inappropriate size of metadata value
    
    Fixes bug 1258079
    
    Change-Id: If1ab03eafbb2c6fb5be77a83781dce533f253175

commit 3e7de88830521c2341b212d9cf791ba10c1409e8
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Mon Dec 2 15:54:58 2013 +0200

    Adds 'metadata' key to list of options for xml responses.
    
    Change-Id: I27a976f99ba92c9255abb3eafff2d7e9c4163656
    Closes-Bug: #1256926

commit 2e1f4e191b806c6e5802c0b8a95548c707e047d9
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Thu Nov 28 14:42:44 2013 +0200

    Adds an ability to manage share metadata
    
    Now on share creating, we can specify metadata and it
    will be saved in database. Also support of setting,
    deleting and updating metadata info was added.
    
    Adds model for share metadata
    Adds migration
    Adds api extension for share metadata
    Adds relative api functions
    
    Partially implements bp manila-client-enhancements
    Change-Id: Id421323dd9e947d536b577092f1875f178d9aba5

commit cce07d59e189e0ae019345d52b7f5de490b4845e
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Nov 7 16:03:18 2013 +0200

    Added Neutron API module
    
    Implements bp join-tenant-network
    Change-Id: Ibda1c5e5ff903b289247cb212a239ea49ffa869a

commit f9636fa2c96eb0e8f320dca08271da771832f28c
Author: Bill Owen <billowen@us.ibm.com>
Date:   Fri Nov 22 07:51:15 2013 -0700

    Add consume_from_share method to HostState class
    
    Modify FilterScheduler._schedule_share to call new new method
    consume_from_share (it was calling consume_from_volume).
    
    Add HostState.consume_from_share to host_manager.
    
    Change-Id: I124674afe739ccf9648f91fcfbc63fd3be7caecc
    Closes-Bug: #1253860

commit d24b76b4d7d1c6ae49b0ee147ff7f30c2507bd26
Author: Valeriy Ponomaryov <vponomaryov@mirantis.com>
Date:   Fri Nov 22 16:08:25 2013 +0200

    Add devstack integration
    
    Add devstack integration for manila. Devstack has a plugin mechanism for
    unofficial projects to integrate with it without having to change any
    of devstack itself. This commit includes the files and some
    instructions on how to use them.
    
    Change-Id: I3b650b7696ccbcb7de9889a115e75310000774ca

commit 08003fed2cc8f3d2db2962ed01a3b4ecf8c7539e
Author: Bill Owen <billowen@us.ibm.com>
Date:   Thu Nov 21 18:23:04 2013 -0700

    Update requirements.txt for keystoneclient
    
    Update requirements.txt so that python-keystoneclient requirement
    is consistent with cinder and nova.
    
    Change-Id: Ifad04bde8c6f232c28841e12044e6050b25c9052
    Closes-Bug: #1253853

commit 632416d1d73233965b30bad9ce23e1182ac02f22
Merge: 7e4e38f ea944df
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Nov 20 11:27:46 2013 +0000

    Merge "Update openstack/common/lockutils"

commit 7e4e38f038cca6d7a04ffd7c694bc90c607f06c4
Author: Sascha Peilicke <speilicke@suse.com>
Date:   Tue Nov 19 11:24:56 2013 +0100

    Support building wheels (PEP-427)
    
    With that, building and uploading wheels to PyPI is only one "python
    setup.py bdist_wheel" away.
    
    Change-Id: Ie69ebaf407748b3bc2763fa6b34d3b2b58ea6e3a

commit ea944df962e1b42abc2f6760a434be230b7e2ad1
Author: Michael Still <mikal@stillhq.com>
Date:   Sat Nov 16 19:05:57 2013 +1100

    Update openstack/common/lockutils
    
    The following commits are in this update:
    
    79e6bc6 fix lockutils.lock() to make it thread-safe
    ace5120 Add main() to lockutils that creates temp dir for locks
    537d8e2 Allow lockutils to get lock_path conf from envvar
    d498c42 Fix to properly log when we release a semaphore
    29d387c Add LockFixture to lockutils
    3e3ac0c Modify lockutils.py due to dispose of eventlet
    90b6a65 Fix locking bug
    27d4b41 Move synchronized body to a first-class function
    15c17fb Make lock_file_prefix optional
    1a2df89 Enable H302 hacking check
    b41862d Use param keyword for docstrings
    
    Change-Id: Ic0fb3b7de5817dbd69da761f625689c523932bc4

commit 128051bf8bc89d4e48e634466c66bedbc0431974
Merge: 141bcf7 54ee1b2
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Oct 17 12:37:27 2013 +0000

    Merge "Added per user-tenant quota support"

commit 141bcf786e5443d76b73196379f457ab31db4dc8
Merge: 58c1959 58e2867
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Oct 17 12:33:37 2013 +0000

    Merge "Change wording of short description"

commit 58c1959fcfa0c267c341f748a32a5a7f97b0e593
Merge: ae0263e f272ce5
Author: Jenkins <jenkins@review.openstack.org>
Date:   Thu Oct 17 08:10:47 2013 +0000

    Merge "Remove unused manila.compute.aggregate_states"

commit f272ce5b119d82ce891b908fb0ac241085a65b5b
Author: Mark McLoughlin <markmc@redhat.com>
Date:   Thu Oct 17 07:14:38 2013 +0100

    Remove unused manila.compute.aggregate_states
    
    This appears to be unused.
    
    Change-Id: Id8bc376d9ea4f3cebbfde527a2870d529eb74cd8

commit ae0263e8496fc701c1682b6fa769496ca595342a
Author: Mark McLoughlin <markmc@redhat.com>
Date:   Thu Oct 17 07:08:01 2013 +0100

    Remove obsolete redhat-eventlet.patch
    
    See I62ce43a330d7ae94eda4c7498782a655e63747fa for the gorey details on
    why this exists.
    
    As of this fix:
    
      https://github.com/eventlet/eventlet/pull/34
    
    which was released in eventlet 0.13, we no longer need the patch.
    
    This has now been removed from oslo-incubator, so this is really just
    syncing that removal.
    
    Change-Id: I84267f3c6726cb2e750f615e107c48b12c6ed353

commit 54ee1b2aaa87c4d40db6c9fb35b93a6186effed2
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Fri Oct 11 18:24:07 2013 +0300

    Added per user-tenant quota support
    
    Added per user-tenant quota support.
    Added user-quotas extension, that turns on user quota support if it is
    loaded.
    Added force parameter, that lets to ignore check if admin want to
    force update when run 'manila quota-update'
    Added 'extended-quotas' extension that has provides ability for admins
    to be able to delete a non-default quota (absolute limit) for a
    tenant, so that tenant's quota will revert back to the configured default,
    and makes the force parameter always be passed if the client wants
    to set the new quota lower than what is already used and reserved.
    Added user quota support to db.api, sqlalchemy.api, sqlalchemy.models.
    Added migrations for user quota support.
    
    Implement bp: user-quota-support
    
    Change-Id: Ifb8f8a041c2fa54e2ed3a8219e87607b161438ca

commit 58e286719282cdf53c207bcda7f54aa069130d40
Author: Monty Taylor <mordred@inaugust.com>
Date:   Tue Oct 15 19:45:32 2013 -0300

    Change wording of short description
    
    It's important to keep the language very specific for trademark reasons.
    
    Change-Id: I147d0c56339099bb0bd602700fe57b67975efc36

commit 3f24fee2188e0a54bab6f710a8c223babfff2b21
Author: Andrei V. Ostapenko <aostapenko@mirantis.com>
Date:   Sat Oct 5 13:58:24 2013 +0300

    Removing deprecated using of flags module from project
    
    Moving file flags.py to manila/common/config.py,
    replacing FLAGS by CONF. Rename modules fake_flags to conf_fixture,
    test_flags to test_conf, declare_flags to declare_conf,
    runtime_flags to runtime_conf like it was done in cinder, nova, glance etc.
    
    Implement bp: use-oslo-conf
    
    Change-Id: I38d869123e5e706d3b06f1844b97ead05e22668f

commit a2b6193e0bda4a11553d219a44f4734b9ee9ffa3
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Oct 2 11:14:39 2013 +0300

    Fixed share size validation while creating from snapshot.
    
    Fixes bug 1233755
    
    Change-Id: Ie8689ccc5c3094d8a5303e3cafe842c0f3b964f3

commit cd6b68fa7ecbc92898690724a0e8f1e3461efa23
Merge: a017b97 c902da7
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Oct 1 14:33:54 2013 +0000

    Merge "Fixed xml response for share snapshot."

commit c902da7256a41175f2bdc4aff4a5b25b04f96110
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Fri Sep 27 07:16:36 2013 -0400

    Fixed xml response for share snapshot.
    
    For now xml response for snapshots show/list isn't
    full. Snapshot xml template was updated to make
    response full.
    
    Change-Id: I4d94d06213a539cdf6c876c6a2560fd63ff1957d

commit a017b97e5e5d30a0a343b118102183af74610f13
Merge: d47e7f9 6e69c97
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Oct 1 12:53:33 2013 +0000

    Merge "Added share size checking if creating from snapshot"

commit d47e7f9e83bc124fad6567b07397eaa2cfbbf6f1
Merge: bbd21eb 6dcaa7b
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Oct 1 10:44:51 2013 +0000

    Merge "Fixed values passed to share_rpcapi.create_share."

commit 6e69c9753c2af810bb1b23401c04591c48a29ea1
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Oct 1 13:43:27 2013 +0300

    Added share size checking if creating from snapshot
    
    Fixes bug 1231974
    
    Change-Id: I3148586de47a2474fdae288efb3adefd401f4552

commit 6dcaa7bdc0a8b7e8114914dbf87b20492b861c70
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 30 13:18:42 2013 +0300

    Fixed values passed to share_rpcapi.create_share.
    
    Values passed to share_rpcapi.create_share were in incorrect order.
    
    Fixed bug 1232126
    
    Change-Id: Icaa9dcaea9d0ee7f325620380180994ce4e838dc

commit bbd21eb4cc8019d520f61cb06a79d0dd6c720996
Author: Monty Taylor <mordred@inaugust.com>
Date:   Mon Sep 30 10:48:26 2013 -0400

    Remove d2to1 dependency
    
    Change-Id: I9e91070e61e00cbc7d99ff223e85c3c371f60566

commit 9eb5e22d231f9d24b1c6e81c138a8933beb165c2
Merge: 208f51a 70c5541
Author: Jenkins <jenkins@review.openstack.org>
Date:   Fri Sep 27 16:44:35 2013 +0000

    Merge "Fixed policy check for manila api."

commit 208f51a6de7b1f884d36eeefd8cafafee77716a5
Merge: 6feae39 d36f1f0
Author: Jenkins <jenkins@review.openstack.org>
Date:   Fri Sep 27 13:09:40 2013 +0000

    Merge "Update functionality implementation for manila api."

commit d36f1f0c921855f7b9306bc89f1db9dc38189896
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Wed Sep 25 09:15:06 2013 -0400

    Update functionality implementation for manila api.
    
    Currently manila api has no update functionality for
    shares and snapshots. Update functionality added
    to api and covered with unittests.
    
    Change-Id: Ie11d3d822e7c8b3a83e66aca5989d3fc1605b0ba
    Implements: blueprint share-update-feature

commit 70c5541da2a979a76521f23f05b2978359c214df
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 26 06:23:17 2013 -0400

    Fixed policy check for manila api.
    
    Change-Id: I92e19cbfc1af5e7849151425fc12aa96479de7d3

commit 6feae392a0635e0a3d0d400f2a8f4b13bbf8ec59
Merge: 15dce88 b5c58d8
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Sep 25 13:07:40 2013 +0000

    Merge "Update README with relevant Manila information."

commit 15dce88cb9c4093acddede7a2b4868bbaf53d899
Merge: fd3452a 5d610c2
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Sep 25 13:01:23 2013 +0000

    Merge "Fix xml response content for share list/show"

commit fd3452a2e1dec67a9c743e533d0137d7b79d5951
Merge: 14301ca e034341
Author: Jenkins <jenkins@review.openstack.org>
Date:   Wed Sep 25 13:01:23 2013 +0000

    Merge "Check policy implementation for shares api."

commit 14301ca01e910a5ee4c60d404e3527ed5c04d978
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Tue Sep 24 09:54:12 2013 -0400

    Added XML serialization for access actions
    
    Resources related to share access management hasn't xml
    serrialisation so it returns incorrect response for xml
    requests. XML temptates constructors added to
    share_actions.py ato solve this problem
    
    Change-Id: Ie76e768fc696c15dac4f18757ffcfe84335e04ce

commit e03434198201e7fbd2ba39892adb46a5066b1cc5
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Wed Sep 25 04:54:43 2013 -0400

    Check policy implementation for shares api.
    
    At this moment shares api don't check policy for
    most actions. Special check policy decorator added
    for necessary methods at api.py, to solve this problem.
    
    Change-Id: I253bda9cf3219343779d62d67fd0386a7c2f3b05
    Fixes: Bug#1223375

commit b5c58d8c0b93e0921fd31bbdb845d5788b202b4c
Author: Vijay Bellur <vbellur@redhat.com>
Date:   Wed Sep 25 09:40:06 2013 +0530

    Update README with relevant Manila information.
    
    Change-Id: I3cce6498ff6aa9c6a8a1395d2703a92daaf04c81

commit 5d610c2d836d084fb476c087146f51f3dc8c455c
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Tue Sep 24 10:47:50 2013 -0400

    Fix xml response content for share list/show
    
    For now manila list and manila show requests return
    limited data for xml version. make_share method in
    shares.py updated to avoid data limiting during xml
    serialization.
    
    Change-Id: I9b241f02e1bbf46f876f235df4ce052490b8aeab

commit 36adea3b26b25f4ddef7c7a75a6333b797aedeb3
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 23 14:22:13 2013 +0300

    Add .gitreview file.
    
    Change-Id: I895c6c4c897488e6aef5e60215e7abfd2f65fc90

commit 36a0e447a151836517c31964e9af5eb6f9a33003
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 24 12:39:30 2013 +0300

    Unittests failure fix
    
    Changed test.integrated.test_login.
    Modified policay.json
    Implemented FakeShareDriver
    
    Fixes bug 1229634
    
    Change-Id: I7485c3695e209d4314d3a8b197dbffbb49d9e0d2

commit cfe530f114e86d3733f70010d62b010da079d063
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 19 11:56:07 2013 +0300

    Fixed snapshot_id None for share

commit 6736d36bd6405f26f465ac057240d54acf45e509
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 19 11:17:13 2013 +0300

    Quota releasing on snapshot deleting bug fixed.

commit a0ed749e13cf1b3786dfb5f1f1093033cbd057ab
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 18 16:52:05 2013 +0300

    Fixed absolute limits.

commit 27b3074627c9a8e8c8633cc4c544348fde3a505e
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 18 15:30:22 2013 +0300

    fixed pep8

commit 5d8c002f23db4c919880418be79dd7981b408127
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 18 12:27:54 2013 +0300

    Stubed driver do_setup in start_service

commit 83f2482cae409bf10e9a7d0092cbee5ee9d2a1ce
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 17 15:18:47 2013 +0300

    Quota tests fixed

commit 4cdec7dda8191ecd77acceb1f4d7681aba9142d7
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 17 12:28:01 2013 +0300

    removed egg-info

commit 9a68e91f9e612d4f2531b0b3ca88aa8602b69fb8
Author: ubu <yportnova@mirantis.com>
Date:   Tue Sep 17 05:24:40 2013 -0400

    modified conf sample

commit 894157512dbdb870c8eed88140a169d05a939920
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 17 12:21:17 2013 +0300

    modified docs

commit 9169fc311e6793bb140ad86a758695b19c9a25f2
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 17 10:57:47 2013 +0300

    docs

commit 901d841a234afb75155a74ef67055ff5f0f746a9
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 16 16:36:35 2013 +0300

    snapshot view, size added

commit d20f8e92ab26b82d69a98d4d869899345c1554d3
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 16 10:55:45 2013 +0300

    quotas for snapshot

commit 6026fc024401662f3a68064bc142cb93def937c5
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 16 10:53:59 2013 +0300

    fixed api error

commit b3091cc0765f30e80f62dccf1ad59b1ae73b5c4e
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 16 10:10:00 2013 +0300

    snapshot size

commit aac5b4374a8b27fce3b025b2b0ea011bf8526983
Merge: 86bc890 69f3128
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 12 15:58:16 2013 +0300

    Merge branch 'cinder-to-manila' of github.com:bswartz/manila into cinder-to-manila

commit 86bc890f3b1866c94f79e518be1a83161ce1a4d4
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 12 15:58:01 2013 +0300

    fixed TYPO

commit 69f3128dbc643abc3d8c27aa62c7a5cab9eaf8fa
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 12 15:16:46 2013 +0300

    Access create empty boy fix

commit c115b5843bbaef3bd0ecb694b540666d0d9f01bc
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 12 14:53:54 2013 +0300

    User cannot delete snapshot fix

commit 2e2491c97e5924b15d1115055c96323e0d11edae
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 12 10:27:43 2013 +0300

    Can not delete share with error status fixed

commit 19e557f29d640bc09e5919a19d85a6949db3e1ba
Merge: 17274ef 52cd007
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 12 15:12:28 2013 +0300

    Merge branch '119vik/bugfix' into cinder-to-manila

commit 52cd007ad544d516d65c42a41d787274be8cf8ee
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 12 12:39:35 2013 +0300

    response status for share with snapshot delete request - fixed.

commit a2c5ae0ed0eb0ed68a13cc650ad46bdf52f1dcad
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Thu Sep 12 12:22:55 2013 +0300

    fixed null value validation for snapshot id

commit 17274ef2d05f69cbd63acb1508ef4354bf090743
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Wed Sep 11 17:19:50 2013 +0300

    fixed share temaplate name

commit c0e15af7fba670750d5f417f7f181bb811fce3dc
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Wed Sep 11 16:15:22 2013 +0300

    fixed share snapshots

commit 9fde2b23acef2158a73ba82d1558480208ad1c5f
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 11 14:58:39 2013 +0300

    pep8 fix

commit 7f8be1b66a0be8125e75d6a3d0a2b3f53bf252bf
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 11 12:39:12 2013 +0300

    License flake8 error fixed

commit 4f5dde7db5771bbe2ad0595a909c0f1e8dae1fe0
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 11 12:30:10 2013 +0300

    Fixed flake8 errors

commit 0d33cb038fbedf32dc2f7237cd586ffdb4cd76f6
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 11 12:29:22 2013 +0300

    Api share-snapshots to snapshots

commit 3683f7feb9cfda46fbed11ae82b65d759fd90569
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 16:36:10 2013 +0300

    Removed unused imports

commit 9a5c3791763716a12015458453df0e9c959bee45
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 15:58:41 2013 +0300

    Fixed api tests

commit 1a253971c241bcea339cb6281e2958184a5eb269
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 13:25:30 2013 +0300

    Removed v2 api.
    Moved shares and snapshots from contrib to v1

commit 68cbc773de543937b4a98e94345c6a9a1fbcce4f
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 12:06:02 2013 +0300

    quotas exception fix

commit a41117df0532cffe3dc14b52d36c30f617bb1a6c
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 11:04:04 2013 +0300

    Quotas fix

commit 01ee3a3279ca8036be4e44dcac23494a73d1dfdf
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 10 11:03:42 2013 +0300

    Deleted api v2

commit 68c71d8de219cc90a46cc7a918c91240620d4e3b
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Fri Sep 6 15:37:58 2013 +0300

    Quotas fixed.
    quotas unittests fixed.

commit 06d200f0aa3339a78a13298b3109d9a3935ab1e0
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Fri Sep 6 10:56:03 2013 +0300

    Removed ubused unittests.

commit 65d4daa3b8ef4a5b3ba11a719e653859c8b30792
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 16:44:11 2013 +0300

    fixed fake flags

commit 35fe8d3b7fe48a2c50608005229d33937c29e887
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 16:41:32 2013 +0300

    Removed volume specific tests

commit a005c85ef1851c06019f1d455095a55ce0bf6d88
Merge: b2b51fb cc3f4fa
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 15:29:49 2013 +0300

    merge

commit b2b51fb29ff14f16bb136ddb0dcd932b1e7616b3
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 15:27:46 2013 +0300

    Mass replace osapi_volume to osapi_share
    Removed locale

commit 59411bf710a5d6af3817bd67c1736a368bf48d1a
Author: ubu <yportnova@mirantis.com>
Date:   Thu Sep 5 08:14:22 2013 -0400

    Update connfig.sample scripts

commit cc3f4faaf846941651e8d728be2d60a19686fbcb
Author: ubu <yportnova@mirantis.com>
Date:   Thu Sep 5 08:14:22 2013 -0400

    Update connfig.sample scripts

commit f367977a0b46ecabcfaad8c88064a01a685b7219
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 11:37:51 2013 +0300

    Removed unused opts from flags.py

commit 84aa8c2deeb02f29ecb9c16b5025f4ff8b172e52
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 11:33:10 2013 +0300

    removed some volume occurances

commit 640b4b917635d538aab982a49a5e7b6d70680dd0
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 11:16:08 2013 +0300

    removed block specific exceptions

commit c67fc2da7a0648eb302b6ef02ae92fcd48201414
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 11:02:21 2013 +0300

    osapi_volume to osapi_share

commit 0016763230a57a2921d79c23a51d670bc28d1a71
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 11:01:29 2013 +0300

    removed volumes from bin scripts

commit 468b5bfe3fa7829079fb85168ef3067f139eec4d
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 10:36:31 2013 +0300

    Added help to smb_config_path conf

commit 22da3e6479dfc3553b66bdae78efc0c2ab2fa335
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 10:21:25 2013 +0300

    modified fake flags

commit 65d8167a0f247026760fb1ff1901454ccbf677f9
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Thu Sep 5 10:20:33 2013 +0300

    deleted brick

commit c651f3f5f95654c4a0b69b8b508e6303a5754a2d
Author: 119Vik <vitalij_ua@ukr.net>
Date:   Wed Sep 4 17:08:27 2013 +0300

    fixed manila manage

commit 3daf82a5d9114b44e9fb2245b14659dfcba96f29
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 15:51:05 2013 +0300

    api-paste.ini: osapi_volume to osapi-share

commit 4e2f27c11ab1d201e6dab05a73977c1ba5eea4e9
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 15:44:38 2013 +0300

    Replaced cinder with manila

commit 5748e0dd298a6ecdc1bcd746cd066eec86f47745
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 12:05:44 2013 +0300

    Renamed service api config opts.
    Set default port to 8786

commit 49a5d0b46113ce75568fa44b129d6599df49ec23
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 10:44:52 2013 +0300

    removed volumes from scheduler

commit 373bea0fe19e3640578a27193195276b0bde5273
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 10:21:21 2013 +0300

    deleteted .idea, added .gitignore

commit c112a4115171ef0f5d4e559ab1338593493c9c3b
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 10:15:04 2013 +0300

    volume api removed

commit 7ba0c66512d4d9bb91f8106f85d684d61580ff71
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Wed Sep 4 10:01:13 2013 +0300

    fixed keystone context

commit d02e3156a2f0687b9a204e40efba695a4463b150
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 3 15:57:55 2013 +0300

    api fix

commit bb79e54fa136596a69d29a9b1a47ce62deda3079
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 3 12:00:14 2013 +0300

    Removed backups

commit 1dde8fb5cfda07121ca7a702dc632553456eef15
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 3 11:14:00 2013 +0300

    DB cleaned

commit 439855f1e844feb937ab5fe42e4cc3ca281ccfcc
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Tue Sep 3 10:40:38 2013 +0300

    Removed SM models and migrations

commit e1943b3d6a7581109c7eada6126eb378c26ae46b
Author: Yulia Portnova <yportnova>
Date:   Mon Sep 2 15:35:50 2013 +0300

    Modified models

commit ee021608540f57a1cfc7aed19fcc98d37a7db4ef
Author: Yulia Portnova <yportnova>
Date:   Mon Sep 2 15:05:13 2013 +0300

    Modified migrations

commit b8483b2644cf58e6ab20f796182a502ae02e78d1
Author: Yulia Portnova <yportnova>
Date:   Mon Sep 2 14:07:20 2013 +0300

    Removed block-specific from  DB api

commit 9b20ae70ce4760f8a46f7b0ff9c78b508db2cc75
Author: Yulia Portnova <yportnova>
Date:   Mon Sep 2 10:43:46 2013 +0300

    Deleted manila.volume

commit dc4ce932ed304a2c1dbe68059bdea664792db67f
Author: Yulia Portnova <yportnova@mirantis.com>
Date:   Mon Sep 2 09:59:07 2013 +0300

    Renamed cinder to manila.
    Fixed setup.py, fixed bin scripts.

commit f99ef92c9024b1dfc604646c8c0912b963c11523
Author: Ben Swartzlander <bswartz@asura.(none)>
Date:   Thu Aug 8 10:34:06 2013 -0400

    Initialize from cinder

commit 0483210d09f291dfef304d620a12f3d22550d56d
Author: bswartz <ben@swartzlander.org>
Date:   Thu Aug 8 07:30:20 2013 -0700

    Initial commit