Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch xml-import-export Excluding Merge-Ins
This is equivalent to a diff from 7160cbf09f to 4a97a95379
|
2008-02-05
| ||
| 19:19 | * doc/tkabber.html, doc/tkabber.xml, README: Fixed notice about external XML parser (replaced TclXML which diesnt' work by tDOM which works). * jabberlib/jabberlib.tcl: Eliminate use_external_tclxml variable. Now, to use tDOM a user should 'require' it in a config file. * chats.tcl, custom.tcl, datagathering.tcl, disco.tcl, ifaceck/iroster.tcl, messages.tcl, muc.tcl, plugins/chat/chatstate.tcl, plugins/chat/events.tcl, plugins/chat/histool.tcl, plugins/chat/logger.tcl, plugins/chat/nick_colors.tcl, plugins/general/headlines.tcl, plugins/general/message_archive.tcl, plugins/general/offline.tcl, plugins/general/rawxml.tcl, plugins/general/xcommands.tcl, plugins/roster/annotations.tcl, pubsub.tcl, register.tcl, search.tcl, userinfo.tcl: Removed usage of global variable font. check-in: 275916e5cd user: sgolovan tags: trunk | |
|
2008-02-02
| ||
| 14:43 | Copied http://svn.xmpp.ru/repos/tkabber/branches/xml-import-export branch to http://svn.xmpp.ru/repos/tkabber/branches/xml-import-export-serialized to try out ideas implementing proper sequence of roster restoration actions which should ensure proper restoration independent of the XML file layout. check-in: 2c68e3af56 user: khomoutov tags: xml-import-export-serialized | |
| 14:27 | roster/backup.tcl: Fixed a bug triggered on retrieving the roster items upon connecting. Closed-Leaf check-in: 4a97a95379 user: khomoutov tags: xml-import-export | |
| 02:08 | roster/backup.tcl: Implemented synchronous sending of roster contacts to the server (in one piece). This ensures that the roster is populated with contacts before sending out annotations. roster/TODO: Tasks updated. check-in: ec8be1be46 user: khomoutov tags: xml-import-export | |
|
2008-01-27
| ||
| 23:43 | Copied trunk HEAD at rev 1351 to the "xml-import-export" branch. This branch intended to keep the implementation of roster import/export in proper XML format with correct handling of conference bookmarks. check-in: 1c345640e2 user: khomoutov tags: xml-import-export | |
| 16:32 | * plugins/filetransfer/si.tcl: Registered filetransfer feature to include it into disco#info replies. check-in: 7160cbf09f user: sgolovan tags: trunk | |
|
2008-01-23
| ||
| 20:20 | * msgs/de.msg: Updated German translation (thanks to Roger Sondermann). check-in: b05c933a6f user: sgolovan tags: trunk | |
Changes to ifacetk/iroster.tcl.
| ︙ | |||
1902 1903 1904 1905 1906 1907 1908 | 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
grid $p.lregexp -row 1 -column 0 -sticky e
grid $p.regexp -row 1 -column 1 -sticky ew
focus $p.groupname
$w draw
}
|
| ︙ |
Changes to jabberlib/wrapper.tcl.
| ︙ | |||
219 220 221 222 223 224 225 | 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | - + + + + + + + + + + + + + + + + - - + + - - - + + + + + - + + + - - - - - - + + + + + + + + + - + + + + + + | \x1C " " \x1D " " \x1E " " \x1F " "} $text] } ###################################################################### # # This procedure converts (and returns) $xmldata to raw-XML # |
| ︙ | |||
386 387 388 389 390 391 392 | 413 414 415 416 417 418 419 420 | + |
#
# This proc returns stream trailer
#
proc wrapper:streamtrailer {} {
return "</stream:stream>"
}
# vim:ts=8:sw=4:sts=4:noet
|
Added plugins/roster/TODO.
|
Changes to plugins/roster/annotations.tcl.
| ︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | - + - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + |
hook::add connected_hook [namespace current]::annotations::request_notes
proc annotations::process_notes {connid res child} {
variable notes
if {$res != "OK"} return
|
| ︙ | |||
88 89 90 91 92 93 94 | 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | - + |
catch { unset notes($connid,note,$jid) }
}
}
store_notes $connid
}
|
| ︙ | |||
115 116 117 118 119 120 121 | 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | - - - + + + + + + + |
lappend notelist \
[jlib::wrapper:createtag note \
-vars $vars \
-chdata $notes($connid,note,$jid)]
}
}
|
| ︙ | |||
299 300 301 302 303 304 305 | 342 343 344 345 346 347 348 349 | + |
$n.text configure -state disabled
pack $sw -side top -fill both -expand yes
pack $n -fill both -expand yes
}
hook::add userinfo_hook [namespace current]::annotations::note_page 40
# vim:ts=8:sw=4:sts=4:noet
|
Added plugins/roster/backup.tcl.