My favorites
▼
|
Sign in
pyicqt
ICQ transport for XMPP
Project Home
Downloads
Wiki
Issues
Source
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
151
attachment: pyicqt-0.8.1-legacyjit-compat.patch
(1006 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
diff -r 3743c2a93da9 src/xdb/legacyjittransport.py
--- a/src/xdb/legacyjittransport.py Sun Jan 04 16:59:49 2009 +0100
+++ b/src/xdb/legacyjittransport.py Sun Jan 04 17:02:03 2009 +0100
@@ -165,14 +165,26 @@
""" Gets a list of all settings for a user from the XDB. """
return {}
+ def getCSettingList(self, jabberID):
+ """ Gets a list of all custom settings for a user from the XDB. """
+ return {}
+
def getSetting(self, jabberID, variable):
""" Gets a user setting from the XDB. """
return None
+ def getCSetting(self, jabberID, variable):
+ """ Gets a custom user setting from the XDB. """
+ return None
+
def setSetting(self, jabberID, variable, value):
""" Sets a user setting in the XDB. """
pass
+ def setCSetting(self, jabberID, variable, value):
+ """ Sets a custom user setting in the XDB. """
+ pass
+
def getListEntry(self, type, jabberID, legacyID):
""" Retrieves a legacy ID entry from a list in
the XDB, based off the type and jabberID you provide.
Powered by
Google Project Hosting