aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/MAINTAINERS
blob: 64e920be5a8b6edc83cf20f579f4cdcd2253fbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
This file contains a list of maintainers for the meta-networking layer.

Please submit any patches against meta-networking to the OpenEmbedded
development mailing list (openembedded-devel@lists.openembedded.org) with
'[meta-networking][hardknott]' in the subject.

When sending single patches, please use something like:

   git send-email -1 -M \
        --to openembedded-devel@lists.openembedded.org \
        --subject-prefix=meta-networking][hardknott][PATCH

hardknott Maintainer:      Armin Kuster <akuster808@gmail.com>
tion> OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/doc/template/formal.object.heading.xsl
blob: 4f3900d165f227b960f4645636435d3090d697d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:d="http://docbook.org/ns/docbook"
  xmlns="http://www.w3.org/1999/xhtml"
  exclude-result-prefixes="d">
  
  <xsl:template name="formal.object.heading">
    <xsl:param name="object" select="."/>
    <xsl:param name="title">
      <xsl:apply-templates select="$object" mode="object.title.markup">
        <xsl:with-param name="allow-anchors" select="1"/>
      </xsl:apply-templates>
    </xsl:param>
    <p class="title">
      <b><xsl:copy-of select="$title"/></b>
      <xsl:call-template name="permalink">
        <xsl:with-param name="node" select="$object"/>
      </xsl:call-template>
    </p>
  </xsl:template>
</xsl:stylesheet>