
Refstack backend was missing shared-file-system in the mapping which resulted in backend not being able to parse the Shared File System guideline download from the interop repo. The refstack-ui needs to be edited as well so that it can properly render the Shared File System guideline on the website. Change-Id: I017a331ab010f94b223add22a2b55a02b6996db5
84 lines
3.1 KiB
HTML
84 lines
3.1 KiB
HTML
<h3>OpenStack Powered™ Guidelines</h3>
|
|
|
|
<!-- Guideline Filters -->
|
|
<div class="row">
|
|
<div class="col-md-3">
|
|
<strong>Version:</strong>
|
|
<!-- Slicing the version file name here gets rid of the '.json' file extension -->
|
|
<select ng-model="ctrl.version"
|
|
ng-change="ctrl.update()"
|
|
class="form-control"
|
|
ng-options="versionObj.name.slice(0,-5) for versionObj in ctrl.versionList">
|
|
</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>
|
|
<option value="dns">OpenStack with DNS</option>
|
|
<option value="orchestration">OpenStack with Orchestration</option>
|
|
<option value="shared_file_system">OpenStack with Shared File System</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<br />
|
|
<div ng-if="ctrl.guidelines">
|
|
<strong>Guideline Status:</strong>
|
|
{{ctrl.guidelineStatus | capitalize}}
|
|
</div>
|
|
|
|
<div ng-show="ctrl.guidelines">
|
|
<strong>Corresponding OpenStack Releases:</strong>
|
|
<ul class="list-inline">
|
|
<li ng-repeat="release in ctrl.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>
|
|
<a class="test-list-dl pull-right"
|
|
title="Get a test list for capabilities matching selected statuses."
|
|
ng-click="ctrl.openTestListModal()">
|
|
|
|
Test List <span class="glyphicon glyphicon-file"></span>
|
|
</a>
|
|
</div>
|
|
<!-- End Capability Filters -->
|
|
|
|
<p><small>Tests marked with <span class="glyphicon glyphicon-flag text-warning"></span> are tests flagged by Interop Working Group.</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>
|