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="legacy-artifact-path-main" type="text/html">
20 <div id="legacy-artifact-path-screen">
21 <div class="page-header">
22 <h2>${$.i18n.prop('legacy-artifact-paths.list')}</h2>
25 <ul id="legacy-artifact-paths-view-tabs" class="nav nav-tabs">
26 <li id="legacy-artifact-paths-view-tabs-li-grid">
27 <a data-toggle="tab" href="#legacy-artifact-paths-view" id="legacy-artifact-paths-view-tabs-a-grid">${$.i18n.prop('legacy-artifact-paths.grid.tab.title')}</a>
29 <li id="legacy-artifact-paths-view-tabs-li-edit">
30 <a data-toggle="tab" href="#legacy-artifact-paths-edit">${$.i18n.prop('add')}</a>
33 <div id="legacy-artifact-paths-view-tabs-content" class="tab-content">
34 <div id="legacy-artifact-paths-view" class="tab-pane">
35 <table class="table table-striped table-bordered" id="legacy-artifact-paths-table"
36 data-bind="simpleGrid: gridViewModel,simpleGridTemplate:'ko-legacy-artifact-paths-grid',pageLinksId:'legacy-artifact-pathsPagination'">
38 <div id="legacy-artifact-pathsPagination"></div>
40 <div id="legacy-artifact-paths-edit" class="tab-pane" data-bind='template: {name:"legacy-artifact-paths-edit-tmpl"}'></div>
45 <script id='ko-legacy-artifact-paths-grid' type='text/html'>
48 {{each(i, columnDefinition) columns}}
49 <th>${ columnDefinition.headerText }</th>
51 <th>${$.i18n.prop('delete')}</th>
55 {{each(i, row) itemsOnCurrentPage()}}
56 <tr data-bind="css:{ 'modified': row.modified()}">
57 {{each(j, columnDefinition) columns}}
58 {{var val = (typeof columnDefinition.rowText == 'function' ? columnDefinition.rowText(row) : row[columnDefinition.rowText])}}
64 <a href="#" data-bind="click: function(){ removeLegacyArtifactPath(row) }">
65 <span class="btn btn-danger">
66 <i class="icon-trash icon-white"/>
76 <script id="legacy-artifact-paths-edit-tmpl" type="text/html">
77 <form id="legacy-artifact-paths-edit-form" class="well form-horizontal">
78 <fieldset id="legacy-artifact-paths-edit-fieldset">
79 <div class="control-group">
80 <label class="control-label" for="groupId">${$.i18n.prop('legacy-artifact-paths.groupId')}</label>
81 <div class="controls">
82 <input type="text" class="xlarge required" id="groupId" name="groupId" size="8"
83 data-bind="value: legacyArtifactPath.groupId"/>
86 <div class="control-group">
87 <label class="control-label" for="artifactId">${$.i18n.prop('legacy-artifact-paths.artifactId')}</label>
88 <div class="controls">
89 <input type="text" class="xlarge required" id="artifactId" name="artifactId" size="8"
90 data-bind="value: legacyArtifactPath.artifactId"/>
93 <div class="control-group">
94 <label class="control-label" for="version">${$.i18n.prop('legacy-artifact-paths.version')}</label>
95 <div class="controls">
96 <input type="text" class="xlarge required" id="version" name="version" size="8"
97 data-bind="value: legacyArtifactPath.version"/>
100 <div class="control-group">
101 <label class="control-label" for="classifier">${$.i18n.prop('legacy-artifact-paths.classifier')}</label>
102 <div class="controls">
103 <input type="text" class="xlarge" id="classifier" name="classifier" size="8"
104 data-bind="value: legacyArtifactPath.classifier"/>
107 <div class="control-group">
108 <label class="control-label" for="type">${$.i18n.prop('legacy-artifact-paths.type')}</label>
109 <div class="controls">
110 <input type="text" class="xlarge required" id="type" name="type" size="8"
111 data-bind="value: legacyArtifactPath.type"/>
114 <div class="control-group">
115 <label class="control-label" for="path">${$.i18n.prop('legacy-artifact-paths.path')}</label>
116 <div class="controls">
117 <input type="text" class="xlarge required" id="path" name="path" size="8"
118 data-bind="value: legacyArtifactPath.path"/>
121 <div class="control-group">
122 <label class="control-label" for="artifact">${$.i18n.prop('legacy-artifact-paths.artifact')}</label>
123 <div class="controls">
124 <span title="calculated from values" class="uneditable-input"
125 id="artifact" data-bind="text: legacyArtifactPath.artifact"></span>
130 <button id="network-proxy-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
131 <button id="network-proxy-btn-cancel" data-bind="click: displayGrid" class="btn">${$.i18n.prop('cancel')}</button>
132 <button id="network-proxy-btn-calculate-path" data-bind="click: calculatePath" class="btn btn-success">${$.i18n.prop('legacy-artifact-paths.calculatePath')}</button>
136 <script id="legacy-artifact-path-delete-warning-tmpl" type="text/html">
138 <span class="label label-warning">${$.i18n.prop('warning.not.undone.operation')}</span>
142 <script id="repository-scanning-main" type="text/html">
143 <div id="repository-scanning-screen">
144 <div class="page-header">
145 <h2>${$.i18n.prop('repository-scanning.head')}</h2>
149 <ul id="repositories-tabs" class="nav nav-tabs">
151 <a data-toggle="tab" href="#file-types-content">${$.i18n.prop('repository-scanning.file-types.head')}</a>
154 <a data-toggle="tab" href="#consumers-content">${$.i18n.prop('repository-scanning.consumers.head')}</a>
158 <div class="tab-content">
159 <div id="file-types-content" class="tab-pane active" data-bind='template: {name:"file-types-tmpl"}'>
161 <div id="consumers-content" class="tab-pane">
162 <div id="consumers-known-content" data-bind='template: {name:"consumers-known-content-tmpl"}'></div>
163 <div id="consumers-invalid-content" data-bind='template: {name:"consumers-invalid-content-tmpl"}'></div>
169 <script id="file-types-tmpl" type="text/html">
170 <div class="accordion" id="accordion-file-types">
172 {{each(i, fileType) fileTypes}}
173 <div class="accordion-group">
174 <div class="accordion-heading">
175 <a class="accordion-toggle" href="#collapse-pattern-${fileType.id}"
176 data-parent="#accordion-file-types" data-toggle="collapse">${fileType.id} <i class="icon-resize-vertical"/></a>
178 <div id="collapse-pattern-${fileType.id}" class="accordion-body collapse">
179 <table class="table table-condensed">
180 {{each(j,pattern) fileType.patterns}}
184 <a href="#" data-bind="click: function(){ removeFileTypePattern(fileType.id(),pattern) }">
185 <span class="btn btn-danger">
186 <i class="icon-trash icon-white"/>
193 <td><input type="text" id="pattern-${fileType.id}"/></td>
195 <a href="#" data-bind="click: function(){addFileTypePattern(fileType.id())}">
196 <span class="btn btn-success">
197 <i class="icon-plus-sign icon-white"/>
210 <script id="consumers-known-content-tmpl" type="text/html">
211 <div class="page-header">
212 <h4>${$.i18n.prop('repository-scanning.consumers.know-content.head')}</h4>
214 <table class="table table-condensed">
217 <th>${$.i18n.prop('repository-scanning.consumers.grid.enabled')}</th>
218 <th>${$.i18n.prop('repository-scanning.consumers.grid.id')}</th>
219 <th>${$.i18n.prop('repository-scanning.consumers.grid.description')}</th>
223 {{each(i,knownAdminRepositoryConsumer) knownAdminRepositoryConsumers}}
225 {{if knownAdminRepositoryConsumer.enabled()==true}}
227 <a href="#" data-bind="click: function(){ disableKnowContentConsumer(knownAdminRepositoryConsumer) }">
228 <img src="images/weather-clear-22-22.png"/>
233 <a href="#" data-bind="click: function(){ enableKnowContentConsumer(knownAdminRepositoryConsumer) }">
234 <img src="images/dialog-error-22-22.png"/>
239 <td>${knownAdminRepositoryConsumer.id}</td>
240 <td>${knownAdminRepositoryConsumer.description}</td>
247 <script id="consumers-invalid-content-tmpl" type="text/html">
248 <div class="page-header">
249 <h4>${$.i18n.prop('repository-scanning.consumers.invalid-content.head')}</h4>
251 <table class="table table-condensed">
254 <th>${$.i18n.prop('repository-scanning.consumers.grid.enabled')}</th>
255 <th>${$.i18n.prop('repository-scanning.consumers.grid.id')}</th>
256 <th>${$.i18n.prop('repository-scanning.consumers.grid.description')}</th>
260 {{each(i,invalidAdminRepositoryConsumer) invalidAdminRepositoryConsumers}}
262 {{if invalidAdminRepositoryConsumer.enabled()==true}}
264 <a href="#" data-bind="click: function(){ disableInvalidContentConsumer(invalidAdminRepositoryConsumer) }">
265 <img src="images/weather-clear-22-22.png"/>
270 <a href="#" data-bind="click: function(){ enableInvalidContentConsumer(invalidAdminRepositoryConsumer) }">
271 <img src="images/dialog-error-22-22.png"/>
275 <td>${invalidAdminRepositoryConsumer.id}</td>
276 <td>${invalidAdminRepositoryConsumer.description}</td>
283 <script id="network-configuration-screen" type="text/html">
284 <div class="page-header">
285 <h4>${$.i18n.prop('network-configuration.header')}</h4>
287 <div id="network-configuration-form" data-bind='template: {name:"network-configuration-form-tmpl"}'></div>
290 <script id="network-configuration-form-tmpl" type="text/html">
291 <form id="network-configuration-edit-form" class="well form-horizontal">
292 <fieldset id="network-configuration-edit-fieldset">
293 <div class="control-group">
294 <label class="control-label" for="maxTotal">${$.i18n.prop('network-configuration.maxTotal')}</label>
295 <div class="controls">
296 <input type="text" class="xlarge required digits" id="maxTotal" name="maxTotal" size="8"
297 data-bind="value: networkConfiguration().maxTotal"/>
300 <div class="control-group">
301 <label class="control-label" for="maxTotal">${$.i18n.prop('network-configuration.maxTotalPerHost')}</label>
302 <div class="controls">
303 <input type="text" class="xlarge required digits" id="maxTotalPerHost" name="maxTotalPerHost" size="8"
304 data-bind="value: networkConfiguration().maxTotalPerHost"/>
307 <div class="control-group">
308 <label class="control-label" for="usePooling">${$.i18n.prop('network-configuration.usePooling')}</label>
309 <div class="controls">
310 <input type="checkbox" id="usePooling" name="usePooling" data-bind="checked: networkConfiguration().usePooling"/>
314 <button id="network-configuration-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
318 <script id="ui-configuration-screen" type="text/html">
319 <div class="page-header">
320 <h4>${$.i18n.prop('ui-configuration.header')}</h4>
322 <div id="ui-configuration-form" data-bind='template: {name:"ui-configuration-form-tmpl"}'></div>
325 <script id="ui-configuration-form-tmpl" type="text/html">
326 <form id="ui-configuration-edit-form" class="well form-horizontal">
327 <fieldset id="ui-configuration-edit-fieldset">
328 <div class="control-group">
329 <label class="control-label" for="maxTotal">${$.i18n.prop('ui-configuration.applicationUrl')}</label>
330 <div class="controls">
331 <input type="text" class="xlarge required digits" id="applicationUrl" name="applicationUrl" size="8"
332 data-bind="value: uiConfiguration().applicationUrl"/>
336 <button id="ui-configuration-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
340 <script id="system-status-main" type="text/html">
341 <div class="page-header">
342 <h4>${$.i18n.prop('system-status.header.version.info')}</h4>
344 <div id="status_version_info">
345 <img src="images/small-spinner.gif"/>
347 <div class="page-header">
348 <h3>${$.i18n.prop('system-status.header.main')} <a href="#" onclick="refreshSystemStatus()"><img src="images/view-refresh-22-22.png"/></a></h3>
350 <div class="page-header">
351 <h4>${$.i18n.prop('system-status.header.queues')}</h4>
353 <div id="status_queues">
354 <img src="images/small-spinner.gif"/>
357 <div class="page-header">
358 <h4>${$.i18n.prop('system-status.header.scanning')} <a href="#" onclick="displayScanningStats()"><img src="images/view-refresh.png"/></a></h4>
360 <div id="status_scanning">
361 <img src="images/small-spinner.gif"/>
364 <div class="page-header">
365 <h4>${$.i18n.prop('system-status.header.caches')} <a href="#" onclick="displayCacheEntries()"><img src="images/view-refresh.png"/></a></h4>
367 <div id="status_caches">
368 <img src="images/small-spinner.gif"/>
371 <div class="page-header">
372 <h4>${$.i18n.prop('system-status.header.memory')} <a href="#" onclick="displayMemoryUsage()"><img src="images/view-refresh.png"/></a></h4>
374 <div id="status_memory_info">
375 <img src="images/small-spinner.gif"/>
378 <div class="page-header">
379 <h4>${$.i18n.prop('system-status.header.current.time')}</h4>
381 <div id="status_current_time">
382 <img src="images/small-spinner.gif"/>
387 <script id="status_caches_tmpl" type="text/html">
388 <a href="#" class="btn btn-warning" onclick="flushAllCaches()">
389 ${$.i18n.prop('system-status.caches.flushAll')}
391 <table class="table table-condensed">
394 <th>${$.i18n.prop('system-status.caches.grid.header.key')}</th>
395 <th>${$.i18n.prop('system-status.caches.grid.header.size')}</th>
396 <th>${$.i18n.prop('system-status.caches.grid.header.cacheHits')}</th>
397 <th>${$.i18n.prop('system-status.caches.grid.header.cacheMiss')}</th>
398 <th>${$.i18n.prop('system-status.caches.grid.header.cacheHitRate')}</th>
399 <th>${$.i18n.prop('system-status.caches.grid.header.inMemorySize')}</th>
400 <th>${$.i18n.prop('system-status.caches.grid.header.flush')}</th>
404 {{each(i,cacheEntry) cacheEntries}}
406 <td>${cacheEntry.key}</td>
407 <td>${cacheEntry.size}</td>
408 <td>${cacheEntry.cacheHits}</td>
409 <td>${cacheEntry.cacheMiss}</td>
410 <td>${cacheEntry.cacheHitRate}</td>
411 <td>${cacheEntry.inMemorySize}</td>
413 <a href="#" onclick="flushCache('${cacheEntry.key}')">
414 {{if cacheEntry.size > 0 }}
415 <img src="images/user-trash-full.png"/>
417 <img src="images/user-trash.png"/>
428 <script id="status_queues_tmpl" type="text/html">
429 <table class="table table-condensed">
432 <th>${$.i18n.prop('system-status.queues.grid.header.key')}</th>
433 <th>${$.i18n.prop('system-status.queues.grid.header.size')}</th>
437 {{each(i,queueEntry) queueEntries}}
439 <td>${queueEntry.key}</td>
440 <td>${queueEntry.entriesNumber}</td>
447 <script id="status_scanning_tmpl" type="text/html">
448 {{if repositoryScannerStatisticsList.length == 0}}
449 <h5>No scans in progress.</h5>
451 <table class="table table-condensed">
454 <th>${$.i18n.prop('system-status.scanning.grid.header.repository')}</th>
455 <th>${$.i18n.prop('system-status.scanning.grid.header.files.processed')}</th>
456 <th>${$.i18n.prop('system-status.scanning.grid.header.files.new')}</th>
457 <th>${$.i18n.prop('system-status.scanning.grid.header.stats')}</th>
461 {{each(i,repositoryScannerStatistics) repositoryScannerStatisticsList}}
463 <td>${repositoryScannerStatistics.managedRepository.name()}</td>
464 <td>${repositoryScannerStatistics.totalFileCount}</td>
465 <td>${repositoryScannerStatistics.newFileCount}</td>
471 <th>${$.i18n.prop('system-status.scanning.consumers.grid.header.name')}</th>
472 <th>${$.i18n.prop('system-status.scanning.consumers.grid.header.total')}</th>
473 <th>${$.i18n.prop('system-status.scanning.consumers.grid.header.average')} ms</th>
474 <th>${$.i18n.prop('system-status.scanning.consumers.grid.header.invocations.time')}</th>
478 {{each(j,consumerScanningStatistics) repositoryScannerStatistics.consumerScanningStatisticsList}}
480 <td>${consumerScanningStatistics.consumerKey}</td>
481 <td>${consumerScanningStatistics.count}</td>
482 <td>${consumerScanningStatistics.average}ms</td>
483 <td>${consumerScanningStatistics.time}ms</td>
497 <script id="changeAppearance" type="text/html">
498 <div class="page-header">
499 <h2>${$.i18n.prop('appearance-configuration.title-page')}</h2>
502 <h2>${$.i18n.prop('appearance-configuration.organisation-details')}</h2>
505 ${$.i18n.prop('apperance-configuration.details-description')}
508 <form id="appearance-configuration-form-id" class="well form-horizontal">
509 <fieldset id="appearance-configuration-fielset-id">
510 <div class="control-group">
511 <label class="control-label" for="name">${$.i18n.prop('appearance-configuration.name-label')}</label>
512 <div class="controls">
513 <input type="text" class="xlarge required" id="name" name="name" size="50"
514 data-bind="value: organisationInformation().name"/>
517 <div class="control-group">
518 <label class="control-label" for="name">${$.i18n.prop('appearance-configuration.url-label')}</label>
519 <div class="controls">
520 <input type="text" class="xlarge required" id="url" name="url" size="50"
521 data-bind="value: organisationInformation().url"/>
524 <div class="control-group">
525 <label class="control-label"
526 for="name">${$.i18n.prop('appearance-configuration.logoLocation-label')}</label>
527 <div class="controls">
528 <input type="text" class="xlarge" id="logoLocation" name="logoLocation" size="50"
529 data-bind="value: organisationInformation().logoLocation"/>
533 <button id="appearance-configuration-btn-save" data-bind="click: save" class="btn">${$.i18n.prop('save')}</button>
538 <script id="file-upload-screen" type="text/html">
539 <div id="file-upload-main" data-bind='template:{name:"file-upload-tmpl"}'></div>
542 <script id="file-upload-tmpl" type="text/html">
543 <div class="page-header">
544 <h3>${$.i18n.prop('fileupload.header')}</h3>
546 <form id="fileupload" action="restServices/archivaUiServices/fileUploadService" method="POST"
547 enctype="multipart/form-data" class="well form-horizontal">
549 <fieldset id="network-proxy-edit-fieldset">
550 <div class="control-group">
551 <label class="control-label" for="repositoryId">${$.i18n.prop('fileupload.repositoryId')}</label>
552 <div class="controls">
553 <select id="repositoryId"
554 data-bind="options: managedRepositories, optionsText: 'name',optionsValue:'id',
555 value: repositoryId"></select>
558 <div class="control-group">
559 <label class="control-label" for="groupId">${$.i18n.prop('fileupload.groupId')}</label>
560 <div class="controls">
561 <input type="text" class="xlarge required" data-bind="value: groupId" id="groupId" name="groupId" size="10" />
565 <div class="control-group">
566 <label class="control-label" for="artifactId">${$.i18n.prop('fileupload.artifactId')}</label>
567 <div class="controls">
568 <input type="text" class="xlarge required" data-bind="value: artifactId" id="artifactId" name="artifactId" size="10" />
572 <div class="control-group">
573 <label class="control-label" for="version">${$.i18n.prop('fileupload.version')}</label>
574 <div class="controls">
575 <input type="text" class="xlarge required" data-bind="value: version" id="version" name="version" size="10" />
579 <div class="control-group">
580 <label class="control-label" for="packaging">${$.i18n.prop('fileupload.packaging')}</label>
581 <div class="controls">
582 <input type="text" class="xlarge required" data-bind="value: packaging" id="packaging" name="packaging" size="10" />
586 <div class="control-group">
587 <label class="control-label" for="generatePom">${$.i18n.prop('fileupload.generatePom')}</label>
588 <div class="controls">
589 <input type="checkbox" class="xlarge" data-bind="value: generatePom" id="generatePom" name="generatePom" />
595 <div class="row-fluid fileupload-buttonbar">
597 <span class="btn btn-success fileinput-button">
598 <i class="icon-plus icon-white"></i>
599 <span>${$.i18n.prop('fileupload.file.choose')}</span>
600 <input type="file" name="files[]" multiple="">
602 <button type="submit" class="btn btn-primary start">
603 <i class="icon-upload icon-white"></i>
604 <span>${$.i18n.prop('fileupload.start')}</span>
606 <button type="reset" class="btn btn-warning cancel">
607 <i class="icon-ban-circle icon-white"></i>
608 <span>${$.i18n.prop('fileupload.cancel')}</span>
610 <button type="button" class="btn btn-danger delete">
611 <i class="icon-trash icon-white"></i>
612 <span>${$.i18n.prop('fileupload.delete')}</span>
614 <input type="checkbox" class="toggle">
617 <div class="progress progress-success progress-striped active">
618 <div class="bar" style="width:0%;"></div>
623 <a href="#" id="fileupload-save-files">
624 <span class="btn btn-info" data-bind='click: saveArtifacts'>
625 <i class="icon-file icon-white"></i>
626 <span>${$.i18n.prop('fileupload.save')}</span>
630 <div class="fileupload-loading"></div>
632 <table class="table table-striped">
633 <tbody class="files" data-toggle="modal-gallery" data-target="#modal-gallery"></tbody>
640 <script id="template-upload" type="text/html">
641 {% for (var i=0, file; file=o.files[i]; i++) { %}
642 <tr class="template-upload">
643 <td class="name"><span>{%=file.name%}</span></td>
644 <td><input type="text" id="classifier" name="classifier" placeholder="classifier" value=""/></td>
645 <td><span>pomFile:</span><input type="checkbox" id="pomFile" name="pomFile"/></td>
646 <td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
647 {% if (file.error) { %}
648 <td class="error" colspan="2">
649 <span class="label label-important">{%=$.i18n.prop('fileupload.error')%}</span>
650 {%=$.i18n.prop('fileupload.errors.'+[file.error]) || file.error%}
652 {% } else if (o.files.valid && !i) { %}
654 <div class="progress progress-success progress-striped active">
655 <div class="bar" style="width:0%;"></div>
659 {% if (!o.options.autoUpload) { %}
660 <button class="btn btn-primary">
661 <i class="icon-upload icon-white"></i>
662 <span>{%=$.i18n.prop('fileupload.start')%}</span>
667 <td colspan="2"></td>
671 <button class="btn btn-warning">
672 <i class="icon-ban-circle icon-white"></i>
673 <span>{%=$.i18n.prop('fileupload.cancel')%}</span>
681 <script id="template-download" type="text/html">
682 {% for (var i=0, file; file=o.files[i]; i++) { %}
683 <tr class="template-download">
684 <td class="name"><span>{%=file.name%}</span></td>
685 <td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
686 {% if (file.error) { %}
687 <td class="error" colspan="2">
688 <span class="label label-important">{%=$.i18n.prop('fileupload.error')%}</span>
689 {%=$.i18n.prop('fileupload.errors.'+[file.error]) || file.error%}
692 <td colspan="2"></td>
695 <button class="btn btn-danger" data-type="{%=file.deleteType%}"
696 data-url="restServices/archivaUiServices/fileUploadService/{%=file.deleteUrl%}">
697 <i class="icon-trash icon-white"></i>
698 <span>{%=$.i18n.prop('fileupload.destroy')%}</span>
700 <input type="checkbox" name="delete" value="1">