From: <gb...@us...> - 2003-11-04 23:49:20
|
Update of /cvsroot/zxsync/zXSync/plugins/zaurus In directory sc8-pr-cvs1:/tmp/cvs-serv20082 Modified Files: zauruscalendar.py Log Message: changing custom properties from X-* to X-ZXSYNC-* in preparation for iCal merge Index: zauruscalendar.py =================================================================== RCS file: /cvsroot/zxsync/zXSync/plugins/zaurus/zauruscalendar.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** zauruscalendar.py 6 May 2003 17:32:13 -0000 1.2 --- zauruscalendar.py 4 Nov 2003 23:49:17 -0000 1.3 *************** *** 105,109 **** # only add the z plugin "category" field if it's not blank if( entry['categories'] ): ! vevent.addField("X-ZAURUS-CATEGORY",self.zaurus.categories[entry['categories']]) # get an ical style repetition rule and add it rrule = datebook.zToICALFreq(entry) --- 105,109 ---- # only add the z plugin "category" field if it's not blank if( entry['categories'] ): ! vevent.addField("X-ZXSYNC-ZAURUS-CATEGORY",self.zaurus.categories[entry['categories']]) # get an ical style repetition rule and add it rrule = datebook.zToICALFreq(entry) *************** *** 113,117 **** vevent.addField("LOCATION", entry['location']) if( entry.has_key('rinfo') ): ! vevent.addField("X-ZAURUS-RINFO", entry['rinfo']) eventList.append(vevent) return eventList --- 113,117 ---- vevent.addField("LOCATION", entry['location']) if( entry.has_key('rinfo') ): ! vevent.addField("X-ZXSYNC-ZAURUS-RINFO", entry['rinfo']) eventList.append(vevent) return eventList |