|
84 | 84 | <frame src="allclasses-frame.html" name="classListFrame"/>
|
85 | 85 | </frameset>
|
86 | 86 | <frame src="overview-summary.html" name="classFrame"/>
|
| 87 | + <noframes> |
| 88 | + <h2>Frame Alert</h2> |
| 89 | + <p> |
| 90 | + This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. |
| 91 | + </p> |
| 92 | + </noframes> |
87 | 93 | </frameset>
|
88 |
| - <noframes> |
89 |
| - <h2>Frame Alert</h2> |
90 |
| - <p> |
91 |
| - This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. |
92 |
| - </p> |
93 |
| - </noframes> |
94 | 94 | </html>
|
95 | 95 | </xsl:template>
|
96 | 96 |
|
|
259 | 259 | </table>
|
260 | 260 | <xsl:call-template name="pageFooter"/>
|
261 | 261 | </body>
|
262 |
| - </html> |
| 262 | + </html> |
263 | 263 | </xsl:template>
|
264 | 264 |
|
265 | 265 | <!--
|
|
293 | 293 | <!-- list of classes in a package -->
|
294 | 294 | <xsl:template match="package" mode="classes.list">
|
295 | 295 | <html>
|
296 |
| - <HEAD> |
| 296 | + <head> |
297 | 297 | <xsl:call-template name="create.stylesheet.link">
|
298 | 298 | <xsl:with-param name="package.name" select="@name"/>
|
299 | 299 | </xsl:call-template>
|
300 |
| - </HEAD> |
301 |
| - <BODY> |
| 300 | + </head> |
| 301 | + <body> |
302 | 302 | <table width="100%">
|
303 | 303 | <tr>
|
304 | 304 | <td nowrap="nowrap">
|
305 |
| - <H2><a href="package-summary.html" target="classFrame"><xsl:value-of select="@name"/></a></H2> |
| 305 | + <h2><a href="package-summary.html" target="classFrame"><xsl:value-of select="@name"/></a></h2> |
306 | 306 | </td>
|
307 | 307 | </tr>
|
308 | 308 | </table>
|
309 | 309 |
|
310 |
| - <H2>Classes</H2> |
311 |
| - <TABLE WIDTH="100%"> |
| 310 | + <h2>Classes</h2> |
| 311 | + <table width="100%"> |
312 | 312 | <xsl:for-each select="class">
|
313 | 313 | <xsl:sort select="@name"/>
|
314 | 314 | <tr>
|
|
317 | 317 | </td>
|
318 | 318 | </tr>
|
319 | 319 | </xsl:for-each>
|
320 |
| - </TABLE> |
321 |
| - </BODY> |
| 320 | + </table> |
| 321 | + </body> |
322 | 322 | </html>
|
323 | 323 | </xsl:template>
|
324 | 324 |
|
325 | 325 | <!-- summary of a package -->
|
326 | 326 | <xsl:template match="package" mode="package.summary">
|
327 |
| - <HTML> |
328 |
| - <HEAD> |
| 327 | + <html> |
| 328 | + <head> |
329 | 329 | <xsl:call-template name="create.stylesheet.link">
|
330 | 330 | <xsl:with-param name="package.name" select="@name"/>
|
331 | 331 | </xsl:call-template>
|
332 |
| - </HEAD> |
| 332 | + </head> |
333 | 333 | <!-- when loading this package, it will open the classes into the frame -->
|
334 |
| - <BODY onload="open('package-frame.html','classListFrame')"> |
| 334 | + <body onload="open('package-frame.html','classListFrame')"> |
335 | 335 | <xsl:call-template name="pageHeader"/>
|
336 | 336 | <h3>Package <xsl:value-of select="@name"/></h3>
|
337 | 337 | <table class="log" cellpadding="5" cellspacing="2" width="100%">
|
|
340 | 340 | </table>
|
341 | 341 |
|
342 | 342 | <xsl:if test="count(class) > 0">
|
343 |
| - <H3>Classes</H3> |
| 343 | + <h3>Classes</h3> |
344 | 344 | <table class="log" cellpadding="5" cellspacing="2" width="100%">
|
345 | 345 | <xsl:apply-templates select="." mode="stats.header"/>
|
346 | 346 | <xsl:apply-templates select="class" mode="stats">
|
|
349 | 349 | </table>
|
350 | 350 | </xsl:if>
|
351 | 351 | <xsl:call-template name="pageFooter"/>
|
352 |
| - </BODY> |
353 |
| - </HTML> |
| 352 | + </body> |
| 353 | + </html> |
354 | 354 | </xsl:template>
|
355 | 355 |
|
356 | 356 | <!-- details of a class -->
|
357 | 357 | <xsl:template match="class" mode="class.details">
|
358 | 358 | <xsl:variable name="package.name" select="(ancestor::package)[last()]/@name"/>
|
359 |
| - <HTML> |
360 |
| - <HEAD> |
| 359 | + <html> |
| 360 | + <head> |
361 | 361 | <xsl:call-template name="create.stylesheet.link">
|
362 | 362 | <xsl:with-param name="package.name" select="$package.name"/>
|
363 | 363 | </xsl:call-template>
|
364 |
| - </HEAD> |
365 |
| - <BODY> |
| 364 | + </head> |
| 365 | + <body> |
366 | 366 | <xsl:call-template name="pageHeader"/>
|
367 |
| - <H3>Class <xsl:if test="not($package.name = '')"><xsl:value-of select="$package.name"/>.</xsl:if><xsl:value-of select="@name"/></H3> |
| 367 | + <h3>Class <xsl:if test="not($package.name = '')"><xsl:value-of select="$package.name"/>.</xsl:if><xsl:value-of select="@name"/></h3> |
368 | 368 |
|
369 | 369 | <!-- class summary -->
|
370 | 370 | <table class="log" cellpadding="5" cellspacing="2" width="100%">
|
|
373 | 373 | </table>
|
374 | 374 |
|
375 | 375 | <!-- details of methods -->
|
376 |
| - <H3>Methods</H3> |
| 376 | + <h3>Methods</h3> |
377 | 377 | <table class="log" cellpadding="5" cellspacing="2" width="100%">
|
378 | 378 | <xsl:apply-templates select="method[1]" mode="stats.header"/>
|
379 | 379 | <xsl:apply-templates select="method" mode="stats">
|
380 | 380 | <xsl:sort data-type="number" select="cov.data/@hit_lines div cov.data/@total_lines"/>
|
381 | 381 | </xsl:apply-templates>
|
382 | 382 | </table>
|
383 | 383 | <xsl:call-template name="pageFooter"/>
|
384 |
| - </BODY> |
385 |
| - </HTML> |
| 384 | + </body> |
| 385 | + </html> |
386 | 386 |
|
387 | 387 | </xsl:template>
|
388 | 388 |
|
389 | 389 | <!-- Page Header -->
|
390 | 390 | <xsl:template name="pageHeader">
|
391 |
| - <!-- jakarta logo --> |
392 |
| - <table border="0" cellpadding="0" cellspacing="0" width="100%"> |
393 |
| - <tr> |
394 |
| - <td class="bannercell" rowspan="2"> |
395 |
| - <a href="https://ant.apache.org/"> |
396 |
| - <img src="https://ant.apache.org/images/group-logo.gif" alt="https://ant.apache.org" align="left" border="0"/> |
397 |
| - </a> |
398 |
| - </td> |
399 |
| - <td style="text-align:right"><h2>Source Code Coverage</h2></td> |
| 391 | + <!-- jakarta logo --> |
| 392 | + <table border="0" cellpadding="0" cellspacing="0" width="100%"> |
| 393 | + <tr> |
| 394 | + <td class="bannercell" rowspan="2"> |
| 395 | + <a href="https://ant.apache.org/"> |
| 396 | + <img src="https://ant.apache.org/images/group-logo.gif" alt="https://ant.apache.org" align="left" border="0"/> |
| 397 | + </a> |
| 398 | + </td> |
| 399 | + <td style="text-align:right"><h2>Source Code Coverage</h2></td> |
400 | 400 | </tr>
|
401 | 401 | <tr>
|
402 |
| - <td style="text-align:right">Designed for use with Sitraka JProbe and <a href='https://ant.apache.org'>Ant</a>.</td> |
| 402 | + <td style="text-align:right">Designed for use with Sitraka JProbe and <a href='https://ant.apache.org'>Ant</a>.</td> |
403 | 403 | </tr>
|
404 |
| - </table> |
| 404 | + </table> |
405 | 405 | <hr size="1"/>
|
406 | 406 | </xsl:template>
|
407 | 407 |
|
|
471 | 471 | <!-- create the link to the stylesheet based on the package name -->
|
472 | 472 | <xsl:template name="create.stylesheet.link">
|
473 | 473 | <xsl:param name="package.name"/>
|
474 |
| - <LINK REL ="stylesheet" TYPE="text/css" TITLE="Style"><xsl:attribute name="href"><xsl:if test="not($package.name = 'unnamed package')"><xsl:call-template name="path"><xsl:with-param name="path" select="$package.name"/></xsl:call-template></xsl:if>stylesheet.css</xsl:attribute></LINK> |
| 474 | + <link rel ="stylesheet" type="text/css" title="Style"><xsl:attribute name="href"><xsl:if test="not($package.name = 'unnamed package')"><xsl:call-template name="path"><xsl:with-param name="path" select="$package.name"/></xsl:call-template></xsl:if>stylesheet.css</xsl:attribute></link> |
475 | 475 | </xsl:template>
|
476 | 476 |
|
477 | 477 | <!-- alternated row style -->
|
|
0 commit comments