Skip to content

Commit d13c53f

Browse files
committed
fixed typo in content-type charset definition. This fixes #90.
1 parent 0a8e110 commit d13c53f

6 files changed

+6
-6
lines changed

xmlapi/checkuptodate.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/tclsh
22
source session.tcl
33

4-
puts "Content-Type: text/xml; charset=iso-8559-1"
4+
puts "Content-Type: text/xml; charset=iso-8859-1"
55
puts ""
66
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><result>"
77

xmlapi/devicelist.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/tclsh
22
source session.tcl
33

4-
puts "Content-Type: text/xml; charset=iso-8559-1"
4+
puts "Content-Type: text/xml; charset=iso-8859-1"
55
puts ""
66
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><deviceList>"
77

xmlapi/favoritelist.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/tclsh
22
source session.tcl
33

4-
puts "Content-Type: text/xml; charset=iso-8559-1"
4+
puts "Content-Type: text/xml; charset=iso-8859-1"
55
puts ""
66
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><favoriteList>"
77

xmlapi/functionlist.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/tclsh
22
source session.tcl
33

4-
puts "Content-Type: text/xml; charset=iso-8559-1"
4+
puts "Content-Type: text/xml; charset=iso-8859-1"
55
puts ""
66
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><functionList>"
77

xmlapi/mastervalue.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load tclrpc.so
33
source session.tcl
44
source common.tcl
55

6-
puts "Content-Type: text/xml; charset=iso-8559-1"
6+
puts "Content-Type: text/xml; charset=iso-8859-1"
77
puts ""
88
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><mastervalue>"
99

xmlapi/mastervaluechange.cgi

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load tclrpc.so
33
source session.tcl
44
source common.tcl
55

6-
puts "Content-Type: text/xml; charset=iso-8559-1"
6+
puts "Content-Type: text/xml; charset=iso-8859-1"
77
puts ""
88
puts -nonewline "<?xml version='1.0' encoding='ISO-8859-1' ?><mastervalue>"
99

0 commit comments

Comments
 (0)