File: ChangeLog

package info (click to toggle)
jppy 0.0.47-1.1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 7,188 kB
  • ctags: 4,558
  • sloc: ansic: 51,314; python: 5,949; yacc: 1,303; makefile: 735; sh: 555; sed: 10
file content (711 lines) | stat: -rw-r--r-- 22,620 bytes parent folder | download
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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
2008-08-13  Nicholas Piper  <nicholas@zanu.org.uk>

	* examples/import_vcard.py: vobject still appears to deal badly
	with wrapped lines in vcard files, so do the unwrapping ourselves

	* jppy/vcard.py (load_vcards): Address elements can be strings or
	list of strings, so cope with that correctly

2008-08-10  Nicholas Piper  <nicholas@zanu.org.uk>

	* examples/import_vcard.py: Add a simple example for importing a
	vcard that is in a file

2008-08-01  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/gui/contacts.py (pane.__init__): Cope when the sms section
	is missing from the ~/.jppyrc file. See Debian bug #493082

2008-07-25  Nicholas Piper  <nicholas@zanu.org.uk>

	* jpilot_plugins/jppy.c (plugin_startup): Remove deprecated
	init_pygobject() call

	* SConstruct: Set PYTHON_SHARED_LIB to a better filename for
	libpython - see Debian bug
	http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=491848

2008-06-28  Nicholas Piper  <nicholas@zanu.org.uk>

	* SConstruct: Add python_bin_module_prefix option to SCons, to
	decide where __jpilotmodule.so should be installed, to help Debian
	bug #488317

2008-06-04  Nicholas Piper  <nicholas@zanu.org.uk>

	* SConstruct: Avoid linking python modules to the python library
	(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445379)

	* jpilot_plugins/jppy.c (plugin_startup): Put dlopen() back -
	seems to be needed for init_pygobject() to work

2008-4-18  martin f. krafft  <madduck@madduck.net>

	* Remove libpython dependency (Ubuntu bug #184505, Debian bug
	#445379).

2008-02-04  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_events.c: Make ical generation a method on events.

2008-01-28  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/baseclasses.py (calendar.eventsFromDate): Try to work
	around not being able to compare dates, datetime w/timezone and
	datetime without timezone information.

	* examples/calendar_to_ical.py: Export task list

2008-01-26  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_events.c: Localize times into the
	(currently hardcoded) Europe/London timezone

	* examples/calendar_to_ical.py: Improvements for
	compatibility. Support alarms.

2008-01-24  Nicholas Piper  <nicholas@zanu.org.uk>

	* examples/calendar_to_ical.py: A quick example on exporting to an
	ical file

	* python_module_src/pytype_events.c: Fix byweekday repeats which
	include Sundays

2008-01-22  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/jpilot.py (databaseAccessor.__init__): Copy jpilot's
	default PDB files into ~/.jpilot/ if they are missing. This makes
	jppy more useful for new users

	* examples/email_weekly_calendar.py (eventsOnDay): Corect loop so
	we include events on first day

2007-10-24  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_basics.c: When writing QP, replace \n
	with CRLF before QP encoding

	* python_module_src/pytype_contacts.c: Add empty VCOrgUnitProp
	when writing vcard21, so that opensync doesn't conflict on it when
	the N73 adds an empty one. I think it's part of the vcard21 spec
	as required anyway.

	* libversit_src/vobject.c (writeBase64): Add back a blank line
	after base64 data - Nokia N74 and syncml-obex-client seem to need
	it

2007-07-16  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_contacts.c: N is mandatory in a vCard
	2.1, so use the organisation name or unique id as a last resort.

2007-07-12  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/gui/contacts.py (pane.updateDetailsView): Show an error
	when we can't decode the contact picture, rather than just failing
	to show any contact details at all

2007-07-04  martin f. krafft  <madduck@madduck.net>

	* tagging 0.0.43.

2007-07-02  Nicholas Piper  <nicholas@zanu.org.uk>

	* examples/email_weekly_calendar.py: List days with no events too

2007-06-26  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/gui/contacts.glade: accepts_tab=False for the street
	address edit box, makes it possible to tab to the next address
	field.

2007-06-24  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_basics.c: Move charset property
	requirement detection to here, and q-p items which have non-ASCII
	values. This helps when we want to show the vcard in a GUI, we
	don't have charset issues to deal with there.

	* libversit_src/vobject.c: Remove the code which was #ifdef 0'd
	out, to help clarity

	* python_module_src/pytype_contacts.c: Use quoted-printable and
	cp1252 charset for ADR entries in vCard generation

	* libversit_src/vobject.c (writeBase64): Remove some apparently
	unrequired (and faulty) \n writes

2007-05-24  martin f. krafft  <madduck@madduck.net>

	* scripts/jp_lookup: better handling of empty/incomplete records.
	* tagging 0.0.42.

2007-05-24  martin f. krafft  <madduck@madduck.net>

	* scripts/jp_*lookup: added new, more flexible address lookup script.
	* tagging 0.0.41.

2007-05-08  martin f. krafft  <madduck@madduck.net>

	* lbdb/m_palm_db6: don't use exec as the snippet is sourced.
	* tagging 0.0.40.

2007-05-06  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_contacts.c: Fix handling of writing
	quoted-printable in vcards. Mention the charset of NOTE.

	* libversit_src/vobject.c (writeProp): Fix apparent bug in
	library; doesn't notice we want quoted-printable when using
	ENCODING=QUOTED-PRINTABLE

	* SConstruct: 
	* jpilot_plugins/*.c (plugin_get_name): cope with tilde in the
	version string

2007-05-05  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/vcard.py (load_vcards): Allow to run without gtk module,
	which fails to load when DISPLAY isn't set. Disables picture
	support if gtk isn't available.

2007-05-04  martin f. krafft  <madduck@madduck.net>

	* lbdb/*: added lbdb interface scripts so contacts can be searched with
	lbdb.

2007-04-27  Nicholas Piper  <nicholas@zanu.org.uk>

	* examples/email_weekly_calendar.py: Create an example script to
	mail out a weekly calendar summary

2007-04-09  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/gui/: Rework button banks into toolbars.

	* jppy/gui/: Rework delete/new/revert logic. Hopefully clearer
	about when a new record is saved and when records are deleted
	leave the listview at the next record.

2007-04-02  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/vcard.py (load_vcards): Load IM details from vcards. Add a
	hack to load in the telephone number and address 'types' from
	vcard 2.1

	* python_module_src/pytype_contacts.c: Export IM details to vcards

2007-04-01  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/vcard.py (load_vcards): Add support for loading vcards
		(3.0, mainly.)

	* python_module_src/pytype_contacts.c: Don't export to vcard empty
	telephone numbers, email addresses or postal addresses

2007-03-31  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/gui/contacts.py (pane.on_changeImageButton): Use pygtk 2.8
	to avoid a temp file when loading a photo

	* python_module_src/pytype_contacts.c: Correction to exporting
		birthday date to vcards

	* jppy/gui/contacts.py (pane.on_contactsVcardResponse): Implement
	save-as feature for vcards

2007-03-08  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_basics.c: Corrections for 64bit pointer
	arithmetic

	* jpilot_plugins/jppy.c (plugin_startup): Add a bit more debug
	logging

2007-02-17  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_events.c: Correction to repeatWeekly,
	had the palm-to-dateutils mapping wrong so events turned up on the
	wrong day of the week.
	
	* jppy/gui/contacts.py (pane.on_contactsEmailButton): Add
	interpolation of the whole record with the 'emailer' command
	(note, the .jppyrc option changed from "email" to "emailer".

2007-02-13  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/, python_module_src/: Add AddressDB support

2007-02-12  Nicholas Piper  <nicholas@zanu.org.uk>

	* jppy/, python_module_src/: Add start of Calendar support

2007-02-10  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/jpilot.i: Support new contacts
	labels. Requires pilot-link 0.12.2.

	* gui/Example_GTK/contacts.py (pane.translateGUI): Create function
	to go through some glade widgets and relabel based on palm labels
	(pane.updateDetailsView): Switch to using new addressTypeLabels
	(pane.on_contactsPrintLabelorLetterButton): Switch to using new addressTypeLabels

2007-01-22  Nicholas Piper  <nicholas@zanu.org.uk>

	* python_module_src/pytype_contacts.c: Fix up ORG vs. OrgName
	vcard properties. Shouldn't have the leading extra ':' on iPods or
	Nokia phones any more.

2007-01-17  Nicholas Piper  <nick@nickpiper.co.uk>

	* jppy/gui/contacts.py (pane.on_contactsVcardResponse): Add
	support for sending vcard to bluetooth phones

2007-01-16  Nicholas Piper  <nick@nickpiper.co.uk>

	* python_module_src/pytype_contacts.c: add support for writing
	vcard birthdays and photos. Use ORGNAME instead of ORG.

2006-05-23  Nicholas Piper  <nick@nickpiper.co.uk>

	* gui/Example_GTK/base.py (pane.on_NewButton): Default to the
	shown category, if only one category is selected.

	* python_module_src/jpilot_helpers.c: Switch to returning unicode
	objects for Category names. This allows the GTK2 GUI to display
	them.

2005-08-23  Nicholas Piper  <nick@nickpiper.co.uk>

	* python_module_src/pytype_contacts.c: Fix long standing typo that
	caused segfault in repr(). No idea how that manged to stay so long!

	* gui/Example_GTK/contacts.py (pane.on_contactsAddLogResponse):
	Fix wrong use of contacts API

	* jppy/printers.py fix up log saving
	
2005-04-10  Nicholas Piper  <nick@nickpiper.co.uk>

	* gui/Example_GTK/gtk_models.py (jppyModel.on_iter_nth_child): 
	(jppyModel.on_iter_n_children): Corrected implementation when
	node=None

2005-04-08  Nicholas Piper  <nick@nickpiper.co.uk>

	* gui/Example_GTK/contacts.py
	(pane.on_contactsPrintLabelorLetterButton): Correct access to
	record attributes to the new API

2005-03-31  Nicholas Piper  <nick@nickpiper.co.uk>

	* SConstruct: Use a single file to keep all md5 sigs in

2004-03-30  Nicholas Piper  <nick@nickpiper.co.uk>

	* gui/Example_GTK/gtk_models.py (ContactsModel.__init__): Fixed
	Zip entrybox names

2004-03-29  Nicholas Piper  <nick@nickpiper.co.uk>

	* gui/Example_GTK/gtk_models.py (TasksModel.__init__): Make model column 6 have associated
	labels for category
	
2004-03-28  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jpilot_user.py: Fix the majodomo conduit rename.

	* src/jpilotpython.c (plugin_startup): Don't say Python is Ready,
	if it's not working.

	* python/jpilot_user.py (plugin_startup): fix indentation problem

	* configure.in: Bump to 0.0.23

	* Loads. GUI, ContactsDB support, etc. Removed AddressDB support.

2004-01-02  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/address_delete_notification_sync.py: created

2003-09-17  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jpilot_user.py (plugin_gui): pygtk2.0 support

	* configure.in (gtk_required_version): Pygtk2.0 support

	* src/jpilotpython.c (plugin_gui): Pygtk2.0 support

	* src/pytype_basics.h: Fix a possible memory leak (not
	decrementing reference count).

	* configure.in: Bump to 0.0.22, add support for selecting python
	version.

	* src/pytype_basics.h: use "palmos" unicode encoding

2003-08-28  Nicholas Piper  <nick@nickpiper.co.uk>

	* examples/add_list_of_contacts.py: Allow importing of mobile
	numbers, create a vcf dump as the same time as importing, option
	to load from external file.

2003-08-24  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/memodir_sync.py (MemoDirSync.pre_sync): Create the memo
	directories if they don't exist.

2003-08-20  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h (SETATTR_ON_OBJECT_BY_STRING): Limit most
	strings by default to 4096. Limit todo descriptions to 256.

	* python/mailinglist_sync.py: Made majordomo conduit work with
	mailman too. Still due some refactoring I think.

2003-08-02  Nicholas Piper  <nick@nickpiper.co.uk>

	* examples/print_weeklyreview: Add another example

2003-07-28  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jp_add_mail_reply_todo: Fix bitrot

	* python/__init__.py: Comment out the deprecated item interface

2003-07-27  Nicholas Piper  <nick@nickpiper.co.uk>

	* configure.in: Added --with-pisock-includes

2003-07-21  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/printers.py (todos_printer): add PDF creator for lists of
	todos

	* Makefile.am (test): add test target

	* src/jpilot.i: Support swig 1.3

	* src/Makefile.am (jpilot_wrap.c): Remove -dascii from swig
	command line, not support in 1.3. Change names of installed
	files slightly, to cope with new swig.

2003-07-19  Nicholas Piper  <nick@nickpiper.co.uk>

	* tests/ Added small test suite

	* src/jpilot.i: Terms used for searches were being lowercased,
	because I was changing the case of the string at the pointer
	passed in, rather than copying it first.

2003-06-23  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h
	(SETATTR_ON_OBJECT_BY_STRING_TO_INT_WITH_BOUNDS): Removed some
	debugging printfs

	* src/config.h: Created, to fix the problem with libplugin.h
	including "config.h"

2003-06-22  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jpilot_user.py (plugin_pre_sync_pre_connect): Added.

	* python/__init__.py (conduit.pre_sync_pre_connect): Added.

	* src/jpilotpython.c (plugin_pre_sync_pre_connect): Added.

	* src/pytype_basics.c: Fix bug introduced by not realising that
	palm categories collide with record archived bits.

	* src/pytype_basics.h
	(SETATTR_ON_OBJECT_BY_STRING_TO_INT_WITH_BOUNDS): Typo fix (put
	wrong error message buffer on the python error thing)

2003-05-03  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/proxy_sync.py (proxy_sync.sync): Added 0x32 to DLP
	function list. No idea what it does, so just ack it. (It is
	ReadNextRecInCategory).

2003-04-09  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/proxy_sync.py: Now works as a standalone program too

2003-03-08  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h (GETATTR_ON_OBJECT_BY_STRING): Return
	unicode objects, not strings anymore.
	(SETATTR_ON_OBJECT_BY_STRING): Try to accept unicode objects, or
	coerce strings and buffers into unicode.

2003-02-16  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/Makefile.am (JPOBJS): Also include category.o from jpilot
	for edit_cats() to resolve

	* src/jpilot.i: Switch to jp_logf() from jpilot_logf()

2003-02-15  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jpilot_user.py: Use plugin_setup() and added a couple
	more examples

2003-02-12  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/csv_sync.py: Created CSV exporter conduit

2003-01-13  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_contacts.c: Added vCard export

2003-01-03  Nicholas Piper  <nick@nickpiper.co.uk>

	* README.proxy_sync: Imported talk about Network Hotsync a little.

2002-12-17  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/bugzilla_sync.py: Record the URL of the Bug in the Todo
	Notes

2002-12-09  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/majordomo_sync.py (MajordomoSync.post_sync): Update to
	use the new contact.email attribute

	* src/pytype_contacts.c: Added .email and .mobile access methods

	* python/jp_add_todo (todo): Now accepts a String argument for the category

2002-12-08  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h (SETATTR_ON_OBJECT_BY_STRING_TO_DATE): .now
	on todo objects changing did not dirty the record

2002-12-07  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_contacts.c: Fixed lastname/firstname transpose on save problem.

2002-11-14  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h: Allow unsaved_changes to be unset from python

2002-10-13  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/bugzilla_sync.py: Added support for grabbing from
	multiple bugzilla profiles
	(bugzilla.pre_sync): Fixed bug where would try to continue even if
	users were not found in the bugzilla database
	(bugzilla.pre_sync): Write reporter login name, instead of ID
	number in the new Todo note.

2002-10-06  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_contacts.c: Had the lastname and firstnames the wrong
	way around in the sequence interface
	

2002-10-05  Nicholas Piper  <nick@nickpiper.co.uk>

	* configure.in: Bumped version to 0.0.16

	* python/proxy_sync.py: Remove explicit pisock calls for logging
	to Palms log, use new jpilot interface instead

	* python/bugzilla_sync.py (bugzilla.sync): Make entry in Palms log

	* python/mutt_alias.py (MuttAliasSync.sync): Make entry in Palms log

	* python/memodir_sync.py (MemoDirSync.sync): Make entry in Palms log

	* python/__init__.py (log): Added SD parameter, to indicate log
	entry should also be made on the Palm

	* python/bugzilla_sync.py (bugzilla.sync): Added log entry to the palms Sync Log

	* python/__init__.py (log_nocr): Added SD parameter, to indicate
	log entry should also be made on the Palm

	* python/__init__.py: Added pisock dependency

2002-10-03  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/jp_add_doc: Created

	* python/__init__.py: Add install_file function

	* python/jp_add_memo: Added Memo32 support back
			      Added category support

2002-10-02  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/jpilotpython.c (plugin_startup): Pass the plugin_startup
	event to python

	* python/proxy_sync.py (proxy_sync.log): prefix log entries with
	proxy_sync:

	* python/bugzilla_sync.py: Created.

	* src/pytype_basics.h (SETATTR_ON_OBJECT_BY_STRING_TO_DATE): Was
	attempting to intepret any setattr as setting .due attribute.
 
2002-10-01  Nicholas Piper  <nick@nickpiper.co.uk>

	* configure.in: Bumped version to 0.0.15

	* python/mutt_alias.py: Made prefix an __init__ argument

	* configure.in: Added support for --with-mxdatetime-includes

	* python/majordomo_sync.py: Removed prc.py dependancy

	* examples/: Created examples directory

	* src/pytype_contacts.c: Added "type1-5" interface to set the
	phone types

2002-09-30  Nicholas Piper  <nick@nickpiper.co.uk>

	* configure.in: Bumped version to 0.14

	* python/mutt_alias.py: Created, idea from Matthew Weier O'Phinney

	* latex_support/README: Added a base.tex and Makefile example,
	plus a fairly naff README

	* python/__init__.py: Added config file features

	* python/latex.py: Added to project

	* python/printers.py: Added to jpilot-python project

2002-09-29  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_basics.h (GETATTR_ON_OBJECT_BY_STRING): Return a zero
	length string for a field containing a NULL, rather than a None.

	* src/Makefile.am: Add dependency of pytype_basics.h to some rules
	so they rebuild correctly

	* python/__init__.py (conduit): Create class conduit

	* python/Makefile.am (install): Add majordomo_sync and
	memodir_sync to distribution

2002-09-28  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/__init__.py (log): Changed the order of the arguments, so
	that type can be given a default value

	* src/pytype_todos.c: Major refactor and error checking added.

	* src/jpilotpython.c (plugin_startup): Fix the call to
	PySys_SetArgv(), now passes the correct type.

	* src/pytype_basics.c: Created to old things refactored from
	memos/contacts.
	
	* src/pytype_memos.c: Also a major refactor and error checking
	added.

	* src/pytype_contacts.c: Very major refactor, and added full error
	checking (I think!)

	* src/jpilot.i: Raise IOError on not being able to read AppInfo
	(now also raises IOError on not being able to read database
	records, intead of TypeError)

	* src/pytype_memos.c: Added knowledge about maximum text lengths
	for MemoDB and Memo32DB. This completes Memo32 support.

2002-09-27  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/__init__.py: Support to read same-format data from any
	specified databases. This gives Maana support, and kind of Memo32
	support. Still need to deal with the different Memo-size
	constraints between Memo and Memo32.

	* src/jpilot.i: Large refactoring

	* src/libplugin.h: Resync with jpilot CVS

	* src/jpilotpython.c (plugin_search): Changed function declaration
	slightly (added const) to match jpilot CVS

	* src/jpilot.i: Added support for pytype_todos

	* src/pytype_todos.c: Created

	* src/pytype_memos.c: Small change to facilitate contacts using
	alternate databases.  Fix for some faulty realloc() calls. Added
	some NULL checking on them.

	* src/pytype_contacts.c: Small change to facilitate contacts using
	alternate databases.  Fix for some faulty realloc() calls. Added
	some NULL checking on them.

2002-09-13  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_contacts.c: Set an AttributeError exception when an
	invalid attribute is (attempted to be) set

	* src/pytype_memos.c: Set an AttributeError exception when an
	invalid attribute is (attempted to be) set

	* python/jp_add_memo (mail): Disabled --32 support for now, and
	moved to the new memo API style.

	* src/jpilot.i: Added code to deal with memos.

	* src/pytype_memos.[ch]: Created, deals with memos.

	* src/jpilot.i: Judd has renamed the parent/child pipes from
	pipe_in/pipe_out to pipe_to_parent, pipe_from_parent. I've added
	declarations for the new names so that things compile. It's still
	a bit of a hack though :-)
	
	* src/pytype_contacts.[ch]: unsaved_changes flag on contact
	objects, which is set to 1 whenever an attribute is changed. It's
	set to 0 when save() is called. It's read-only.
 
2002-09-08  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/pytype_contacts.c: Return "" instead of None if NULL string
	for an attribute

2002-09-06  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/proxy_sync.py (proxy_sync): Added DLP command 0x3c in the
	same way.

2002-09-06  Nicholas Piper  <nicholas@piamox7.haus>

	* python/proxy_sync.py (proxy_sync): Added DLP command 0x55. I
	thought a while ago that this was clie specific, but since
	upgrading to Palm Desktop 4.x, it's trying to send it to the
	pilot. Currently it's set to just ACK it..
 
2002-08-17  Nicholas Piper  <nicholas@piamox7.haus>

	* python/__init__.py: Added better support for reading back richer
	data and appinfo dictionaries from the C module

	* src/jpilot.i: Added w_jp_read_AddressDB() as a fast(er) way to
	get the AddressDB into python.

2002-08-16  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/jpilotpython.c: Disable search function for now, until it is
	more useful.

2002-06-30  Nicholas Piper  <nick@nickpiper.co.uk>

	* src/jpilotpython.c Starting to implement the search interface

2002-06-26  Nicholas Piper  <nick@nickpiper.co.uk>

	* python/__init__.py Make memo/memo32 packer throw exception if
	asked to save a record over 4/32 k