/** * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors * SPDX-License-Identifier: AGPL-3.0-or-later */ import { translate as t } from '@nextcloud/l10n' import { type Node, FileType, FileAction, DefaultType } from '@nextcloud/files' /** * TODO: Move away from a redirect and handle * navigation straight out of the recent view */ export const action = new FileAction({ id: 'open-in-files-recent', displayName: () => t('files', 'Open in Files'), iconSvgInline: () => '', enabled: (nodes, view) => view.id === 'recent', async exec(node: Node) { let dir = node.dirname if (node.type === FileType.Folder) { dir = dir + '/' + node.basename } window.OCP.Files.Router.goToRoute( null, // use default route { view: 'files', fileid: String(node.fileid) }, { dir, openfile: 'true' }, ) return null }, // Before openFolderAction order: -1000, default: DefaultType.HIDDEN, }) 3_gradient-rendering Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/test/java/org/apache/fop/render/pdf/BasePDFTestCase.java
blob: 3b4e0311889bfde4cb68402abe0584a90873edba (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103