File: ChangeLog

package info (click to toggle)
gedit 2.8.3-4sarge1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,844 kB
  • ctags: 2,667
  • sloc: ansic: 31,450; xml: 16,625; sh: 10,872; makefile: 588
file content (871 lines) | stat: -rw-r--r-- 25,135 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
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
2005-02-12  Paolo Maggi  <paolo@gnome.org>

	Back-ported from CVS HEAD
	
	Fixes bug #144894 (Ortographic corrector doesn't work in commented
	lines): the problem was that the highlight tag had a too low priority
	 
	* spell/gedit-automatic-spell-checker.c (tag_table_changed): new method
	(gedit_automatic_spell_checker_new): set the priority and connect the
	"changed" signal.
	(gedit_automatic_spell_checker_free)
	(gedit_automatic_spell_checker_free_internal)
	(gedit_automatic_spell_checker_detach_view): fixed a crash that happens
	if you remove automatic spell checker and the press Shift+F10

	* time/time.c (get_time) (create_model) (create_formats_list)
	(time_world_cb) (get_format_from_list): fix crash when the format in 
	gconf is not valid. 

2004-11-25  Paolo Borelli  <pborelli@katamail.com>

	* taglist/gedit-taglist-plugin-window.c: do not leak tooltips.

2004-10-17  Paolo Borelli  <pborelli@katamail.com>

	* shell_output/shell_output.c: use proper help section.

2004-09-15  Vinay M R  <vinay.mandyakoppal@wipro.com>

	* time/time.c: Help invocation for "Insert date and time" is
	implemented. Fixes bug #152686. 

2004-09-14  Vinay M R  <vinay.mandyakoppal@wipro.com>

	* sort/sort.c: Pass correct section-id for displaying help.
	Fixes bug #152586.

2004-08-30  Paolo Borelli  <pborelli@katamail.com>

	* spell/gedit-automatic-spell-checker.c: fix suggestions list
	in popup menu when using the Shift+F10 shortcut (#149475).

2004-08-30  Paolo Borelli  <pborelli@katamail.com>

	* spell/gedit-spell-checker-dialog.c:
	* spell/gedit-spell-language-dialog.c: handle double clicks
	on list items (bugs #149400 and #149761).

2004-08-16  Paolo Borelli  <pborelli@katamail.com>

	* spell/gedit-spell-checker.c: patch from J.H.M. Dassen that
	adds some new languages (bug #149983).

2004-08-07  Paolo Borelli  <pborelli@katamail.com>

	* shell_output/shell_output.c: fix typo, s/occured/occurred.

2004-07-19  Paolo Maggi  <paolo.maggi@polito.it>

	* changecase/.cvsignore: added

2004-04-05  Paolo Borelli  <pborelli@katamail.com>

	* all plugins: use the same style in plugins descriptions.
	* all plugins: do not distribute generated desktop file.

2004-04-05  Paolo Borelli  <pborelli@katamail.com>

	* changecase/* : add a change case plugin.

2004-03-27  Paolo Borelli  <pborelli@katamail.com>

	* indent/indent.c (indent_cb): do not indent empty lines.

2004-03-27  Paolo Maggi  <paolo.maggi@polito.it>

	* taglist/gedit-taglist-plugin-window.c (taglist_window_show):
	sets the window type to UTILITY (patch by Rob Adams
	<readams@hmc.edu>)

2004-03-09  Paolo Maggi  <paolo.maggi@polito.it>

	* docinfo/Makefile.am:
	* indent/Makefile.am:
	* sample/Makefile.am:
	* shell_output/Makefile.am:
	* sort/Makefile.am:
	* spell/Makefile.am:
	* taglist/Makefile.am:
	* time/Makefile.am: added $(plugin_DATA) to CLEANFILES

2004-03-05  Paolo Maggi  <paolo.maggi@polito.it>

	Fixes bug #104950 (Right-click unselects text if you click 
	outside the selection)

	* spell/gedit-automatic-spell-checker.c (check_range)
	(get_word_extents_from_mark) (add_to_dictionary) (ignore_all)
	(replace_word) (populate_popup) (button_press_event)
	(gedit_automatic_spell_checker_new)
	(gedit_automatic_spell_checker_attach_view): Change behavior on a 
	right click so that cutting/copying with the mouse works again.
	Patch by Nathan Fredrickson <nathan@silverorange.com> backported 
	from gtkspell 2.5.0

2004-03-05  Albert Chin-A-Young  <china@thewrittenword.com>

	* time/Makefile.am:
	* spell/Makefile.am:
	* taglist/Makefile.am:
	* sort/Makefile.am:
	* docinfo/Makefile.am:
	* indent/Makefile.am: 
	* sample/Makefile.am:
	* shell_output/Makefile.am:
        Forgot to add some files from po/POTFILES.in into distribution

2004-03-03 Thomas Voß	<tommy_vossy@web.de>

	* spell/gedit-automatic-spell-checker.c(tag_highlight): Use 
	PANGO_UNDERLINE_ERROR, remove red color from highlighted text.

2004-02-24  Paolo Maggi  <paolo.maggi@polito.it> 

	[ gedit 2.5.90 released ]

2004-02-24  Paolo Maggi  <paolo.maggi@polito.it>

	* indent/indent.c(update_ui):
	* sample/sample.c (update_ui):
	* sort/sort.c (update_ui):
	* spell/spell.c (update_ui):
	* time/time.c (update_ui): disable the menu items when
	the gedit state is not NORMAL.

2004-02-21  Paolo Borelli  <pborelli@katamail.com>

	* shell_output/shell_output.glade2: use_filechooser=true.

2004-02-06  Mark McLoughlin  <mark@skynet.ie>

	* docinfo/Makefile.am,
	  indent/Makefile.am,
	  sample/Makefile.am,
	  shell_output/Makefile.am,
	  sort/Makefile.am,
	  spell/Makefile.am,
	  taglist/Makefile.am,
	  time/Makefile.am: use $(WARN_CFLAGS) and $(DISABLE_DEPRECATED_CFLAGS)

2004-01-15  Paolo Maggi  <paolo.maggi@polito.it> 

	[ gedit 2.5.3 released ]

2003-11-23  Paolo Maggi  <paolo.maggi@polito.it>

	* */Makefile.am: Disable deprecates only in maintainer mode

2003-10-21  Paolo Maggi  <paolo.maggi@polito.it> 

	* spell/Makefile.am: don't distribute generated files (fixes
	bug #103846)

2003-10-21  Paolo Maggi  <paolo.maggi@polito.it>

	* shell_output/shell_output.c (display_error_dialog): s/occurs/occured
	(fixes bug #117360 and bug #115633, patch by Dafydd Harries 
	<daf@parnassus.ath.cx>)

	* taglist/gedit-taglist-plugin-window.c (taglist_window_show):
	s/Tag Groups Combo/Available Tag Lists and s/Tags Name List/Tags

2003-10-20  Paolo Maggi  <paolo.maggi@polito.it>

	* shell_output/Makefile.am (INCLUDES): remove -DGTK_DISABLE_DEPRECATED
	and -DGNOME_DISABLE_DEPRECATED

	* taglist/Makefile.am (INCLUDES): remove -DGTK_DISABLE_DEPRECATED

2003-10-16  Paolo Maggi  <paolo.maggi@polito.it>

	* shell_output/shell_output.c (handle_command_output): 
	on some systems EOF is indicating by G_IO_IN and a 
	zero-length read, and not by G_IO_HUP (fixes bug #121377,
	thanks to Laurent Vivier <Laurent.Vivier@bull.net>)

	* shell_output/shell_output.c (handle_command_output): 
	handle the 'pos' return value from g_io_channel_read_line() 
	correctly (fixes bug #124052, patch by 
	Owen Taylor <otaylor@redhat.com>)

2003-09-30  Paolo Maggi  <paolo.maggi@polito.it>

	* spell/gedit-spell-checker.c: the spell plugin now 
	supports Ukranian. Fixes bug #122611, patch by 
        Maxim Dzumanenko <mvd@mylinux.com.ua>

2003-09-23  Leena Gunda  <leena.gunda@wipro.com>
 
        * time/time.c (help_button_pressed):
        Pass correct section-id for displaying help.
        Fixes bug #123007.

2003-09-09  Paolo Maggi  <paolo.maggi@polito.it>

	[ gedit 2.4.0 released ]

2003-06-30  Paolo Maggi  <paolo.maggi@polito.it>

	* indent/Makefile.am:
	* indent/indent.c:
	* shell_output/Makefile.am:
	* shell_output/shell_output.c:
	* sort/Makefile.am:
	* sort/sort.c:
	* taglist/Makefile.am:
	* taglist/gedit-taglist-plugin-parser.c:
	* taglist/gedit-taglist-plugin-window.c:
	* taglist/gedit-taglist-plugin.c: Make it pass "make distcheck"

2003-06-09  Paolo Maggi  <paolo.maggi@polito.it>

	* taglist/gedit-taglist-plugin-window.c (insert_tag): Apply tags to 
	selected text (bug #105113)

2003-06-06  Eric Ritezel <eisenwulf@inductiveart.net>

	* indent/indent.c (indent_cb/unindent_cb): address indentation issues
	involving block selection (#113341)

2003-06-05  Eric Ritezel <eisenwulf@inductiveart.net>

	* spell/spell.c (change_all_cb): modified for bitfield options solution to
	#99730 (search backwards option) suggestion 5: "need extensible signature"

2003-06-04  Paolo Maggi  <paolo.maggi@polito.it>

	* docinfo/docinfo.c:
	* docinfo/docinfo.glade2: removed the frame (bug #101276)

2003-05-23  Eric Ritezel <eisenwulf@inductiveart.net>

	* indent/indent.c (indent_cb): fixed #113350
	(indent ignores tabs/spaces preference)

2003-04-17  Paolo Maggi  <paolo.maggi@polito.it>

	* taglist/gedit-taglist-plugin-window.c (tag_list_window_key_press_event_cb): 
	fixed bug #108703 (Shift+F8 does not close Taglist if focus is 
	on Taglist window)

2003-04-18  Paolo Maggi  <paolo.maggi@polito.it>

	Fixed bug #108708 - Automatic spell checker highlights unknown words already 
	ignored in manual spell check

	* spell/gedit-automatic-spell-checker.c (add_to_dictionary)
	(ignore_all): do not call remove_tag_to_word (new GeditSPellChecker signals are
	used to get the same result)
	(add_word_signal_cb)(set_language_cb)(clear_session_cb): new callbacks
	(gedit_automatic_spell_checker_new): connect the new GeditSpellChecker signals
	(gedit_automatic_spell_checker_free_inter): disconnect new signals

	* spell/gedit-spell-checker-dialog-marshal.list: added VOID:STRIN,INT, VOID:POINTER 
	and VOID:VOID

	* spell/gedit-spell-checker.[ch]: added add_word_to_session, add_word_to_personal,
	set_language and clear_session signals
	(get_lang_code): removed
	(get_language_from_abrev): new static function
	(lazy_init): set current language from aspell config information when possible
	( gedit_spell_checker_set_language):
	(gedit_spell_checker_add_word_to_personal):
	(gedit_spell_checker_add_word_to_session):
	(gedit_spell_checker_clear_session): emit the appropriate signal
	(gedit_spell_checker_get_language): call lazy_init


2003-04-16  Paolo Maggi  <paolo.maggi@polito.it>

	* spell/Makefile.am: don't compile preload.[ch]

2003-04-16  James Willcox  <jwillcox@gnome.org>

	* browse/*:
	* diff/*:
	* email/*:
	* indent/*:
	* reverse/*:
	* shell_output/*:
	* sort/*:
	* taglist/*:

	Removed.  These were moved to gedit-plugins a long time ago.

2003-04-16  Paolo Maggi  <paolo.maggi@polito.it>

	* spell/gedit-automatic-spell-checker.c: removed unused commented code
	(gedit_automatic_spell_checker_new): set the priority of tag_highlight

2003-01-21  Paolo Maggi  <paolo.maggi@polito.it>

	* diff/diff.c (diff_execute): use g_shell_quote, 
	use gnome_vfs_get_uri_from_local_path instead of eel_make_uri_canonical,
	remove dead code.

2003-01-15  Paolo Maggi  <paolo.maggi@polito.it>

	* sample/sample.c (init): removed dead code

2002-12-31  Christian Neumair  <chris@gnome-de.org>

	* All plugins (*.gedit-plugin.in): Don't mark Author and Copyright
	fields for translation, replaced "and" in A & C fields by ",",
	replaced "(C)" by a non-escaped Copyright character.

2002-12-29  Paolo Maggi  <paolo.maggi@polito.it>

	All plugins: 
	mv plugin_name.gedit-plugin.in plugin_name.gedit-plugin.desktop.in 

2002-12-25  Christian Neumair  <chris@gnome-de.org>

	* sample/sample.c, email/email.c: Fixed copyright strings.

2002-12-09  Paolo Maggi  <paolo.maggi@polito.it>

	* sort/sort.c:
	* sort/sort.glade2: fixed according to ui-review

	* spell/spell.c: fixed according to ui-review

	* docinfo/docinfo.c: s/Word Cound/Document Statistics

	* diff/diff.c: s/Compare two files.../Compare Files in the window
	title of the compare dialog

2002-12-09  Paolo Maggi  <paolo.maggi@polito.it>

	* diff/diff.c: moved Compare menu entry to the Tools menu

	* shell_output/shell_output.c: s/Execute Shell Command.../Run Command...,
	changed dialog title to "Run Command", removed icon from the dialog, 
	
	* shell_output/shell_output.glade2: s/Capture the command output/Show results
	in Output Window, s/Shell command/Command

	* sort/sort.c: moved Sort menu entry to the Edit menu

	* taglist/gedit-taglist-plugin-window.c: removes rules hint, removes column header

	* time/time.c:s/Insert Date\Time/Insert Date and Time
	(create_formats_list): removes rules hint

	* time/time.glade2: set dialog title to "Insert Date and Time"

2002-11-27  Paolo Maggi  <maggi@athena.polito.it>

	* spell/gedit-spell-checker-dialog.c (gedit_spell_checker_dialog_set_completed):
	fixed bug #99654

	* time/time.c: fixed bug #99647; save state of the chose format dialog

2002-11-21  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am (DIST_SUBDIRS)(SUBDIRS): removed email

	All plugins: use the new improved plugin engine.

2002-11-09  Paolo Maggi  <maggi@athena.polito.it>

	* time/time.c: now the chose format dialog really works

2002-11-03  Paolo Maggi  <maggi@athena.polito.it>

	* ASCII/ascii.c: s/ASCII table/ASCII Table

	* ASCII/ascii.glade2: removed long description text

2002-11-02  Paolo Maggi  <maggi@athena.polito.it>

	* ASCII/ascii.c: fixed bug #96565, patch by 
	hidetoshi.tajima@sun.com (Hidetoshi Tajima)

2002-11-01  Paolo Maggi  <maggi@athena.polito.it>

	* time/time.c:
	* time/time.glade2: a lot of enhancements by 
	Lee Mallabone <gnome@fonicmonkey.net> 

	* shell_output/shell_output.c: change plugin name to 
	"Execute Shell Command". Now the menu entry is in the tool menu.

2002-10-27  Paolo Maggi  <maggi@athena.polito.it>

	* diff/diff.c:
	* shell_output/shell_output.c: use the new output window

2002-10-14  Paolo Maggi  <maggi@athena.polito.it>

	* email/email.glade -> email/email.glade2

2002-10-14  Paolo Maggi  <maggi@athena.polito.it>

	* sort/sort.c: massive performance improvement with big files.

2002-10-12  Paolo Maggi  <maggi@athena.polito.it>

	Ported sort plugin

	Thanks to Lee Mallabone <gnome@fonicmonkey.net> for the initial
	patch.

2002-10-07  Paolo Maggi  <maggi@athena.polito.it>

	* spell/spell.c: use the new gedit_document_replace_all

2002-10-05  Paolo Maggi  <maggi@athena.polito.it>

	* spell/gedit-automatic-spell-checker.[ch]: new files

	* spell/Makfile.am (libspell_la_SOURCES): added new files

	* spell/spell.c: added support for automatic spell checking

2002-10-03  Paolo Maggi  <maggi@athena.polito.it>

	* spell/spell.c (update_ui): disable "Set Language" when there is
	no active document.

2002-09-17  Jens Askengren <jensus@linux.nu>

	* taglist/XSLT.tags: new XSLT taglist

	* taglist/Makefile.am: install XSLT.tags

2002-09-13  Paolo Maggi  <maggi@athena.polito.it>

	* spell/docinfo.c (MENU_ITEM_PATH): put the docinfo plugin in the 
	Tools menu

	* spell/Makefile.am (libspell_la_SOURCES): added
	gedit-spell-language-dialog.[ch]
	(glade_DATA): added languages-dialog.glade2

	* spell/spell.c: added the set language dialog

	* spell/gedit-spell-language-dialog.[ch]: new files

2002-09-13  Paolo Maggi  <maggi@athena.polito.it>

	* spell/gedit-spell-checker.c (gedit_spell_checker_get_available_languages):
	does not require parameters
	(gedit_spell_checker_set_language): rewritten
	(get_lang_code): new function
	(lazy_init): take a language parameter

2002-09-13  Paolo Maggi  <maggi@athena.polito.it>

	* spell/spell.c (change_all_cb): new function

2002-09-13  Paolo Maggi  <maggi@athena.polito.it>

	* spell/gedit-spell-checker-dialog.c (add_word_button_clicked_handler
	(ignore_all_button_clicked_handler)(change_button_clicked_handler)
	(change_all_button_clicked_handler): don't return immediately on error

2002-09-11  Paolo Maggi  <maggi@athena.polito.it>

	* spell/spell.c: use text marks in CheckRange

	* spell/gedit-spell-checker-dialog.[ch]: fixed a problem with signals

2002-09-10  Paolo Maggi  <maggi@athena.polito.it>

	* spell/spell.c: almost rewritten

	* spell/gedit-spell-checker-dialog.c (change_button_clicked_handler):
	new function
	Fixed some mem leaks

	* spell/gedit-spell-checker.c (set_language_internal): fixed a mem leak

2002-09-07  Paolo Maggi  <maggi@athena.polito.it>

	[New spell plugin]

	* Makefile.am: added spell to SUBDIRS

	* cvschangelog/cvschangelog.c: use gedit_document_get_chars instead of 
	gedit_document_get_buffer

	* docinfo/docinfo.c: ditto
	* email/email.c: ditto

2002-08-27  Duarte Loreto <happyguy_pt@hotmail.com>

        * taglist/gedit-taglist-plugin-window.c: Fix typo.

2002-08-25  Paolo Maggi  <maggi@athena.polito.it>

	* email/email.c: added #include <string.h> 

2002-08-24  James Willcox  <jwillcox@gnome.org>

	* Ported the email plugin

2002-08-24  Paolo Maggi  <maggi@athena.polito.it>

	[New indent plugin]

	* Makefile.am: added indent to SUBDIRS

	* indent/Makefile.am:
	* indent/indent.c: new files

	* sample/sample.c (MENU_ITEM_LABEL): changed accellerator N->m
	
	* time/time.c (MENU_ITEM_LABEL): changed accellerator I->s

2002-08-20  Paolo Maggi  <maggi@athena.polito.it>

	* diff/diff.c (diff_execute): use canonical uris when calling
	gedit_document_save_a_copy_as (fix bug #91188)

2002-08-15  Federico Mena Quintero  <federico@ximian.com>

	* diff/diff.glade2: Changed the ATK descriptions for the widgets
	that have duplicated labels, to make them more clear.  Also added
	some ATK relations.  Fixes part of #90279.

2002-07-24  Paolo Maggi  <maggi@athena.polito.it>

	* time/timc.c: added "debian time" format (bug #88934)

2002-07-17  James Willcox  <jwillcox@cs.indiana.edu>

	* */Makefile.am:  Added LDFLAGS for the "-avoid-version" and
	"-module" libtool options.

2002-07-15  James Willcox  <jwillcox@cs.indiana.edu>

	* cvschangelog/cvschangelog.c (is_chnagelog):
	Use g_utf8_caselessnmatch() instead of strcasecmp().  This plugin
	is hopefully fully utf8 safe now.

2002-07-14  James Willcox  <jwillcox@cs.indiana.edu>

        * cvschangelog/cvschangelog.c:  Fixed several rather embarrassing bugs
	causing the plugin to not work at all.

2002-07-12  Paolo Maggi  <maggi@athena.polito.it>

	* shell_output/shell_output.c: executed shell command in an
	async way. This should also fix bug #84096

	* shell_output/shell_output.glade2: added a "Capture the command output"
	checkbutton

2002-07-03  Paolo Maggi  <maggi@athena.polito.it>

	* sample/sample.c (sample_cb): convert the username to UTF-8 
	if needed

	* time/time.c (get_time): convert the time string to UTF-8 
	if needed (fix bug #86491)

2002-05-27  Paolo Maggi  <maggi@athena.polito.it>

	* sample/sample.c: print the username if the real name is
	long 0 chars (fix bug #75863, I hope)

2002-05-27  James Willcox <jwillcox@cs.indiana.edu>

	* cvschangelog/cvschangelog.c:  Fix some memory leaks.

2002-05-27  James Willcox <jwillcox@cs.indiana.edu>
	
	* cvschangelog/cvschangelog.c:  Fixed bug #82333, and other
	misc. cleanup.

2002-04-24  Hema Seetharamaiah <hema.seetharamaiah@wipro.com>

	* Bug # 79203. Added accessible name/description. 
	* Files affected : diff/diff.glade2

2002-04-17  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/gedit-taglist-plugin-window.c;
	* taglist/gedit-taglist-plugin.[ch]: now View->TagList 
	is a checkbox button (bug #75636)

2002-04-16  Hema Seetharamaiah <hema.seetharamaiah@wipro.com>

	* Accessibility Changes. Mainly setting up of relations, 
        Accessible name/descriptions.
	
	Files affected :
	 - diff/diff.glade2
	 - shell_output/shell_output.glade2,
	 - taglist/gedit-taglist-plugin-window.c

2002-04-04  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/gedit-taglist-plugin-window.c: use Ctrl + W (instead
	of Alt + F4) to close the taglist window (bug #76763)

2002-03-27  Paolo Maggi  <maggi@athena.polito.it>

	* ASCII/asciitable.glade2:
	* diff/diff.glade2:
	* docinfo/docinfo.glade2:
	* shell_output/shell_output.glade2:
	* time/time.glade2: fix bug #76341

2002-03-27  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/gedit-taglist-plugin-window.c: use Alt + F4 (instead
	of ESC) to close the taglist window (bug #75636)

2002-03-07  Paolo Maggi  <maggi@athena.polito.it>

	* ASCII/ascii.c: fix bug #71841
	
	* diff/diff.c: ditto, use gedit_plugin_locate_program instead of
	gedit_plugin_program_location_dialog

	* shell_output/shell_output.c: fix bug# 71841

	* taglist/gedit-taglist-plugin-window.c: ditto

	* time/time.c: ditto

2002-02-22  Paolo Maggi  <maggi@athena.polito.it>

	In menus, all the words (except 'and') should start 
	with a capital letter (That's just the convention for menus)

2002-02-22  Paolo Maggi  <maggi@athena.polito.it>

	* time/time.c (activate): removed the menu entry icon

	* sample/sample.c (sample_cb): added a SPACE after the user 
	name

2002-02-21  Paolo Maggi  <maggi@athena.polito.it>

	Name changed: gedit2->gedit

2002-02-18  Paolo Maggi  <maggi@athena.polito.it>

	* ascii/ascii.c: modified to work well with the new 
	menu layout
	* cvschangelog/cvschangelog.c: ditto
	* diff/diff.c: ditto
	* taglist/gedit-plugin-taglist.c: ditto

2002-02-14  Paolo Maggi  <maggi@athena.polito.it>

	* time/time.c (create_model): set tree view model here
	and not in create_formats_list

2002-02-14  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/taglist.xml: split into HTML.tags and Latex.tags

	* taglist/gedit-taglist-plugin-parser.c (parse_taglist_dir): 
	new function
	(create_taglist): first load user's taglists and then
	system's taglists
	(parse_taglist_file): skip already existing tag groups

2002-02-13  Kjartan Maraas  <kmaraas@gnome.org>

	* ascii/ascii.c: #include <config.h> for proper i18n.
	* cvschangelog/cvschangelog.c: Same.
	* diff/diff.c: Same.
	* docinfo/docinfo.c: Same
	* sample/sample.c: Here too.
	* shell_output/shell_output.c: Same.
	* spell/spell.c: Same.
	* time/time.c: Here too.
								
2002-02-13  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/taglist.xml: added HTML tags

2002-02-12  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am (SUBDIRS): added ASCII

	* ASCII/ascii.c:
	* ASCCI/Makefile.am: ported
	
	* ASCII/asciitable.glade: removed
	
	* ASCII/asciitable.glade2: new file

	* taglist/gedit-taglist-plugin-window.c (populate_tags_list):
	unref module

	* taglist/gedit-taglist-plugin.c: #define MENU_ITEM_PATH 
	"/menu/Edit/EditOps_5/"

	* time/time.c (create_formats_list): unref module

2002-02-10  Paolo Maggi  <maggi@athena.polito.it>

	* diff/diff.c: save/load settings
	(save_settings): new function

2002-02-09  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/gedit-taglist-plugin.c (update_ui): the
	menu entry for the taglist plugin is always sensitive

2002-02-08  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am (SUBDIRS): added diff

	* diff/Makefile.am: ported

	* diff/diff.c: ported

	* diff/diff.glade: removed

	* diff/diff.glade2: new file

2002-02-08  Paolo Maggi  <maggi@athena.polito.it>

	* taglist/taglist.xml: added Latex tag group

2002-02-07  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am (SUBDIRS): added taglist 

	* taglist/gedit-taglist-plugin.c:
	* taglist/gedit-taglist-plugin.h:
	* taglist/gedit-taglist-plugin-parser.c:
	* taglist/gedit-taglist-plugin-parser.h:
	* taglist/gedit-taglist-plugin-window.c:
	* taglist/gedit-taglist-plugin-window.h:
	* taglist/Makefile.am:
	* taglist/taglist.xml: new files

2002-02-06  Paolo Maggi  <maggi@athena.polito.it>

	* cvschangelog/cvschangelog.c (update_ui): fix mem leak

	* time/time.c (time_world_cb): fix mem leak

2002-02-06  Paolo Maggi  <maggi@athena.polito.it>

	* cvschangelog/Makefile.am:
	* docinfo/Makefile.am: 
	* sample/Makefile.am: 
	* shell_output/Makefile.am:
	* time/Makefile.am: define G*_DEPRECATED in INCLUDES

	* cvschangelog/cvschangelog.c:
	* docinfo/docinfo.c: 
	* sample/sample.c: 
	* shell_output/shell_output.c:
	* time/time.c: fix to compile with G*_DEPRECATED

2002-02-06  Duarte Loreto  <happyguy_pt@hotmail.com>

        * shell_output/shell_output.c: Fixed misspelled word (Exucute -> Execute).

2002-02-05  Paolo Maggi <maggi@athena.polito.it>
	
	* cvschangelog/cvschangelog.c: warning cleans

	* docinfo/docinfo.c: ditto

	* sample/sample.c: ditto

	* shell_output/shell_output.c: ditto

	* plugins/time/time.c: ditto

2002-02-01  James Willcox  <jwillcox@cs.indiana.edu>

	* sample/sample.c (update_ui):  Removed references to BonoboUIEngine
	and converted to use BonoboUIComponent.
	* docinfo/docinfo.c: ditto
	* cvschangelog/cvschangelog.c: ditto
	* time/time.c: ditto
	* shell_output/shell_output.c: ditto

2002-01-26  James Willcox  <jwillcox@cs.indiana.edu>

	* sample/sample.c (activate, deactivate):  Converted to use
	gedit_menus_[add/remove]_menu_item_all()
	* cvschangelog/cvschangelog.c: ditto
	* docinfo/docinfo.c: ditto
	* time/time.c: ditto
	* shell_output/shell_output.c: ditto

2002-01-24  Paolo Maggi  <maggi@athena.polito.it>

	* shell_output/shell_output.c (update_ui): disable
	the menu entry in the current doc is RO

2002-01-24  Paolo Maggi  <maggi@athena.polito.it>

	* shell_output/shell_output.c: ported

	* shell_output/shell_output.glade2: new file

	* time/time.c: cosmetic changes

2002-01-23  Paolo Maggi  <maggi@athena.polito.it>

	* time/time.c: now it has a working "configure" function

2002-01-22  Paolo Maggi  <maggi@athena.polito.it>

	* docinfo/docinfo.c (activate): call update_ui for each window

	* time/time.glade2: new file
	
	* time/time.c: now it has a semi-working "configure" function

2002-01-21  James Willcox  <jwillcox@cs.indiana.edu>

	* cvschangelog/cvschangelog.c:  ported

	* cvschangelog/Makefile.am: rewrite

	* time/Makefile.am: rewrite

	* time/time.c: ported

2002-01-21  Paolo Maggi  <maggi@athena.polito.it>

	* docinfo/docinfo.c (word_count_real): destroy the dialog
	if there is no active document.

2002-01-21  Paolo Maggi  <maggi@athena.polito.it>

	* docinfo/docinfo.glade2: new file

	* docinfo/Makefile.am: install docinfo.glade2

	* docinfo/docinfo.c: now the Word Count plugin 
	is complete

2002-01-18  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am (SUBDIRS): added docinfo 

	* docinfo/docinfo.c: rewritten

	* docinfo/Makefile.am: ditto

2002-01-17  Paolo Maggi  <maggi@athena.polito.it>

	* sample/sample.c: now it works (a bit)

2002-01-16  Paolo Maggi  <maggi@athena.polito.it>

	* Makefile.am: rewritten

	* sample/sample.c: ditto
	
	* sample/Makefile.am: ditto

2001-11-16  Carlos Perelló Marín <carlos@gnome-db.org>

	* ChangeLog: rolled over to ChangeLog-20011116.