aboutsummaryrefslogblamecommitdiffstats
path: root/test-log.txt
blob: 980cfcee271565acf2bac474c9ac39748f3e4ac9 (plain) (tree)
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
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                    
                      

  
test_URL_conversion (test_gg_scrapper.TestGGScrapper) ... DEBUG:unenscape_Google_bang_URL:esc_URL = https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout
ok
test_collecting_topics (test_gg_scrapper.TestGGScrapper) ... DEBUG:do_redirect:url = https://groups.google.com/forum/#!forum/jbrout
DEBUG:unenscape_Google_bang_URL:esc_URL = https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/sXWRNc0S6T0
DEBUG:get_topics:title = Work with Shotwell's ratings as well
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/goMB1UPH-Hs
DEBUG:get_topics:title = [PATCH] Don't try to work with images in empty folder.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/gSKet7Zcygg
DEBUG:get_topics:title = Multiusers on Jbrout and photos shared on a network drive
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mfkLh8O4WU0
DEBUG:get_topics:title = open associated media plugin
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8YlKQVtUM00
DEBUG:get_topics:title = No Search button or Find menu
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/UAMHVeBZm-w
DEBUG:get_topics:title = port to gexiv2
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-sJtPpiUoQY
DEBUG:get_topics:title = Some questions about tags and tagging
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Vb9xth1l1Dc
DEBUG:get_topics:title = I still have to comment out this line to prevent jbrout refusing to display - is it in the bugs list?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yUUmxefWqZ8
DEBUG:get_topics:title = Suggested patch for #206
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HpJSaiFXHuA
DEBUG:get_topics:title = suggested fix for jbrout# 194?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4KaZPj1Fh6o
DEBUG:get_topics:title = [PATCH] Don't put categories into tags shown in full-screen view.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/2kTKGNHKVkI
DEBUG:get_topics:title = [PATCH] Add appdata file for better discoverability.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mZ3BEIE8J-Y
DEBUG:get_topics:title = Re: subscribe jbr...@googlegroups.com
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dlYXqiNSpm8
DEBUG:get_topics:title = archive of the group?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PG16Z2YBnEg
DEBUG:get_topics:title = test
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Mdsgk6UG5eA
DEBUG:get_topics:title = SVN snapshot
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/uvo12Tl-QQw
DEBUG:get_topics:title = RFC: PEP8 branch to be merged on Monday
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Etz3hHbJioY
DEBUG:get_topics:title = Feature request : "no tags" search option
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PVlyVooRaKg
DEBUG:get_topics:title = svg icon
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_eSNWyRk2Nw
DEBUG:get_topics:title = Help!
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B21-40-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Z2_R5SXWIN8
DEBUG:get_topics:title = versionning and archiving photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ah97vYuBJoc
DEBUG:get_topics:title = Desperate times call for desperate measures
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VuaSiRDb348
DEBUG:get_topics:title = Can I export a whole hierarchy of pictures to HTML?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_RhHDvdRTJg
DEBUG:get_topics:title = Git repo (again)...
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4PhRPzyWd3k
DEBUG:get_topics:title = [DOC] jBrout on Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/40jcp65a-PU
DEBUG:get_topics:title = [DOC] an ergonomic question
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QWrb_c7wRJE
DEBUG:get_topics:title = jbrout's documentation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EI1o-s6Tc_E
DEBUG:get_topics:title = glade and jbrout ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VmrSvi-1pfc
DEBUG:get_topics:title = What does Accepted tag means?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/i2f3drHBxbg
DEBUG:get_topics:title = Can one run jbrout on different hierarchies/folders and keep them separate?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/OZ6BYQLbTg4
DEBUG:get_topics:title = Enhancement - display large/single images in the jBrout window
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/18PovRtY3KM
DEBUG:get_topics:title = How to fix "The picture contains wrong EXIF data."?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/urenSiIzVc0
DEBUG:get_topics:title = Re: Issue 210 in jbrout: psyco warning should be removed ... psyco is dead
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ZEvNSCDd8Gw
DEBUG:get_topics:title = Should jBrout still say "The psyco module does not seem to be installed"?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IK3RrKg-Hxw
DEBUG:get_topics:title = I'm cross with jBrout, it has overwitten lots of useful information in my EXIF data
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SItGYYR2AdA
DEBUG:get_topics:title = Another exception, causes blank pop-up
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/q5Wrudgd5EQ
DEBUG:get_topics:title = Can't open pictures, get an error when I double-click a thumbnail
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vrmCVzkwL4Q
DEBUG:get_topics:title = [RFC] pure Python image rotation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vIwGFL5mG_A
DEBUG:get_topics:title = Test
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BQ3FQ2ZgNeo
DEBUG:get_topics:title = Time to load 20000 images - is it just the first time I run jBrout?
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B41-60-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mCH_RrK7fMU
DEBUG:get_topics:title = Jbrout on Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Qi0_kObVmrQ
DEBUG:get_topics:title = Jbrout snapshot
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/7EHTHcaYbzw
DEBUG:get_topics:title = Little suggestion
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5hYXkbh6eW4
DEBUG:get_topics:title = tags.xml / Imported tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Y23PI1b0TJ4
DEBUG:get_topics:title = dépôt
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/KEk47P7ad7s
DEBUG:get_topics:title = Running Jbrout on debian wheezy (Testing)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/cgkJ-wNyB10
DEBUG:get_topics:title = Selecting multiple tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/lEAZw9eulLY
DEBUG:get_topics:title = So Long, and Thanks for All the Fish
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Dwc6mhYImls
DEBUG:get_topics:title = PEP8 compliance patch
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Z0rMNuHP8qg
DEBUG:get_topics:title = Two patches -- reformatting and
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zNyOxeyKo-c
DEBUG:get_topics:title = Message d'erreur : ValueError: All strings must be XML compatible: Unicode or ASCII, no NULL bytes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BX_233tCF3k
DEBUG:get_topics:title = import/export basket (issue 197)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dreCkob3KSs
DEBUG:get_topics:title = plugin to open videos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_-j8X2Wvkrw
DEBUG:get_topics:title = help in plugin development
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dyng64ihDGs
DEBUG:get_topics:title = Error while working in Linux with jBrout tags, added in Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5Be5DnUL6Q4
DEBUG:get_topics:title = A new DEB "0.3.340"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SsStHIbf6NM
DEBUG:get_topics:title = basket file
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/f9ZFg2VS6uw
DEBUG:get_topics:title = jbrout on arch linux
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QB-RPx2M0Yk
DEBUG:get_topics:title = Debian et SVN erreur
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QiRxBhzOWVc
DEBUG:get_topics:title = incorrect exif/iptc tags
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B61-80-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/p6N5MdzmHVs
DEBUG:get_topics:title = Error Code 1 on start up, clean install
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/f2f3nirQBS0
DEBUG:get_topics:title = Don't you want to switch?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Jd-E2NfWp4Y
DEBUG:get_topics:title = weird artifacts on full screen display
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Avc3BVTxhtk
DEBUG:get_topics:title = erreur au lancement
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/itPQsTKI2_U
DEBUG:get_topics:title = Updated patches ... exiftool elimination and one small Gtk issue
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/FWjRGw-dd1s
DEBUG:get_topics:title = Keyboard Shortcuts: Ratings
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mxXjdd6-srU
DEBUG:get_topics:title = Picasa export
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xNwoVmC07KI
DEBUG:get_topics:title = repo version incompatible with ubuntu 11.04 ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/XztV8v5bi4s
DEBUG:get_topics:title = Re: Digest for jbr...@googlegroups.com - 4 Messages in 2 Topics
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QievVo1k2AE
DEBUG:get_topics:title = Re: Digest for jbr...@googlegroups.com - 2 Messages in 1 Topic
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/TVN9yooEUTw
DEBUG:get_topics:title = strange import error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kcubAOSADso
DEBUG:get_topics:title = Miniatures img corrompues mais l'image s'affiche en cliquant dessus.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/d7aY9RMq4_Q
DEBUG:get_topics:title = [Issue #181] Crash on startup
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aYojY-xVxjc
DEBUG:get_topics:title = installation avec svn
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vWTHOf4kKVA
DEBUG:get_topics:title = Re: Digest for jbr...@googlegroups.com - 2 Messages in 1 Topic
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/RtIzIMtkiTE
DEBUG:get_topics:title = éditer commandes externes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0dbIQurQ5HM
DEBUG:get_topics:title = erreur après mise àjour
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8l2PsGOFh5M
DEBUG:get_topics:title = Great new feature from GoogleCode ... may be can be really useful in our case
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PJb39Iehm_U
DEBUG:get_topics:title = Re: Digest for jbr...@googlegroups.com - 2 Messages in 1 Topic
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mHehgOBpoq0
DEBUG:get_topics:title = GUI menus for plugin
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B81-100-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/94MOdPmDPFU
DEBUG:get_topics:title = future of syncTags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5PKwfjg-pqA
DEBUG:get_topics:title = Erreur Traceback au lancement, suivi du plantage en validant la fenêtre
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Xq3OHOZJKGY
DEBUG:get_topics:title = Couple of bug fixes and query about the current status of the project
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BEUgNsKBcao
DEBUG:get_topics:title = Où est stockée l'arborescence des tags sous Ubuntu
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dvQmZxpujXY
DEBUG:get_topics:title = Sony RAW Files
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zi1CHj1vTwc
DEBUG:get_topics:title = Suggestions / Wish List
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QMUp4xU64IM
DEBUG:get_topics:title = Operations -> Rebuild thumbnail = AttributeErro: 'module' object has no attribute 'Image'
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IxXeM3NGLMM
DEBUG:get_topics:title = Associate RAW with JPEG
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6zYA4Tjry38
DEBUG:get_topics:title = How to build a plugin?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ip8TdJ8fqTo
DEBUG:get_topics:title = Error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/cA5UWeLYdYk
DEBUG:get_topics:title = exiftools considered harmful
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JNNv8by7MHE
DEBUG:get_topics:title = Dum  president of Ukraine  testing  to smoke weed  hot video
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HD-MyIlG7dc
DEBUG:get_topics:title = MaJ 0.3.282
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hNlGioz2qvM
DEBUG:get_topics:title = picasa upload
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Ndf4fnZsvuc
DEBUG:get_topics:title = Déinscription
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/3h7Wm9aIVxU
DEBUG:get_topics:title = Données EXIF incorrectes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kPZRZT5CY58
DEBUG:get_topics:title = rating / issue 95
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vLMewV2wKOI
DEBUG:get_topics:title = Shotwell
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LKqTB1dqqng
DEBUG:get_topics:title = how to copy tags/metadata from another picture ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1XAEnvmEv_E
DEBUG:get_topics:title = jbrout sur plusieurs ordis
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B101-120-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/DTJnFpkKEkE
DEBUG:get_topics:title = jbrout generating non-compliant metadata?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/H4FD_PGfahg
DEBUG:get_topics:title = JBROUT ne demarre pas
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/V3DZfqM7elE
DEBUG:get_topics:title = Comment faire ...
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6S4lULsmIQE
DEBUG:get_topics:title = jbrout 3.284 - Mandriva 2010.1
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YfHNSI21tLs
DEBUG:get_topics:title = Feature Request:
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-wwZpljtz7c
DEBUG:get_topics:title = bandes ou cadres rouges ???
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/g02RwxnbTN0
DEBUG:get_topics:title = videos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8MAnfOegAuw
DEBUG:get_topics:title = erreur dans le plugin de flickr
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_DzksNguT3E
DEBUG:get_topics:title = Exiftool error when tagging pictures (with synchronizeXmp on)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MrvS0tT9o0s
DEBUG:get_topics:title = A gnat and a question
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/y0ZlMVzEAVQ
DEBUG:get_topics:title = Win et XMP
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/atzGdHc2oEE
DEBUG:get_topics:title = Jokers dans les recherches (was: Catégories de tag)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fQhnQW_Yw9A
DEBUG:get_topics:title = Catégories de tag
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8I3jLRAwuUc
DEBUG:get_topics:title = [Hors Sujet] Recadrage d'une photo
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dr_vU8ZXi-w
DEBUG:get_topics:title = déplacer les fichiers xml
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JgBphi1mPzI
DEBUG:get_topics:title = Jbrout plante avec Debian Testing
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LlxsxzDjbng
DEBUG:get_topics:title = Problem to use jbrout with Ubuntu 10.04 64bit
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ruvSDxk9Dec
DEBUG:get_topics:title = jBrout not starting under windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SjAUsSFmo8I
DEBUG:get_topics:title = Jbrout will start its xmp job : Fwd: pyexiv2 0.2.0 released
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/roblycMYKNg
DEBUG:get_topics:title = questions about categories, xmp, etc.
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B121-140-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1VsLhnOGoxU
DEBUG:get_topics:title = Probleme IPTC avec logiciels tiers
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Q3E_6Phvyps
DEBUG:get_topics:title = IPTC issue with some softwares
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mi0j0Lj8ruY
DEBUG:get_topics:title = Export to flickr error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_LaCfjivSNM
DEBUG:get_topics:title = Iptc Captions cs. JPEG comments
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9HY04FUEtaY
DEBUG:get_topics:title = Rotation automatique
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6cVFqkysLK4
DEBUG:get_topics:title = import 10 000 pictures
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VSnApaIAz-4
DEBUG:get_topics:title = Trés long pour l'écriture des tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/CCWXhJNwdAE
DEBUG:get_topics:title = error code -10
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4MouKVJrGZ4
DEBUG:get_topics:title = debian lenny : incompatibility with python-gdata library
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JLWHpg-OCqs
DEBUG:get_topics:title = error when try to write comments
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/XN4_6QFADhs
DEBUG:get_topics:title = Externaltools et champ iptc caption
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VIZ27DT2wzk
DEBUG:get_topics:title = Error during "Export to"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/wfJkr9Njl_0
DEBUG:get_topics:title = Binaires exiv2 et pyexiv2 pour Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NaFfYatO-f4
DEBUG:get_topics:title = Video file management
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/B2TPH5GvW6U
DEBUG:get_topics:title = f-spot in image Tag (not database) Metadata import
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aQg1OZuo0OE
DEBUG:get_topics:title = lock file issue
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yplXHff2Xj4
DEBUG:get_topics:title = Attn. Rob Wallace (re: Windows port)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/FJPOQt-ve-Q
DEBUG:get_topics:title = customize foldersByDates
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PZThrGwn5Sc
DEBUG:get_topics:title = démarrage impossible
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/pdWQ_mpaLCk
DEBUG:get_topics:title = RAW formats : NEF
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B141-160-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/3BuuZSGd2gM
DEBUG:get_topics:title = erreur import de fichier
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5doOOoSjIKI
DEBUG:get_topics:title = jbrout window size
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/cpW8NE8Nj8A
DEBUG:get_topics:title = Keyboard shortcuts
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rEtQOm258uU
DEBUG:get_topics:title = Error messages in exceptions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/2R8nW6q49xg
DEBUG:get_topics:title = Bug à l'import
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/pKEdhs0sChQ
DEBUG:get_topics:title = new plugin structure in svn ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/lWpg_a3KQNs
DEBUG:get_topics:title = export per mail
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MqjrSD7hW0A
DEBUG:get_topics:title = thumbnails format in different jbrout versions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/cmeGslbvCB0
DEBUG:get_topics:title = Failed to import SE K750i pictures
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/A6MA45IzbPk
DEBUG:get_topics:title = BUG IMPORTING
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/R1MVYiZ1qp0
DEBUG:get_topics:title = Geotag (Géolocalisation)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JJuejcJhu38
DEBUG:get_topics:title = doesn't work on ubuntu 9.04
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/nBM1F-6SDeE
DEBUG:get_topics:title = New official website
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EP_3dFC280I
DEBUG:get_topics:title = test svn
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/qR79kY7R9JQ
DEBUG:get_topics:title = jbrout won't start
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VfP52CG-lK8
DEBUG:get_topics:title = f-spot replacement/sqlite backend support
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/m8xA3FFf3QY
DEBUG:get_topics:title = After RAW files, videos ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_pBvabgHhQQ
DEBUG:get_topics:title = basic support for RAW files
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rH9xgG0iZBA
DEBUG:get_topics:title = 100% CPU utilization on the start
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8aJYOkMFu1g
DEBUG:get_topics:title = XMP support
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B161-180-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/AnIG8QsqRF0
DEBUG:get_topics:title = jbrout without exiv2 ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Sh4DSyj0Eok
DEBUG:get_topics:title = open an image with keyboard - keep selection - patch included
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rfp5Au9yQ_8
DEBUG:get_topics:title = several improvements - patch included
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xqPqeV_V3Z8
DEBUG:get_topics:title = Erreur Plugin : TIFF array element tag 43 has wrong type
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IL-PUeEhVY8
DEBUG:get_topics:title = How could Zoom benefit to JBrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/wwL8mcrLK04
DEBUG:get_topics:title = Contribute
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/phkAaUMTkGU
DEBUG:get_topics:title = Keywords storage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NMTUFa2ncC4
DEBUG:get_topics:title = Edit with external tool (Gimp) : keep original ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zwvPQpE6kYw
DEBUG:get_topics:title = Editing with The Gimp
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BY_18lpsHnk
DEBUG:get_topics:title = IRC chan
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_q3Sjas1Ljo
DEBUG:get_topics:title = Re: jbrout - 3 new messages in 1 topic - digest
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LMCHp1y2zSA
DEBUG:get_topics:title = Re: Geentoo ebuild?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LeJnPGQi3HU
DEBUG:get_topics:title = Menu exception
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MpVVaO50C9s
DEBUG:get_topics:title = copyInfoTo  : runtime error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/f4iYrFZ3sZU
DEBUG:get_topics:title = python XMP
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/3c5JPgFIPPk
DEBUG:get_topics:title = jbrout-0.3.174-1 backtrace
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xmTRkd76wWo
DEBUG:get_topics:title = Discussion sur features-request
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/iHUMkk9L8cw
DEBUG:get_topics:title = Feature Request
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zk4dyX_sMtk
DEBUG:get_topics:title = How can i get rid of the "Imported tags" category ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/oyJcghBDXPM
DEBUG:get_topics:title = Test ok, quelques suggestions
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B181-200-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/WIRtuAh7oFo
DEBUG:get_topics:title = Problème lancement Jbrout, version depot debian ou svn
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/I9ZdP4e4cNI
DEBUG:get_topics:title = Problème de Plugin
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/tzh0k17Z2nk
DEBUG:get_topics:title = Asyncronous tag updates.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/tGoQ-1KVBnc
DEBUG:get_topics:title = Installation woes.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/KbmHuSerOY4
DEBUG:get_topics:title = slideshow plugin
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hMrNSD5T_QY
DEBUG:get_topics:title = Installation on Kubuntu 8.04
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/lMxge-FJrm8
DEBUG:get_topics:title = An external command to copy and rename selected files (to allow  export to a Canon camera) ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EViS77IEK-M
DEBUG:get_topics:title = Since latest ubuntu jaunty updates, i can't import my photos anymore  into jBrout : all photos are greyed out in GTKFileChooser
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mI3rhQ4jW-0
DEBUG:get_topics:title = an external command to burn a Photo CD with the current selection  (Linux) ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/L6pT0dNgqg4
DEBUG:get_topics:title = adding a "polaroid effect" to the export box
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MODtYNQ5Skg
DEBUG:get_topics:title = XMP support (again)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4WabfR1IYaQ
DEBUG:get_topics:title = Problème lors du lancement
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QeztBWM2SP0
DEBUG:get_topics:title = Problème au niveau des tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/TlahhpS7RAk
DEBUG:get_topics:title = [Fwd: jbrout - 4 new messages in 2 topics - digest]
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/A_W0OCp7F2s
DEBUG:get_topics:title = Metadata Working Group Introduces First Specification for  Interoperability and Preservation of Metadata in Digital Photography
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/T89AK9gPFMo
DEBUG:get_topics:title = How should the zoom work?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YJ4MQkDCuds
DEBUG:get_topics:title = MP3 files?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/goMLVJTt-kg
DEBUG:get_topics:title = FYI -- organize
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/i7Q2QbEyUn8
DEBUG:get_topics:title = single click browsing
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EGpMJzuH_6I
DEBUG:get_topics:title = No note about 0.3 on jbrout.free.fr in help?
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B201-220-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yNGvFb0jA-8
DEBUG:get_topics:title = python-pyexiv2 on Ubuntu (Gutsy)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ousjz_jU8KU
DEBUG:get_topics:title = German localization
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JunK4MYX0aM
DEBUG:get_topics:title = upgrading in Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IsqFSJx97nU
DEBUG:get_topics:title = Hello and glad to learn about jbrout...
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/DGG0YjhFlUM
DEBUG:get_topics:title = The (so long awaited) 0.3 release is OUT ... and happy new year
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4wxhfvBjGEU
DEBUG:get_topics:title = Use a separate thread for long operations
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Q01fOZN8zvw
DEBUG:get_topics:title = vanishing panels
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JLoqGasD0IA
DEBUG:get_topics:title = where is jbrout comment stored?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/e5zufyPZ3MY
DEBUG:get_topics:title = Re: "cloud" display of tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aHb4Mc0lBDg
DEBUG:get_topics:title = Skip import errors
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ySU_EoLXs8A
DEBUG:get_topics:title = Comment installer - How to install pyexiv2
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Src4rG6RQ9o
DEBUG:get_topics:title = Stuck in an album
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ST_hKvjHnA8
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/N1j7yWBx1nk
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hV2MYxzQzf4
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vj3TdtKx7Tw
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4ICLof_C17I
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/wQ53135z34s
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ESrHjHMp_i4
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YSHuke9cyMM
DEBUG:get_topics:title = russian translation
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B221-240-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SuSlF4EuIkE
DEBUG:get_topics:title = broken jpeg hangs jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/d9tyKM37GOI
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Zv4ca_mEG4w
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MxRPUFWDmj4
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/eK_47XB2RVA
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kkhFMiVUAcM
DEBUG:get_topics:title = Jbrout sur macosx ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/uNun6rlmj48
DEBUG:get_topics:title = Picasa does not see/reconized any TAG made with JBROUT
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1AH1wTi-a_8
DEBUG:get_topics:title = Éviter le scan de certains répertoires
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/UiDL50jCch4
DEBUG:get_topics:title = how to back tree of tags and Vista
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Lp4nvdZ6-AA
DEBUG:get_topics:title = http://jbrout.python-hosting.com/wiki/Download -- bug concerning Fedora
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Z-q6LktmWEs
DEBUG:get_topics:title = ALL MAJOR DESIGNER REPLICA W ATCHES!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IM5tWBHpDLQ
DEBUG:get_topics:title = Null JPEG size error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Ort7iEFFB80
DEBUG:get_topics:title = Import bug ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HApc0uMBX14
DEBUG:get_topics:title = »Add Folder« file dialog empty and hangs
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VVAVGfAUEpw
DEBUG:get_topics:title = Is it possible to change Jbrout to rename files
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9kWbRvrdJio
DEBUG:get_topics:title = redater des vieilles photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/C8-WPrbFK5A
DEBUG:get_topics:title = Please skip images with errors during importing
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yvge_oQhTZ0
DEBUG:get_topics:title = Can't start Windows version - libpixbufloader-png.dll isn't found
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-WwYcI-Bods
DEBUG:get_topics:title = Mandy Moore Photoshoot
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PUb6tDOoNII
DEBUG:get_topics:title = Paris Hilton Hamburger Comm
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B241-260-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/XAQ5wQx-RNA
DEBUG:get_topics:title = bug starting windows version
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5WgS_ISID-g
DEBUG:get_topics:title = Adding a new album : bug ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/RpQwLyjI4RQ
DEBUG:get_topics:title = Disgusting images on our Google Groups page
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8AvULoRjKIE
DEBUG:get_topics:title = jbrout startup-bug?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/atqr_6SLHO4
DEBUG:get_topics:title = Requete pour Jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YsEAbpRXyRA
DEBUG:get_topics:title = jbrout-svn:201 Picasaweb expot error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/WlpwxwPTG5Y
DEBUG:get_topics:title = [Fwd: jbrout: Improve the comment plugin a LOT (+ support in the underlying jbrout code)]
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/10ozNv2iuO4
DEBUG:get_topics:title = Any news ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fvKALSVeRGY
DEBUG:get_topics:title = Nouveautés dans Fotoo Gallery (jBrout Web)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jqkfWdiF8og
DEBUG:get_topics:title = jbrout package is now official part of Fedora
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ISZgNkngZq0
DEBUG:get_topics:title = Commandes externes questions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hmcd6oftMP4
DEBUG:get_topics:title = (re)Generation des vignettes et fichiers temporaires
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/7TAwLbtxmbQ
DEBUG:get_topics:title = Quelques idées d'amelioration
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xfjceUPU26w
DEBUG:get_topics:title = How to Find The Best Free Web Hosting ????
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/h2KlOkd6CIU
DEBUG:get_topics:title = Erreur lors de l'import d'un répertoire de photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/RO6aHWsGzGk
DEBUG:get_topics:title = BEST HOSTING WEB SITE????
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Sq41k1XCMOw
DEBUG:get_topics:title = Looking For the best domain and hosting 2008 here we’re....all for free....free
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ZcCL2dfCQiw
DEBUG:get_topics:title = Cannot expoer to Flickr in 0.2.201 under windows XP
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/eiynoyBx3SQ
DEBUG:get_topics:title = Rotation manuelle d'image et modification de la date système du fichier : pb de droits
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fCkNBKZXOSQ
DEBUG:get_topics:title = file duplication
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B261-280-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/84GGzsq90_A
DEBUG:get_topics:title = [patch?] AssertionError if a photo has corrupted meta-data
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HL3uCGcFgaU
DEBUG:get_topics:title = jBrout Web
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/K2xnmT8Ekj8
DEBUG:get_topics:title = Orientation des photos : mauvaise interprétation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1j7lpzIhCpQ
DEBUG:get_topics:title = ubuntu installation problem
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hQcXaDgxA-w
DEBUG:get_topics:title = 0.2.201
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8vttNPyiin0
DEBUG:get_topics:title = Activity with JBrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/O2fUS_EIq2c
DEBUG:get_topics:title = Yahoo Messenger 9.0 With Voice Beta Free Download
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aEU9VkifokQ
DEBUG:get_topics:title = AVG Anti-Spyware 7.5.1.43 Free Download
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/w2z6QXw5Ros
DEBUG:get_topics:title = Bug with some pictures
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PbbPcYIc2Pc
DEBUG:get_topics:title = bug report
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/D9BT0NQFHE4
DEBUG:get_topics:title = git repository with current jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SNR9D3xr-Tk
DEBUG:get_topics:title = Free Download Software Yahoo Messenger 8.1 with Voice: IM Phone Calling Card & Firefox Free Download
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rIC1sGG3aqw
DEBUG:get_topics:title = (¯`v´¯)» FUNDAMENTAL IN TRADING INFORMATION
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ju1gaZ494wA
DEBUG:get_topics:title = @@==((((( FUNDAMENTAL IN TRADING INFORMATION )))))==@@
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/d7f_tmMki8A
DEBUG:get_topics:title = |==^^^^^ Are you willing to do it with me?? ^^^^^==|
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aBGdmIelysg
DEBUG:get_topics:title = mini bug
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fDeBdZbYd3Y
DEBUG:get_topics:title = D80: Problem with endianness of nikon MakerNote when generating JPG  from RAW
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/stR7pGQH3uk
DEBUG:get_topics:title = $ MORE $ in 90 Days - NO LOANS - NO COMMITMENTS!!!!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/UNdODMM8Fdk
DEBUG:get_topics:title = [bug report] some images aren't preprocessing correctly
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/b6QmCeubdJ4
DEBUG:get_topics:title = $ MORE $ in 90 Days - NO LOANS - NO COMMITMENTS!!!!
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B281-300-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/CsvFTv3diik
DEBUG:get_topics:title = Managerial Articles
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0fiU9baLT_M
DEBUG:get_topics:title = Jbrout sur réseau
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aTAowBuFSGY
DEBUG:get_topics:title = Best 2008 Anti Virus Kaspersky Anti-Virus 7.0 & Mcafee Anti Virusscan 10 Free Download
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/B31G41TYv5A
DEBUG:get_topics:title = bibble, raws and movies
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zjF8X37erOw
DEBUG:get_topics:title = Tags IPTC en UTF-8 ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Jd5eJgSmoiw
DEBUG:get_topics:title = Vertical tabs in jbrout (patch)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/qdR6CVXtPXE
DEBUG:get_topics:title = select image last viewed in full screen mode
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Ahx2X0T7QCY
DEBUG:get_topics:title = Logiciel exifer
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HN0rM7AzvaA
DEBUG:get_topics:title = Add: RAW in jBrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/C1UFeA9AJs0
DEBUG:get_topics:title = probleme avec exif
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bLhfHXbGp9Y
DEBUG:get_topics:title = Video management / gestion des vidéos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EAOTCmJXBHE
DEBUG:get_topics:title = probleme avec exif - photo attachee
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/R6eWlwtUkFw
DEBUG:get_topics:title = Jbrout to manage pictures on SMBFS share
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5ZjmTOO2-uc
DEBUG:get_topics:title = jBrout ne démarre pas (0.2.197 sous Windows)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/XFBctrLo2qY
DEBUG:get_topics:title = ImportError: No module named locale
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NxH8R8-tP48
DEBUG:get_topics:title = Import error : EXIF ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dFljy8a-VIs
DEBUG:get_topics:title = Importation des tags depuis f-spot
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bN8tEivMnBc
DEBUG:get_topics:title = Rotate Images
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ebZ76HKi7tg
DEBUG:get_topics:title = New page "Features request"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yoQ9RSEwr4M
DEBUG:get_topics:title = Extension et traduction
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B301-320-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zSfwonw8078
DEBUG:get_topics:title = bug exif
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/a3YPngTNAlM
DEBUG:get_topics:title = auto rotation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aupqrgUEAyE
DEBUG:get_topics:title = feature request
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6ssN0dO0wIE
DEBUG:get_topics:title = Migration vers Ubuntu 7.10.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9k4Q8E3HDaU
DEBUG:get_topics:title = Coolpix 4500 RAW .jpg files bug
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yjJ9EUJhlKA
DEBUG:get_topics:title = keyword size limit
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/tlD8lMkTYF4
DEBUG:get_topics:title = Documentation sur ubuntu.com
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1M7fPrHSMOc
DEBUG:get_topics:title = feature  request
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0qn7ba84pug
DEBUG:get_topics:title = Pb export to Picasa
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ejotdPM-GwE
DEBUG:get_topics:title = classement
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/li99Ra9LU8k
DEBUG:get_topics:title = problème sous windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/qKEVRk1wlq0
DEBUG:get_topics:title = portabilsation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/2ka_ASHOc_g
DEBUG:get_topics:title = Lenteur
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hsP2vDtoY_c
DEBUG:get_topics:title = impossible de mettre jbrout à jour
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yQjgMCBrUAo
DEBUG:get_topics:title = deb package dependencies
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jGspgxnL0C8
DEBUG:get_topics:title = Comparatif jBrout / F-Spot + suggestions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/DEZqclobipg
DEBUG:get_topics:title = Première utilisation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xMGsvFlAeyA
DEBUG:get_topics:title = gestion des dates
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/55AOEUpYIIg
DEBUG:get_topics:title = Erreur lors édition des commandes externes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rrP_3VXYRXo
DEBUG:get_topics:title = libglib-2.0-0.dll introuvable
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B321-340-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/D5YPpwe6Xqs
DEBUG:get_topics:title = script: evolution attachment
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ZPosWxPV8bY
DEBUG:get_topics:title = New release 0.2.188 - "autorot off by default"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bfmlAkJZdXE
DEBUG:get_topics:title = Some improvements
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6S1a98C51dA
DEBUG:get_topics:title = Tag IPTC
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_Jtmxc7tkxk
DEBUG:get_topics:title = Bug in Html export ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jlsQw54tb_Y
DEBUG:get_topics:title = Bravo
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jl5gh80m728
DEBUG:get_topics:title = [Survey/Sondage] autorotation exif at import ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BnX5YyV8SdA
DEBUG:get_topics:title = [BUG] Problème d'interpréteur ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4AhTdCja8hw
DEBUG:get_topics:title = New version 0.2.187 : autorot & ability to change name format
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Xj2sI5OL9Hc
DEBUG:get_topics:title = Autorotation according exif tag : need testers !!!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0oRqCRICXGo
DEBUG:get_topics:title = A propos de l'arborescence des tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4vbSzb_PmRg
DEBUG:get_topics:title = PATCH: Using libiptcdata instead of iptcinfo?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LvFxOZI5J_Y
DEBUG:get_topics:title = Automatic file renaming
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/TWyGut21BeU
DEBUG:get_topics:title = minor patch, to add a few more editors to the possibilities for editing external tools
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/FEBYSE9CHBU
DEBUG:get_topics:title = external tools gang the application
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mlVNpLqNlNI
DEBUG:get_topics:title = Cheap Web Hosting Catalog
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Tt8HO--FnIA
DEBUG:get_topics:title = Installing on debian amd64
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jckXpn6HC58
DEBUG:get_topics:title = Bug when dragging and dropping tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4cxhA21Db4I
DEBUG:get_topics:title = Re : Re : Drag and drop won't work in many files
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/stDUgE235ms
DEBUG:get_topics:title = Re : Drag and drop won't work in many files
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B341-360-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-zF1VxNcJIM
DEBUG:get_topics:title = Drag and drop won't work in many files
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BDIFW6vv40w
DEBUG:get_topics:title = jBrout does not remove IPTC-tag
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zOKcuHDrbYc
DEBUG:get_topics:title = Many error popups when bad character in IPTC-tag
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jRmSpxTRTYU
DEBUG:get_topics:title = Can't import folder
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0oxyi3Eijp0
DEBUG:get_topics:title = Can't upload/export to Picasa web albums. Error message.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/OpBwDf1cHaE
DEBUG:get_topics:title = New version 0.2.182 + packages (deb/rpm/win32)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4erIa4uPAbw
DEBUG:get_topics:title = New Big Release Version in SVN
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Zvxz_s_F3qY
DEBUG:get_topics:title = Minor Patching and New Features/Plugin ideas / work
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/sNPcy85tS-0
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/byt9Ly4TSSY
DEBUG:get_topics:title = jBrout et Beryl / Compiz
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/H5Ab1731-m8
DEBUG:get_topics:title = User manual and online support in english
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ezyBkl8A4iA
DEBUG:get_topics:title = Manuel utilisateur et aide en ligne
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BcjYQaiakYg
DEBUG:get_topics:title = encodage et contraintes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/q_qS1Gk0JII
DEBUG:get_topics:title = plugins for IPTC data / problem with Flickr export
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zNtG4TemU0c
DEBUG:get_topics:title = Bug report (locales render Time tab unusable)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/E7hR9vEBKpY
DEBUG:get_topics:title = Clearing the shortcut
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JFP9m1N4aYY
DEBUG:get_topics:title = Jbrout error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/l2t2m4reIZ0
DEBUG:get_topics:title = Hide files / Recursive Scan
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aIKvh9-5_vo
DEBUG:get_topics:title = text search box for tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bq40Z4D8eIE
DEBUG:get_topics:title = petite suggestion
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B361-380-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_pJ_QfvRq6o
DEBUG:get_topics:title = exiftran et jhead avec slackware
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/uLQ8r358c0w
DEBUG:get_topics:title = Quelle version ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yr_CpYwiXRU
DEBUG:get_topics:title = Suppression du renommage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MVeOcbWqulA
DEBUG:get_topics:title = How to create a new folder?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zor-QYdq9VY
DEBUG:get_topics:title = multiple hierarchy categories
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SuDr7iqNu44
DEBUG:get_topics:title = Plugin : Liste des albums
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kvpyqgbkkgg
DEBUG:get_topics:title = erreur "too many sections in jpg file"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/J6QIivQnWcQ
DEBUG:get_topics:title = Message d'erreur libglib-2.0-0.dll
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kLi7bGdi4F0
DEBUG:get_topics:title = erreur deuxième lancement
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/deaWRAdBF38
DEBUG:get_topics:title = [bug critique] photos effacées !!!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/hoCdWVaAFsY
DEBUG:get_topics:title = IPTC Metadata for XMP?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/94RuSpT3PmM
DEBUG:get_topics:title = User manual and online support in english
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/R7A9R2Nw4yc
DEBUG:get_topics:title = [PATCH] Include defense against inclusion of non-PCDATA to db.xml
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LVMdfR17JTk
DEBUG:get_topics:title = Batch rename
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8cZ9SpC0NmY
DEBUG:get_topics:title = Plantagement et non redemaration
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Tyr9bw7drSo
DEBUG:get_topics:title = Wrong exif jpeg orientation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/qmpeaiw2t5g
DEBUG:get_topics:title = Flickr upload not working
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/x3nfDWU5x-o
DEBUG:get_topics:title = thumbnails?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/UuYH24smlsE
DEBUG:get_topics:title = Error when tagging photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ipF-57RYzO8
DEBUG:get_topics:title = Message d'erreur
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B381-400-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6jh89VP23so
DEBUG:get_topics:title = Wikipedia JBrout en portugais
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/7e4qlN_KjNg
DEBUG:get_topics:title = Données IPTC.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/cwUHJloQOaY
DEBUG:get_topics:title = Autre-chose que du jpg ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/FHHYky6aVlc
DEBUG:get_topics:title = Fenêtre "à propos"
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LgVINv0TMjo
DEBUG:get_topics:title = Erreur de segmentation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/l0jCBZoD700
DEBUG:get_topics:title = error after import my pictures
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/OZYK5CH6qHs
DEBUG:get_topics:title = Manuel utilisateur
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QeLLrRpmxSA
DEBUG:get_topics:title = Les raccourcis claviers et les classements
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SJWQd0V7R7M
DEBUG:get_topics:title = mass tagging plugin -- could I ask for help?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_2YsoYX8vzI
DEBUG:get_topics:title = Quelques questions sur les fonctionnalités
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6KKSDG7Y0-0
DEBUG:get_topics:title = Bad link on http://jbrout.python-hosting.com/wiki/WikiStart
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MKbyMXcZp18
DEBUG:get_topics:title = English list
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mi-I10LSLP0
DEBUG:get_topics:title = Classement par date
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/PwruTxNL9HE
DEBUG:get_topics:title = Comments loaded from DB and not from photo file
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/oDusS7e2Dr8
DEBUG:get_topics:title = Wide photos do not show correctly & what is the text box up there for?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/unMD9uzP2ZM
DEBUG:get_topics:title = download latest versions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/QVc3_LpDVzk
DEBUG:get_topics:title = JBrout on the English Wikipedia
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/5lWydoq0oKY
DEBUG:get_topics:title = Effacer plusieurs photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/XEx12m0hQZg
DEBUG:get_topics:title = My first plugin: geotaggin
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ig35c9uZ1Rk
DEBUG:get_topics:title = Doublons
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B401-420-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/pLCjiifV5_s
DEBUG:get_topics:title = Questions diverses et variées
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NXiI5aEd7kY
DEBUG:get_topics:title = Aide en ligne et manuel utilisateur
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/stEOSUJLFNk
DEBUG:get_topics:title = Bug with Basket counter
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jYHjQ5AX7d4
DEBUG:get_topics:title = erreur db.xml
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/umTV3ajXwsE
DEBUG:get_topics:title = Transfert d'images
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/EnqypBNkzhg
DEBUG:get_topics:title = Startup problem in XP
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HYCw_JsCW6Q
DEBUG:get_topics:title = Media center?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/u38KBZ3QRw8
DEBUG:get_topics:title = Big release ... revision 140
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/azUt6EPc238
DEBUG:get_topics:title = Sauvegarde des photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/WsEbuEKnIMU
DEBUG:get_topics:title = Bug sélection / commentaires
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9X6vEilfYlQ
DEBUG:get_topics:title = Manuel utilisateur
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YpyBCqcOlsk
DEBUG:get_topics:title = Creer des données exif sur des photos scannées + question jhead
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/TO5bDQWVFUk
DEBUG:get_topics:title = Notice framasoft episode
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4AnisiL6K0I
DEBUG:get_topics:title = SVN access problem
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/HpDzLF45CBM
DEBUG:get_topics:title = Catalogue de tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/brL_u_RxGQo
DEBUG:get_topics:title = A propos de la notice sur framasoft
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/DCbLE55P_-w
DEBUG:get_topics:title = Pb export Email
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/FRgRbcRV4iQ
DEBUG:get_topics:title = Nouvelle fonctionalité
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/c6qlQRWTDFs
DEBUG:get_topics:title = Packaging for Fedora/Red Hat and some issues with it
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/7sJtrLK8qiE
DEBUG:get_topics:title = Simple et efficace !
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B421-440-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/2YP85TIS21A
DEBUG:get_topics:title = Re : Aide sous Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bxwnwjhoBEg
DEBUG:get_topics:title = Aide sous Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-SViKsD83Ac
DEBUG:get_topics:title = Petits bugs
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/rIQsHWuSA1I
DEBUG:get_topics:title = Re : JBrout sur Wikipedia
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BqPf3paB0bs
DEBUG:get_topics:title = JBrout sur Wikipedia
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/CG2R_DOVjKo
DEBUG:get_topics:title = attributs IPTC
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dvLHnWbo-rw
DEBUG:get_topics:title = Caractères spéciaux
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YNtH1hWxlrs
DEBUG:get_topics:title = Re : Re : Documentation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SqbUI8KhrBg
DEBUG:get_topics:title = Re : Documentation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/m4FWdZtexyI
DEBUG:get_topics:title = Documentation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/mgs-sM1lR_g
DEBUG:get_topics:title = import of metadata from f-spot?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IUfrmQxvmzI
DEBUG:get_topics:title = Image refuse tag
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/P0vCE3C08Xs
DEBUG:get_topics:title = Aide HTML
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Vd2AcCkgTpE
DEBUG:get_topics:title = IPTC encoding
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Wpvulv6UFAE
DEBUG:get_topics:title = problème d'accent
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/UM3PpVEusrw
DEBUG:get_topics:title = jBrout et Mandriva
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IPPKoCytOs8
DEBUG:get_topics:title = Avancement de JBROUT
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Jkuyj7gPUXc
DEBUG:get_topics:title = Bug dans le deplacement de Tag
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vpknd4zHmnU
DEBUG:get_topics:title = Re : Re : Propositions d'améliorations
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/lHE_JuvmLJY
DEBUG:get_topics:title = No de révision
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B441-460-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/AAk7inAeMfo
DEBUG:get_topics:title = Re : Propositions d'améliorations
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xtj5YTC9wxc
DEBUG:get_topics:title = Propositions d'améliorations
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/lMqRDzLvza8
DEBUG:get_topics:title = export à une taille donnée
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9UF_nj5xYUs
DEBUG:get_topics:title = Nouvelle Fonction
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/q7G11d2FqgI
DEBUG:get_topics:title = Imagettes ... problème
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/1uc8A37Slvg
DEBUG:get_topics:title = jBrout a été portabilisé
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/RhRkoM15SLk
DEBUG:get_topics:title = Re : jBrout a été portabilisé
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IPvNmv5NEsE
DEBUG:get_topics:title = Pb de droits
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/-a4UL21abUQ
DEBUG:get_topics:title = Developpement Jbrout et bugs...
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/LvvrqFd9RHA
DEBUG:get_topics:title = Nouvelle version 0.2.113
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Vz8exFKOjVo
DEBUG:get_topics:title = Bravo pour le retour du fullscreen
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/H2v9V7TAvy4
DEBUG:get_topics:title = Plus aucune miniature
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jY8-n61OcB8
DEBUG:get_topics:title = Segmentation Faul
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/GmYDLAenyH8
DEBUG:get_topics:title = Bug dans version 0.2.113
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JcEJru_PaH8
DEBUG:get_topics:title = Jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/AnsdSRfacbs
DEBUG:get_topics:title = pb au demarrage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Q-tpLDzToQE
DEBUG:get_topics:title = Faute d'orthographe
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/n27lQAF3Qps
DEBUG:get_topics:title = Version 0.2.98 pour Windows / Linux
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ojaSkXZj45Q
DEBUG:get_topics:title = Bravo pour jBrout et demande de précisions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/oClUlHEwsE8
DEBUG:get_topics:title = félicitations, idée et petite correction...
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B461-480-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/slMIpEjUbCI
DEBUG:get_topics:title = conflit jbrout pixvue et tag accentué
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/sTeTK2SpG1g
DEBUG:get_topics:title = Photos supprimées
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yHU7McWOe6A
DEBUG:get_topics:title = Développement de plugins et tickets
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/GYdeGNnnV_Y
DEBUG:get_topics:title = Ereur PicassaWeb
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/BdWlFtq9tU8
DEBUG:get_topics:title = Métadonnées
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/B_TFl7b_dRc
DEBUG:get_topics:title = Upload Flickr
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/raYe0N03zO0
DEBUG:get_topics:title = Upload to Picasaweb
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/a6tRoTIOnWw
DEBUG:get_topics:title = Partage WEB et probleme UTF-8
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/YgCW-AOzPi4
DEBUG:get_topics:title = Comment ça marche ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0GbWgAlq-Eo
DEBUG:get_topics:title = Too many errors!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/uc9XU7FBnRY
DEBUG:get_topics:title = Impossible de réinstaller ou de démarrer jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jEmorrUjue8
DEBUG:get_topics:title = Problème d'installation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/oAtr_F_6TBA
DEBUG:get_topics:title = rotation inactive
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/9otft5X68nw
DEBUG:get_topics:title = Éditions des données EXIF (artist, Image title...)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/drOGsen1vNo
DEBUG:get_topics:title = Ajout de tag non possible sous Ubuntu 6.06 LTS
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dN1wNWMz7qo
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xjokRyZKAwg
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/yfIQXIgWEwk
DEBUG:get_topics:title = Téma je skryté, protože bylo označeno z důvodu zneužití.
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/eSRqZeD9F0w
DEBUG:get_topics:title = Résolu : Erreur XMLSyntaxError au second démarrage de Jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ZOVeqlKqzjc
DEBUG:get_topics:title = Upload Flickr
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B481-500-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/2A2SiDmVoDw
DEBUG:get_topics:title = Interuption de la création d'album
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/g6vDqfE8e_U
DEBUG:get_topics:title = Problème d'installation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/84puzNCHBZY
DEBUG:get_topics:title = some observations
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/IzvDvumuTo8
DEBUG:get_topics:title = Problème Mandriva
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NutOndcbhfE
DEBUG:get_topics:title = Réorganiser les tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/CtXP8lN2-Kk
DEBUG:get_topics:title = Probleme suite à une MaJ d'Ubuntu
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/sAYDrEtZHTY
DEBUG:get_topics:title = svn update to 75
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kMLqDQJXkbo
DEBUG:get_topics:title = Pb de compatibilité des Tags IPTC
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NG_gV6J8BdM
DEBUG:get_topics:title = Erreur à l'import d'un dossier
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/WFEPGrbhYXA
DEBUG:get_topics:title = [Linux] problème avec fichiers sur FAT32
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/pD05nh829Fk
DEBUG:get_topics:title = suggestion de fonctionnalité
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/4Vmg5HT0KwM
DEBUG:get_topics:title = Interaction de jBrout avec HomePlayer
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/J6Ouxx_w9Lg
DEBUG:get_topics:title = Problème avec la recherche
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/bmRVyBY2Q8w
DEBUG:get_topics:title = problème sous w$
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/c66oQHU9UOI
DEBUG:get_topics:title = Extension des noms de fichiers images
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6w31svve9m4
DEBUG:get_topics:title = Suggestion : sélection à la volée
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Shy-nLZKrG0
DEBUG:get_topics:title = Problème Python.exe
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/aH-mduGWZ3Q
DEBUG:get_topics:title = Mauvais Exif avec version svn
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fiJyuM5gw9o
DEBUG:get_topics:title = Reinstallation Windaube
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/i_HeD06-Jz0
DEBUG:get_topics:title = Instal Mandriva blocage sur lxml
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B501-520-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/fKl-O6hTNPM
DEBUG:get_topics:title = IPTC Keyword & PHP
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/_raemWOhrVE
DEBUG:get_topics:title = mauvais taggage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/AllU0hHP65w
DEBUG:get_topics:title = bug
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/VZrkMxQcUts
DEBUG:get_topics:title = plantage jbrout ubuntu
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/gp14Zp85YOA
DEBUG:get_topics:title = lxml sur mandriva
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/pc82zVITrMw
DEBUG:get_topics:title = Grande Découverte
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/MRUQT065vhk
DEBUG:get_topics:title = probleme avec les vignettes
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/iFnwYoQl_5o
DEBUG:get_topics:title = Looking for lxml installer for windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zxNdgr0IEf8
DEBUG:get_topics:title = ListView
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/w8pBNPp3hjI
DEBUG:get_topics:title = gestion d'archives
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/3NgVkvAxqKM
DEBUG:get_topics:title = jbrout et le gimp
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8frikh_m9-c
DEBUG:get_topics:title = Ordre des albums
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/g4_cSjLykI8
DEBUG:get_topics:title = plantage de jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/WKGyUVW4Od8
DEBUG:get_topics:title = fonctiannalité : déplacer
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/kcjRuFIB0GA
DEBUG:get_topics:title = Explication detailler pour Installer JBROUT sur Mandriva
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/K-P6qhvvMGw
DEBUG:get_topics:title = 2 petites questions
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/OYVme6TOxxU
DEBUG:get_topics:title = Bonjour à tous
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/8YQdd2rqamw
DEBUG:get_topics:title = IPTC
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/GjzrBcNV20g
DEBUG:get_topics:title = chdir pour les plugins
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/qymEx5I-7nM
DEBUG:get_topics:title = iptc question revisited
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B521-540-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/0OIMv35R6Ug
DEBUG:get_topics:title = date de modif des photos
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/SJwJ1Gt0_Jo
DEBUG:get_topics:title = [patch] sélecteur pour mois/année
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Qff7ST64yPA
DEBUG:get_topics:title = mettre à jour?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Md5mFBhJIT0
DEBUG:get_topics:title = Erreur libglib lors de l'installation
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/jD5cdYTA5HM
DEBUG:get_topics:title = Présentation et modifs à jbrout
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/KR6USav8rqw
DEBUG:get_topics:title = Informations photos optionnelles en plein écran (patch)
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/NlkbKS_gcMw
DEBUG:get_topics:title = comment dire... c'est nickel
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/ZULNsZF03FI
DEBUG:get_topics:title = Plein écran en appuyant sur f
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/uKT9hKE50fc
DEBUG:get_topics:title = texte dans la barre d'état
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/z40EQEjetds
DEBUG:get_topics:title = Erreurs diverses
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/JXVrOk27EcY
DEBUG:get_topics:title = Changement de date
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/gN5cUk5qzUM
DEBUG:get_topics:title = IPTC - Champs disponibles
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/xqzf2XothvQ
DEBUG:get_topics:title = flickr upload error
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/dFiD5ETVqck
DEBUG:get_topics:title = Un ptit bug?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/AgBcIxJkLhA
DEBUG:get_topics:title = Petit Bug d'affichage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/TcOeLyr_iUY
DEBUG:get_topics:title = code rouge sur le thumbail
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/40QTpcZfT64
DEBUG:get_topics:title = Utilisation du logiciel
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Q5c4LADZ7fQ
DEBUG:get_topics:title = Renommage
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/7t8IaET1Kh4
DEBUG:get_topics:title = Commentaires - IPTC
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/et8ujbcdlNc
DEBUG:get_topics:title = Formats JPG & AVI
DEBUG:get_topics:other = <a href="https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout%5B541-560-false%5D">Další témata »</a>
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Omvj1CSsy60
DEBUG:get_topics:title = Jbrout et Ubuntu!
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/Pa7mCpvWWEw
DEBUG:get_topics:title = jbrout uniquement pour le jpeg ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/vQNbeLhR_w8
DEBUG:get_topics:title = GTK incompatible GIMP Windows
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/nnq4LuBqE4k
DEBUG:get_topics:title = bug ?
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/zveZSlj4Xck
DEBUG:get_topics:title = Impossibilité d'insérer des tags
DEBUG:get_topics:href = https://groups.google.com/d/topic/jbrout/6qgfmO95KCo
DEBUG:get_topics:title = Jbrout sur mandivra
DEBUG:test_collecting_topics:number of topics = 546
ok
test_do_redirect (test_gg_scrapper.TestGGScrapper) ... DEBUG:do_redirect:url = https://groups.google.com/forum/#!forum/jbrout
DEBUG:unenscape_Google_bang_URL:esc_URL = https://groups.google.com/forum/?_escaped_fragment_=forum/jbrout
ok

----------------------------------------------------------------------
Ran 3 tests in 31.608s

OK