Changeset 1472
- Timestamp:
- Nov 23, 2011, 3:27:22 PM (12 years ago)
- Location:
- extensions/net.sf.basedb.reggie/trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/net.sf.basedb.reggie/trunk/META-INF/servlets.xml
r1403 r1472 25 25 <servlet-class>net.sf.basedb.reggie.servlet.PartitionRegistrationServlet</servlet-class> 26 26 </servlet> 27 <servlet> 28 <servlet-name>SampleReport</servlet-name> 29 <servlet-class>net.sf.basedb.reggie.servlet.SampleReportServlet</servlet-class> 30 </servlet> 27 31 </servlets> -
extensions/net.sf.basedb.reggie/trunk/resources/index.jsp
r1403 r1472 208 208 </dd> 209 209 <% 210 } 211 %> 210 } 211 %> 212 212 </dl> 213 214 213 </div> 215 214 </td> … … 218 217 </tr> 219 218 </table> 220 221 219 220 <table border="0" cellspacing="0" cellpadding="0" width="100%" style="margin-left: 20px;"> 221 <tr valign="top"> 222 <td width="50%"> 223 224 <h3 class="light">Reggie reports</h3> 225 <div class="boxedbottom"> 226 <dl> 227 <dt> 228 <table border="0" cellspacing="0" cellpadding="0"> 229 <tr> 230 <td><base:icon image="table.gif" style="padding-right: 4px;"/></td> 231 <td><a href="samplereportgenerator.jsp?ID=<%=ID%>">Report generator</a></td> 232 </tr> 233 </table> 234 </dt> 235 <dd> 236 <ul> 237 <li>Sample count report</li> 238 </ul> 239 </dd> 240 </dl> 241 </div> 242 </td> 243 <td width="50%"> 244 </td> 245 </tr> 246 </table> 222 247 </base:body> 223 248 </base:page> -
extensions/net.sf.basedb.reggie/trunk/resources/reggie.css
r1342 r1472 104 104 list-style-image: url('../../images/ok.gif'); 105 105 } 106 107 .reporttable 108 { 109 border-collapse: collapse; 110 padding: 4px 4px 1px 4px; 111 cellspacing: 0; 112 cellpadding: 0; 113 margin: 0; 114 width: 100%; 115 color: #ffffff; 116 } 117 118 .reportheader 119 { 120 text-align: center; 121 background: #606060; 122 width: 100%; 123 font-style: italic; 124 font-weight: bold; 125 } 126 127 .reportsubheader 128 { 129 text-align: center; 130 vertical-align: bottom; 131 background: #6f6f6f; 132 cellspacing: 0; 133 cellpadding: 0; 134 } 135 136 .reportdata, .colsummary, .rowsummary, .rowtitle 137 { 138 border-collapse: collapse; 139 text-align: center; 140 color: #000000; 141 } 142 143 .rowsummary, .colsummary, .rowtitle 144 { 145 font-weight: bold; 146 } 147 148 .rowsummary 149 { 150 border-left-style: solid; 151 border-left-width: 2px; 152 } 153 154 .colsummary 155 { 156 border-top-style: solid; 157 border-top-width: 2px; 158 }
Note: See TracChangeset
for help on using the changeset viewer.