2 ~ Licensed to the Apache Software Foundation (ASF) under one
3 ~ or more contributor license agreements. See the NOTICE file
4 ~ distributed with this work for additional information
5 ~ regarding copyright ownership. The ASF licenses this file
6 ~ to you under the Apache License, Version 2.0 (the
7 ~ "License"); you may not use this file except in compliance
8 ~ with the License. You may obtain a copy of the License at
10 ~ http://www.apache.org/licenses/LICENSE-2.0
12 ~ Unless required by applicable law or agreed to in writing,
13 ~ software distributed under the License is distributed on an
14 ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 ~ KIND, either express or implied. See the License for the
16 ~ specific language governing permissions and limitations
19 <script id="proxyConnectorsMain" type="text/x-jquery-tmpl">
20 <div class="page-header">
21 <h2>${$.i18n.prop('proxy-connectors.list')}</h2>
24 <ul id="proxy-connectors-view-tabs" class="nav nav-tabs">
25 <li id="proxy-connectors-view-tabs-li-grid" class="active">
26 <a data-toggle="tab" href="#proxy-connectors-view" id="proxy-connectors-view-tabs-a-network-proxies-grid">${$.i18n.prop('proxy-connectors.grid.tab.title')}</a>
28 <li id="proxy-connectors-view-tabs-li-edit">
29 <a data-toggle="tab" href="#proxy-connectors-edit" id="proxy-connectors-view-tabs-a-edit">${$.i18n.prop('add')}</a>
32 <div id="proxy-connectors-view-tabs-content" class="tab-content">
33 <div id="proxy-connectors-view" class="tab-pane active">
34 <table class="table table-striped table-bordered" id="proxyConnectorsTable"
35 data-bind="simpleGrid: gridViewModel,simpleGridTemplate:'ko-proxy-connectors-grid',pageLinksId:'proxy-connectorsPagination'">
37 <div id="proxy-connectorsPagination"></div>
39 <div id="proxy-connectors-edit" class="tab-pane"></div>
44 <script id='ko-proxy-connectors-grid' type='text/x-jquery-tmpl'>
47 <th title="${$.i18n.prop('proxy-connectors.grid.managedrepo.title')}">
48 ${$.i18n.prop('proxy-connectors.grid.managedrepo.grid.header')}
50 <th title="${$.i18n.prop('proxy-connectors.grid.remoterepo.title')}">
51 ${$.i18n.prop('proxy-connectors.grid.remoterepo.grid.header')}
56 {{each(i, row) itemsOnCurrentPage()}}
60 <p>${getManagedRepository(row).id()}</p>
61 <p>${getManagedRepository(row).name()}</p>
65 {{each(j, targetRepo) getRemoteRepositories(row)}}
66 {{var targetRepoId = targetRepo.id()}}
68 <p>${targetRepoId}</p>
69 <p>${getRemoteRepository(targetRepoId).name()}</p>
70 <p>${getRemoteRepository(targetRepoId).url()}</p>
72 <a popover-title="${$.i18n.prop('proxy-connectors.grid.remoterepo.settings.popover.title')}"
73 data-bind="event: { mouseover: function(){ showSettings(row,targetRepoId)},},click: function(){ editProxyConnector(row)}"
74 id="proxy-connectors-grid-remoterepo-settings-edit-${row}-${targetRepoId}" href="#">
75 ${$.i18n.prop('edit')}
77 <a href="#" data-bind="click: function(){ removeProxyConnector(row,targetRepo)}">
78 <img src="images/edit-cut.png" title="${$.i18n.prop('delete')}"/>
80 <div id="proxy-connectors-grid-remoterepo-settings-content-${val}-${targetRepoId}" style="display:none"></div>
89 <script id='proxy-connectors-remote-settings-popover-tmpl' type='text/x-jquery-tmpl'>
92 ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${proxyId()}
94 ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${$.i18n.prop('none')}
98 <th colspan="2">${$.i18n.prop('proxy-connector.policies')}</th>
101 {{each policies().entry}}
103 <td>${$value.key}</td>
104 <td>${$value.value}</td>
112 <script id="proxy-connector-edit-form-tmpl" type='text/x-jquery-tmpl'>
114 <form id="proxy-connector-edit-form" class="form-horizontal">
115 <fieldset id="remote-repository-edit-fieldset">
116 <div class="control-group">
117 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.network-proxy.id')}</label>
118 <div class="controls">
120 data-bind="options: proxyConnectorsViewModel.networkProxies, optionsText: 'id',optionsValue:'id',
121 value: proxyConnector.proxyId, optionsCaption: 'direct connection'"></select>
124 <div class="control-group">
125 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.managed.repository.id')}</label>
126 <div class="controls">
127 <select id="sourceRepoId"
128 data-bind="options: proxyConnectorsViewModel.managedRepositories, optionsText: 'id',optionsValue:'id',
129 value: proxyConnector.sourceRepoId"></select>
132 <div class="control-group">
133 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.remote.repository.id')}</label>
134 <div class="controls">
135 <select id="targetRepoId"
136 data-bind="options: proxyConnectorsViewModel.remoteRepositories, optionsText: 'id',optionsValue:'id',
137 value: proxyConnector.targetRepoId"></select>
140 <div class="control-group span6">
141 <table class="table">
143 <th colspan="2">${$.i18n.prop('proxy-connector.policies')}</th>
145 <tbody data-bind="foreach: proxyConnectorsViewModel.policyInformations()">
147 <td data-bind="text: name"></td>
149 <select data-bind="options: getPolicyOptions(id()),value:getSelectedPolicyOption(id()),attr: { id: 'policy-'+id() }"></select>
155 <div class="control-group span6">
156 <h4>${$.i18n.prop('proxy-connector.properties')}</h4>
158 <table class="table">
160 <th><input type="text" id="property-key"/></th>
161 <th><input type="text" id="property-value"/></th>
162 <th><a href="#" data-bind="click: function(){ addProperty() }">${$.i18n.prop('add')}</a></th>
164 <tbody data-bind="foreach: proxyConnector.properties">
166 <td data-bind="text: key"></td>
167 <td data-bind="text: value"></td>
168 <td><a href="#" data-bind="click: function(){deleteProperty(key)}">${$.i18n.prop('delete')}</a></td>
174 <div class="control-group span6">
175 <h4>${$.i18n.prop('proxy-connector.blacklist')}</h4>
176 <table class="table">
178 <th><input type="text" id="blacklist-value"/></th>
179 <th><a href="#" data-bind="click: function(){ addBlacklistPattern() }">${$.i18n.prop('add')}</a></th>
181 <tbody data-bind="foreach: proxyConnector.blackListPatterns">
183 <td data-bind="text: $data"></td>
184 <td><a href="#" data-bind="click: function(){removeBlacklistPattern($data)}">${$.i18n.prop('delete')}</a></td>
191 <div class="control-group span6">
192 <h4>${$.i18n.prop('proxy-connector.whitelist')}</h4>
193 <table class="table">
195 <th><input type="text" id="whitelist-value"/></th>
196 <th><a href="#" data-bind="click: function(){ addWhitelistPattern() }">${$.i18n.prop('add')}</a></th>
198 <tbody data-bind="foreach: proxyConnector.whiteListPatterns">
200 <td data-bind="text: $data"></td>
201 <td><a href="#" data-bind="click: function(){removeWhitelistPattern($data)}">${$.i18n.prop('delete')}</a></td>
209 <button id="proxy-connector-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
211 ${("#network-proxy-btn-save").button('reset')}
213 <button data-bind="click: displayGrid" class="btn">${$.i18n.prop('cancel')}</button>