Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tidy up some references to Xalan
See ukf/ukf-meta#159.
iay committed Mar 22, 2018
1 parent 4f74fc5 commit bfd4ae2
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/extract_locs_edugain.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w

open(XML, xalanCall . "xsltproc extract_locs.xsl ../mdx/int_edugain/imported.xml|") || die "could not open input file";
open(XML, "xsltproc extract_locs.xsl ../mdx/int_edugain/imported.xml|") || die "could not open input file";
while (<XML>) {
chop;
if (/^https:\/\/([^\/:]+(:\d+)?)(\/|$)/) {
2 changes: 1 addition & 1 deletion build/extract_locs_noports.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl -w

open(XML, xalanCall . "xsltproc extract_locs.xsl ../mdx/uk/collected.xml|") || die "could not open input file";
open(XML, "xsltproc extract_locs.xsl ../mdx/uk/collected.xml|") || die "could not open input file";
while (<XML>) {
chop;
if (/^https:\/\/([^\/:]+)(:\d+)?(\/|$)/) {
2 changes: 1 addition & 1 deletion charting/mdui.pl
@@ -31,6 +31,6 @@
my $command = "xsltproc statistics_mdui.xsl cache/$month.xml";
# print "command is $command\n";
system($command); # || print "ignoring claimed failure in sub command\n";
# print "Xalan run on $fn\n";
# print "xsltproc run on $fn\n";
print "\n";
}
2 changes: 1 addition & 1 deletion charting/sizes.pl
@@ -49,7 +49,7 @@
my $command = "xsltproc --output temp.tmp just_ours.xsl $fn";
# print "command is $command\n";
system($command); # || print "ignoring claimed failure in sub command\n";
# print "Xalan run on $fn\n";
# print "xsltproc run on $fn\n";

#
# Process the reduced version of the archived file.

0 comments on commit bfd4ae2

Please sign in to comment.