Tkabber

Check-in [3b4cf2fc81]
Login

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

Overview
Comment:Fixed the attached users dialogs clash.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 3b4cf2fc81c6c0d1450269336a74cd3b22593f3a
User & Date: sgolovan 2016-01-25 10:50:41
Context
2016-01-25
11:32
Show only users missing in roster when displaying add users dialog. check-in: 80f5c7520a user: sgolovan tags: trunk
10:50
Fixed the attached users dialogs clash. check-in: 3b4cf2fc81 user: sgolovan tags: trunk
2016-01-24
09:18
Fixed sending the text status selected in the corresponding combobox. check-in: 7fef16eb59 user: sgolovan tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to ChangeLog.





1
2
3
4
5
6
7




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

	* ifacetk/iface.tcl, tk/bwidget.tcl: Fixed sending the text status
	  selected in the corresponding combobox.

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

>
>
>
>







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

	* plugins/roster/rosterx.tcl: Fixed the attached users dialogs clash.

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

	* ifacetk/iface.tcl, tk/bwidget.tcl: Fixed sending the text status
	  selected in the corresponding combobox.

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

Changes to plugins/roster/rosterx.tcl.

40
41
42
43
44
45
46


47
48
49
50
51
52
53
54
55
56
57
58

###############################################################################

proc rosterx::process_x_iq {xlib from stanza args} {
    set choices {}
    set balloons {}
    global recv_uc


    ::xmpp::xml::split $stanza tag xmlns attrs cdata subels
    foreach c $subels {
        set choices [concat $choices [process_item $c]]
    }
    set d .dlg
    CbDialog $d [::msgcat::mc "Attached user:"] \
            [list "Ok" \
            [list [namespace current]::process_item_selection $d $xlib $from] \
            [::msgcat::mc "Cancel"] [list destroy $d]] \
            recv_uc $choices $balloons

    return {result ""}







>
>




|







40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60

###############################################################################

proc rosterx::process_x_iq {xlib from stanza args} {
    set choices {}
    set balloons {}
    global recv_uc
    variable dlg

    ::xmpp::xml::split $stanza tag xmlns attrs cdata subels
    foreach c $subels {
        set choices [concat $choices [process_item $c]]
    }
    set d .dlg[incr dlg]
    CbDialog $d [::msgcat::mc "Attached user:"] \
            [list "Ok" \
            [list [namespace current]::process_item_selection $d $xlib $from] \
            [::msgcat::mc "Cancel"] [list destroy $d]] \
            recv_uc $choices $balloons

    return {result ""}