summaryrefslogtreecommitdiffstats
path: root/lib/redmine/views/api_template_handler.rb
blob: 32c8c09def79f7114514f35314b1512e4718ef1c (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
# frozen_string_literal: true

# Redmine - project management software
# Copyright (C) 2006-2022  Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

module Redmine
  module Views
    class ApiTemplateHandler
      def self.call(template, source = nil)
        "Redmine::Views::Builders.for(params[:format], request, response) do |api|; #{template.source}; self.output_buffer = api.output; end"
      end
    end
  end
end
id='n166' href='#n166'>166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237
<?xml version="1.0" encoding="utf-8"?>


<!-- example for a simple fo file. At the beginning the page layout is set.
Below fo:root there is always
- a single fo:layout-master-set which defines one or more page layouts
- an optional fo:declarations,
- and a sequence of one or more fo:page-sequences containing the text and formatting instructions -->

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

  <fo:layout-master-set>
  <!-- fo:layout-master-set defines in its children the page layout:
       the pagination and layout specifications
       - page-masters: have the role of describing the intended subdivisions
                       of a page and the geometry of these subdivisions
       - page-sequence-masters: have the role of describing the sequence
                                of page-masters that will be used to generate
                                pages during the formatting of an fo:page-sequence

  -->

    <!-- layout for the first page -->
    <fo:simple-page-master master-name="first"
                  page-height="29.7cm"
                  page-width="21cm"
                  margin-top="1cm"
                  margin-bottom="2cm"
                  margin-left="2.0cm + 0.5cm"
                  margin-right="(5cm * 1cm) div 2cm">
      <fo:region-body margin-top="3cm"/>
      <fo:region-before extent="3cm"/>
      <fo:region-after extent="1.5cm"/>
    </fo:simple-page-master>

    <!-- layout for the other pages -->
    <fo:simple-page-master master-name="rest"
                  page-height="abs(-30cm + .3cm)"
                  page-width="(10cm * 2) + 1cm"
                  margin-top="round(.5) * 1cm"
                  margin-bottom="round(2.4) * 1cm"
                  margin-left="2.5 * 1cm"
                  margin-right="5.5cm - 3cm">
      <fo:region-body margin-top="2.5cm"/>
      <fo:region-before extent="2.5cm"/>
      <fo:region-after extent="1.5cm"/>
    </fo:simple-page-master>

<fo:page-sequence-master master-name="basicPSM" >
  <fo:repeatable-page-master-alternatives>
    <fo:conditional-page-master-reference master-reference="first"
      page-position="first" />
    <fo:conditional-page-master-reference master-reference="rest"
      page-position="rest" />
    <!-- recommended fallback procedure -->
    <fo:conditional-page-master-reference master-reference="rest" />
  </fo:repeatable-page-master-alternatives>
</fo:page-sequence-master>

  </fo:layout-master-set>
  <!-- end: defines page layout -->

  <!-- actual layout -->
  <fo:page-sequence master-reference="basicPSM">

    <!-- header -->
    <fo:static-content flow-name="xsl-region-before">
      <fo:block text-align="end"
            font-size="10pt"
            font-family="serif"
            line-height="1em + 4pt" >
        Corresponding Property Tests - p. <fo:page-number/>
      </fo:block>
    </fo:static-content>

    <fo:flow flow-name="xsl-region-body">

      <!-- defines text title level 1-->
      <fo:block font-size="min(18pt,20pt)"
            font-family="sans-serif"
            line-height="max(24pt,18pt)"
            space-after.optimum="5 mod 3 * 7.5pt"
            background-color="rgb(0,0,255)"
            color="rgb(255,255,255)"
            text-align="center"
            padding-top="3pt">
        Corresponding Property Tests
      </fo:block>

      <!-- Normal text -->
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-after="12pt"
                text-align="start"
                background-color="rgb(200,200,200)"
                start-indent="3mm" end-indent="3mm"
                padding-left="3mm" padding-right="3mm"
                padding-top="4mm" padding-bottom="4mm"
                border-left-width="1pt" border-right-width="1pt"
                border-top-width="2pt" border-bottom-width="2pt"
                border-top-color="red" border-bottom-color="blue">
In this example, padding and border properties are specified using absolute  properties:
padding-left, padding-right, padding-top, and padding-bottom, etc.
According to the specification, a request for the absolute (top, bottom, left, right) versions of these properties should use the relative ones if they are specified.
</fo:block>

      <!-- Normal text -->
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-after="3pt"
                text-align="start"
                background-color="rgb(200,200,200)"
                start-indent="3mm" end-indent="3mm"
                padding-before="4mm" padding-after="4mm"
                padding-start.length="3mm" padding-end.length="3mm"
                border-start-width="1pt" border-end-width="1pt"
                border-before-width="2pt" border-after-width="2pt"
                border-before-color="red" border-after-color="blue">
In this example, padding and border properties are specified using writing-mode relative properties:
padding-before, padding-after, padding-start, and padding-end, etc.
According to the specification, a request for the absolute (top, bottom, left, right) versions of these properties should use the relative ones if they are specified.
</fo:block>

      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="start"
    start-indent="1cm">
  This block has a start-indent of 1cm and no borders or padding. It has
no margin-left set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="start"
    margin-left="1cm">
  This block has a margin-left of 1cm and no borders or padding. It has
no start-indent set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="start"
    start-indent="1cm"
    padding-left="4mm" border-left-width="1mm">
  This block has a start-indent of 1cm, padding-left of 4mm and border-left-width of 1mm. It has
no margin-left set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="start"
    margin-left="5mm"
    padding-left="4mm" border-left-width="1mm">
  This block has a margin-left of 5mm, padding-left of 4mm and border-left-width of 1mm. (Margin is outside the border rectangle.) It has
no start-indent set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>

      <!-- defines text title level 1-->
      <fo:block font-size="14pt"
            font-family="serif"
      font-weight="bold"
            line-height="16pt"
            space-after="6pt"
            text-align="center"
      break-before="page">
        End-indent tests
      </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="end"
    end-indent="1cm">
  This block has an end-indent of 1cm and no borders or padding. It has
no margin-right set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="end"
    margin-right="1cm">
  This block has a margin-right of 1cm and no borders or padding. It has
no end-indent set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="end"
    end-indent="1cm"
    padding-end="4mm" border-end-width="1mm">
  This block has an end-indent of 1cm, padding-end of 4mm and border-end-width of 1mm. It has
no margin-right set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="end"
    margin-right="5mm"
    padding-right="4mm" border-right-width="1mm">
  This block has a margin-right of 5mm, padding-right of 4mm and
border-right-width of 1mm. (Margin is outside the border rectangle.) It has
no end-indent set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>
      <fo:block font-size="12pt"
                font-family="sans-serif"
                line-height="1.25em"
                space-before="12pt"
                space-after="3pt"
                text-align="end"
    margin-right="5mm"
    padding-end="4mm" border-end-width="1mm">
  This block has a margin-right of 5mm, padding-end of 4mm and
border-end-width of 1mm. (Margin is outside the border rectangle.) It has
no end-indent set. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text. Here is some more text to fill out the block. Here is some more text to fill out the block. Here is some more text to fill out the block.
  </fo:block>

    </fo:flow>
  </fo:page-sequence>
</fo:root>