File: package.html

package info (click to toggle)
liblayout 0.2.10-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 5,332 kB
  • sloc: java: 51,125; xml: 138; makefile: 17
file content (29 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (5)
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
<html>
<head></head>
<body>
  <h1>
    Processing Level 1: Getting the data in a standarized way.
  </h1>
  <p>
    A DocumentBuilder implementation is used for the layouting. There must
    be at least two implementations. The very simple one is holding the whole
    document in memory.
  </p>
  <p>
    A more sophisticated one, which removes the fully processed nodes from
    the document allows the processing of larger documents, which would not
    fully fit into the available memory otherwise. That document-builder should
    be able to restart the processing from a certain page later.
  </p>
  <p>
    An optional third one might accept already computed content as input, and
    therefore reduces the costs for the layouting without having to restart the
    whole input processing again.
  </p>

  <p>
    Once sufficient document content is available, start the layouting. 
  </p>

</body>
</html>