aboutsummaryrefslogtreecommitdiffstats
path: root/meta-multimedia/README
blob: cbdc1b545dfc98e824c138f2d5b1b6f1a614fc05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This layer depends on:

URI: git://github.com/openembedded/oe-core.git
branch: master
revision: HEAD

URI: git://github.com/openembedded/meta-oe.git
layers: meta-oe, meta-ruby
branch: master
revision: HEAD

Send pull requests to openembedded-devel@lists.openembedded.org with '[meta-multimedia]' in the subject'

When sending single patches, please use something like:
'git send-email -M -1 --to openembedded-devel@lists.openembedded.org --subject-prefix=meta-multimedia][PATCH

You are encouraged to fork the mirror on github https://github.com/openembedded/meta-oe/ to share your patches, this is preferred for patch sets consisting of more than one patch. Other services like gitorious, repo.or.cz or self hosted setups are of course accepted as well, 'git fetch <remote>' works the same on all of them. We recommend github because it is free, easy to use, has been proven to be reliable and has a really good web GUI.

Main layer maintainers: Koen Kooi <koen@dominion.thruhere.net>
                        Martin Jansa <martin.jansa@gmail.com>
='paule/externalsrc-cleandirs-fixes'>paule/externalsrc-cleandirs-fixes OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/bitbake/doc/template/db-pdf.xsl
blob: 3dd065a57e64e5690544a6a75e667ab06a2d80b6 (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
<?xml version='1.0'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0">
  
  <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/fo/docbook.xsl" />

  <!-- check project-plan.sh for how this is generated, needed to tweak 
       the cover page     
    -->
  <xsl:include href="/tmp/titlepage.xsl"/> 

  <!-- To force a page break in document, i.e per section add a 
      <?hard-pagebreak?> tag.
  -->
 <xsl:template match="processing-instruction('hard-pagebreak')">
   <fo:block break-before='page' />
 </xsl:template>

  <!--Fix for defualt indent getting TOC all wierd..
      See http://sources.redhat.com/ml/docbook-apps/2005-q1/msg00455.html 
      FIXME: must be a better fix
    -->
  <xsl:param name="body.start.indent" select="'0'"/>
  <!--<xsl:param name="title.margin.left" select="'0'"/>-->

  <!-- stop long-ish header titles getting wrapped -->
  <xsl:param name="header.column.widths">1 10 1</xsl:param>

  <!-- customise headers and footers a little --> 

  <xsl:template name="head.sep.rule">
   <xsl:if test="$header.rule != 0">
     <xsl:attribute name="border-bottom-width">0.5pt</xsl:attribute>
     <xsl:attribute name="border-bottom-style">solid</xsl:attribute>
     <xsl:attribute name="border-bottom-color">#cccccc</xsl:attribute>
   </xsl:if>
  </xsl:template>

  <xsl:template name="foot.sep.rule">
    <xsl:if test="$footer.rule != 0">
     <xsl:attribute name="border-top-width">0.5pt</xsl:attribute>
     <xsl:attribute name="border-top-style">solid</xsl:attribute>
     <xsl:attribute name="border-top-color">#cccccc</xsl:attribute>
    </xsl:if>
  </xsl:template>

  <xsl:attribute-set name="header.content.properties">
    <xsl:attribute name="color">#cccccc</xsl:attribute>
  </xsl:attribute-set>

  <xsl:attribute-set name="footer.content.properties">
    <xsl:attribute name="color">#cccccc</xsl:attribute>
  </xsl:attribute-set>

 
  <!-- general settings -->

  <xsl:param name="fop1.extensions" select="1"></xsl:param>
  <xsl:param name="paper.type" select="'A4'"></xsl:param>
  <xsl:param name="section.autolabel" select="1"></xsl:param>
  <xsl:param name="body.font.family" select="'verasans'"></xsl:param>
  <xsl:param name="title.font.family" select="'verasans'"></xsl:param>
  <xsl:param name="monospace.font.family" select="'veramono'"></xsl:param>

</xsl:stylesheet>