Remove trailing whitespaces in regular file
Change-Id: I2317eb6d87054af4b04c91ef216a4c46c3dec423
This commit is contained in:
parent
eb724878fa
commit
aebc081c66
1
AUTHORS
1
AUTHORS
@ -13,6 +13,7 @@ Ewan Mellor <ewan.mellor@citrix.com>
|
|||||||
Gabriel Hurley <gabriel@strikeawe.com>
|
Gabriel Hurley <gabriel@strikeawe.com>
|
||||||
Ghe Rivero <ghe@debian.org>
|
Ghe Rivero <ghe@debian.org>
|
||||||
Ghe Rivero <ghe.rivero@stackops.com>
|
Ghe Rivero <ghe.rivero@stackops.com>
|
||||||
|
Hengqing Hu <hudayou@hotmail.com>
|
||||||
Ivan Kolodyazhny <e0ne@e0ne.info>
|
Ivan Kolodyazhny <e0ne@e0ne.info>
|
||||||
Jake Dahn <admin@jakedahn.com>
|
Jake Dahn <admin@jakedahn.com>
|
||||||
jakedahn <jake@ansolabs.com>
|
jakedahn <jake@ansolabs.com>
|
||||||
|
@ -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 = [];
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# With the addition of Keystone, to use an openstack cloud you should
|
# With the addition of Keystone, to use an openstack cloud you should
|
||||||
# authenticate against keystone, which returns a **Token** and **Service
|
# authenticate against keystone, which returns a **Token** and **Service
|
||||||
# Catalog**. The catalog contains the endpoint for all services the
|
# Catalog**. The catalog contains the endpoint for all services the
|
||||||
# user/tenant has access to - including nova, glance, keystone, swift.
|
# user/tenant has access to - including nova, glance, keystone, swift.
|
||||||
#
|
#
|
||||||
# *NOTE*: Using the 2.0 *auth api* does not mean that compute api is 2.0. We
|
# *NOTE*: Using the 2.0 *auth api* does not mean that compute api is 2.0. We
|
||||||
|
@ -1,103 +1,103 @@
|
|||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
* TableSorter 2.0 - Client-side table sorting with ease!
|
* TableSorter 2.0 - Client-side table sorting with ease!
|
||||||
* Version 2.0.5b
|
* Version 2.0.5b
|
||||||
* @requires jQuery v1.2.3
|
* @requires jQuery v1.2.3
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007 Christian Bach
|
* Copyright (c) 2007 Christian Bach
|
||||||
* Examples and docs at: http://tablesorter.com
|
* Examples and docs at: http://tablesorter.com
|
||||||
* Dual licensed under the MIT and GPL licenses:
|
* Dual licensed under the MIT and GPL licenses:
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
* http://www.gnu.org/licenses/gpl.html
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @description Create a sortable table with multi-column sorting capabilitys
|
* @description Create a sortable table with multi-column sorting capabilitys
|
||||||
*
|
*
|
||||||
* @example $('table').tablesorter();
|
* @example $('table').tablesorter();
|
||||||
* @desc Create a simple tablesorter interface.
|
* @desc Create a simple tablesorter interface.
|
||||||
*
|
*
|
||||||
* @example $('table').tablesorter({ sortList:[[0,0],[1,0]] });
|
* @example $('table').tablesorter({ sortList:[[0,0],[1,0]] });
|
||||||
* @desc Create a tablesorter interface and sort on the first and secound column column headers.
|
* @desc Create a tablesorter interface and sort on the first and secound column column headers.
|
||||||
*
|
*
|
||||||
* @example $('table').tablesorter({ headers: { 0: { sorter: false}, 1: {sorter: false} } });
|
* @example $('table').tablesorter({ headers: { 0: { sorter: false}, 1: {sorter: false} } });
|
||||||
*
|
*
|
||||||
* @desc Create a tablesorter interface and disableing the first and second column headers.
|
* @desc Create a tablesorter interface and disableing the first and second column headers.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @example $('table').tablesorter({ headers: { 0: {sorter:"integer"}, 1: {sorter:"currency"} } });
|
* @example $('table').tablesorter({ headers: { 0: {sorter:"integer"}, 1: {sorter:"currency"} } });
|
||||||
*
|
*
|
||||||
* @desc Create a tablesorter interface and set a column parser for the first
|
* @desc Create a tablesorter interface and set a column parser for the first
|
||||||
* and second column.
|
* and second column.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @param Object
|
* @param Object
|
||||||
* settings An object literal containing key/value pairs to provide
|
* settings An object literal containing key/value pairs to provide
|
||||||
* optional settings.
|
* optional settings.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @option String cssHeader (optional) A string of the class name to be appended
|
* @option String cssHeader (optional) A string of the class name to be appended
|
||||||
* to sortable tr elements in the thead of the table. Default value:
|
* to sortable tr elements in the thead of the table. Default value:
|
||||||
* "header"
|
* "header"
|
||||||
*
|
*
|
||||||
* @option String cssAsc (optional) A string of the class name to be appended to
|
* @option String cssAsc (optional) A string of the class name to be appended to
|
||||||
* sortable tr elements in the thead on a ascending sort. Default value:
|
* sortable tr elements in the thead on a ascending sort. Default value:
|
||||||
* "headerSortUp"
|
* "headerSortUp"
|
||||||
*
|
*
|
||||||
* @option String cssDesc (optional) A string of the class name to be appended
|
* @option String cssDesc (optional) A string of the class name to be appended
|
||||||
* to sortable tr elements in the thead on a descending sort. Default
|
* to sortable tr elements in the thead on a descending sort. Default
|
||||||
* value: "headerSortDown"
|
* value: "headerSortDown"
|
||||||
*
|
*
|
||||||
* @option String sortInitialOrder (optional) A string of the inital sorting
|
* @option String sortInitialOrder (optional) A string of the inital sorting
|
||||||
* order can be asc or desc. Default value: "asc"
|
* order can be asc or desc. Default value: "asc"
|
||||||
*
|
*
|
||||||
* @option String sortMultisortKey (optional) A string of the multi-column sort
|
* @option String sortMultisortKey (optional) A string of the multi-column sort
|
||||||
* key. Default value: "shiftKey"
|
* key. Default value: "shiftKey"
|
||||||
*
|
*
|
||||||
* @option String textExtraction (optional) A string of the text-extraction
|
* @option String textExtraction (optional) A string of the text-extraction
|
||||||
* method to use. For complex html structures inside td cell set this
|
* method to use. For complex html structures inside td cell set this
|
||||||
* option to "complex", on large tables the complex option can be slow.
|
* option to "complex", on large tables the complex option can be slow.
|
||||||
* Default value: "simple"
|
* Default value: "simple"
|
||||||
*
|
*
|
||||||
* @option Object headers (optional) An array containing the forces sorting
|
* @option Object headers (optional) An array containing the forces sorting
|
||||||
* rules. This option let's you specify a default sorting rule. Default
|
* rules. This option let's you specify a default sorting rule. Default
|
||||||
* value: null
|
* value: null
|
||||||
*
|
*
|
||||||
* @option Array sortList (optional) An array containing the forces sorting
|
* @option Array sortList (optional) An array containing the forces sorting
|
||||||
* rules. This option let's you specify a default sorting rule. Default
|
* rules. This option let's you specify a default sorting rule. Default
|
||||||
* value: null
|
* value: null
|
||||||
*
|
*
|
||||||
* @option Array sortForce (optional) An array containing forced sorting rules.
|
* @option Array sortForce (optional) An array containing forced sorting rules.
|
||||||
* This option let's you specify a default sorting rule, which is
|
* This option let's you specify a default sorting rule, which is
|
||||||
* prepended to user-selected rules. Default value: null
|
* prepended to user-selected rules. Default value: null
|
||||||
*
|
*
|
||||||
* @option Boolean sortLocaleCompare (optional) Boolean flag indicating whatever
|
* @option Boolean sortLocaleCompare (optional) Boolean flag indicating whatever
|
||||||
* to use String.localeCampare method or not. Default set to true.
|
* to use String.localeCampare method or not. Default set to true.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @option Array sortAppend (optional) An array containing forced sorting rules.
|
* @option Array sortAppend (optional) An array containing forced sorting rules.
|
||||||
* This option let's you specify a default sorting rule, which is
|
* This option let's you specify a default sorting rule, which is
|
||||||
* appended to user-selected rules. Default value: null
|
* appended to user-selected rules. Default value: null
|
||||||
*
|
*
|
||||||
* @option Boolean widthFixed (optional) Boolean flag indicating if tablesorter
|
* @option Boolean widthFixed (optional) Boolean flag indicating if tablesorter
|
||||||
* should apply fixed widths to the table columns. This is usefull when
|
* should apply fixed widths to the table columns. This is usefull when
|
||||||
* using the pager companion plugin. This options requires the dimension
|
* using the pager companion plugin. This options requires the dimension
|
||||||
* jquery plugin. Default value: false
|
* jquery plugin. Default value: false
|
||||||
*
|
*
|
||||||
* @option Boolean cancelSelection (optional) Boolean flag indicating if
|
* @option Boolean cancelSelection (optional) Boolean flag indicating if
|
||||||
* tablesorter should cancel selection of the table headers text.
|
* tablesorter should cancel selection of the table headers text.
|
||||||
* Default value: true
|
* Default value: true
|
||||||
*
|
*
|
||||||
* @option Boolean debug (optional) Boolean flag indicating if tablesorter
|
* @option Boolean debug (optional) Boolean flag indicating if tablesorter
|
||||||
* should display debuging information usefull for development.
|
* should display debuging information usefull for development.
|
||||||
*
|
*
|
||||||
* @type jQuery
|
* @type jQuery
|
||||||
*
|
*
|
||||||
* @name tablesorter
|
* @name tablesorter
|
||||||
*
|
*
|
||||||
* @cat Plugins/Tablesorter
|
* @cat Plugins/Tablesorter
|
||||||
*
|
*
|
||||||
* @author Christian Bach/christian.bach@polyester.se
|
* @author Christian Bach/christian.bach@polyester.se
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -347,7 +347,7 @@
|
|||||||
tableBody[0].appendChild(r[pos][j]);
|
tableBody[0].appendChild(r[pos][j]);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -381,7 +381,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
var meta = ($.metadata) ? true : false;
|
var meta = ($.metadata) ? true : false;
|
||||||
|
|
||||||
var header_index = computeTableHeaderCellIndexes(table);
|
var header_index = computeTableHeaderCellIndexes(table);
|
||||||
|
|
||||||
$tableHeaders = $(table.config.selectorHeaders, table).each(function (index) {
|
$tableHeaders = $(table.config.selectorHeaders, table).each(function (index) {
|
||||||
@ -389,8 +389,8 @@
|
|||||||
this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
|
this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
|
||||||
// this.column = index;
|
// this.column = index;
|
||||||
this.order = formatSortingOrder(table.config.sortInitialOrder);
|
this.order = formatSortingOrder(table.config.sortInitialOrder);
|
||||||
|
|
||||||
|
|
||||||
this.count = this.order;
|
this.count = this.order;
|
||||||
|
|
||||||
if (checkHeaderMetadata(this) || checkHeaderOptions(table, index)) this.sortDisabled = true;
|
if (checkHeaderMetadata(this) || checkHeaderOptions(table, index)) this.sortDisabled = true;
|
||||||
@ -493,12 +493,12 @@
|
|||||||
};
|
};
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function checkHeaderOptionsSortingLocked(table, i) {
|
function checkHeaderOptionsSortingLocked(table, i) {
|
||||||
if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder)) return table.config.headers[i].lockedOrder;
|
if ((table.config.headers[i]) && (table.config.headers[i].lockedOrder)) return table.config.headers[i].lockedOrder;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function applyWidget(table) {
|
function applyWidget(table) {
|
||||||
var c = table.config.widgets;
|
var c = table.config.widgets;
|
||||||
var l = c.length;
|
var l = c.length;
|
||||||
@ -727,7 +727,7 @@
|
|||||||
this.order = this.count++ % 2;
|
this.order = this.count++ % 2;
|
||||||
// always sort on the locked order.
|
// always sort on the locked order.
|
||||||
if(this.lockedOrder) this.order = this.lockedOrder;
|
if(this.lockedOrder) this.order = this.lockedOrder;
|
||||||
|
|
||||||
// user only whants to sort on one
|
// user only whants to sort on one
|
||||||
// column
|
// column
|
||||||
if (!e[config.sortMultiSortKey]) {
|
if (!e[config.sortMultiSortKey]) {
|
||||||
|
@ -37,21 +37,21 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 28px;
|
min-height: 28px;
|
||||||
/* Make inputs at least the height of their button counterpart */
|
/* Make inputs at least the height of their button counterpart */
|
||||||
|
|
||||||
/* Makes inputs behave like true block-level elements */
|
/* Makes inputs behave like true block-level elements */
|
||||||
|
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
/* Older Webkit */
|
/* Older Webkit */
|
||||||
|
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
/* Older FF */
|
/* Older FF */
|
||||||
|
|
||||||
-ms-box-sizing: border-box;
|
-ms-box-sizing: border-box;
|
||||||
/* IE8 */
|
/* IE8 */
|
||||||
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
/* CSS3 spec*/
|
/* CSS3 spec*/
|
||||||
|
|
||||||
}
|
}
|
||||||
.input-prepend input[class*="span"], .input-append input[class*="span"] {
|
.input-prepend input[class*="span"], .input-append input[class*="span"] {
|
||||||
width: auto;
|
width: auto;
|
||||||
|
@ -241,4 +241,4 @@ This is a custom SVG webfont generated by Fontspring.
|
|||||||
<glyph unicode="ffi" horiz-adv-x="1687" d="M63 874v127l11 11h133v139q0 162 100.5 249t249.5 87q154 0 270 -90q47 80 135.5 123t190.5 43q166 0 303 -115l2 -14l-90 -103l-16 2q-92 74 -199 74q-88 0 -147.5 -44t-59.5 -128v-223h504l72 10l10 -8v-1004l-10 -10h-144l-10 10v854h-422v-1108l-41 -207l-12 -14 l-100 59l-11 19v1251h-411v-1108l-41 -207l-13 -14l-100 59l-10 19v1251h-133zM371 1012h411v205q-10 16 -28.5 37.5t-73.5 49t-123 27.5q-86 0 -136 -43t-50 -129v-147z" />
|
<glyph unicode="ffi" horiz-adv-x="1687" d="M63 874v127l11 11h133v139q0 162 100.5 249t249.5 87q154 0 270 -90q47 80 135.5 123t190.5 43q166 0 303 -115l2 -14l-90 -103l-16 2q-92 74 -199 74q-88 0 -147.5 -44t-59.5 -128v-223h504l72 10l10 -8v-1004l-10 -10h-144l-10 10v854h-422v-1108l-41 -207l-12 -14 l-100 59l-11 19v1251h-411v-1108l-41 -207l-13 -14l-100 59l-10 19v1251h-133zM371 1012h411v205q-10 16 -28.5 37.5t-73.5 49t-123 27.5q-86 0 -136 -43t-50 -129v-147z" />
|
||||||
<glyph unicode="ffl" horiz-adv-x="1712" d="M63 874v127l11 11h133v139q0 162 100.5 249t249.5 87q154 0 270 -90q47 80 135.5 123t190.5 43q152 0 266 -88l92 14l11 -8v-1250q0 -53 28.5 -72.5t63.5 -19.5h8l8 -10l-22 -129l-11 -10h-16q-31 0 -60.5 7t-70.5 27.5t-66.5 70.5t-25.5 126v1098q-78 88 -205 88 q-88 0 -147.5 -44t-59.5 -128v-223h311l11 -11l-39 -127l-15 -10h-268v-1108l-41 -207l-12 -14l-100 59l-11 19v1251h-411v-1108l-41 -207l-13 -14l-100 59l-10 19v1251h-133zM371 1012h411v205q-10 16 -28.5 37.5t-73.5 49t-123 27.5q-86 0 -136 -43t-50 -129v-147z" />
|
<glyph unicode="ffl" horiz-adv-x="1712" d="M63 874v127l11 11h133v139q0 162 100.5 249t249.5 87q154 0 270 -90q47 80 135.5 123t190.5 43q152 0 266 -88l92 14l11 -8v-1250q0 -53 28.5 -72.5t63.5 -19.5h8l8 -10l-22 -129l-11 -10h-16q-31 0 -60.5 7t-70.5 27.5t-66.5 70.5t-25.5 126v1098q-78 88 -205 88 q-88 0 -147.5 -44t-59.5 -128v-223h311l11 -11l-39 -127l-15 -10h-268v-1108l-41 -207l-12 -14l-100 59l-11 19v1251h-411v-1108l-41 -207l-13 -14l-100 59l-10 19v1251h-133zM371 1012h411v205q-10 16 -28.5 37.5t-73.5 49t-123 27.5q-86 0 -136 -43t-50 -129v-147z" />
|
||||||
</font>
|
</font>
|
||||||
</defs></svg>
|
</defs></svg>
|
Before Width: | Height: | Size: 60 KiB After Width: | Height: | Size: 60 KiB |
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user