Added added panel development status to each module

This commit is contained in:
Rashid Khan 2013-06-17 10:34:18 -07:00
parent 026abe0a42
commit 35de5de3b2
18 changed files with 18 additions and 1 deletions

View File

@ -19,6 +19,7 @@ angular.module('kibana.column', [])
.controller('column', function($scope, $rootScope) {
// Set and populate defaults
var _d = {
status: "Stable",
panels : [
]
}

View File

@ -32,6 +32,7 @@ angular.module('kibana.dashcontrol', [])
$scope.panel = $scope.panel || {};
// Set and populate defaults
var _d = {
status : "Stable",
group : "default",
save : {
gist: false,

View File

@ -21,6 +21,7 @@ angular.module('kibana.debug', [])
// Set and populate defaults
var _d = {
status : "Experimental",
group : "ALL",
style : {'font-size':'9pt'},
size : 20

View File

@ -26,6 +26,7 @@ angular.module('kibana.derivequeries', [])
// Set and populate defaults
var _d = {
status : "Beta",
label : "Search",
query : "*",
group : "default",

View File

@ -22,6 +22,7 @@ angular.module('kibana.fields', [])
// Set and populate defaults
var _d = {
status : "Beta",
group : "default",
style : {},
arrange : 'vertical',

View File

@ -46,6 +46,7 @@ angular.module('kibana.histogram', [])
// Set and populate defaults
var _d = {
status : "Stable",
group : "default",
query : [ {query: "*", label:"Query"} ],
mode : 'count',

View File

@ -26,6 +26,7 @@ angular.module('kibana.hits', [])
// Set and populate defaults
var _d = {
status : "Beta",
query : ["*"],
group : "default",
style : { "font-size": '10pt'},

View File

@ -32,6 +32,7 @@ angular.module('kibana.map', [])
// Set and populate defaults
var _d = {
status : "Beta",
query : "*",
map : "world",
colors : ['#A0E2E2', '#265656'],

View File

@ -3,6 +3,7 @@ angular.module('kibana.map2', [])
// Set and populate defaults
var _d = {
status : "Broken",
query: "*",
map: "world",
colors: ['#C8EEFF', '#0071A4'],

View File

@ -6,6 +6,7 @@ angular.module('kibana.parallelcoordinates', [])
// Set and populate defaults
var _d = {
status : "Broken",
query : "*",
size : 100, // Per page
pages : 5, // Pages available

View File

@ -37,6 +37,7 @@ angular.module('kibana.pie', [])
// Set and populate defaults
var _d = {
status : "Deprecating Soon",
query : { field:"_all", query:"*", goal: 1},
size : 10,
exclude : [],

View File

@ -25,6 +25,7 @@ angular.module('kibana.sort', [])
// Set and populate defaults
var _d = {
status : "Stable",
label : "Sort",
sort : ['_score','desc'],
group : "default"

View File

@ -24,6 +24,7 @@ angular.module('kibana.stringquery', [])
// Set and populate defaults
var _d = {
status : "Stable",
label : "Search",
query : "*",
group : "default",

View File

@ -33,6 +33,7 @@ angular.module('kibana.table', [])
// Set and populate defaults
var _d = {
status : "Stable",
query : "*",
size : 100, // Per page
pages : 5, // Pages available

View File

@ -16,6 +16,7 @@ angular.module('kibana.text', [])
// Set and populate defaults
var _d = {
status : "Stable",
group : "default",
mode : "markdown",
content : "",

View File

@ -32,6 +32,7 @@ angular.module('kibana.timepicker', [])
// Set and populate defaults
var _d = {
status : "Stable",
mode : "relative",
time_options : ['5m','15m','1h','6h','12h','24h','2d','7d','30d'],
timespan : '15m',

View File

@ -23,6 +23,7 @@ angular.module('kibana.trends', [])
// Set and populate defaults
var _d = {
status : "Beta",
query : ["*"],
group : "default",
style : { "font-size": '14pt'},

View File

@ -8,7 +8,7 @@
<div ng-include src="'partials/panelgeneral.html'"></div>
<h4 style="text-transform: capitalize;">{{panel.type}} <small> panel settings</small></h4>
<h4 style="text-transform: capitalize;">{{panel.type}} <small> panel settings. <strong ng-show="!_.isUndefined(panel.status)">({{panel.status}})</strong></small></h4>
<div ng-include src="edit_path(panel.type)">No additional settings are available for this type of panel.</div>
</div>