Overview
Comment: | Add XMPPContact{,Manager} for tracking contacts |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fc38b1287a3f544c7ea64ba9b6c2ec15 |
User & Date: | florob@babelmonkeys.de on 2013-01-27 17:01:08 |
Other Links: | manifest | tags |
Context
2013-01-29
| ||
19:46 | Implement -initWithElement: for XMPPPresence check-in: d75ffa4c2e user: florob@babelmonkeys.de tags: trunk | |
2013-01-27
| ||
17:01 | Add XMPPContact{,Manager} for tracking contacts check-in: fc38b1287a user: florob@babelmonkeys.de tags: trunk | |
2013-01-18
| ||
23:38 | Fix Makefile check-in: 0bee074775 user: florob@babelmonkeys.de tags: trunk | |
Changes
Modified src/Makefile from [e0db257764] to [0633fdc12c].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | include ../extra.mk SHARED_LIB = ${OBJXMPP_SHARED_LIB} STATIC_LIB = ${OBJXMPP_STATIC_LIB} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = XMPPAuthenticator.m \ XMPPCallback.m \ XMPPConnection.m \ XMPPExceptions.m \ XMPPEXTERNALAuth.m \ XMPPIQ.m \ XMPPJID.m \ XMPPJSONFileStorage.m \ XMPPMessage.m \ XMPPMulticastDelegate.m \ | > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | include ../extra.mk SHARED_LIB = ${OBJXMPP_SHARED_LIB} STATIC_LIB = ${OBJXMPP_STATIC_LIB} LIB_MAJOR = 0 LIB_MINOR = 0 SRCS = XMPPAuthenticator.m \ XMPPCallback.m \ XMPPConnection.m \ XMPPContact.m \ XMPPContactManager.m \ XMPPExceptions.m \ XMPPEXTERNALAuth.m \ XMPPIQ.m \ XMPPJID.m \ XMPPJSONFileStorage.m \ XMPPMessage.m \ XMPPMulticastDelegate.m \ |
︙ | ︙ |
Modified src/ObjXMPP.h from [cd1e1205a2] to [cf74b69799].
︙ | ︙ | |||
30 31 32 33 34 35 36 | #import "XMPPMessage.h" #import "XMPPPresence.h" #import "XMPPRosterItem.h" #import "XMPPRoster.h" #import "XMPPStreamManagement.h" | > > > | 30 31 32 33 34 35 36 37 38 39 | #import "XMPPMessage.h" #import "XMPPPresence.h" #import "XMPPRosterItem.h" #import "XMPPRoster.h" #import "XMPPStreamManagement.h" #import "XMPPContact.h" #import "XMPPContactManager.h" |
Added src/XMPPContact.h version [e36b41f1a9].
Added src/XMPPContact.m version [ba595101e0].
Added src/XMPPContactManager.h version [f32fa83767].
Added src/XMPPContactManager.m version [c51574c9fb].