TclXMPP

Check-in [b6a6c2174d]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Replace a bunch of control characters by spaces when create XML data to send.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: b6a6c2174d654f058729a95b3e0a83ebcb961627
User & Date: sgolovan 2016-01-11 15:18:43
Context
2019-10-11
04:59
Add -xml option to send a prepared XML stanza. check-in: dfa56c46f5 user: sergei tags: trunk
2016-01-11
15:18
Replace a bunch of control characters by spaces when create XML data to send. check-in: b6a6c2174d user: sgolovan tags: trunk
2016-01-07
10:59
Add the user's JID as cdata to the EXTERNAL SASL authentication response. This helps with prosody's mod_auth_ccert. Also, don't register the server part for the EXTERNAL SASL authentication mechaism. Added -cert option with a path to a client certificate. check-in: a2e1f16d3e user: sgolovan tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.






1
2
3
4
5
6
7





2016-01-07  Sergei Golovan  <sgolovan@nes.ru>

	* xmpp/sasl.tcl: Add the user's JID as cdata to the EXTERNAL SASL
	  authentication response. This helps with prosody's mod_auth_ccert.
	  Also, don't register the server part for the EXTERNAL SASL
	  authentication mechaism.

>
>
>
>
>







1
2
3
4
5
6
7
8
9
10
11
12
2016-01-11  Sergei Golovan  <sgolovan@nes.ru>

	* xmpp/xml.tcl: Replace a bunch of control characters by spaces when
	  create XML data to send.

2016-01-07  Sergei Golovan  <sgolovan@nes.ru>

	* xmpp/sasl.tcl: Add the user's JID as cdata to the EXTERNAL SASL
	  authentication response. This helps with prosody's mod_auth_ccert.
	  Also, don't register the server part for the EXTERNAL SASL
	  authentication mechaism.

Changes to xmpp/xml.tcl.

803
804
805
806
807
808
809
810








811
812
813
814
815
816
817
                        \x00 " " \x01 " " \x02 " " \x03 " "
                        \x04 " " \x05 " " \x06 " " \x07 " "
                        \x08 " "                   \x0B " "
                        \x0C " "          \x0E " " \x0F " "
                        \x10 " " \x11 " " \x12 " " \x13 " "
                        \x14 " " \x15 " " \x16 " " \x17 " "
                        \x18 " " \x19 " " \x1A " " \x1B " "
                        \x1C " " \x1D " " \x1E " " \x1F " "} $text]








}

# ::xmpp::xml::ElementStart --
#
#       A callback procedure which is called by a SAX parser when it finds
#       an XML element start.
#







|
>
>
>
>
>
>
>
>







803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
                        \x00 " " \x01 " " \x02 " " \x03 " "
                        \x04 " " \x05 " " \x06 " " \x07 " "
                        \x08 " "                   \x0B " "
                        \x0C " "          \x0E " " \x0F " "
                        \x10 " " \x11 " " \x12 " " \x13 " "
                        \x14 " " \x15 " " \x16 " " \x17 " "
                        \x18 " " \x19 " " \x1A " " \x1B " "
                        \x1C " " \x1D " " \x1E " " \x1F " "
                        \x80 " " \x81 " " \x82 " " \x83 " "
                        \x84 " " \x85 " " \x86 " " \x87 " "
                        \x88 " " \x89 " " \x8A " " \x8B " "
                        \x8C " " \x8D " " \x8E " " \x8F " "
                        \x90 " " \x91 " " \x92 " " \x93 " "
                        \x94 " " \x95 " " \x96 " " \x97 " "
                        \x98 " " \x99 " " \x9A " " \x9B " "
                        \x9C " " \x9D " " \x9E " " \x9F " "} $text]
}

# ::xmpp::xml::ElementStart --
#
#       A callback procedure which is called by a SAX parser when it finds
#       an XML element start.
#