diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2022-04-07 09:24:26 -0400 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2022-04-07 09:32:00 -0400 |
commit | b90bf9d8a8aad714bdbb989813df1652a337d583 (patch) | |
tree | 7f264c24e7493a44f1cd913232f3069696c84342 /build-aux | |
parent | 8e9b2a7211e89604d11ebfe469f430da3a03c047 (diff) | |
download | tame-b90bf9d8a8aad714bdbb989813df1652a337d583.tar.gz tame-b90bf9d8a8aad714bdbb989813df1652a337d583.tar.bz2 tame-b90bf9d8a8aad714bdbb989813df1652a337d583.zip |
tame: build-aux/{csv2xml,tdat2xml}: Remove xml-stylesheet XML PI
These declarations are relics from when all XML files could be loaded in the
browser to render the Summary Page. Such a thing has not worked for many
years.
The previous commit will cause files produced by these scripts to be
regenerated.
I noticed this when reading source files using XIR.
DEV-10413
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/csv2xml | 2 | ||||
-rwxr-xr-x | build-aux/tdat2xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/csv2xml b/build-aux/csv2xml index bfd1359..d295ab2 100755 --- a/build-aux/csv2xml +++ b/build-aux/csv2xml @@ -62,7 +62,7 @@ BEGIN { # output package header printf \ - "<?xml-stylesheet type=\"text/xsl\" href=\"%1$srater/summary.xsl\"?>\n" \ + "<?xml version=\"1.0\"?>\n" \ "<package\n" \ " xmlns=\"http://www.lovullo.com/rater\"\n" \ " xmlns:c=\"http://www.lovullo.com/calc\"\n" \ diff --git a/build-aux/tdat2xml b/build-aux/tdat2xml index 7c0eada..4ad621b 100755 --- a/build-aux/tdat2xml +++ b/build-aux/tdat2xml @@ -19,7 +19,7 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ ?> -<?xml-stylesheet type="text/xsl" href="../../rater/summary.xsl"?> +<?xml version="1.0"?> <lv:package xmlns:lv="http://www.lovullo.com/rater" xmlns:c="http://www.lovullo.com/calc" |