Changeset 30732c6a for BLFS/xsl


Ignore:
Timestamp:
08/31/2019 12:47:22 PM (5 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs-more, legacy, trunk
Children:
974fe35
Parents:
0a0b609
Message:

Process layout replaceable

Location:
BLFS/xsl
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • BLFS/xsl/gen_config.xsl

    r0a0b609 r30732c6a  
    6363            mandatory. The @modfier is honoured if present.
    6464
     65config  KBLAYOUT
     66        string "Keyboard layout (to be used in GDM)"
     67        default "us"
     68        help
     69            Used in GDM for setting the login screen keyboard layout.
     70            See the GDM page in the book for what to put into this field
     71
    6572config  SUDO
    6673        bool "Build as User"
  • BLFS/xsl/process-replaceable.xsl

    r0a0b609 r30732c6a  
    5555
    5656<!--===================================================================-->
     57<!-- keyboard layout for the gdm page (as of BLFS 9.0) -->
     58  <xsl:param name="xkblayout" select="'us'"/>
     59
     60<!--===================================================================-->
    5761<!-- the main template: to be adjusted depending on the book -->
    5862  <xsl:template match="replaceable">
     
    8589      <xsl:when test="contains(string(),'@modifier')">
    8690        <xsl:copy-of select="$lang-modifier"/>
     91      </xsl:when>
     92<!-- keyboard layout for X/waylang (only GDM as of BLFS-9.0) -->
     93      <xsl:when test="contains(string(),'layout')">
     94        <xsl:copy-of select="$xkblayout"/>
    8795      </xsl:when>
    8896<!-- At several places, the number of jobs is given as "N" in a replaceable
Note: See TracChangeset for help on using the changeset viewer.