tidy up docs learnmore/catalog, showing locations instead of enrichers, and removing old static pages
Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/984f9bc9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/984f9bc9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/984f9bc9 Branch: refs/heads/master Commit: 984f9bc99a3f4164dcfbe25b420e9e4e6718f135 Parents: 4a9ce77 Author: Alex Heneveld <[email protected]> Authored: Tue Sep 1 14:21:13 2015 +0100 Committer: Alex Heneveld <[email protected]> Committed: Tue Sep 1 14:21:13 2015 +0100 ---------------------------------------------------------------------- docs/style/css/catalog_items.css | 1 - docs/style/js/catalog/common.js | 11 +++- .../website/learnmore/catalog/catalog-item.html | 16 +++-- docs/website/learnmore/catalog/index.html | 11 +++- ...brooklyn.entity.pool.ServerPoolLocation.html | 62 -------------------- .../brooklyn.location.AddressableLocation.html | 62 -------------------- .../brooklyn.location.MachineLocation.html | 62 -------------------- ...tMixins$RichMachineProvisioningLocation.html | 62 -------------------- ...yn.location.MachineProvisioningLocation.html | 62 -------------------- ...rooklyn.location.basic.AbstractLocation.html | 62 -------------------- ....AggregatingMachineProvisioningLocation.html | 62 -------------------- ...ic.FixedListMachineProvisioningLocation.html | 62 -------------------- ...neProvisioningLocation$LocalhostMachine.html | 62 -------------------- ...ic.LocalhostMachineProvisioningLocation.html | 62 -------------------- ...rooklyn.location.basic.LocationInternal.html | 62 -------------------- .../brooklyn.location.basic.MultiLocation.html | 62 -------------------- ...ooklyn.location.basic.SimulatedLocation.html | 62 -------------------- ...basic.SingleMachineProvisioningLocation.html | 62 -------------------- ...oklyn.location.basic.SshMachineLocation.html | 62 -------------------- ...bstractCloudMachineProvisioningLocation.html | 62 -------------------- ...AbstractJcloudsSubnetSshMachineLocation.html | 62 -------------------- ...ooklyn.location.jclouds.JcloudsLocation.html | 62 -------------------- ...ation.jclouds.JcloudsSshMachineLocation.html | 62 -------------------- ...followthesun.DefaultFollowTheSunModel$1.html | 62 -------------------- 24 files changed, 30 insertions(+), 1249 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/style/css/catalog_items.css ---------------------------------------------------------------------- diff --git a/docs/style/css/catalog_items.css b/docs/style/css/catalog_items.css index a0bf0f0..d16e478 100644 --- a/docs/style/css/catalog_items.css +++ b/docs/style/css/catalog_items.css @@ -46,7 +46,6 @@ body { } a:hover > .card { - top: -2px; background-color: #f4f4f4; box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2); } http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/style/js/catalog/common.js ---------------------------------------------------------------------- diff --git a/docs/style/js/catalog/common.js b/docs/style/js/catalog/common.js index d99508f..4fc5248 100644 --- a/docs/style/js/catalog/common.js +++ b/docs/style/js/catalog/common.js @@ -54,11 +54,20 @@ var brooklyn = (function ($, _) { "</div>" + "</a>" ), + locationCard: _.template( + "<a class='plain' data-type='<%= type %>' href='catalog-item.html#!locations/<%= type %>'>" + + "<div class='card'>" + + "<span class='glyphicon glyphicon-chevron-right'/>" + + "<div class='name'><%=name%></div>" + + "<div class='type'><%=type%></div>" + + "</div>" + + "</a>" + ), typeSummary: _.template( "<div class='summaryLabel'><%=name%></div>" + "<div class='summaryType'><%=type%></div>" + - "<div class='description'><%=description%></div>" + "<% if (typeof description !== 'undefined') { %><div class='description'><%=description%></div><% } %>" ), configKeyCard: _.template( http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/catalog-item.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/catalog-item.html b/docs/website/learnmore/catalog/catalog-item.html index f52ec56..abff4c4 100644 --- a/docs/website/learnmore/catalog/catalog-item.html +++ b/docs/website/learnmore/catalog/catalog-item.html @@ -42,8 +42,8 @@ under the License. <ul class="nav nav-tabs"> <li class="active"><a href="#configKeys" data-toggle="tab">Config Keys</a></li> - <li><a href="#sensors" data-toggle="tab">Sensors</a></li> - <li><a href="#effectors" data-toggle="tab">Effectors</a></li> + <li id="sensorsTab"><a href="#sensors" data-toggle="tab">Sensors</a></li> + <li id="effectorsTab"><a href="#effectors" data-toggle="tab">Effectors</a></li> </ul> <div class="tab-content"> @@ -74,6 +74,7 @@ under the License. } // e.g. entities/org.apache.brooklyn.entity.brooklynnode.BrooklynNode + if (!brooklyn) return; var item = brooklyn.findItemOfType(items[args[0]], args[1]); $("#summary").html(brooklyn.typeSummary(item)); @@ -81,8 +82,8 @@ under the License. catalog_type = 'Entity'; } else if(args[0] == 'policies') { catalog_type = 'Policy'; - } else if(args[0] == 'enrichers') { - catalog_type = 'Enricher' + } else if(args[0] == 'locations') { + catalog_type = 'Location' } document.title = 'Brooklyn ' + catalog_type + ' - ' + item.name; @@ -90,10 +91,17 @@ under the License. item.config.forEach(function (element) { $("#configKeys").append(brooklyn.configKeyCard(element)); }); if(args[0] == 'entities') { + $("#sensorsTab").show(); + $("#effectorsTab").show(); + item.sensors.forEach(function (element) { $("#sensors").append(brooklyn.sensorCard(element)); }); if (item.effectors != undefined) { item.effectors.forEach(function (element) { $("#effectors").append(brooklyn.effectorCard(element)); }); } + + } else { + $("#sensorsTab").hide(); + $("#effectorsTab").hide(); } } http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/index.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/index.html b/docs/website/learnmore/catalog/index.html index f987f37..0ef8d95 100644 --- a/docs/website/learnmore/catalog/index.html +++ b/docs/website/learnmore/catalog/index.html @@ -44,7 +44,7 @@ under the License. <ul class="nav nav-tabs"> <li class="active"><a href="#entities" data-toggle="tab">Entities</a></li> <li><a href="#policies" data-toggle="tab">Policies</a></li> - <li><a href="#enrichers" data-toggle="tab">Enrichers</a></li> + <li><a href="#locations" data-toggle="tab">Locations</a></li> </ul> <div class="tab-content"> @@ -55,9 +55,12 @@ under the License. <input class="filter form-control" type="text" placeholder="Filter by type, e.g. ha"> </div> <div class="tab-pane" id="enrichers"> + <!-- TODO, and above --> + <input class="filter form-control" type="text" placeholder="Filter by type, e.g. http"> + </div> + <div class="tab-pane" id="locations"> <input class="filter form-control" type="text" placeholder="Filter by type, e.g. http"> </div> - <div class="tab-pane" id="locations"></div> <div class="tab-pane" id="locationResolvers"></div> </div> </div> @@ -145,7 +148,9 @@ under the License. card(items.entities, brooklyn.entityCard, "#entities"); card(items.policies, brooklyn.policyCard, "#policies"); - card(items.enrichers, brooklyn.enricherCard, "#enrichers"); + //card(items.enrichers, brooklyn.enricherCard, "#enrichers"); + card(items.locations, brooklyn.locationCard, "#locations"); + //transformItemAndAddToElement(items.locations, brooklyn.locationCard, "#locations"); //items.locationResolvers.forEach(function (element) { $("#locationResolvers").append("<tr><td>" + element + "</td></tr>"); }); $("input.filter").each(function (index, element) { http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.entity.pool.ServerPoolLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.entity.pool.ServerPoolLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.entity.pool.ServerPoolLocation.html deleted file mode 100644 index 2e27b43..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.entity.pool.ServerPoolLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - brooklyn.entity.pool.ServerPoolLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>brooklyn.entity.pool.ServerPoolLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "brooklyn.entity.pool.ServerPoolLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.AddressableLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.AddressableLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.AddressableLocation.html deleted file mode 100644 index bb484c2..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.AddressableLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - AddressableLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>AddressableLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "AddressableLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.MachineLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.MachineLocation.html deleted file mode 100644 index edb16fd..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - MachineLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>MachineLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "MachineLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.MachineManagementMixins$RichMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineManagementMixins$RichMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.MachineManagementMixins$RichMachineProvisioningLocation.html deleted file mode 100644 index 09ffd3f..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineManagementMixins$RichMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - MachineManagementMixins$RichMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>MachineManagementMixins$RichMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "MachineManagementMixins$RichMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.MachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.MachineProvisioningLocation.html deleted file mode 100644 index f0a8282..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.MachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - MachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>MachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "MachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AbstractLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AbstractLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AbstractLocation.html deleted file mode 100644 index 05ad96f..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AbstractLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - AbstractLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>AbstractLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "AbstractLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AggregatingMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AggregatingMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AggregatingMachineProvisioningLocation.html deleted file mode 100644 index 75c4101..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.AggregatingMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - AggregatingMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>AggregatingMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "AggregatingMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.FixedListMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.FixedListMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.FixedListMachineProvisioningLocation.html deleted file mode 100644 index bfedb11..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.FixedListMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - FixedListMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>FixedListMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "FixedListMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation$LocalhostMachine.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation$LocalhostMachine.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation$LocalhostMachine.html deleted file mode 100644 index b39bc4c..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation$LocalhostMachine.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - LocalhostMachineProvisioningLocation$LocalhostMachine</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>LocalhostMachineProvisioningLocation$LocalhostMachine</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "LocalhostMachineProvisioningLocation$LocalhostMachine"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation.html deleted file mode 100644 index 97f25e8..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocalhostMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - LocalhostMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>LocalhostMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "LocalhostMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocationInternal.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocationInternal.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocationInternal.html deleted file mode 100644 index 1a71db3..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.LocationInternal.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - LocationInternal</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>LocationInternal</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "LocationInternal"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.MultiLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.MultiLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.MultiLocation.html deleted file mode 100644 index cf5a497..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.MultiLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - MultiLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>MultiLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "MultiLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SimulatedLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SimulatedLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SimulatedLocation.html deleted file mode 100644 index b08d8a7..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SimulatedLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - SimulatedLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>SimulatedLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "SimulatedLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SingleMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SingleMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SingleMachineProvisioningLocation.html deleted file mode 100644 index 168929f..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SingleMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - SingleMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>SingleMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "SingleMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SshMachineLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SshMachineLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SshMachineLocation.html deleted file mode 100644 index b6edac1..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.basic.SshMachineLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - SshMachineLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>SshMachineLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "SshMachineLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.cloud.AbstractCloudMachineProvisioningLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.cloud.AbstractCloudMachineProvisioningLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.cloud.AbstractCloudMachineProvisioningLocation.html deleted file mode 100644 index 958594e..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.cloud.AbstractCloudMachineProvisioningLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - AbstractCloudMachineProvisioningLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>AbstractCloudMachineProvisioningLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "AbstractCloudMachineProvisioningLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.AbstractJcloudsSubnetSshMachineLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.AbstractJcloudsSubnetSshMachineLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.AbstractJcloudsSubnetSshMachineLocation.html deleted file mode 100644 index c2de588..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.AbstractJcloudsSubnetSshMachineLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - AbstractJcloudsSubnetSshMachineLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>AbstractJcloudsSubnetSshMachineLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "AbstractJcloudsSubnetSshMachineLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsLocation.html deleted file mode 100644 index 4491b02..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - JcloudsLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>JcloudsLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "JcloudsLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsSshMachineLocation.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsSshMachineLocation.html b/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsSshMachineLocation.html deleted file mode 100644 index c7fd198..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.location.jclouds.JcloudsSshMachineLocation.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - JcloudsSshMachineLocation</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>JcloudsSshMachineLocation</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "JcloudsSshMachineLocation"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html> http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/984f9bc9/docs/website/learnmore/catalog/locations/brooklyn.policy.followthesun.DefaultFollowTheSunModel$1.html ---------------------------------------------------------------------- diff --git a/docs/website/learnmore/catalog/locations/brooklyn.policy.followthesun.DefaultFollowTheSunModel$1.html b/docs/website/learnmore/catalog/locations/brooklyn.policy.followthesun.DefaultFollowTheSunModel$1.html deleted file mode 100644 index 8172d3a..0000000 --- a/docs/website/learnmore/catalog/locations/brooklyn.policy.followthesun.DefaultFollowTheSunModel$1.html +++ /dev/null @@ -1,62 +0,0 @@ -<!-- -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. ---> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> -<head> - <title>Brooklyn Location - org.apache.brooklyn.policy.followthesun.DefaultFollowTheSunModel$1</title> - <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/> - <link rel="stylesheet" href="../items.css" type="text/css" media="screen"/> -</head> -<body> -<div id="container"> - <div id="header"> - <div id="identity"> - <a href="http://brooklyncentral.github.com/" rel="home">Brooklyn</a> - </div> - </div> - <div id="content" class="objectContent"> - <h1>org.apache.brooklyn.policy.followthesun.DefaultFollowTheSunModel$1</h1> - <h2 class="typeLabel">Type:</h2><span id="type"></span> - - <h2>Config Keys</h2> - <table id="configKeys"> - <tr> - <th>Name</th> - <th>Type</th> - <th>Default Value</th> - <th>Description</th> - </tr> - </table> - <br> - </div> -</div> -<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" type="text/javascript"></script> -<script src="../items.js" type="text/javascript"></script> -<script type="text/javascript"> - $(document).ready(function () { - var item = $.grep((items.locations), function (entity) { - return entity.type == "org.apache.brooklyn.policy.followthesun.DefaultFollowTheSunModel$1"; - })[0]; - $("#type").html(item.type); - item.config.forEach(function (element) { - $("#configKeys").find("tr:last").after("<tr><td>" + element.name + "</td><td>" + element.type + "</td><td>" + element.defaultValue + "</td><td class='wordWrap'>" + element.description + "</td></tr>") - }); - }); -</script> -</body> -</html>
