http://xml.apache.org/http://www.apache.org/http://www.w3.org/

Home

Readme
Download
Running FOP
Features
Limitations
Examples
Configuration
Fonts
Extensions

Compiling
Embedding
Getting involved
Architecture

Bugs
FAQ
Resources
License

Prerequisites
 

Following software must be installed:

a) Java 1.1.x or later (If you want to use the previewer (option -awt), you need Swing or Java 2)

b) All libraries you need are part of the Fop distribution and can be found in the xml-fop/lib directory. Look at the batch/shell script fop.bat/fop.sh to see, how Fop can be invoked easily. These libraries are included:

  • An XML parser which supports SAX and DOM like Xerces-J. (Xerces is the default xml parser)
  • An XSLT processor
  • The SVG library w3c.jar corresponding to the SVG Candidate Recommendation (02 November 2000).
  • The imaging library Jimi from Sun


Starting FOP as an standalone application
 

Fop [options] [-fo|-xml] infile [-xsl file] [-awt|-pdf|-mif|-pcl|-txt|-print] <outfile>

[OPTIONS]

      -d          debug mode
-x dump configuration settings
-q quiet mode
-c cfg.xml use additional configuration file cfg.xml
-l lang the language to use for user information

[INPUT]

      infile            xsl:fo input file (the same as the next)
-fo infile xsl:fo input file
-xml infile xml input file, must be used together with -xsl
-xsl stylesheet xslt stylesheet

[OUTPUT]

      outfile           input will be rendered as pdf file into outfile
-pdf outfile input will be rendered as pdf file (outfile req'd)
-awt input will be displayed on screen
-mif outfile input will be rendered as mif file (outfile req'd)
-pcl outfile input will be rendered as pcl file (outfile req'd)
-txt outfile input will be rendered as text file (outfile req'd)
-print input file will be rendered and sent to the printer
see options with "-print help"

[Examples]

      Fop foo.fo foo.pdf
Fop -fo foo.fo -pdf foo.pdf (does the same as the previous line)
Fop -xsl foo.xsl -xml foo.xml -pdf foo.pdf
Fop foo.fo -mif foo.mif
Fop foo.fo -print or Fop -print foo.fo
Fop foo.fo -awt


Problems
 

If you have problems running FOP, please have a look at the FOP FAQ. If you don't find a solution there, you can ask for help on the list fop-dev@xml.apache.org. Maybe it is a bug and maybe somebody is already working on it.



Copyright © 1999 The Apache Software Foundation. All Rights Reserved.
e='backport/47425/stable29'>backport/47425/stable29 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/core/css/jquery.ocdialog.css
blob: 487bc1c4f690a6384be9bcf218e70aa4e0343410 (plain)
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
.oc-dialog {
	background: #fff;
	color: #333;
	border-radius: 3px; box-shadow: 0 0 7px #888;
	padding: 15px;
	z-index: 10000;
	font-size: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-height: calc(100% - 20px);
	max-width: calc(100% - 20px);
	overflow: auto;
}
.oc-dialog-title {
	background: #fff;
	margin-left: 12px;
}
.oc-dialog-buttonrow {
	position: relative;
	display: block;
	background: transparent;
	right: 0;
	bottom: 0;
	padding: 10px;
	padding-bottom: 0;
	box-sizing: border-box;
	width: 100%;
	background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}
/* align primary button to right, other buttons to left */
.oc-dialog-buttonrow.twobuttons button:nth-child(1) {
	float: left;
}
.oc-dialog-buttonrow.twobuttons button:nth-child(2) {
	float: right;
}

.oc-dialog-buttonrow.onebutton button {
	float: right;
}
.oc-dialog-buttonrow:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.oc-dialog-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 25px;
	background: url('../img/actions/close.svg') no-repeat center;
}

.oc-dialog-dim {
	background-color: #000;
	opacity: .20;
	z-index: 999;
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
}

.oc-dialog-content {
	width: 100%;
}