| <!doctype html> | |
| <html> | |
| <head> | |
| <style rel="stylesheet" type="text/css"> | |
| body, table, td, p { | |
| font-family: verdana, arial, helvetica, lucida-sans, sans-serif; | |
| font-size: 10pt; | |
| } | |
| .success { | |
| padding: 3px; | |
| float: left; | |
| } | |
| .warning { | |
| padding: 3px; | |
| float: left; | |
| background-color: #ff9900; | |
| color: white; | |
| font-weight: bold; | |
| } | |
| .success, .deployed { | |
| background-color: #0F8800; | |
| color: white; | |
| font-weight: bold; | |
| } | |
| .outdated { | |
| background-color: #FF1400; | |
| color: white; | |
| font-weight: bold; | |
| } | |
| .deployedHeader, .outdatedHeader { | |
| text-align: left; | |
| color: white; | |
| font-weight: bold; | |
| margin: 1px; | |
| padding: 2px; | |
| border: 1px solid #CCC; | |
| } | |
| .deployedHeader { | |
| background-color: #0F8800; | |
| } | |
| .outdatedHeader { | |
| background-color: #FF1400; | |
| } | |
| .container { | |
| margin-top: 1em; | |
| padding: 0px 0px 10px; | |
| border: 1px solid gray; | |
| background-color: #EEE; | |
| } | |
| .container h4 { | |
| background-color: #CCC; | |
| padding: 3px; | |
| margin: 0; | |
| border-bottom: 1px solid gray; | |
| } | |
| .container table { | |
| width: 100%; | |
| } | |
| .container th { | |
| text-align: left; | |
| width: 50%; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h3>Apache Click - Resource Deployment Report</h3> | |
| This report shows the JavaScript, CSS, images and other resources | |
| that was deployed to the target folder "<tt>{0}</tt>". | |
| <p/> | |
| The following JARs and folders contains deployable resources | |
| (deployable resources are found in JARs and folders under <tt>WEB-INF/resources</tt>): | |
| <ul> | |
| {1} | |
| </ul> | |
| Resources can have one of three states: | |
| <ul> | |
| <li>Deployed - the resource was deployed from the JAR to the target folder</li> | |
| <li>Outdated <span style="color:red">*</span> - the resource was already | |
| deployed, but a newer version of the resource is available</li> | |
| <li>Current - the resource was already deployed, no redeploy was necessary. | |
| Please note, this state is not shown in the detailed report as it is redundent information</li> | |
| </ul> | |
| <span style="color:red">*</span> Outdated resources must be | |
| manually redeployed by either deleting the existing resource and executing | |
| the deploy task again, or if the existing resource was customized, it must | |
| be merged by your IDE diff utility. | |
| <p/> | |
| Below is the detailed report for the resources that was deployed <tt>successfully | |
| </tt> or are <tt>outdated</tt>. | |
| {2} | |
| </body> | |
| </html> |