
Remove the fits mailing list reference as it was shutdown per http://lists.openstack.org/pipermail/fits/2015-November/000077.html. Also update to use the term "Guideline" when referring to DefCore specification. Change-Id: Ied3a9c128aef1de02eb327e28282a30daa14893c
73 lines
2.6 KiB
HTML
73 lines
2.6 KiB
HTML
<h3>DefCore Guidelines</h3>
|
|
|
|
<!-- Capability Filters -->
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<strong>Version:</strong>
|
|
<select ng-model="ctrl.version" ng-change="ctrl.update()" class="form-control">
|
|
<!-- Slicing the version file name here gets rid of the '.json' file extension. -->
|
|
<option ng-repeat="versionFile in ctrl.versionList" value="{{versionFile}}">{{versionFile.slice(0, -5)}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<strong>Target Program:</strong>
|
|
<span class="program-about"><a target="_blank" href="http://www.openstack.org/brand/interop/">About</a></span>
|
|
<select ng-model="ctrl.target" class="form-control" ng-change="ctrl.updateTargetCapabilities()">
|
|
<option value="platform">OpenStack Powered Platform</option>
|
|
<option value="compute">OpenStack Powered Compute</option>
|
|
<option value="object">OpenStack Powered Object Storage</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<br />
|
|
<div ng-if="ctrl.capabilities">
|
|
<strong>Guideline Status:</strong>
|
|
{{ctrl.capabilities.status | capitalize}}
|
|
</div>
|
|
|
|
<div ng-show="ctrl.capabilities">
|
|
<strong>Corresponding OpenStack Releases:</strong>
|
|
<ul class="list-inline">
|
|
<li ng-repeat="release in ctrl.capabilities.releases">
|
|
{{release | capitalize}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<strong>Capability Status:</strong>
|
|
<div class="checkbox">
|
|
<label>
|
|
<input type="checkbox" ng-model="ctrl.status.required">
|
|
<span class="required">Required</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" ng-model="ctrl.status.advisory">
|
|
<span class="advisory">Advisory</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" ng-model="ctrl.status.deprecated">
|
|
<span class="deprecated">Deprecated</span>
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" ng-model="ctrl.status.removed">
|
|
<span class="removed">Removed</span>
|
|
</label>
|
|
</div>
|
|
<!-- End Capability Filters -->
|
|
|
|
<p><small>Tests marked with <span class="glyphicon glyphicon-flag text-warning"></span> are tests flagged by DefCore.</small></p>
|
|
|
|
<!-- Loading animation divs -->
|
|
<div cg-busy="{promise:ctrl.versionsRequest,message:'Loading versions'}"></div>
|
|
<div cg-busy="{promise:ctrl.capsRequest,message:'Loading capabilities'}"></div>
|
|
|
|
<!-- Get the version-specific template -->
|
|
<div ng-include src="ctrl.detailsTemplate"></div>
|
|
|
|
<div ng-show="ctrl.showError" class="alert alert-danger" role="alert">
|
|
<span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
|
|
<span class="sr-only">Error:</span>
|
|
{{ctrl.error}}
|
|
</div>
|