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 <div id="proxy-connectors-bulk-save-btn" data-bind='template:{name:"proxy-connectors-bulk-save-tmpl"}'></div>
35 <table class="table table-striped table-bordered" id="proxyConnectorsTable"
36 data-bind="simpleGrid: gridViewModel,simpleGridTemplate:'ko-proxy-connectors-grid',pageLinksId:'proxy-connectorsPagination'">
38 <div id="proxy-connectorsPagination"></div>
40 <div id="proxy-connectors-edit" class="tab-pane"></div>
45 <script id='ko-proxy-connectors-grid' type='text/x-jquery-tmpl'>
48 <th title="${$.i18n.prop('proxy-connectors.grid.managedrepo.title')}">
49 ${$.i18n.prop('proxy-connectors.grid.managedrepo.grid.header')}
51 <th title="${$.i18n.prop('proxy-connectors.grid.remoterepo.title')}">
52 ${$.i18n.prop('proxy-connectors.grid.remoterepo.grid.header')}
55 ${$.i18n.prop('proxy-connectors.grid.remoterepo.settings.popover.title')}
58 ${$.i18n.prop('edit')}
61 ${$.i18n.prop('delete')}
66 {{each(i, row) itemsOnCurrentPage()}}
67 <tr data-bind="css:{ 'modified': row.modified()}">
68 <td>${row.sourceRepoId()}</td>
69 <td>${row.targetRepoId()}-${row.order()}</td>
70 <td><img src="images/utilities-system-monitor.png" id="proxy-connectors-grid-remoterepo-settings-edit-${row.sourceRepoId()}-${row.targetRepoId()}"
71 data-original-title="${$.i18n.prop('proxy-connectors.grid.remoterepo.settings.popover.title')}"
72 data-bind="event: { mouseover: function(){ showSettings(row)},}"></td>
74 <a data-bind="click: function(){ editProxyConnector(row)}" href="#">
75 ${$.i18n.prop('edit')}
77 <div id="proxy-connectors-grid-remoterepo-settings-content-${row.sourceRepoId()}-${row.targetRepoId()}"
78 style="display:none"></div>
81 <a href="#" data-bind="click: function(){ deleteProxyConnector(row)}">
82 <img src="images/edit-cut.png" title="${$.i18n.prop('delete')}"/>
88 <div id="proxy-connectors-grid-remoterepo-settings-content-${val}-${targetRepoId}" style="display:none"></div>
91 <script id='proxy-connectors-remote-settings-popover-tmpl' type='text/x-jquery-tmpl'>
94 ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${proxyConnector.proxyId}
96 ${$.i18n.prop('proxy-connectors.remoterepo.settings.networkproxy')}: ${$.i18n.prop('none')}
100 <th colspan="2">${$.i18n.prop('proxy-connector.policies')}</th>
103 {{each(i, entry) proxyConnector.policiesEntries}}
104 {{var name = proxyConnectorsViewModel.findPolicyInformationName(entry.key)}}
107 <td>${entry.value}</td>
115 <script id="proxy-connector-edit-form-tmpl" type='text/x-jquery-tmpl'>
117 <form id="proxy-connector-edit-form" class="form-horizontal">
118 <fieldset id="remote-repository-edit-fieldset">
119 <div class="control-group">
120 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.network-proxy.id')}</label>
121 <div class="controls">
123 data-bind="options: proxyConnectorsViewModel.networkProxies, optionsText: 'id',optionsValue:'id',
124 value: proxyConnector.proxyId, optionsCaption: 'direct connection'"></select>
127 <div class="control-group">
128 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.managed.repository.id')}</label>
129 <div class="controls">
130 <select id="sourceRepoId"
131 data-bind="options: proxyConnectorsViewModel.managedRepositories, optionsText: 'id',optionsValue:'id',
132 value: proxyConnector.sourceRepoId,attr: {disabled: isUpdate() }"></select>
135 <div class="control-group">
136 <label class="control-label" for="proxyId">${$.i18n.prop('proxy-connector.remote.repository.id')}</label>
137 <div class="controls">
138 <select id="targetRepoId"
139 data-bind="options: proxyConnectorsViewModel.remoteRepositories, optionsText: 'id',optionsValue:'id',
140 value: proxyConnector.targetRepoId,attr: {disabled: isUpdate() }"></select>
143 <div class="control-group span6">
144 <table class="table">
146 <th colspan="2">${$.i18n.prop('proxy-connector.policies')}</th>
148 <tbody data-bind="foreach: proxyConnectorsViewModel.policyInformations()">
150 <td data-bind="text: name"></td>
153 data-bind="options: getPolicyOptions(id()),value:getSelectedPolicyOption(id()),
154 attr: { id: 'policy-'+id() },event: { change: function(){ changePolicyOption(id())},}"
161 <div class="control-group span6">
162 <h4>${$.i18n.prop('proxy-connector.properties')}</h4>
164 <table class="table">
166 <th><input type="text" id="property-key"/></th>
167 <th><input type="text" id="property-value"/></th>
168 <th><a href="#" data-bind="click: function(){ addProperty() }">${$.i18n.prop('add')}</a></th>
170 <tbody data-bind="foreach: proxyConnector.propertiesEntries">
172 <td data-bind="text: key"></td>
173 <td data-bind="text: value"></td>
174 <td><a href="#" data-bind="click: function(){ $parent.deleteProperty(key)}">${$.i18n.prop('delete')}</a></td>
180 <div class="control-group span6">
181 <h4>${$.i18n.prop('proxy-connector.blacklist')}</h4>
182 <table class="table">
184 <th><input type="text" id="blacklist-value"/></th>
185 <th><a href="#" data-bind="click: function(){ addBlacklistPattern() }">${$.i18n.prop('add')}</a></th>
187 <tbody data-bind="foreach: proxyConnector.blackListPatterns">
189 <td data-bind="text: $data"></td>
190 <td><a href="#" data-bind="click: function(){removeBlacklistPattern($data)}">${$.i18n.prop('delete')}</a></td>
197 <div class="control-group span6">
198 <h4>${$.i18n.prop('proxy-connector.whitelist')}</h4>
199 <table class="table">
201 <th><input type="text" id="whitelist-value"/></th>
202 <th><a href="#" data-bind="click: function(){ addWhitelistPattern() }">${$.i18n.prop('add')}</a></th>
204 <tbody data-bind="foreach: proxyConnector.whiteListPatterns">
206 <td data-bind="text: $data"></td>
207 <td><a href="#" data-bind="click: function(){removeWhitelistPattern($data)}">${$.i18n.prop('delete')}</a></td>
215 <button id="proxy-connector-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
217 ${("#network-proxy-btn-save").button('reset')}
219 <button data-bind="click: displayGrid" class="btn">${$.i18n.prop('cancel')}</button>
224 <script id="proxy-connectors-bulk-save-tmpl" type='text/x-jquery-tmpl'>
226 <button data-bind="click: updateModifiedProxyConnectors" class="btn">${$.i18n.prop('save.all')}</button>