diff options
| author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-06-19 13:09:44 +0100 | 
|---|---|---|
| committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-06-19 13:09:44 +0100 | 
| commit | 2b1fea1b88e1e9be8e26a99e04230abc42e2f6f2 (patch) | |
| tree | 958b9322ff7577c161582fcda674700231ed0537 | |
| parent | Tidy script tags (diff) | |
| download | gentoobrowse-2b1fea1b88e1e9be8e26a99e04230abc42e2f6f2.tar.bz2 gentoobrowse-2b1fea1b88e1e9be8e26a99e04230abc42e2f6f2.tar.xz gentoobrowse-2b1fea1b88e1e9be8e26a99e04230abc42e2f6f2.zip | |
Use the same xsl:output settings across all filesgentoobrowse-2.1.8
| -rw-r--r-- | gentoobrowse/xslt/base.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/categories.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/category.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/error.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/form.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/home.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/news.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/newsitem.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/package.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/popular.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/search.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/use-detail.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/use.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/usegroup-detail.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/usegroup.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/user-home.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/user-signup.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/user-tracked.xslt | 2 | ||||
| -rw-r--r-- | gentoobrowse/xslt/user-verification.xslt | 2 | 
19 files changed, 19 insertions, 19 deletions
| diff --git a/gentoobrowse/xslt/base.xslt b/gentoobrowse/xslt/base.xslt index 8543283..34a899c 100644 --- a/gentoobrowse/xslt/base.xslt +++ b/gentoobrowse/xslt/base.xslt @@ -4,7 +4,7 @@  		xmlns:date="http://exslt.org/dates-and-times"  		exclude-result-prefixes="str date">  	<xsl:import href="form.xslt" /> -  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />  	<xsl:template name="humanDate">  		<xsl:param name="date"/> diff --git a/gentoobrowse/xslt/categories.xslt b/gentoobrowse/xslt/categories.xslt index 553abe5..6613a9f 100644 --- a/gentoobrowse/xslt/categories.xslt +++ b/gentoobrowse/xslt/categories.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Category List · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/category.xslt b/gentoobrowse/xslt/category.xslt index 117113c..b12c8a0 100644 --- a/gentoobrowse/xslt/category.xslt +++ b/gentoobrowse/xslt/category.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title><xsl:value-of select="/gentoo/category/name" /> Package List · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/error.xslt b/gentoobrowse/xslt/error.xslt index 0ba1530..955c6aa 100644 --- a/gentoobrowse/xslt/error.xslt +++ b/gentoobrowse/xslt/error.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Argh! Error! · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/form.xslt b/gentoobrowse/xslt/form.xslt index 5783d8f..27e9add 100644 --- a/gentoobrowse/xslt/form.xslt +++ b/gentoobrowse/xslt/form.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  		xmlns:common="http://exslt.org/common" extension-element-prefixes="common"> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />  	<xsl:template name="popup">  		<xsl:param name="form"/> diff --git a/gentoobrowse/xslt/home.xslt b/gentoobrowse/xslt/home.xslt index 0af2060..0cfcda9 100644 --- a/gentoobrowse/xslt/home.xslt +++ b/gentoobrowse/xslt/home.xslt @@ -3,7 +3,7 @@  		xmlns:date="http://exslt.org/dates-and-times"  		exclude-result-prefixes="date">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Newest ebuilds · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/news.xslt b/gentoobrowse/xslt/news.xslt index 4126aad..4783ae5 100644 --- a/gentoobrowse/xslt/news.xslt +++ b/gentoobrowse/xslt/news.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>News · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/newsitem.xslt b/gentoobrowse/xslt/newsitem.xslt index 6dcc613..1c4902e 100644 --- a/gentoobrowse/xslt/newsitem.xslt +++ b/gentoobrowse/xslt/newsitem.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title><xsl:value-of select="article/title" /> · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/package.xslt b/gentoobrowse/xslt/package.xslt index a93c5c7..a6c7289 100644 --- a/gentoobrowse/xslt/package.xslt +++ b/gentoobrowse/xslt/package.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />  	<xsl:variable name="category" select="/gentoo/categories/category[categoryid = /gentoo/package/categoryid]" />    <xsl:template name="head"> diff --git a/gentoobrowse/xslt/popular.xslt b/gentoobrowse/xslt/popular.xslt index 5e45e11..a9fe6e7 100644 --- a/gentoobrowse/xslt/popular.xslt +++ b/gentoobrowse/xslt/popular.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Popular Package List · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/search.xslt b/gentoobrowse/xslt/search.xslt index 98be980..0588a62 100644 --- a/gentoobrowse/xslt/search.xslt +++ b/gentoobrowse/xslt/search.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">    <xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Search results for "<xsl:value-of select="/gentoo/query"/>" · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/use-detail.xslt b/gentoobrowse/xslt/use-detail.xslt index d37b245..9a940dd 100644 --- a/gentoobrowse/xslt/use-detail.xslt +++ b/gentoobrowse/xslt/use-detail.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Packages with the <xsl:value-of select="/gentoo/usage/use[1]/use" /> use flag · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/use.xslt b/gentoobrowse/xslt/use.xslt index 8c8509d..148bb53 100644 --- a/gentoobrowse/xslt/use.xslt +++ b/gentoobrowse/xslt/use.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Use flag index · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/usegroup-detail.xslt b/gentoobrowse/xslt/usegroup-detail.xslt index af71785..fb5dab7 100644 --- a/gentoobrowse/xslt/usegroup-detail.xslt +++ b/gentoobrowse/xslt/usegroup-detail.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title><xsl:value-of select="/gentoo/group" /> options · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/usegroup.xslt b/gentoobrowse/xslt/usegroup.xslt index 9afafec..862106f 100644 --- a/gentoobrowse/xslt/usegroup.xslt +++ b/gentoobrowse/xslt/usegroup.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Use group index · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/user-home.xslt b/gentoobrowse/xslt/user-home.xslt index 0a8b856..614cc29 100644 --- a/gentoobrowse/xslt/user-home.xslt +++ b/gentoobrowse/xslt/user-home.xslt @@ -2,7 +2,7 @@  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  	xmlns:dyn="http://exslt.org/dynamic" extension-element-prefixes="dyn">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="header">  		<h1>Account Home</h1> diff --git a/gentoobrowse/xslt/user-signup.xslt b/gentoobrowse/xslt/user-signup.xslt index dc1f41a..609d597 100644 --- a/gentoobrowse/xslt/user-signup.xslt +++ b/gentoobrowse/xslt/user-signup.xslt @@ -1,7 +1,7 @@  <?xml version="1.0" encoding="UTF-8" ?>  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Sign up · Gentoo Browse</title> diff --git a/gentoobrowse/xslt/user-tracked.xslt b/gentoobrowse/xslt/user-tracked.xslt index 0b25658..726227f 100644 --- a/gentoobrowse/xslt/user-tracked.xslt +++ b/gentoobrowse/xslt/user-tracked.xslt @@ -2,7 +2,7 @@  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"  	xmlns:dyn="http://exslt.org/dynamic" extension-element-prefixes="dyn">  	<xsl:import href="base.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="header">  		<h1>Tracked packages</h1> diff --git a/gentoobrowse/xslt/user-verification.xslt b/gentoobrowse/xslt/user-verification.xslt index 837fb9a..5a4ec1e 100644 --- a/gentoobrowse/xslt/user-verification.xslt +++ b/gentoobrowse/xslt/user-verification.xslt @@ -2,7 +2,7 @@  <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">  	<xsl:import href="base.xslt" />  	<xsl:import href="form.xslt" /> -  <xsl:output encoding="utf-8" method="html" media-type="text/html" indent="yes" /> +  <xsl:output encoding="utf-8" method="html" version="5" media-type="text/html" indent="no" />    <xsl:template name="head">  		<title>Verification · Gentoo Browse</title> | 
