You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2011/05/09 21:30:30 UTC

svn commit: r1101162 - in /incubator/libcloud/trunk/libcloud/resource: __init__.py lb/__init__.py lb/drivers/__init__.py

Author: tomaz
Date: Mon May  9 19:30:30 2011
New Revision: 1101162

URL: http://svn.apache.org/viewvc?rev=1101162&view=rev
Log:
Add missing __init__.py files.

Added:
    incubator/libcloud/trunk/libcloud/resource/__init__.py
    incubator/libcloud/trunk/libcloud/resource/lb/__init__.py
    incubator/libcloud/trunk/libcloud/resource/lb/drivers/__init__.py

Added: incubator/libcloud/trunk/libcloud/resource/__init__.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/resource/__init__.py?rev=1101162&view=auto
==============================================================================
--- incubator/libcloud/trunk/libcloud/resource/__init__.py (added)
+++ incubator/libcloud/trunk/libcloud/resource/__init__.py Mon May  9 19:30:30 2011
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
+__all__ = [
+    'lb'
+]

Added: incubator/libcloud/trunk/libcloud/resource/lb/__init__.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/resource/lb/__init__.py?rev=1101162&view=auto
==============================================================================
--- incubator/libcloud/trunk/libcloud/resource/lb/__init__.py (added)
+++ incubator/libcloud/trunk/libcloud/resource/lb/__init__.py Mon May  9 19:30:30 2011
@@ -0,0 +1,22 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+__all__ = [
+    'base',
+    'providers',
+    'types',
+    'drivers'
+]
+

Added: incubator/libcloud/trunk/libcloud/resource/lb/drivers/__init__.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/resource/lb/drivers/__init__.py?rev=1101162&view=auto
==============================================================================
--- incubator/libcloud/trunk/libcloud/resource/lb/drivers/__init__.py (added)
+++ incubator/libcloud/trunk/libcloud/resource/lb/drivers/__init__.py Mon May  9 19:30:30 2011
@@ -0,0 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+__all__ = [
+    'rackspace',
+    'gogrid'
+]