summaryrefslogtreecommitdiff
path: root/postprocess/packconfig/macosx/macosx_menubar_modification.xsl
blob: 91c1d6fc25224c4634d37380329b3d2ce8875f19 (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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version='1.0' 
  xmlns:menu="http://openoffice.org/2001/menu" 
  xmlns:xsl='http://www.w3.org/1999/XSL/Transform' >
  
  <!-- identity template, does reproduce every IN node on the output -->
  <xsl:template match="node()|@*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>

  <!-- filtering template : removes the concerned nodes -->
  <!-- removes the separator just before the expected item -->
  <xsl:template match="menu:menuseparator[following-sibling::menu:menuitem[1]/@menu:id='.uno:Quit']"/>
  <!-- suppression of the Quit item -->
  <xsl:template match="menu:menuitem[@menu:id='.uno:Quit']"/>

  <xsl:template match="menu:menuseparator[following-sibling::menu:menuitem[1]/@menu:id='.uno:About']"/>
  <!-- suppression of the About item -->
  <xsl:template match="menu:menuitem[@menu:id='.uno:About']"/>

  <!-- suppression of the OptionsTreeDialog item -->
  <xsl:template match="menu:menuitem[@menu:id='.uno:OptionsTreeDialog']"/>

</xsl:stylesheet>