File: ChangeLog

package info (click to toggle)
gnome-blog 0.8-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,172 kB
  • ctags: 144
  • sloc: sh: 3,172; python: 1,144; makefile: 131; xml: 8
file content (912 lines) | stat: -rw-r--r-- 21,601 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
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
2005-01-12  Seth Nickell  <seth@gnome.org>

	* rich_entry.py:

	Prepend (rather than appending) our "text/uri-list" target
	to the list of DND targets on the TextView. Otherwise it comes in as
	as string :-)
	
2005-01-04  Seth Nickell  <seth@gnome.org>

	* blog.py:

	And... remove the hack :-)

2005-01-04  Seth Nickell  <seth@gnome.org>

	* blog.py:

	Work around... a buggy python? If I do __import__ on
	bloggerAPI.py before "import xmlrpclib", the "import xmlrpclib"
	in bloggerAPI.py dies with horrible C exceptions in the Python
	interpreter. Ugh. So we now do an unnecessary "import xmlrpclib"
	in blog.py.
	
	* blogger_prefs.py:

	Go back to using "wordpress/xmlrpc.php" as before. We'll
	address xmlrpc address alternatives better in a future release...
	
2005-01-02  Seth Nickell  <seth@gnome.org>

	* Makefile.am:

	Fix distcheck errors.

2004-07-08  Caleb Groom  <caleb@calebgroom.com>

	* blogger_prefs.py: 

	HIGAlert dialog now displays 'unknown blog type' error and plays well
	with others if the blog type is invalid.

2005-01-02  Seth Nickell  <seth@gnome.org>

        Patch from Brian Pepple <bdpepple@ameritech.net>.
	Also, thanks to Chris Shaffer for separately adding
	Wordpress support.

	* blogger_prefs.py:

	Only append "xmlrpc.php" for Wordpress installs, not
	"wordpress/xmlrpc.php" as we did before.
	
2005-01-02  Seth Nickell  <seth@gnome.org>

        Patch from Tommi Komulainen <tommi.komulainen@iki.fi>
	
	* blog_applet.py:
	* gnome-blog-poster:

	Set the default window icons.

2004-12-25  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Add «nb» to ALL_LINGUAS.

2004-10-26  Seth Nickell  <seth@gnome.org>

	* blogger_prefs.py:

	Add WordPress to the list of known blog types, using
	MetawebLog.

2004-10-26  Seth Nickell  <seth@gnome.org>

	* acinclude.m4:

	Remove this, we no longer include any C Python modules.

2004-10-26  Seth Nickell  <seth@gnome.org>

        Patch from Maciej Katafiasz <mnews2@wp.pl>
	
	* blog_applet.py:
	* blog_poster.py:
	* gnome-blog-poster:

	Add CTRL-I and CTRL-B accelerators for Italics and Bold.
	
2004-10-26  Seth Nickell  <seth@gnome.org>

	* autogen.sh:

	Hardcode 'automake-1.8' instead of just calling 'automake'.
	Fixes #139648. Thanks to Alvaro del Castillo <acs@barrapunto.com>
	for tracking down the issue

2004-10-26  Seth Nickell  <seth@gnome.org>

        Patch from Toshio Kuratomi <toshio@tiki-lounge.com>

	* GNOME_BlogApplet.server.in:
	* GNOME_BlogApplet.server.in.in:
	* Makefile.am:

	Install applet into LIBEXECDIR instead of BINDIR

2004-10-26  Seth Nickell  <seth@gnome.org>

        Patch from Brian Pepple <bdpepple@ameritech.net>
	
	* gnome-blog.spec.in:

	Patch to add BuildReq for gettext, along with removing files not needed
	(INSTALL, NEWS).  Also, ghosting of *.pyo files.

2004-09-28  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* configure.in: Added uk to ALL_LINGUAS.

2004-09-16  Luis Villa	<louie@novell.com>

	* MetaWeblog.py:

	fix obvious typo. I'm probably the first person to try image
	upload, it looks like :)
	
2004-09-14  Seth Nickell  <seth@gnome.org>

	* blogger_prefs.py:

	Use correct /RPC path for Pybloxsom 1.x.

2004-05-03  John (J5) Palmieri  <johnp@redhat.com>

	* rich_entry: style toggles now work correctly
	(RichEntry.__init__) registered text_insert signal and added toggle_list property
        (RichEntry.createStyleToggle) style toggle now appended to the toggle_list property
	(RichEntry._onInsertText) signal handler added
	(StyleToggle.__init__) text_view is now saved as a property
	(StyleToggle._onStyleToggleActivate) text_view is given back focus after style button is toggled

2004-05-01  Adam Weinberger  <adamw@gnome.org>

	* configure.in: Added en_CA to ALL_LINGUAS.

2004-04-09  Gareth Owen  <gowen72@yahoo.com>

	* configure.in: Added en_GB to ALL_LINGUAS

2004-04-08  Seth Nickell  <seth@gnome.org>

	* configure.in:

	Bump version number to 0.8

2004-03-16  Bryan W Clark  <clarkbw@cvs.gnome.org>

	* blogger_prefs.py (BloggerPrefs._updateBlogType): fixed bug #136787

2004-03-08  John (J5) Palmieri <johnp@martianrock.com>

	* blog_poster.py: spell checking is now enabled if pygtkspell is installed

2004-02-26  John (J5) Palmieri <johnp@martianrock.com>

	* protocols/livejournal.py:
	* protocols/bloggerAPI.py:
	* protocols/advogato.py:
	* protocols/MetaWeblog.py:
	Added code to allow posting through a web proxy using GNOME proxy settings

	* proxy.py: Proxy code taken from PyBLO and modified to use GNOME proxy settings 

2004-02-05  Robert Sedak  <robert.sedak@sk.htnet.hr>

        * configure.in: Added "hr" (Croatian) to ALL_LINGUAS.

2004-01-25  Kjartan Maraas  <kmaraas@gnome.org>

	* configure.in: Added "no" to ALL_LINGUAS.

2004-01-15    <clarkbw@cvs.gnome.org>

	* blogger_prefs.py: removed useless translation

2004-01-13  Tommi Komulainen  <tommi.komulainen@iki.fi>
	
	* blog_poster.py: Disable post button until there's an entry to post.
	(#131377)

2004-01-11    <clarkbw@cvs.gnome.org>

	* TODO: updated the TODO

	* rich_entry.py: use new hig_alert methods for styled text

	* protocols/livejournal.py: 
	* protocols/bloggerAPI.py: 
	* protocols/advogato.py: 
	* protocols/MetaWeblog.py: 
	use new hig_alert methods
	lightened gtk import

	* hig_alert.py: 
	new italic and bold methods to handle markup for alerts
	replaced all markup in translatable text and moved to new methods

2004-01-09    <clarkbw@cvs.gnome.org>

	* gnomeblog.schemas.in: removed the useless use_blogger_dot_com entry

2004-01-08    <clarkbw@cvs.gnome.org>

	* gnomeblog.schemas.in: s/gnome-blogger/gnome-blog

2004-01-04  Rob Love  <rml@ximian.com>
	* gnome-blog.spec.in: add missing dependency

2004-01-01  Rachel Hestilow  <rachel@nullenvoid.com>

	* blogger_prefs.py: Add livejournal backend option

	* protocols/Makefile.am: Install livejournal.py
	* protocols/livejournal.py: Added.

2003-11-16  Bryan W Clark  <clarkbw@cvs.gnome.org>

	* rich_entry.py (RichEntry._onDragDataReceived): 
	fixed L10N errors reported in bug # 125352

	(InsertHyperlinkButton.__init__): 
	Added some default handlers for the add link button, this should
	make it easier to add links using only the keyboard.

	Also moved the DnD init stuff to _initDND(), that's Seth's mojo
	and I don't want to play with right now.

2003-11-14  Bryan W Clark  <clarkbw@cvs.gnome.org>

	* gnome-blog-poster (BloggerApp.__init__): Bug fix for initial
	preferences on the reg app.

	* blogger_prefs.py: String "Pybloxsom" should be "Pyblosxom"
	bug # 126508

2003-11-13  Bryan W Clark  <clarkbw@cvs.gnome.org>

	* blog_applet.py: fixed traslation bug #126509

2003-11-07  Bryan W Clark  <clarkbw@cvs.gnome.org>

	* rich_entry.py: added ellipsis to Add Link button > HIG compiance

	* gnome-blog-poster: 
	Ripped out the pref button from here and moved it to BlogPoster
	class.

	* blog_applet.py: 
	Uses the BlogPosterSimple class to clear out the pref button,
	tried to reuse as much of the poster class stuff as possible in
	this file.

	* blog_poster.py (BlogPoster.__init__): 
	Created a BlogPosterSimple class that hides the pref button, which
	has now been moved into the BlogPoster class 

	* blog_applet.py: missed a string for translation

2003-11-03  Bryan W Clark  <clarkbw@clarkson.edu>

	* blog_applet.py: 

	Added tooltip to applet button, on hover the applet now reads
	"Create a blog entry for $user at $blog_url"

2003-11-03  Hasbullah Bin Pit <sebol@ikhlas.com>
                                                                                
        * configure.in: Added 'ms' (Malay) to ALL_LINGUAS.

2003-10-29  Jordi Mallach  <jordi@sindominio.net>

	* configure.in (ALL_LINGUAS): Added "ca" (Catalan).

2003-10-26  Bastien Nocera  <hadess@hadess.net>

	* aligned_window.py:
	
	Set the blogging window as sticky, still need to set it on top
	and skip the pager and the taskbar (not wrapped in pygtk)

2003-10-25  Metin Amiroff  <metin@karegen.com>

	* configure.in: Added az to ALL_LINGUAS.

2003-10-23  Seth Nickell  <seth@gnome.org>

	* blog.py:

	Add support for the new uploadImage API
	
	* blog_poster.py:
	* html_converter.py:
	* rich_entry.py:

	Go through and upload any images that have been dragged into
	the rich text area.... At this point MetaWeblog should work
	"in theory" though of course it won't actually since I haven't
	tested it. Need to get a metaweblog API supporting blog working
	for testing purposes anyway.
	
	* protocols/MetaWeblog.py:
	* protocols/advogato.py:
	* protocols/bloggerAPI.py:

	Mark a bunch of strings for translation. Add 10x error
	checking for Gman

2003-10-23  Seth Nickell  <seth@gnome.org>

	* protocols/MetaWeblog.py:

	Add skeleton for uploading images to MetaWeblog

2003-10-22  Seth Nickell  <seth@gnome.org>

	* blogger_prefs.py:
	* rich_entry.py:

	Phase 1 complete... Can now DND images into the text view.	
	Phase 2 is to add support to appropriate backends to
	actually upload images. Also... to incentivize myself I'll
	need to add metaweblog API support to pyblosxom so I can
	use/test the feature :-)

2003-09-19  Christophe Merlet  <redfox@redfoxcenter.org>

	* configure.in (ALL_LINGUAS): Added French (fr).

2003-09-16  Johan Dahlin  <jdahlin@gnome.org

        * aligned_window.py, blog.py, blog_applet.py
	blog_poster.py, blogger_prefs.py, gconf_widgets.py
	hig_alert.py, html_converter.py, rich_entry.py: pythonify

	* blog_applet.py, blog_poster.py, blogger_prefs.py
	hig_alert.py: prettify imports
	snorp	
2003-09-14  Christian Neumair  <chris@gnome-de.org>

	* configure.in:

	Add de to ALL_LINGUAS.

	* blogger_prefs.py:
	* blog_poster.py:
	* rich_entry.py:

	HIG work here and there, mark some missing strings for translation.

2003-09-13  Seth Nickell  <seth@gnome.org>

	* configure.in:

	Add pt_BR translation (Brazilian Portuguese) from:
	Andre Filipe de Assuno e Brito <decko@netsite.com.br>

2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* blog_applet.py:

	Hide the applet posting window after a successful post.
	
2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:
	* gnome-blog-poster:

	Close the standalone app after "Post Entry"
	is clicked... probably need more feedback really.
	
	* rich_entry.py:

	Hack around a lack of anonymous tags in RH9's 
	version of gnome-python. Nasty, but we just create
	a new tag name for every link they insert.

2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* blog.py:
	* blog_poster.py:
	* blogger_prefs.py:
	* gnome-blog-poster:
	* protocols/bloggerAPI.py:
	* rich_entry.py:

	Work out little kinks with RH9 support
	and the standalone blog poster.
	
2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:

	Pass "make distcheck".

2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* gnome-blog.spec.in:

	Add the new binary and desktop entry.
	
2003-09-13  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Bump version to 0.7

	* Makefile.am:
	* gnome-blog-poster:
	* blog_poster.py:
	* gnome-blog.desktop.in:

	Create a little standalone blog posting application.
	Its not really well designed interface for now, but
	it basically works.
	
	* GNOME_BlogApplet.server.in:

	Use a different name, mark strings for translation.
	
	* gnomeblog.schemas.in:
	* protocols/MetaWeblog.py:
	* protocols/bloggerAPI.py:
	* blogger_prefs.py:	

	Fix stupid bug that prevented people from posting to
	blogger.com.

	* rich_entry.py:

	Remove use of gnome-python API stuff that's not in
	RedHat 9.

2003-09-13  Seth Nickell  <snickell@stanford.edu>

	reviewed by: <delete if not using a buddy>

	* GNOME_BlogApplet.server.in:
	* Makefile.am:
	* blog_poster.py:
	* blogger_prefs.py:
	* configure.in:
	* gnome-blog-poster:
	* gnomeblog.schemas.in:
	* protocols/MetaWeblog.py:
	* protocols/bloggerAPI.py:
	* rich_entry.py:

2003-09-11  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Add Italian translation courtesy of:
	  Frencesco Gigli <jaramir@libero.it>

2003-09-11  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Bump version number to 0.6, release

2003-09-11  Seth Nickell  <snickell@stanford.edu>

	* protocols/bloggerAPI.py:

	Import the appkey from the global namespace.
	
	* rich_entry.py:

	Insert a fixed number of pixels after each newline.
	This is not a great solution, but it'll at least
	provide basic feedback so people don't insert
	extra newlines.

2003-09-09  Duarte Loreto <happyguy_pt@hotmail.com>

	* configure.in: Added Portuguese (pt) to ALL_LINGUAS.

2003-09-05  James Willcox  <jwillcox@gnome.org>

	* protocols/MetaWeblog.py:

	Fix the metaweblog backend

2003-09-05  Seth Nickell  <snickell@stanford.edu>

	* blog_applet.py:

	Fix dumb typo.

2003-09-05  Seth Nickell  <snickell@stanford.edu>

	* blog_applet.py:
	* blog_poster.py:
	* blogger_prefs.py:
	* gnome_blog_globals.py.in:
	* hig_alert.py:

	Try to use gettext to allow localization of all
	the strings in the python code...not sure if this
	works.
	
2003-09-04  Seth Nickell  <snickell@stanford.edu>

	* blogger_prefs.py:
	* protocols/MetaWeblog.py:
	* protocols/bloggerAPI.py:

	Switch to using the blog's base URL rather than
	requiring typing the whole XML-RPC cgi script
	path (which nobody knew anyway). This'll break if
	you don't follow the install instructions...but
	you can still use the "Custom Blog" thing to hardcode
	an XML-RPC URL, protocol, etc.
	
2003-09-04  Seth Nickell  <snickell@stanford.edu>

	* configure.in:

	Remove unnecessary statements (that were causing
	problems on Debian too)

	* Makefile.am:
	* __init__.py:
	* rich_entry.py:
	* blogger_prefs.py:
	* blog_applet.py:
	
	Create a gnomeblog namespace so we don't flood the
	site-packages directory with our crap :-)
	
	* blog.py:
	* blog_poster.py:
	* blogger_prefs.py:
	* protocols/.cvsignore:
	* protocols/Makefile.am:
	* protocols/MetaWeblog.py:
	* protocols/advogato.py:
	* protocols/bloggerAPI.py:

	Move protocols out into their own modules. Neat trick
	is that now MetaWeblog can inherit from bloggerAPI.
	
2003-09-04  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:
	* rich_entry.py:

	Add support for inserting links.
	
	Hadess, I luv U.
	
2003-09-04  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* blog_poster.py:
	* html_converter.py:
	* rich_entry.py:
	* style_toggle.py:

	Create a new RichEntry widget which is a
	sub-class of TextView but provides the sort
	of nice HTML editing features we want. Abstract
	style_toggles further and move them into this
	class, and add preliminary support for
	hyperlinks.
	
2003-09-04  James Willcox  <jwillcox@gnome.org>

	* blog.py:
	* blogger_prefs.py:
	* gnomeblog.schemas.in:

	Fixup the metaweblog support a bit

2003-09-04  Seth Nickell  <snickell@stanford.edu>

	* blog.py:

	Add preliminary support for metaweblog API.

2003-09-03  Bastien Nocera  <hadess@hadess.net>

	* blog.py: better error handling with the advogato API, actually
	connect to the server before making any calls
	* blogger_prefs.py: make the "lookup blogs" button unsensitive when
	the advogato API is selected

2003-09-03  Takeshi AIHANA <aihana@gnome.gr.jp>

	* configure.in: Added "ja" (Japanese) to ALL_LINGUAS.

2003-09-03  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

        * configure.in: Added "es" (Spanish) to ALL_LINGUAS.

2003-09-02  Artur Flinta  <aflinta@cvs.gnome.org>

        * configure.in: Added "pl" to ALL_LINGUAS.

2003-09-02  Alex Duggan  <aldug@astrolinux.com>

	* GNOME_BlogApplet.xml:
	* Makefile.am:
	* blog_applet.py:
	* configure.in:
	* gnome_blog_globals.py.in:
	* .cvsignore:
	
	Add an about dialog and a global variables script
	
	* blogger_applet.py:
	
	Removed from cvs
	
	* autogen.sh:
	
	s/applet/gnome-blog/

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* blogger_prefs.py:

	Get James' password box back.

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* blog.py:
	* blog_poster.py:

	Add a tiny bit of abstraction for handling protocol
	and servers. You need to edit both blogger_prefs.py
	and a bit in blog.py to add a new type.
	
	* blogger_prefs.py:
	* gconf_widgets.py:

	Improve Prefs dialog handling of different servers
	and protocols.
	
2003-09-02  James Willcox  <jwillcox@gnome.org>

	* blogger_prefs.py:
	* gconf_widgets.py:

	Make the password entry show asterisks instead of the actual password

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:

	Fix bug that caused it to post the entry twice.

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:

	Add a "Title" entry instead of relying on the good
	graces of my users to follow pybloxsom standards ;-)

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* TODO:

	Brief sketch of some things I'm interested in doing next.

2003-09-02  Seth Nickell  <snickell@stanford.edu>

	* HACKING:

	Clarify commit stuff (if you know what you're doing, and
	you're pretty sure its right, just commit). If I don't
	like it, I'll change it.

2003-09-02  Bastien Nocera  <hadess@hadess.net>

	* blog_poster.py: use the advogato API if the server url is
	http://www.advogato.org/XMLRPC

2003-09-02  Bastien Nocera  <hadess@hadess.net>

	* .cvsignore: updated for the gnome-blogger -> gnome-blog changes

2003-09-02  James Willcox  <jwillcox@gnome.org>

	* aligned_window.py:  Show the window after moving it, not before

2003-09-02  Danilo Šegan  <dsegan@gmx.net>

	* configure.in: Added "sr" and "sr@Latn" to ALL_LINGUAS.

2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* blog_applet.py:

	Open preferences dialog automatically the first
	time the applet is launched.
	
	* gnome-blog.png:

	Create a not-horrible icon.

	* GNOME_BlogApplet.server.in:

	Use the correct filename for the icon.
	
	* configure.in:

	Drop version number to 0.5
	
	* gnome-blog.spec.in:

	Fix typo so correct version of pygtk2 is required.
	
2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* GNOME_BlogApplet.server.in:
	* aligned_window.py:
	* blog_applet.py:
	* blog_poster.py:
	* blogger_prefs.py:
	* gconf_widgets.py:
	* hig_alert.py:
	* style_toggle.py:

	Remove dependency on CVS gnome-python so that it'll
	work on (at least) RH9.
	
2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* gnome-blog.spec.in:

	Make it so we can build RPMS.

2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* configure.in:

	Finally get l10n working...
	
2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* GNOME_BlogApplet.server.in:
	* blogger_applet.py:

	gnome-blogger now in its new home gnome-blog...

2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* README:

	Appease the auto* gods and add a README.

2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* configure.in:

	Finish rennaming, remove all instances of "blogger" except
	in internal files (can worry about those later if anyone
	actually cares)

2003-09-01  Seth Nickell  <snickell@stanford.edu>

	* AUTHORS:
	* GNOME_BlogApplet.server.in:
	* GNOME_BlogApplet.xml:
	* GNOME_BloggerApplet.xml:
	* Makefile.am:
	* blog_applet.py:
	* configure.in:
	* gnome-blog.png:
	* gnome-blog.spec.in:
	* gnome-blogger.png:
	* gnomeblog.schemas.in:
	* gnomeblogger.schemas.in:

	Do some rennaming to avoid violating the Blogger trademark.
	
2003-08-31  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:
	* blogger_applet.py:

	Automatically insert <p> tags where newlines are.
	
2003-08-31  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:
	* blogger_applet.py:
	* blogger_prefs.py:
	* gconf_widgets.py:

	Integrate with Panel prefs, don't hardcode a prefs directory.
	Eventually we'll also have an application version (should be
	really easy).
	
2003-08-31  Seth Nickell  <snickell@stanford.edu>

	* hig_alert.py:

	More rewording of alerts.

2003-08-31  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:
	* blogger_prefs.py:
	* hig_alert.py:

	Lots more error messages make it easier both to debug
	problems and help people fix issues themselves (wrong
	url, username, etc)

2003-08-31  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:
	* blog_poster.py:
	* blogger_applet.py:
	* blogger_prefs.py:
	* gconf_widgets.py:
	* gnomeblogger.schemas.in:
	* hig_alert.py:

	Add support for getting a list of Blogs at the address so
	people don't have to know the ID.
	
2003-08-29  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:

	Fix more dumb bugs.

2003-08-29  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:

	Forget self argument to member function :-P

2003-08-29  Seth Nickell  <snickell@stanford.edu>

	* Makefile.am:

	Make applet run from "system path" again.
	
	* blog_poster.py:

	Screw up posting part. Do not pass go, do not collect $200.
	
2003-08-29  Seth Nickell  <snickell@stanford.edu>

	* GNOME_BloggerApplet.server:
	* gnome-blogger.png:
	* Makefile.am:

	Use the "new icon" (which is crap, I know)
	
	* GNOME_BloggerApplet.xml:
	* blogger_applet.py:
	* blogger_prefs.py:

	Preferences dialog... point Blogger at the appropriate
	URL, username, password, etc.

	* blog_poster.py:
	* style_toggle.py:

	Initial support for rich text formatting (bold and italic).
	
2003-08-28  Seth Nickell  <snickell@stanford.edu>

	* blog_poster.py:

	Wrap text in the blog entry, and make the window wider.
	
	* gnomeblogger.schemas.in:

	Add GConf schemas.
	
2003-08-26  Seth Nickell  <snickell@stanford.edu>

	* .cvsignore:
	* GNOME_BloggerApplet.server:
	* Makefile.am:
	* blog_poster.py:
	* configure.in:
	* hig_alert.py:

	Add better error handling.
	
2003-08-26  Seth Nickell  <snickell@stanford.edu>

	* aligned_window.py:

	Don't use a POPUP. Instead just turn off decorations.
	
	* blogger_applet.py:

	Move window before showing it... maybe stop the flashing.