Remove trailing whitespaces in regular file

Change-Id: I57863b354b38dd6618e4dfa9c27f0a107e244526
This commit is contained in:
Hengqing Hu 2012-03-03 12:55:25 +08:00
parent a2ffd46412
commit b69e9db4c1
4 changed files with 25 additions and 24 deletions

View File

@ -43,6 +43,7 @@ Eric Day <eday@oddments.org>
Eric Windisch <eric@cloudscaling.com> Eric Windisch <eric@cloudscaling.com>
Ewan Mellor <ewan.mellor@citrix.com> Ewan Mellor <ewan.mellor@citrix.com>
Gabe Westmaas <gabe.westmaas@rackspace.com> Gabe Westmaas <gabe.westmaas@rackspace.com>
Hengqing Hu <hudayou@hotmail.com>
Hisaharu Ishii <ishii.hisaharu@lab.ntt.co.jp> Hisaharu Ishii <ishii.hisaharu@lab.ntt.co.jp>
Hisaki Ohara <hisaki.ohara@intel.com> Hisaki Ohara <hisaki.ohara@intel.com>
Ilya Alekseyev <ilyaalekseyev@acm.org> Ilya Alekseyev <ilyaalekseyev@acm.org>

View File

@ -1,5 +1,5 @@
(function($) { (function($) {
$.fn.tweet = function(o){ $.fn.tweet = function(o){
var s = { var s = {
username: ["seaofclouds"], // [string] required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"] username: ["seaofclouds"], // [string] required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"]
@ -17,9 +17,9 @@
loading_text: null, // [string] optional loading text, displayed while tweets load loading_text: null, // [string] optional loading text, displayed while tweets load
query: null // [string] optional search query query: null // [string] optional search query
}; };
if(o) $.extend(s, o); if(o) $.extend(s, o);
$.fn.extend({ $.fn.extend({
linkUrl: function() { linkUrl: function() {
var returning = []; var returning = [];

View File

@ -187,8 +187,8 @@ Normal Response code: 200
"type": "private", "type": "private",
"updated_at": "2011-12-01T09:42:13" "updated_at": "2011-12-01T09:42:13"
}, },
] ]
} }
@ -1096,7 +1096,7 @@ None
Normal Response code: 200 Normal Response code: 200
Error - 404 Not Found [When interface is not found] Error - 404 Not Found [When interface is not found]
**JSON Response Example:** **JSON Response Example:**
@ -1149,7 +1149,7 @@ None
Normal Response code: 200 Normal Response code: 200
Error - 404 Not Found [When interface is not found] Error - 404 Not Found [When interface is not found]
Instance Interfaces Instance Interfaces
=========================== ===========================
@ -1247,7 +1247,7 @@ Create a single interface for an instance and allocate an ip for the interface
====== ========================================================================================= ============================================================================================================== ====== ========================================================================================= ==============================================================================================================
Verb URI Description Verb URI Description
====== ========================================================================================= ============================================================================================================== ====== ========================================================================================= ==============================================================================================================
POST /ipam/instances/{instance_id}/interfaces Create an interface with the instance_id and allocate a mac. If a network is provided, allocate an ip as well. POST /ipam/instances/{instance_id}/interfaces Create an interface with the instance_id and allocate a mac. If a network is provided, allocate an ip as well.
====== ========================================================================================= ============================================================================================================== ====== ========================================================================================= ==============================================================================================================
**Params:** **Params:**
@ -1548,7 +1548,7 @@ Deallocate all IpAddresses on an Interface
====== ======================================================================================== ========================================================= ====== ======================================================================================== =========================================================
Verb URI Description Verb URI Description
====== ======================================================================================== ========================================================= ====== ======================================================================================== =========================================================
DELETE /ipam/instance/{instance_id}/interfaces/{interface_id}/ip_addresses Delete all allocated IpAddresses on the interface DELETE /ipam/instance/{instance_id}/interfaces/{interface_id}/ip_addresses Delete all allocated IpAddresses on the interface
====== ======================================================================================== ========================================================= ====== ======================================================================================== =========================================================
**Params:** **Params:**
@ -1906,17 +1906,17 @@ Normal Response code: 200
:: ::
{ {
"policies": [ "policies": [
{ {
"created_at": "2011-12-01T09:06:10", "created_at": "2011-12-01T09:06:10",
"description": "policy_desc", "description": "policy_desc",
"id": "2f730874-2088-4f91-87fb-63792c753971", "id": "2f730874-2088-4f91-87fb-63792c753971",
"name": "rax_policy", "name": "rax_policy",
"tenant_id": "RAX", "tenant_id": "RAX",
"updated_at": "2011-12-01T09:06:10" "updated_at": "2011-12-01T09:06:10"
} }
] ]
} }
Get details of a Tenant's IP Policy Get details of a Tenant's IP Policy
----------------------------------- -----------------------------------
@ -2178,7 +2178,7 @@ Create a unusable ip range in tenant's policy
Normal Response code: 201 Normal Response code: 201
Error - 404 Not Found [When Policy doesn't exist] Error - 404 Not Found [When Policy doesn't exist]
**JSON Response Example:** **JSON Response Example:**
@ -2225,7 +2225,7 @@ Update details of a policy's unusable ip range
Normal Response code: 200 Normal Response code: 200
Error - 404 Not Found [When Policy or IP range doesn't exist] Error - 404 Not Found [When Policy or IP range doesn't exist]
**JSON Response Example:** **JSON Response Example:**
@ -2261,7 +2261,7 @@ None
Normal Response code: 200 Normal Response code: 200
Error - 404 Not Found [When Policy or IP range doesn't exist] Error - 404 Not Found [When Policy or IP range doesn't exist]
Tenant Policy Unusable Ip Octets Tenant Policy Unusable Ip Octets
================================ ================================

View File

@ -1,5 +1,5 @@
#!/bin/sh -e #!/bin/sh -e
# Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com> # Copyright (c) 2010-2011 Gluster, Inc. <http://www.gluster.com>
# This initial version of this file was taken from the source tree # This initial version of this file was taken from the source tree
# of GlusterFS. It was not directly attributed, but is assumed to be # of GlusterFS. It was not directly attributed, but is assumed to be
# Copyright (c) 2010-2011 Gluster, Inc and release GPLv3 # Copyright (c) 2010-2011 Gluster, Inc and release GPLv3