File: Changes

package info (click to toggle)
libxml-feed-perl 0.53%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 452 kB
  • ctags: 123
  • sloc: perl: 1,084; xml: 606; sh: 51; makefile: 2
file content (961 lines) | stat: -rw-r--r-- 28,178 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
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
-------------------------------------------------------------------
Mon Dec 14 11:14:09 CET 2015 - dave@dave.org.uk

- Bump versions for release.
- commit c4d9cd4

-------------------------------------------------------------------
Sat Nov 28 10:18:08 CET 2015 - zhouzhen1@gmail.com

- add URI to build_requires in Build.PL
- commit c65330d

-------------------------------------------------------------------
Sat Jul 18 13:10:39 CEST 2015 - dave@dave.org.uk

- Updated .travis.yml
- commit fe4e5e6

-------------------------------------------------------------------
Wed Jan 28 16:48:34 CET 2015 - ribugent@gmail.com

- Fix lib/XML/Feed/Entry/Format/RSS.pm crash
- commit b6f39ae

-------------------------------------------------------------------
Thu Oct 16 06:54:55 CEST 2014 - ether@cpan.org

- avoid deprecated form of isa()
- commit cf84451

-------------------------------------------------------------------
Mon Jun 16 10:06:51 CEST 2014 - gabor@szabgab.com

- utf8 encoding in helper script
- commit a51d4e2

-------------------------------------------------------------------
Tue Feb  4 19:16:03 CET 2014 - x.github@chatterjee.net

- Fixed minor typo in docs ("obhect" -> "object")
- commit 80b293c

-------------------------------------------------------------------
Fri Jan 10 15:10:53 CET 2014 - dave@dave.org.uk

- Added .travis.yml
- commit f3f9a3f

-------------------------------------------------------------------
Tue Mar 19 09:22:25 CET 2013 - szabgab@gmail.com

- add Minty to list of contributors
- commit 3998e48

-------------------------------------------------------------------
Tue Mar 19 09:20:09 CET 2013 - szabgab@gmail.com

- calculate plan from examples
- commit c45da65

-------------------------------------------------------------------
Tue Mar 19 00:03:13 CET 2013 - murray@minty.org

- Fix pod example usage for identify_format : it takes a scalar ref
- commit b86b614

-------------------------------------------------------------------
Tue Mar 19 00:00:40 CET 2013 - murray@minty.org

- Add test for XML::Feed->identify_format()
- commit 09698b3

-------------------------------------------------------------------
Tue Feb 26 20:51:08 CET 2013 - szabgab@gmail.com

- add dist_author and x_contributors to META files
- commit 69c2ffa

-------------------------------------------------------------------
Tue Feb 26 20:50:17 CET 2013 - szabgab@gmail.com

- ignore some generated files
- commit 4ab99d5

-------------------------------------------------------------------
Tue Jan  8 10:31:35 CET 2013 - szabgab@gmail.com

- add use warnings to the modules
- commit fb2ed13

-------------------------------------------------------------------
Tue Jan  8 10:29:46 CET 2013 - szabgab@gmail.com

- remove Id tags from the times of Subversion
- commit b6ca9a5

-------------------------------------------------------------------
Tue Jan  8 10:27:03 CET 2013 - szabgab@gmail.com

- add version number to all the modules
- commit c569ee9

-------------------------------------------------------------------
Fri Jan  4 07:47:06 CET 2013 - dave@dave.org.uk

- Bump version for release
- commit 43f0427

-------------------------------------------------------------------
Fri Jan  4 07:45:09 CET 2013 - dave@dave.org.uk

- Commit changes to Changes
- commit 8a1d6c9

-------------------------------------------------------------------
Sun Dec 30 21:48:13 CET 2012 - szabgab@gmail.com

- change the User Agent string
- commit eeff6c3

-------------------------------------------------------------------
Sat Jul 28 16:43:02 CEST 2012 - shlomif@shlomifish.org

- Add a meta_merge link to the respository.
  This way metacpan.org and other services will display it.
- commit b7913ac

-------------------------------------------------------------------
Tue Jul 10 22:17:33 CEST 2012 - dave@dave.org.uk

- Bump version for release.
- commit dfeacbf

-------------------------------------------------------------------
Tue Jul 10 22:16:12 CEST 2012 - dave@dave.org.uk

- Added an image() method to Feed objects.
  Does something useful for RSS feeds; not for Atom feeds currently.
- commit f251264

-------------------------------------------------------------------
Tue Jul 10 22:08:49 CEST 2012 - dave@dave.org.uk

- Fixed tests
- commit fe6cfa8

-------------------------------------------------------------------
Tue Apr 10 15:19:49 CEST 2012 - voss@gbv.de

- Add support for RFC 5005 Feed Paging and Archiving in Atom feeds
- commit 02de179

-------------------------------------------------------------------
Fri Apr  6 18:02:11 CEST 2012 - dave@dave.org.uk

- Bump version for release.
- commit e46a668

-------------------------------------------------------------------
Thu Apr  5 16:51:49 CEST 2012 - dave@dave.org.uk

- Remove svn tag.
- commit ad4da28

-------------------------------------------------------------------
Thu Apr  5 16:48:54 CEST 2012 - dave@dave.org.uk

- Changed contact details from non-working 6A email address.
- commit e933a73

-------------------------------------------------------------------
Wed Mar 28 06:27:55 CEST 2012 - wes.sheldahl@gmail.com

- Updated README file with current and tested installation instructions.
  Hoping to clarify the confusion reflected in RT # 53884, maybe even resolve it.
  https://rt.cpan.org/Public/Bug/Display.html?id=53884
- commit 6ab3d29

-------------------------------------------------------------------
Mon Mar 12 20:49:31 CET 2012 - dave@dave.org.uk

- Bump version for release.
- commit 6c0ab45

-------------------------------------------------------------------
Mon Mar 12 20:39:46 CET 2012 - dave@dave.org.uk

- Fixed broken date test.
- commit fb5c190

-------------------------------------------------------------------
Mon Mar 12 15:36:45 CET 2012 - dave@dave.org.uk

- Applying the missing bit of the patch from https://rt.cpan.org/Ticket/Display.html?id=20763
- commit bee3178

-------------------------------------------------------------------
Sat Mar 10 15:56:43 CET 2012 - dave@dave.org.uk

- Bump version number for release.
- commit f8b9d33

-------------------------------------------------------------------
Sat Mar 10 15:55:12 CET 2012 - dave@dave.org.uk

- Increase XML::Atom dependency to 0.37
   - see https://rt.cpan.org/Ticket/Display.html?id=74703
- commit 4e9cef3

-------------------------------------------------------------------
Tue Mar  6 11:21:01 CET 2012 - szabgab@gmail.com

- fix MANIFEST.SKIP
- commit 266eef5

-------------------------------------------------------------------
Tue Mar  6 11:19:39 CET 2012 - szabgab@gmail.com

- update MANIFEST file
- commit 1a4ab1c

-------------------------------------------------------------------
Tue Mar  6 10:57:19 CET 2012 - szabgab@gmail.com

- add example
- commit 4fd4f90

-------------------------------------------------------------------
Tue Mar  6 10:26:07 CET 2012 - szabgab@gmail.com

- add links to the POD
- commit 200ce86

-------------------------------------------------------------------
Sun Feb 19 08:52:00 CET 2012 - szabgab@gmail.com

- add explicit tests for loading internal packages and failing when it does not exist
- commit e3322e1

-------------------------------------------------------------------
Sun Feb 19 08:26:03 CET 2012 - szabgab@gmail.com

- split up files to individual packages
- commit 8c43fc5

-------------------------------------------------------------------
Sun Feb 19 08:25:23 CET 2012 - szabgab@gmail.com

- ignore *.swp files
- commit b596637

-------------------------------------------------------------------
Sat Feb 18 19:43:51 CET 2012 - szabgab@gmail.com

- gitignore some generated files
- commit 5522012

-------------------------------------------------------------------
Fri Feb 17 12:32:12 CET 2012 - szabgab@gmail.com

- add missing return call fixing the failures introduced when trying to fix 73160
- commit f9cc521

-------------------------------------------------------------------
Fri Feb 17 12:05:43 CET 2012 - szabgab@gmail.com

- eliminate warning generated in t/16-convert-mult-categories.t
- commit 3b96974

-------------------------------------------------------------------
Sun Dec 11 13:47:52 CET 2011 - dave@dave.org.uk

- Added tests for bug 73160. And code to make them pass.
- commit 710ed82

-------------------------------------------------------------------
Sat Sep  3 12:58:59 CEST 2011 - dave@dave.org.uk

- Updated changed for 0.45 (oops) and 0.46.
- commit 039dfec

-------------------------------------------------------------------
Sat Sep  3 12:53:34 CEST 2011 - dave@dave.org.uk

- Closed a few tickets from the RT queue as an excuse for a new release. Bumped to version 0.46.
- commit 7b5fccb

-------------------------------------------------------------------
Sat Jul 30 13:30:16 CEST 2011 - dave@dave.org.uk

- Another round of changes to fix (and test) https://rt.cpan.org/Public/Bug/Display.html?id=44899
- commit f4278e1

-------------------------------------------------------------------
Sat Jul 16 18:03:27 CEST 2011 - dave@dave.org.uk

- Added new (currently failing) test for the double-encoding bug.
- commit 89495df

-------------------------------------------------------------------
Sun Apr 24 16:07:53 CEST 2011 - dave@dave.org.uk

- Tests to ensure that the double-encoding bug fix works.
- commit cb30c63

-------------------------------------------------------------------
Sun Mar 13 11:20:11 CET 2011 - dave@dave.org.uk

- Added new tests to prove what the problem is.
- commit b0d119a

-------------------------------------------------------------------
Sun Mar 13 11:08:10 CET 2011 - dave@dave.org.uk

- Force stringification so test passes.
- commit 1809011

-------------------------------------------------------------------
Mon Mar 22 22:07:55 CET 2010 - simon@thegestalt.org

- Force requiring HTML::Entities;
- commit 6f2c899

-------------------------------------------------------------------
Mon Mar 22 22:04:05 CET 2010 - simon@thegestalt.org

- Fix bug in conversion process between RSS and Atom where HTML got double encoded
  https://rt.cpan.org/Public/Bug/Display.html?id=44899
- commit 934ef9a

-------------------------------------------------------------------
Mon Mar 22 21:50:41 CET 2010 - simon@thegestalt.org

- Fix double encoding bug?
- commit b7c406f

-------------------------------------------------------------------
Mon Mar 22 21:50:20 CET 2010 - simon@thegestalt.org

- Add updated()
- commit e23387f

-------------------------------------------------------------------
Tue Nov 17 03:00:00 CET 2009 - simon@thegestalt.org

- Fix a problem converting multiple categories thanks to Алексей Капранов (KAPPA) in bug 50125
  https://rt.cpan.org/Ticket/Display.html?id=50125
- commit ff32fd5

-------------------------------------------------------------------
Tue Nov 17 02:50:53 CET 2009 - simon@thegestalt.org

- Fixing RT #47981
  https://rt.cpan.org/Ticket/Display.html?id=47981
  Which is due to Blogspot using unusual atom namespaced elements in short RSS feeds.
- commit 723eaa1

-------------------------------------------------------------------
Tue Nov 17 02:17:55 CET 2009 - simon@thegestalt.org

- Add Build.PL
- commit 7f58a36

-------------------------------------------------------------------
Fri May 29 23:19:14 CEST 2009 - simon@thegestalt.org

- Fix buglet to do with odd date terms
  https://rt.cpan.org/Ticket/Display.html?id=46494
  (Joey Hess)
- commit daba724

-------------------------------------------------------------------
Fri May 29 23:17:05 CEST 2009 - simon@thegestalt.org

- Add Makefile.PL
- commit d83c0d6

-------------------------------------------------------------------
Thu May  7 02:47:58 CEST 2009 - simon@thegestalt.org

- Multiple enclosure support
- commit b1aa7a6

-------------------------------------------------------------------
Fri Apr  3 17:16:38 CEST 2009 - simon@thegestalt.org

- Merge changes
- commit 3e19dc0

-------------------------------------------------------------------
Fri Apr  3 17:16:10 CEST 2009 - simon@thegestalt.org

- Add a note about XML::RSS::LibXML
- commit 0c20159

-------------------------------------------------------------------
Sun Jan 25 13:44:25 CET 2009 - miyagawa@bulknews.net

- docs
- commit 75c12aa

-------------------------------------------------------------------
Sun Jan 25 13:42:08 CET 2009 - miyagawa@bulknews.net

- Fixed RSS multiple category with XML::RSS::LibXML
- commit e5a65e5

-------------------------------------------------------------------
Thu Dec 11 02:55:52 CET 2008 - simon@thegestalt.org

- First cut at enclosures
- commit 12a4079

-------------------------------------------------------------------
Wed Dec 10 21:27:46 CET 2008 - simon@thegestalt.org

- GAH
- commit f658a3b

-------------------------------------------------------------------
Wed Dec 10 21:26:41 CET 2008 - simon@thegestalt.org

- Whoops again
- commit 1c6eb9b

-------------------------------------------------------------------
Wed Dec 10 21:26:14 CET 2008 - simon@thegestalt.org

- Whoops
- commit ea0ac06

-------------------------------------------------------------------
Wed Dec 10 21:15:44 CET 2008 - simon@thegestalt.org

- Gte ready for release
- commit a759e13

-------------------------------------------------------------------
Wed Dec 10 00:48:16 CET 2008 - simon@thegestalt.org

- Fix bug with adding first category
- commit 4eb9395

-------------------------------------------------------------------
Wed Dec 10 00:39:29 CET 2008 - simon@thegestalt.org

- First cut at multiple category/tag support
- commit a0cca2a

-------------------------------------------------------------------
Mon Dec  1 22:17:51 CET 2008 - simon@thegestalt.org

- Set Id keyword on everything
- commit 3353d70

-------------------------------------------------------------------
Mon Nov 24 01:59:24 CET 2008 - simon@thegestalt.org

- First cut at enclosure support
- commit aa2dcd5

-------------------------------------------------------------------
Mon Nov 24 01:47:26 CET 2008 - simon@thegestalt.org

- Add enclosure code.
- commit af6b00a

-------------------------------------------------------------------
Mon Nov 24 01:43:50 CET 2008 - simon@thegestalt.org

- Update property
- commit f376357

-------------------------------------------------------------------
Fri Nov 21 21:41:06 CET 2008 - simon@thegestalt.org

- UTF8 problem
- commit 4c07283

-------------------------------------------------------------------
Fri Nov 21 21:37:23 CET 2008 - simon@thegestalt.org

- Fix Andreas' name
- commit c022ef2

-------------------------------------------------------------------
Fri Nov 21 02:18:35 CET 2008 - simon@thegestalt.org

- Fix base support with latest version of XML::RSS
- commit f62087b

-------------------------------------------------------------------
Sat Nov 15 00:24:55 CET 2008 - simon@thegestalt.org

- Add bug fix
- commit c56795e

-------------------------------------------------------------------
Fri Nov 14 23:10:05 CET 2008 - simon@thegestalt.org

- Add version to Entry
- commit 3bdbab6

-------------------------------------------------------------------
Fri Nov 14 23:05:54 CET 2008 - simon@thegestalt.org

- Fix 'base' stuff
- commit 4ad1301

-------------------------------------------------------------------
Tue Nov 11 19:17:25 CET 2008 - simon@thegestalt.org

- Add Build.PL
- commit 4c06eb3

-------------------------------------------------------------------
Tue Nov  4 23:09:14 CET 2008 - simon@thegestalt.org

- Add date into Changes
- commit e73bcbb

-------------------------------------------------------------------
Tue Nov  4 23:07:39 CET 2008 - simon@thegestalt.org

- Cleanup
- commit bd19b44

-------------------------------------------------------------------
Tue Nov  4 06:42:53 CET 2008 - simon@thegestalt.org

- Update for new status
- commit 1ae2598

-------------------------------------------------------------------
Tue Nov  4 01:02:05 CET 2008 - simon@thegestalt.org

- Add note about
  https://rt.cpan.org/Ticket/Display.html?id=14725
- commit 60c04bc

-------------------------------------------------------------------
Tue Nov  4 00:54:28 CET 2008 - simon@thegestalt.org

- Move to the Formats identifying what content to look at
- commit 9b6bc91

-------------------------------------------------------------------
Tue Nov  4 00:53:48 CET 2008 - simon@thegestalt.org

- Update tests
- commit 4e7b539

-------------------------------------------------------------------
Tue Nov  4 00:48:51 CET 2008 - simon@thegestalt.org

- Add pod*.t
- commit 72406e4

-------------------------------------------------------------------
Tue Nov  4 00:47:42 CET 2008 - simon@thegestalt.org

- Rollback r92
- commit 1d3481d

-------------------------------------------------------------------
Tue Nov  4 00:43:32 CET 2008 - simon@thegestalt.org

- Update tests
- commit 948f935

-------------------------------------------------------------------
Tue Nov  4 00:18:05 CET 2008 - simon@thegestalt.org

- Switch to different layout
- commit 729cd7a

-------------------------------------------------------------------
Wed Oct 29 18:55:22 CET 2008 - simon@thegestalt.org

- Add pod and coverage tests
- commit 8c30ad3

-------------------------------------------------------------------
Fri Oct 24 20:54:39 CEST 2008 - simon@thegestalt.org

- Add note about makign a validating URL
- commit b8bc97f

-------------------------------------------------------------------
Fri Oct 24 03:40:26 CEST 2008 - simon@thegestalt.org

- Add date
- commit 0d3e3b6

-------------------------------------------------------------------
Fri Oct 24 03:39:56 CEST 2008 - simon@thegestalt.org

- Update MANIFEST file with new tests
- commit bb5f785

-------------------------------------------------------------------
Fri Oct 24 03:37:54 CEST 2008 - simon@thegestalt.org

- Up the version number
- commit 5cc6e23

-------------------------------------------------------------------
Fri Oct 24 01:39:56 CEST 2008 - simon@thegestalt.org

- Add xml:base work
- commit a0793d5

-------------------------------------------------------------------
Fri Oct 24 01:32:52 CEST 2008 - simon@thegestalt.org

- Fix typo
- commit 0f71bfb

-------------------------------------------------------------------
Fri Oct 24 01:30:32 CEST 2008 - simon@thegestalt.org

- Update xml:base parsing in RSS
- commit e3b96b9

-------------------------------------------------------------------
Fri Oct 24 00:43:52 CEST 2008 - simon@thegestalt.org

- Make base work
- commit 7c89fff

-------------------------------------------------------------------
Thu Oct 23 02:45:43 CEST 2008 - simon@thegestalt.org

- Initiali support for xml:base
- commit 5383a56

-------------------------------------------------------------------
Thu Oct 23 02:45:12 CEST 2008 - simon@thegestalt.org

- Misnamed
- commit d653dd2

-------------------------------------------------------------------
Thu Oct 23 01:44:24 CEST 2008 - simon@thegestalt.org

- Fix mixing and matching of RSS and Atom
- commit 33d4cb3

-------------------------------------------------------------------
Wed Oct 22 22:48:19 CEST 2008 - simon@thegestalt.org

- Up version
- commit f33453c

-------------------------------------------------------------------
Wed Oct 22 22:46:18 CEST 2008 - simon@thegestalt.org

- Fix fetching through proxies
- commit d39809a

-------------------------------------------------------------------
Wed Oct 22 22:41:42 CEST 2008 - simon@thegestalt.org

- Add support for self linking and GeoRSS
  Patches from Shlomi Fish
  http://rt.cpan.org/Ticket/Display.html?id=39924
  and Scott Gifford
  http://rt.cpan.org/Ticket/Display.html?id=40046
- commit 9a36f82

-------------------------------------------------------------------
Wed Oct 22 21:10:08 CEST 2008 - simon@thegestalt.org

- Make feed validate
- commit 813f78d

-------------------------------------------------------------------
Thu Oct 16 21:20:49 CEST 2008 - simon@thegestalt.org

- Created test for
  http://rt.cpan.org/Ticket/Display.html?id=18810
  (Ryan Tate)
- commit 5b3d39d

-------------------------------------------------------------------
Thu Oct 16 21:13:07 CEST 2008 - simon@thegestalt.org

- Up the minimum requirement for XML::RSS to 1.31
  http://rt.cpan.org/Ticket/Display.html?id=23588
  (Andreas König ANDK)
- commit 1570cde

-------------------------------------------------------------------
Thu Oct 16 21:02:10 CEST 2008 - simon@thegestalt.org

-  Correct namespace for terms in RSS
   http://rt.cpan.org/Ticket/Display.html?id=25393
   (Kent Cowgill KCOWGILL)
- commit af62770

-------------------------------------------------------------------
Wed Oct 15 20:11:12 CEST 2008 - simon@thegestalt.org

- Get rid of the inc directory
- commit 632e163

-------------------------------------------------------------------
Wed Oct 15 20:04:55 CEST 2008 - simon@thegestalt.org

- Force a non-segfaulting version of XML::LibXML
- commit 457482d

-------------------------------------------------------------------
Wed Oct 15 19:55:29 CEST 2008 - simon@thegestalt.org

- Shush
- commit aeec183

-------------------------------------------------------------------
Wed Oct 15 19:53:48 CEST 2008 - simon@thegestalt.org

- Add a note as to where to find this in subversion
- commit 70f935c

-------------------------------------------------------------------
Wed Oct 15 19:53:31 CEST 2008 - simon@thegestalt.org

- Force stringification
- commit a91dfb9

-------------------------------------------------------------------
Wed Oct 15 19:16:01 CEST 2008 - simon@thegestalt.org

- Add keywords
- commit efef760

-------------------------------------------------------------------
Fri Oct  3 21:18:01 CEST 2008 - simon@thegestalt.org

- Fix broken summary behaviour
- commit ac9492d

-------------------------------------------------------------------
Thu Oct  2 00:24:30 CEST 2008 - simon@thegestalt.org

- Feed fixes
- commit 4f41343

-------------------------------------------------------------------
Wed Oct  1 02:16:42 CEST 2008 - simon@thegestalt.org

- Fix encoding problems
- commit ccc9fe4

-------------------------------------------------------------------
Sat Aug 23 00:48:46 CEST 2008 - simon@thegestalt.org

- Shush
- commit 43a7504

-------------------------------------------------------------------
Sat Aug 23 00:48:24 CEST 2008 - simon@thegestalt.org

- Checking for conversion bug
- commit f7c452e

-------------------------------------------------------------------
Sat Aug 23 00:48:03 CEST 2008 - simon@thegestalt.org

- Generated files shouldn't be in SVN
- commit a3b2ba1

-------------------------------------------------------------------
Sat Aug 23 00:46:23 CEST 2008 - simon@thegestalt.org

- Note the switch to module::build
- commit f9e32c8

-------------------------------------------------------------------
Sat Aug 23 00:39:30 CEST 2008 - simon@thegestalt.org

- Switch to Module::Build
- commit bfcc8cf

-------------------------------------------------------------------
Sat Aug 23 00:29:40 CEST 2008 - simon@thegestalt.org

- Update version
- commit f422a85

-------------------------------------------------------------------
Sat Aug 23 00:29:19 CEST 2008 - simon@thegestalt.org

- use wantarray for backwards compatability
- commit bf34c07

-------------------------------------------------------------------
Sat Aug 23 00:29:04 CEST 2008 - simon@thegestalt.org

- Need to actually pick up the format. Doh
- commit 0c81cb2

-------------------------------------------------------------------
Sat Aug 23 00:17:32 CEST 2008 - simon@thegestalt.org

- Cope with "updated" and "published" elements
  http://rt.cpan.org/Public/Bug/Display.html?id=20763
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=380498
  (Gregor Herrmann and Joey Hess)
- commit 1ee56ab

-------------------------------------------------------------------
Sat Aug 23 00:07:29 CEST 2008 - simon@thegestalt.org

- Prevent empty content
  http://rt.cpan.org/Public/Bug/Display.html?id=29684
  (Dave Rolsky DROLSKY)
- commit 566afdf

-------------------------------------------------------------------
Fri Aug 22 23:52:12 CEST 2008 - simon@thegestalt.org

- Allow accessors to make sure things validate
- commit e8fcbc5

-------------------------------------------------------------------
Fri Aug 22 21:56:17 CEST 2008 - simon@thegestalt.org

- Force working version XML::Atom
  http://rt.cpan.org/Public/Bug/Display.html?id=22548
  http://rt.cpan.org/Public/Bug/Display.html?id=19920
- commit 4b70ec2

-------------------------------------------------------------------
Fri Aug 22 21:54:30 CEST 2008 - simon@thegestalt.org

- Allow passing through of initialisation options.
  http://rt.cpan.org/Public/Bug/Display.html?id=24729
- commit 4e9c462

-------------------------------------------------------------------
Fri Aug 22 21:39:09 CEST 2008 - simon@thegestalt.org

- Allow specification of the parsing format.
  Fix http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477394
- commit 41e8c13

-------------------------------------------------------------------
Thu Aug 21 22:00:37 CEST 2008 - simon@thegestalt.org

- Wrong place for this
- commit 633cb45

-------------------------------------------------------------------
Thu Aug 21 21:24:54 CEST 2008 - simon@thegestalt.org

- No rpm, no cpan, no svn so we include it here
- commit bfd6c84

-------------------------------------------------------------------
Tue Apr 22 20:01:00 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.12 into trunk.
- commit c4d4c98

-------------------------------------------------------------------
Tue Apr 22 20:00:55 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.11 into trunk.
- commit 4679cf3

-------------------------------------------------------------------
Tue Apr 22 20:00:51 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.10 into trunk.
- commit 4f6ca99

-------------------------------------------------------------------
Tue Apr 22 20:00:46 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.09 into trunk.
- commit fe3b320

-------------------------------------------------------------------
Tue Apr 22 20:00:40 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.08 into trunk.
- commit ecac864

-------------------------------------------------------------------
Tue Apr 22 20:00:37 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.07 into trunk.
- commit 2310317

-------------------------------------------------------------------
Tue Apr 22 20:00:32 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.06 into trunk.
- commit 973e1f9

-------------------------------------------------------------------
Tue Apr 22 20:00:28 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.05 into trunk.
- commit b3b6d2f

-------------------------------------------------------------------
Tue Apr 22 20:00:22 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.04 into trunk.
- commit fe71566

-------------------------------------------------------------------
Tue Apr 22 20:00:17 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.03 into trunk.
- commit 62d9277

-------------------------------------------------------------------
Tue Apr 22 20:00:14 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.02 into trunk.
- commit a749d9b

-------------------------------------------------------------------
Tue Apr 22 20:00:06 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.01 into trunk.
- commit 0d5e38d

-------------------------------------------------------------------
Tue Apr 22 19:49:25 CEST 2008 - simon@thegestalt.org

- Make
- commit 0583180

-------------------------------------------------------------------
Tue Apr 22 19:48:48 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.01 into trunk.
- commit 5ec68b3

-------------------------------------------------------------------
Tue Apr 22 19:48:07 CEST 2008 - simon@thegestalt.org

- Create
- commit 535e50d

-------------------------------------------------------------------
Tue Apr 22 19:46:42 CEST 2008 - simon@thegestalt.org

- Load XML-Feed-0.01 into trunk.
- commit ba87bd3

-------------------------------------------------------------------
Tue Apr 22 19:11:11 CEST 2008 - simon@thegestalt.org

- Set up repo structure
- commit cb6b911