ENTAXY-248 release 1.8.1

This commit is contained in:
2022-02-28 15:20:38 +03:00
parent 4d274c4fcc
commit c826adf1db
1958 changed files with 195926 additions and 10280 deletions

View File

@ -0,0 +1,76 @@
<!--
~~~~~~licensing~~~~~~
entaxy-management-plugin
==========
Copyright (C) 2020 - 2021 EmDev LLC
==========
Licensed 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.
~~~~~~/licensing~~~~~~
-->
<form class="form-horizontal artemis-preferences-form" ng-controller="Artemis.PreferencesController">
<div class="form-group">
<label class="col-md-2 control-label" for="artemisUserName">
Artemis user name
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="The user name to be used when connecting to the broker"></span>
</label>
<div class="col-md-6">
<input id="artemisUserName" type="text" class="form-control" ng-model="artemisUserName"/>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label" for="artemisPassword">
Artemis password
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="The user name to be used when connecting to the broker"></span>
</label>
<div class="col-md-6">
<input id="artemisPassword" type="password" class="form-control" ng-model="artemisPassword"/>
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label" for="artemisDLQ">
Dead-letter address regex
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="A regular expression to match one or more dead-letter addresses"></span>
</label>
<div class="col-md-6">
<input type="text" id="artemisDLQ" ng-model="artemisDLQ">
</div>
</div>
<div class="form-group">
<label class="col-md-2 control-label" for="artemisExpiryQueue">
Expiry address regex
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="A regular expression to match one or more expiry addresses"></span>
</label>
<div class="col-md-6">
<input type="text" id="artemisExpiryQueue" ng-model="artemisExpiryQueue">
</div>
</div>
<!-- <div class="form-group">
<label class="col-md-2 control-label" for="artemisBrowseBytesMessages">
Display message body as
<span class="pficon pficon-info" data-toggle="tooltip" data-placement="top" title="Browsing byte messages should display the message body as"></span>
</label>
<div class="col-md-6">
<select id="artemisBrowseBytesMessages"
ng-model="artemisBrowseBytesMessages"
ng-options="key for (key, value) in messageBodyDisplayOptions"
ng-selected="artemisBrowseBytesMessages === value">
</select>
</div>
</div>-->
</form>