Valentin Valchev | 2144f3c | 2012-04-25 12:24:38 +0000 | [diff] [blame] | 1 | <script type="text/javascript" src="${pluginRoot}/res/plugin.js"></script> |
| 2 | <script type="text/javascript"> |
| 3 | // <![CDATA[ |
| 4 | var i18n = { |
| 5 | statusFind : '${status.find}', |
| 6 | statusDups : '${status.dups}' |
| 7 | } |
| 8 | // ]]> |
| 9 | </script> |
| 10 | |
| 11 | <!-- status line --> |
| 12 | <p class="statline">${status.initial}</p> |
| 13 | |
| 14 | <!-- table caption --> |
| 15 | <form method="post" action="${pluginRoot}"> |
| 16 | <div class="ui-widget-header ui-corner-top buttonGroup"> |
| 17 | <span>${find.label}</span> |
| 18 | <input type="text" id="findField" title="${find.tip}" /> |
| 19 | <button id="findButton">${find.btn}</button> |
| 20 | <button id="findDups">${find.dups}</button> |
| 21 | </div> |
| 22 | </form> |
| 23 | |
| 24 | <!-- table find results --> |
| 25 | <table class="tablesorter nicetable noauto" id="findTable"> |
| 26 | <thead> |
| 27 | <tr> |
| 28 | <th>${header.package.name}</th> |
| 29 | <th>${header.package.ver}</th> |
| 30 | <th>${header.exporting.bundle}</th> |
| 31 | <th>${header.maven.deps}</th> |
| 32 | </tr> |
| 33 | </thead> |
| 34 | <tbody> |
| 35 | <tr> |
| 36 | <td class="pkg"> </td> |
| 37 | <td class="ver">-</td> |
| 38 | <td class="bnd">${no.exporters.found}</td> |
| 39 | <td class="mvn">${no.maven.found}</td> |
| 40 | </tr> |
| 41 | </tbody> |
| 42 | </table> |
| 43 | |
| 44 | <!-- duplicates --> |
| 45 | <table class="nicetable noauto ui-helper-hidden" id="dupsTable"> |
| 46 | <thead> |
| 47 | <tr> |
| 48 | <th>${header.package.name}</th> |
| 49 | <th>${header.package.ver}</th> |
| 50 | <th>${header.exporting.bundle}</th> |
| 51 | <th>${header.importing.bundle}</th> |
| 52 | </tr> |
| 53 | </thead> |
| 54 | <tbody> |
| 55 | <tr> |
| 56 | <td class="pkg">-</td> |
| 57 | <td class="ver">-</td> |
| 58 | <td class="exp">-</td> |
| 59 | <td class="imp"> </td> |
| 60 | </tr> |
| 61 | </tbody> |
| 62 | </table> |
| 63 | |