From: <luc...@us...> - 2003-08-15 01:18:07
|
Update of /cvsroot/zxsync/zXSync/plugins/osx In directory sc8-pr-cvs1:/tmp/cvs-serv31025 Modified Files: ipodplugin.py Log Message: - support deleteField-notification - support changeField-notification Index: ipodplugin.py =================================================================== RCS file: /cvsroot/zxsync/zXSync/plugins/osx/ipodplugin.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** ipodplugin.py 13 Jul 2003 08:55:19 -0000 1.6 --- ipodplugin.py 14 Aug 2003 20:07:24 -0000 1.7 *************** *** 212,215 **** --- 212,231 ---- + def notifyChangeField(self, newField, oldField): + """ + Called to notify the plugin when a field is about to be changed in + zXSync's internal pool of data for this application. + """ + return contacts.notifyChangeField(newField, oldField) + + + def notifyDeleteField(self, field, parentEntry): + """ + Called to notify the plugin when a field is about to be deleted in + zXSync's internal pool of data for this application. + """ + return contacts.notifyDeleteField(field, parentEntry) + + class iPodDevice(Device): """ |