File: index.xhtml

package info (click to toggle)
xhtmlrenderer 0.0~R8%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 11,288 kB
  • ctags: 7,218
  • sloc: java: 46,036; xml: 1,518; makefile: 27; sh: 11
file content (93 lines) | stat: -rw-r--r-- 2,699 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8"?>
<!--<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">-->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<style type="text/css">
        
    #title1, #title2, #title3 { font-family: Georgia; }
    #title1 {
        font-size: 75pt;
        color: #B0CDF8;
        }
    #title2, #title3 { font-size: 40pt; }
    #content {
        margin-left: 20px;
        margin-right: 20px;
        border: 0px solid black;
        }
    #content h3 { font-size: 20pt; font-family: Arial; padding: 20px; }
    p, li { font-family: Verdana; font-size: 14pt; margin: 5px 2px 5px 2px;}
    /*    ul { background-color: #DFE9F8; 
        border-width: 1px; 
        border-color: #83B2F8; }
        */
    .centered { text-align: center; }
    
    
    body {
            background-image: url("back.png");
            background-attachment: fixed;
        }
    
    img { border-width: 0px; }
    
    p {
        border: 1px solid black;
        background-image: url("transgrey.png");
        padding: 20px;
        }
	p#imgback { background-color: white; }
    p, ul {
        margin: 10px;
        }
    ul {
        background-image: url("transgrey.png");
        margin: 30px;
        padding: 20px;
        background-repeat: repeat;
        border: 1px solid black;
        }
    li { padding: 5px 5px 5px 5px; }
    </style>
    
</head>

<body>
    <div id="content">
        <div class="centered">
            <p class="centered" id="imgback">
                <img alt="" src="flyingsaucer.png"/>
            </p>
            <h3>Flying Saucer</h3>
            <h5>XML + CSS Renderer</h5>
        </div>
        
    <p class="clearit">The Flying Saucer Team is proud to present
	our 100% Java library for rendering XHTML +
    CSS2.1 including tables, forms, the box model, lists, selectors,
    images, and text formatting.</p>
    
    <p>The Flying Saucer XHTMLRenderer can be used anywhere a
    program needs rich styled content such as ebook readers,
    chat apps, splash screens, help viewers, report generation,
    web-enabled thick clients, and online music stores.</p>

    <p>This release brings updates to the infrastructure with:</p>
	
	<ul>
	<li>rewritten layout and render engine</li>
	<li>render direct to PDF, including embedded fonts, header, footer, page counters and bookmark support</li>
	<li>pagination</li>
	<li>z-indexing/layers</li>
	<li>margin collapse</li>
	<li>better float processing</li>
	<li>more speed improvments</li>
	</ul>
	
    <p>Thanks for all of your support and please send us your feedback.</p>

    </div>
</body>
</html>