Ignore:
Timestamp:
01/19/2024 09:39:35 PM (5 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
12.1, ken/TL2024, lazarus, plabs/newcss, rahul/power-profiles-daemon, trunk, xry111/llvm18
Children:
ab4fdfc
Parents:
c8be252
git-author:
Pierre Labastie <pierre.labastie@…> (01/19/2024 09:34:28 PM)
git-committer:
Pierre Labastie <pierre.labastie@…> (01/19/2024 09:39:35 PM)
Message:

Remove all "&#" characters and replace with utf-8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/dump-commands.xsl

    rc8be252 ra804944  
    1 <?xml version="1.0"?>
     1<?xml version="1.0" encoding="UTF-8"?>
    22<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    33    xmlns:exsl="http://exslt.org/common"
     
    4949        <xsl:when test="@role = 'nodump'"/>
    5050        <xsl:when test="@role = 'root'">
    51           <xsl:text>&#xA;</xsl:text>
    52           <xsl:text># Run this as root</xsl:text>
     51          <xsl:text>
     52# Run this as root</xsl:text>
    5353          <xsl:apply-templates select="userinput"/>
    54           <xsl:text># End root commands</xsl:text>
    55           <xsl:text>&#xA;</xsl:text>
     54          <xsl:text># End root commands
     55</xsl:text>
    5656        </xsl:when>
    5757        <xsl:otherwise>
     
    6363
    6464  <xsl:template match="userinput">
    65     <xsl:text>&#xA;</xsl:text>
     65    <xsl:text>
     66</xsl:text>
    6667    <xsl:if test=".//replaceable">
    6768      <xsl:text># This block must be edited to suit your needs.</xsl:text>
    6869    </xsl:if>
    69     <xsl:text>&#xA;</xsl:text>
     70    <xsl:text>
     71</xsl:text>
    7072    <xsl:apply-templates/>
    71     <xsl:text>&#xA;</xsl:text>
     73    <xsl:text>
     74</xsl:text>
    7275    <xsl:if test=".//replaceable">
    7376      <xsl:text># End of editable block.</xsl:text>
    7477    </xsl:if>
    75     <xsl:text>&#xA;</xsl:text>
     78    <xsl:text>
     79</xsl:text>
    7680  </xsl:template>
    7781
Note: See TracChangeset for help on using the changeset viewer.