File: changelog

package info (click to toggle)
backupchecker 1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 6,384 kB
  • sloc: python: 8,568; makefile: 161
file content (3288 lines) | stat: -rw-r--r-- 97,217 bytes parent folder | download | duplicates (2)
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
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
commit 962f3f34d2114003db686554e3f5ff41377a63cc
Author: Carl Chenet <chaica@ohmytux.com>

    bump version

commit 2cb54e3897529e8c9d79558bc7207fbece990d30
Author: Carl Chenet <chaica@ohmytux.com>

    fix bug in biggest int placeholder and consolidate unit tests

commit d830428f9133b7c602fe63d427e57cbc17221f76
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit 2710f233b2d6b341fe00ef0422a6b8ecc18d63e7
Author: Carl Chenet <chaica@ohmytux.com>

    update version

commit 0f184caeb054deeb76b4cf39c1a81d79d9aa863c
Author: Carl Chenet <chaica@ohmytux.com>

    update doc for %i placeholder

commit c5a4e7e5572d98b2a281126fbb9570d00e00e94c
Author: Carl Chenet <chaica@ohmytux.com>

    add test files for biggest placeholder unit test

commit 97f41f31c8fa061a4532e04d4c1c6c8c28ee889d
Author: Carl Chenet <chaica@ohmytux.com>

    unit test for biggest int placeholder

commit bbe13ee243c5c667135dd08c4017bc595c2950b5
Author: Carl Chenet <chaica@ohmytux.com>

    placeholder %i to get the max int in a configuration path

commit 652486ea38dd4b994ac95220f7dd6bb03577307e
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit 782f1e944ed98fbf5121040506d5adcf6d6a4703
Author: Carl Chenet <chaica@ohmytux.com>

    bump version

commit 126dda138ed309d5a5f259d0bd95ab194abe52cd
Author: Carl Chenet <chaica@ohmytux.com>

    fix functional tests for placeholders. fix #10

commit ae6e67fcd36e637c69bb7a27df9c1075b73c1771
Author: Carl Chenet <chaica@ohmytux.com>

    simplify tests

commit 18911fe2b9c8e127188ef11f4f4317362ba56536
Author: Carl Chenet <chaica@ohmytux.com>

    simplify test

commit 9aec0f75322c139d5fa5fc1284f429486c1f584e
Author: Carl Chenet <chaica@ohmytux.com>

    simplify test

commit 3281e3f567b92b70cae3bcbdc20a8af439f93a30
Author: Carl Chenet <chaica@ohmytux.com>

    explain placeholders

commit 79c466ad0c523922fb04d6ce91f6ffea8e545cf1
Author: Carl Chenet <chaica@ohmytux.com>

    unittest for placeholder

commit 813fe8174e5a6410966c7bea2477dd01b629cc01
Author: Carl Chenet <chaica@ohmytux.com>

    manage placeholder in configuration file

commit 3e2b7b43f913958e38841a7ee7f4b02ddabb7210
Author: Carl Chenet <chaica@ohmytux.com>

    add placeholder.py

commit e3418df8217855daa7e77cd1cd631bc036fee33f
Author: Carl Chenet <chaica@ohmytux.com>

    wip

commit ff65df3bdc4412cb3ecf94a0dd9510489549b3fc
Author: Carl Chenet <chaica@ohmytux.com>

    fix missing mtim in the doc

commit 42a028188d3e5d6bd6e7422d56bba85bfcda5367
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit 6de9fc734af116f1d8cf2f18c75180849bff9899
Author: Carl Chenet <chaica@ohmytux.com>

    update version number in README.md

commit 957742d25019250b8b08a7cd742a7ddbfe15f792
Author: Carl Chenet <chaica@ohmytux.com>

    update version && update doc

commit dfb439418f2690cf2ec32521ee23763992385359
Author: Carl Chenet <chaica@ohmytux.com>

    activate mtime for gzip and dedicated functionaltests

commit b1c6aeb92fc37ed0f6f90b77ca29916b9d5a8c81
Author: Carl Chenet <chaica@ohmytux.com>

    mtime for zip archive

commit cea8e88ba848f04a1e4a97cbebfab49ac59207a8
Author: Carl Chenet <chaica@ohmytux.com>

    update functionaltests for mtime archive

commit b93a43a1553db2693ea2734e1a359393d1a1cd13
Merge: 04fe435 345c1a5
Author: Carl Chenet <chaica@ohmytux.com>

    Merge branch 'master' of https://github.com/backupchecker/backupchecker into outdated-archive

commit 04fe4352ed49d3b4f24744979844c757e65aa441
Author: Carl Chenet <chaica@ohmytux.com>

    wip

commit 45f30a96b1da8f7e943b4a486390e19421acf97b
Author: Carl Chenet <chaica@ohmytux.com>

    add/check mtime for the archive itself

commit 345c1a50a15b3822d299499b4c7fc0f5385edf44
Author: Carl Chenet <chaica@ohmytux.com>

    switch to python 3.4 for scripts/backupchecker

commit 145d2c192757aee436230aa5f8979015d96836b8
Author: Carl Chenet <chaica@ohmytux.com>

    ready for 1.3 bugfix. fixes #7

commit fb6e432cd677040318603789c944a4a2860002dd
Author: Carl Chenet <chaica@ohmytux.com>

    add missing files

commit 805810f1d2de8cd1fdc8c1fd5b6359a5f305e663
Author: Carl Chenet <chaica@ohmytux.com>

    add unit tests for expected uid/gid

commit 4cc8581ba34b1859d4a154435d42583425272a71
Merge: 5c0cf46 2035250
Author: Carl Chenet <chaica@ohmytux.com>

    :Merge branch 'master' of https://github.com/backupchecker/backupchecker

commit 5c0cf46334774377ab0cf7df74ac4fd47ae277c8
Author: Carl Chenet <chaica@ohmytux.com>

    add unit tests related to expected uid/gid

commit 5473aa9b757bdb3bc9d67bc12a021bf939837ea4
Author: Carl Chenet <chaica@ohmytux.com>

    fix uid used for group

commit 20352500d276cac84de4e57494d3cefca62b8aa4
Author: Carl Chenet <chaica@ohmytux.com>

    add travis-ci status bar

commit ec86f9ec8cb42efe5f8ddc84049d40d3c52abf96
Author: Carl Chenet <chaica@ohmytux.com>

    fix test for CI

commit 69adb692d7e299d00ef7a5e72956231bedd81143
Author: Carl Chenet <chaica@ohmytux.com>

    update shebang of tests.py

commit 8ad9724c6f718bee64ad1d7424e6710935890523
Author: Carl Chenet <chaica@ohmytux.com>

    add .travis.yml

commit cbcc848c35627c2ff082f563f276024b785a1703
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit ff160c4bd293dedbec0c32f1bbc8855c3e1cae9b
Author: Carl Chenet <chaica@ohmytux.com>

    fix syntax of the restructuredtext documentation

commit 1804690e5fa549f574f2065e00ab7e0460f4b017
Author: Carl Chenet <chaica@ohmytux.com>

    fix restructuredtext documentation

commit 695bc9a61276621d9b80571bd1971cbf7edd4d3b
Author: Carl Chenet <chaica@ohmytux.com>

    update the documentation (online doc, manpage, setup.py fields)

commit ef0eed1cd70499cb0d0686499939d282e2b4b4c2
Author: Carl Chenet <chaica@ohmytux.com>

    bump version

commit f017c6a90a0ba9f9a708ca26973ec781f3021f28
Merge: be9e988 94d1c6c
Author: Carl Chenet <chaica@ohmytux.com>

    Tar stream now works with backup checker. fixes #3 fixes#6

commit 94d1c6c901a91c19742e8284c72407f77aed891c
Author: Carl Chenet <chaica@ohmytux.com>

    specify not possible to compute hash sums inside an archive with a stream

commit 1387535322502c35b5b8a8c5ff520bf49b28dafa
Author: Carl Chenet <chaica@ohmytux.com>

    fix issue with name of the archive while scanning a stream. add unit test for it. secure the user-defined logfile from the cli.

commit 4c5f7d2116a4d126733410d0ea29dba7a639337b
Author: Carl Chenet <chaica@ohmytux.com>

    --output-list-and-conf-dir option now works with tar stream.

commit 4477cfe948791e1e63c905c18ae41ad4301c9eb1
Author: Carl Chenet <chaica@ohmytux.com>

    fix for README.md

commit a43ac45a2959c3e47b6669f4dfce98a699ee4409
Author: Carl Chenet <chaica@ohmytux.com>

    reorganize call to stdin from both generate and check mode

commit d74e5ec7e0573ec6af8ddaf10d9a22ae94335361
Author: Carl Chenet <chaica@ohmytux.com>

    add universal compression for tar files

commit bd6f0509e0d476291c8df5566bd40431075b8980
Author: Carl Chenet <chaica@ohmytux.com>

    add Test_configuration_name_option_and_conf_list_output_with_lzma test and Test_configuration_name_option_and_conf_list_output_with_bzip2 test

commit 1b66fc577e607fea2c64f8569eb932e3d029966c
Author: Carl Chenet <chaica@ohmytux.com>

    Test_configuration_name_option_and_conf_list_output_with_gzip test

commit 6a68afbcb630d24782a165cdb366fce408c224fe
Author: Carl Chenet <chaica@ohmytux.com>

    added Test_configuration_name_option_and_conf_list_output_with_tar_gz test and Test_configuration_name_option_and_conf_list_output_with_zip test

commit d344fe842664a2f91a15618574e619de984fcaae
Author: Carl Chenet <chaica@ohmytux.com>

    write Test_configuration_name_option_and_conf_list_output_with_tar_gz unit tests

commit 27512f04875a491c0c43b6e3ac8a427ca5e89cf1
Author: Carl Chenet <chaica@ohmytux.com>

    fix --configuration-name for lzma archive. write unit test Test_configuration_name_option_with_lzma

commit 8f5571993b983aebafd25ef5e01eaee90bc0d0f4
Author: Carl Chenet <chaica@ohmytux.com>

    fix --gen-full option with --configuration-name option with bzip2 archive

commit 107f5de8aca2d7458a392804275d4b7d9c1c1b60
Author: Carl Chenet <chaica@ohmytux.com>

    fix --gen-full with --configuration-name with gzip, tree, zip archives

commit 4eb36edbb4349ee2a063137d82ff39a3c779dc6d
Author: Carl Chenet <chaica@ohmytux.com>

    add configuration-name-option-with-zip test

commit 5425df2cded416848b23726110c09cba3f71f2d3
Author: Carl Chenet <chaica@ohmytux.com>

    update .gitignore with new files to ignore

commit 3b7de4db4b5fecf521237d3cd115e0c9811cc10e
Author: Carl Chenet <chaica@ohmytux.com>

    add configuration-name-option-with-tar-gz test

commit a9539854138e0de4841db63b343eadc6803752a5
Author: Carl Chenet <chaica@ohmytux.com>

    fix check-mtime-tar/zip and add Test_generate_and_check_for_stream_from_tar_gz test

commit a8a5ea3a4af68d9a1c72ff8d2dff2889d88cd102
Author: Carl Chenet <chaica@ohmytux.com>

    add functional test to check stream from a tar.gz file

commit 4ac6fa5b7d6ae23a033fcaaa721321ebea59181e
Author: Carl Chenet <chaica@ohmytux.com>

    --configuration-name option for lzma archive

commit 17df1b07f2cff9739535f1e96126731b29292bee
Author: Carl Chenet <chaica@ohmytux.com>

    --configuration-name option for bzip2 archive

commit b57b0a392390e912d0459ce749384c996c5cf631
Author: Carl Chenet <chaica@ohmytux.com>

    --configuration-name option for gzip archive

commit 3f8c7a1ad91862fe03917d900523620f9480157d
Author: Carl Chenet <chaica@ohmytux.com>

    --configuration-name for zip archive

commit 6c235a3d651f2f4b64453e49e4b41efcee78081e
Author: Carl Chenet <chaica@ohmytux.com>

    --configuration-name option for tree backup

commit ba09349383ab329e1eb1c74dba22762057d24545
Author: Carl Chenet <chaica@ohmytux.com>

    switch from -s to -n for short option name --configuration-name

commit 7c0df2a4391f695a56780e6a5edf15824e6ebf7e
Merge: e1731f9 f3d4f18
Author: Carl Chenet <chaica@ohmytux.com>

    fix conflict for unit tests

commit e1731f92cc3aa3ee8d567ac69769547871abc421
Author: Carl Chenet <chaica@ohmytux.com>

    fix unit tests for --conf-name option

commit fdd718e7755dadc5843018a48300fa22eedea5c8
Author: Carl Chenet <chaica@ohmytux.com>

    --conf-name now defines a user-defined name used in configuration files

commit f3d4f1826392f69ecb1b5d0b1e734ba5767988ec
Author: Carl Chenet <chaica@ohmytux.com>

    fix unit tests

commit be9e98878c15ebe936f54cac753563afee56bb8c
Author: Carl Chenet <chaica@ohmytux.com>

    remove syntax errors in man page. fixes #4

commit e3f54892306a739f59c93036735014fa705a9971
Author: Carl Chenet <chaica@ohmytux.com>

    improve output while checking tar streams

commit 263ccd42203f79922a64bb3bb679d4cff9991a2a
Author: Carl Chenet <chaica@ohmytux.com>

    improve accepted stream types

commit d9e86191f754ecf387241460a7efde3b600a6473
Author: Carl Chenet <chaica@ohmytux.com>

    remove unused print

commit ae7c68949a34683c984438aa1ab21e2238b9bc90
Author: Carl Chenet <chaica@ohmytux.com>

    remove unused print

commit 796f5f337f5bdb9f356a7946b4fc6e22e716ba5b
Author: Carl Chenet <chaica@ohmytux.com>

    verifying stream works

commit 8827d353a288bcfe49383451da32cfadcd00f333
Author: Carl Chenet <chaica@ohmytux.com>

    verify data from a stream almost work

commit 4d8ea3b4649635d093dc0b3444ecd72ae8c12eef
Author: Carl Chenet <chaica@ohmytux.com>

    name of the conf files of a tar stream

commit fdd588a0732b72ac38fd1975a95c9075bd2793cb
Author: Carl Chenet <chaica@ohmytux.com>

    generation of full conf files almost works for streams

commit 8639d246cae79f0b3b433f0b4bf9c9481769e6f3
Author: Carl Chenet <chaica@ohmytux.com>

    bump to 1.1

commit 174da989ea5dbb75be9824f69b717218c9545ac2
Author: Carl Chenet <chaica@ohmytux.com>

    remove old unused generate-archive.sh script

commit 71c9eedcc87def45f76935a9fb25abf1e2e0d2b0
Author: Carl Chenet <chaica@ohmytux.com>

    add pip install way in README.md

commit 6f7ca7d8441237c853ddd1477a13fbbca7040bf4
Author: Carl Chenet <chaica@ohmytux.com>

    update to 1.1 version

commit 6c624a6ea644ea556084fc923a16d5cc4bf4378d
Author: Carl Chenet <chaica@ohmytux.com>

    rename brebis to backupchecker. fixes #2

commit e498c7ac7414a7c5f80582c2cfef3b7a1fc2b4bd
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit e3eda8f86cbd5d4b6c169b4e0cf17a645e69f08f
Author: Carl Chenet <chaica@ohmytux.com>

    update the documentation

commit 9c3ddc8df4b3a00044aa26755bde7d292b30528a
Author: Carl Chenet <chaica@ohmytux.com>

    activate uname/gname for the archive itself

commit 44b3c1600f8932f9c6143845f590d8da7afdf3a7
Author: Carl Chenet <chaica@ohmytux.com>

    files should be ignored

commit 68b7a01812c6cf714e14c275f1d5a91e90beaa44
Author: Carl Chenet <chaica@ohmytux.com>

    update version

commit 6bf54ef09e547dac9fcf21dcb25a876bcc2875bf
Author: Carl Chenet <chaica@ohmytux.com>

    files should not be versioned

commit 3bf73aa8bb5a24f26eeeeeb465917b724df23cfe
Merge: f2a1984 5095c3d
Author: Carl Chenet <chaica@ohmytux.com>

    Merge branch 'uname-gname'
    integrate support for uname/gname while generating/controling archives

commit 5095c3d39a10cd212e1221d0508e8ef974ac525c
Author: Carl Chenet <chaica@ohmytux.com>

    unit tests for uname/gname features

commit 95110de07de17f66aa673075dc61fa9a6135be3a
Author: Carl Chenet <chaica@ohmytux.com>

    functional tests for uname/gname for tar.gz archives

commit b7870ab7bbe8bce47d2e4da6b88610d7ba792a3f
Author: Carl Chenet <chaica@ohmytux.com>

    fix unit tests for uname/gname

commit ef167319ff7eb40bb64c02fd1e6c8c16b16f0f4a
Author: Carl Chenet <chaica@ohmytux.com>

    uname/gname for tree backups

commit 34f5ab79b850e21e9e1be80f7546cb96fc2c7c2c
Author: Carl Chenet <chaica@ohmytux.com>

    add limitations for owner/group owner

commit f2a1984038a2bd9e44ea41f0f946402affc28efb
Author: Carl Chenet <chaica@ohmytux.com>

    clean directory before creating the archive

commit a81439a314c228add58c05ee88b24c4bd003df00
Author: Carl Chenet <chaica@ohmytux.com>

    ignore log files

commit 1284ab9a2c219b8bedbcbf54f13240ab850424e9
Author: Carl Chenet <chaica@ohmytux.com>

    owner name and group owner now work with tar archives

commit 736a7f293f869b5458a55c2cbd1a564c4764c5d8
Author: Carl Chenet <chaica@ohmytux.com>

    add license in README.md file

commit b30e05f1ed305efd1b3557e28a26a0e96785bd37
Author: Carl Chenet <chaica@ohmytux.com>

    remove .hgsigs file

commit d5d878f6bbc9bf44e260296d1b092f9f8283466e
Author: Carl Chenet <chaica@ohmytux.com>

    remove following files a.out

commit dcfdb70e4f546229bb9dccf6e01f099bfbe7dc8b
Author: Carl Chenet <chaica@ohmytux.com>

    remove a.out files

commit 377d9047d961f34bc063d964bbc12b8b1cd5a91f
Author: Carl Chenet <chaica@ohmytux.com>

    remove a.out files

commit a4b386228a964d769f80aea6bfb9eccd8d7618c4
Author: Carl Chenet <chaica@ohmytux.com>

    update documentation

commit 8f69804145ec21c72ea3842884fcab72a2e89387
Author: Carl Chenet <chaica@ohmytux.com>

    switch README to a README.md file

commit 48029a3fed314abded9485867ac2dfe3838faafe
Author: Carl Chenet <chaica@ohmytux.com>

    switch to a markdown README

commit 8c92e88dfe33b55ab450284881377fa180b830a8
Author: Carl Chenet <chaica@ohmytux.com>

    convert brebis to backupchecker

commit 6fefbc79acd47b0ea83d2f84c052a546991eddc4
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset 099d1115bb69

commit ccd3032b4fd319658782b6c5c9dc9a503bea5d37
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.10 for changeset 0f621bea2374

commit c70f1e453dc8d3b8bddcee3bea5931412f5e86d8
Author: Carl Chenet <chaica@ohmytux.com>

    update the changelog

commit b24fefc0d7b4e04964f4cc0981d51c6750891f23
Author: Carl Chenet <chaica@ohmytux.com>

    update the doc for new --exceptions-file option

commit 0381778556f0135beb4c4314aad2482db729ef47
Author: Carl Chenet <chaica@ohmytux.com>

    update brebis manpage

commit 5c90688c20a7aa905289d5f574751010e46bc339
Author: Carl Chenet <chaica@ohmytux.com>

    update copyright email addresses and year

commit 497baf4cd9435e0e302207714bc2cb5c271fb66a
Author: Carl Chenet <chaica@ohmytux.com>

    decomment all test

commit 3e9915e4e5f9201adda726d38efcaa18be0a50d6
Author: Carl Chenet <chaica@ohmytux.com>

    removing excpected failure/success tests

commit 4141d7c3f700fbdd45364c742cd3c17279c82d34
Author: Carl Chenet <chaica@ohmytux.com>

    minimal README indicating readthedocs

commit d5b8464797d4c9616331c5c590cba6df583a87f1
Merge: abad836 5d4f76c
Author: Carl Chenet <chaica@ohmytux.com>

    --exceptions-file option allowing to select to generate hash sum only for selected files

commit 5d4f76c9f148c0136bef43b1370d1b3372c26f25
Author: Carl Chenet <chaica@ohmytux.com>

    unit tests work with --exceptions-file option

commit fb045497198e34bbde02a2efe6731a46f8eaa84b
Author: Carl Chenet <chaica@ohmytux.com>

    new files related to functional tests to ignore

commit 2e55a99b8d7d4bd3cdfab3fc48912343213bba58
Author: Carl Chenet <chaica@ohmytux.com>

    --exceptions-file works for gzip,bzip2,lzma,tree archive, with functional tests

commit 74bc83c31b61a1ae263ce787aa1599359f75e929
Author: Carl Chenet <chaica@ohmytux.com>

    --exceptions-file works for zip archive, with functional test

commit d033c16a7d72a1e5e9c0d0310a51506ea9e57140
Author: Carl Chenet <chaica@ohmytux.com>

    ignoring files for --exceptions-file option for both tar.gz and zip archives

commit 028b0db8de7ef41245f73dc5f5a8681d9f231113
Author: Carl Chenet <chaica@ohmytux.com>

    --exceptions-file works for tar.gz archive, with functional test

commit af51bbf5997fb6a586375067a0112b0fcacfa01f
Author: Carl Chenet <chaica@ohmytux.com>

    add -E/--exceptions-file option

commit abad836ca458d0a6cab630d232f1972b6ad92fb3
Merge: 331ffbe 9ed2465
Author: Carl Chenet <chaica@ohmytux.com>

    --hashtype option to switch the default hash sum while generating configuration files for an archive. fixes #59

commit 9ed2465d9cef651c7ec5fbe141a46e4c1265ddc5
Author: Carl Chenet <chaica@ohmytux.com>

    add files to ignore related to functional tests of the hashtype option

commit 172553decf1955f58ec6f050e57ccdfe2abf2fdc
Author: Carl Chenet <chaica@ohmytux.com>

    --hashtype option to change the default hash sum to generate configuration files

commit 8fb7d8239ded5008e0563899b89601ab758ce676
Author: Carl Chenet <chaica@ohmytux.com>

    --hashtype option works with tar.gz archive

commit 331ffbec5b8f2ef9fd63f83a95d8407b4d6eb317
Merge: 379780d 55b79ea
Author: Carl Chenet <chaica@ohmytux.com>

    option -H or --hashes to explicitly required all hash sums for files in the archive. fixes #64

commit 379780d74916b730daf618cb61760433f7e85fdb
Author: Carl Chenet <chaica@ohmytux.com>

    update version number of doc

commit 1cde752773339b40d43124358b00e82bccf3de89
Merge: 7b434e7 85e0343
Author: Carl Chenet <chaica@ohmytux.com>

    use sphinx format docs to publish on readthedocs. fixes #45

commit 85e0343725d2517d58d76db9997985e2774c975f
Author: Carl Chenet <chaica@ohmytux.com>

    add sphinx format docs to publish on readthedocs

commit 9717464154a22f5f63148f7ee5bebcae4dad5415
Author: Carl Chenet <chaica@ohmytux.com>

    add sphinx format docs to publish on readthedocs

commit 7b434e7a565363f60a96dd52baf86bde3101720a
Author: Carl Chenet <chaica@ohmytux.com>

    catches unicode exception and exits gracefully. fixes #65

commit 55b79ea0ae64ae06f1c2c9dff6cf12bad2e16043
Author: Carl Chenet <chaica@ohmytux.com>

    option -H or --hashes to explicitly required all hash sums for files in the archive

commit d1ce39258b92e838accf53003e2ce430bce51011
Merge: 3f9309b 0071bd0
Author: Carl Chenet <chaica@ohmytux.com>

    create the correct directories for tests using {list,both} directories. fixes #63

commit 0071bd00cb7d1edcac014556206222f2cda48295
Author: Carl Chenet <chaica@ohmytux.com>

    create the correct directories for tests using {list,both} directories

commit 3f9309beb3cc86fa50813959d2897ed996afc670
Author: Carl Chenet <chaica@ohmytux.com>

    fixing issues while switching laptops

commit b716973f313751ccaf26192e5fd29090eb46d45a
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit fb2ddfe7adb6945c20aee38171bed1bbeff0e4d8
Author: Carl Chenet <chaica@ohmytux.com>

    bump to 0.10

commit 855cc831a33e9d8fa8ca5bf9cfff818d664a3af0
Author: Carl Chenet <chaica@ohmytux.com>

    bump to python3.4 and update brebis version

commit 89e786726764394582abd7701071b9483fc9b561
Author: Carl Chenet <chaica@ohmytux.com>

    bump python3.3 to python 3.4 and bump brebis version

commit 1d01d968c50c025a03ce50dd63adfa909540fcfb
Author: Carl Chenet <chaica@ohmytux.com>

    bump shebang to python3.4

commit dc0b419947d20a7e38b1e4b66fa52fd671e23d00
Merge: 3834b4f 79221f8
Author: Carl Chenet <chaica@ohmytux.com>

    remove hash generation for symlinks. closes #61

commit 79221f85df99169d6afcbfcc373001b4426ad35f
Author: Carl Chenet <chaica@ohmytux.com>

    remove md5 generation for symlink in a tar file

commit 659e136b5b5b2ee26ca2c2d94eaa80d95cc23e8e
Author: Carl Chenet <chaica@ohmytux.com>

    remove hash for links while parsing a tree of files

commit 36adc9bd8871f1e79b5d73689476a6cd824571ff
Author: Carl Chenet <chaica@ohmytux.com>

    remove hash for links

commit 3834b4f0dc6298bbaaf750e05ecb933955e3ecb4
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.9 for changeset dc231b2f8d78

commit b37162dc7a521952019fa4505e4b5d2747e01205
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.8 for changeset 008c44e19317

commit 9f9d28ab84c14ed20c81d1f86658a4d6be3118d2
Author: Carl Chenet <chaica@ohmytux.com>

    update man page

commit 7e7641e1260f4acfbcf80132448e043587a55544
Author: Carl Chenet <chaica@ohmytux.com>

    update changelog

commit 1dfdd6836c443b43e6c2bcce928c5c066a491615
Author: Carl Chenet <chaica@ohmytux.com>

    update README for 0.9

commit 6b6551287112d3b5aeda8bc9dcd4152501803794
Author: Carl Chenet <chaica@ohmytux.com>

    add doc for -C -L -O options

commit 1b610ce2836b713c86515cae47b6c62a83288d7f
Author: Carl Chenet <chaica@ohmytux.com>

    update version number to 0.9

commit 45593d99654e91303f1ede7f7d46f70b156a4c39
Merge: fc2002d 74d557d
Author: Carl Chenet <chaica@ohmytux.com>

    offer new -C -L -O options to define the directory where to write conf file, filelist or both files. fixes #49

commit 74d557dc1431b0b340f5022bf48d29b21b8a3403
Author: Carl Chenet <chaica@ohmytux.com>

    put back all tests in functionaltests.py

commit c98f793e96502693818f7d290d9abd19673fe6c3
Author: Carl Chenet <chaica@ohmytux.com>

    unit test support for new generatelisttree parameters

commit c348600e4bf55989bb2bd142aeda5b583ae1ff25
Author: Carl Chenet <chaica@ohmytux.com>

    functional tests for -C -L -O options

commit 261e11f0236085a4920d92ebb41e4141e3bde73f
Author: Carl Chenet <chaica@ohmytux.com>

    update unit tests to support new optional conf/list/full output directory for lzma archives

commit 138a29881771e7c657e99f90d681e2a3b0edfe12
Author: Carl Chenet <chaica@ohmytux.com>

    update unit tests to support new optional conf/list/full output directory for bzip2 archives

commit 60f39c006b09f9d73dbbe72945c6d642d6db0f46
Author: Carl Chenet <chaica@ohmytux.com>

    support to print configuration file and file list to different directories or to swith default output directory for bzip2 archives

commit 623a286de22fde895745ee35e0b47ad391db29e7
Author: Carl Chenet <chaica@ohmytux.com>

    update unit tests to support new optional conf/list/full output directory for gzip archives

commit c4400999bbc6ffc5d02d4e11e9f5c7464e441923
Author: Carl Chenet <chaica@ohmytux.com>

    support to print configuration file and file list to different directories or to swith default output directory for gzip archives

commit 5494f607f4bdc6ece0598af32cf4427335d9327d
Author: Carl Chenet <chaica@ohmytux.com>

    update unit tests to support new optional conf/list/full output directory

commit 2978376970e4be9d4c50f891f0191fd680ab7adb
Author: Carl Chenet <chaica@ohmytux.com>

    support to print configuration file and file list to different directories or to swith default output directory for zip archives

commit 44fb7a82f06b214602bbcf6e21840c175d40195c
Author: Carl Chenet <chaica@ohmytux.com>

    support to print configuration file and file list to different directories or to swith default output directory for tar archives

commit 260dddb173b0d0c42e0140cbb98fffe7e943871c
Author: Carl Chenet <chaica@ohmytux.com>

    update unit tests to support new optional conf/list/full output directory

commit 8a662ad4702fdb74f82d5dd718eee720a69a7f55
Author: Carl Chenet <chaica@ohmytux.com>

    support to print configuration file and file list to different directories or to swith default output directory

commit fc2002d28a38ecf9d8de5c23c1af7753d5aba213
Merge: ab2aa89 2d4d24d
Author: Carl Chenet <chaica@ohmytux.com>

    support apk files. fixes #51

commit 2d4d24de339baccf3a42168ef865bdbe52880fe5
Author: Carl Chenet <chaica@ohmytux.com>

    add support for apk archive, functional test for generating apk archive. correct a bug with functional tests embedding timestamp

commit ab2aa898a75681a649181de6f23dd86306bbc0e3
Author: Carl Chenet <chaica@ohmytux.com>

    add new unit tests

commit 9274e958fa49fd2933ce11c62ae14f40a767912b
Author: Carl Chenet <chaica@ohmytux.com>

    adding new files to ignore for unit testing

commit f7356ce783cac9ab6beaedff261ccaa6b2c08b3e
Author: Carl Chenet <chaica@ohmytux.com>

    add private variables to self to authorize unit tests

commit b98ad28625c27692d8c334f1c92be2b751be8435
Author: Carl Chenet <chaica@ohmytux.com>

    add a private variable to self to authorize unit testing

commit 3a19106608f76f43ec2b46320493937946d91c4c
Author: Carl Chenet <chaica@ohmytux.com>

    fix uncorrect variable name

commit 9592221dc0a3962d46b5ae2da7686f6d2e62a1a3
Author: Carl Chenet <chaica@ohmytux.com>

    fixing timestamp int/float related errors

commit 7ec227c6242aa247a1c5410927391a7be9c399c8
Merge: 8a36f14 1672e57
Author: Carl Chenet <chaica@ohmytux.com>

    merge mtime branch with default branch. fixes #46

commit 8a36f14bf790b5f7c1bdb144aba17aa965718f28
Author: Carl Chenet <chaica@ohmytux.com>

    add unit tests for checklzma module

commit 4c829577eda3a9646100425d16cb473c8e21c998
Author: Carl Chenet <chaica@ohmytux.com>

    add unit tests for the module archiveinfomsg

commit 74f4d763aa4cf415f1588161cc453ea537483e1d
Author: Carl Chenet <chaica@ohmytux.com>

    add unit test for archiveinfomsg.ArchiveInfoMsg__missing_files method

commit 1672e572b9a875ffa62f6eb6b9328a42cf828d75
Author: Carl Chenet <chaica@ohmytux.com>

    add limitation mtime for gz,bz2 and lzma

commit ee57a5e24c6ab5afe550799827b6f43a5cba80b1
Author: Carl Chenet <chaica@ohmytux.com>

    add new files to ignore

commit 199f9c10da751af987322a6b1a93db1d052469bf
Author: Carl Chenet <chaica@ohmytux.com>

    add support for mtime on tar,zip and tree - associated functional tests

commit ccb611306e79d970857e1cfa11473673ca3202c1
Author: Carl Chenet <chaica@ohmytux.com>

    update the changelog

commit 85577693d1f393e9109fe392fd25827e82b44dcb
Author: Carl Chenet <chaica@ohmytux.com>

    update README with new information and parameters

commit 0afae1eb4dc5825ebe8b399e9728db5986cca764
Author: Carl Chenet <chaica@ohmytux.com>

    bump version number to 0.8

commit e6b6ef10d43ff14f33feb03995dfbcd0260af8d2
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_tree test by adding sha512 sum of the list of files

commit e4352c1c97f4cb9ded8a4796b1213095852e52dc
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for zip archive and add it in the conf file when -G is invoked

commit ce0f5afa022393137f28b9ccf1cb92f455d482b2
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_zip test by adding sha512 sum of the list of files

commit 62fab6fc103ad92d7859073af2a9e9b1bffe8375
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for zip archive and add it in the conf file when -G is invoked

commit fa65cde7a94ccc3b35898acfb0337d54e2d2b429
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for xz archive and add it in the conf file when -G is invoked

commit 520e180dbdc61bb1d1a1061c565046eed3173e58
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_xz test by adding sha512 sum of the list of files

commit 49b73ce7f67f3c33ff99065fea17f18f0535017a
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_bz2 test by adding sha512 sum of the list of files

commit fca115b9dfd7214cba05e5a7eb097ce8fdd6394d
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for gzip archive and add it in the conf file when -G is invoked

commit e8d51d2c9cc5688420c388800095443a16a7e2af
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_gz test by adding sha512 sum of the list of files

commit edd322efc32448a7c45077574ea33dda42e47223
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for gzip archive and add it in the conf file when -G is invoked

commit 918d2c728ea0891a50405c89552fd1d0ba490cab
Author: Carl Chenet <chaica@ohmytux.com>

    fix  Test_generate_conf_and_file_list_tar test by adding sha512 sum of the list of files

commit 7552003a7b28c39d8e1bf419da23d6e33c344a49
Author: Carl Chenet <chaica@ohmytux.com>

    fix  Test_generate_conf_and_file_list_tar_xz test by adding sha512 sum of the list of files

commit 446205fc3f63db77976089c9de881a9b2dbf0b9b
Author: Carl Chenet <chaica@ohmytux.com>

    fix  Test_generate_conf_and_file_list_tar_bz2 test  by adding sha512 sum of the list of files

commit 37b19ba5555ab981ce796602bd16f9478174d2e4
Author: Carl Chenet <chaica@ohmytux.com>

    fix Test_generate_conf_and_file_list_tar_gz test by adding sha512 sum of the list of files

commit 46aea6c4a3b48ae65e46d0990efb352da239272b
Author: Carl Chenet <chaica@ohmytux.com>

    generate the hash sum of the list of files for tar archive and add it in the conf file when -G is invoked

commit 0d4549c95ff4e3770e5fc8db052c2db37d6c567a
Merge: 6b2418a 45eed2c
Author: Carl Chenet <chaica@ohmytux.com>

    sha512 parameter must be explicitly managed (None value when not defined in the conf file) and strip gpg header and footer of the configuration file. fixes #44

commit 6b2418a7c7a47c8607c55a40233a412df698f6ca
Merge: 2eefed6 628e61a
Author: Carl Chenet <chaica@ohmytux.com>

    merge to support hashum in the configuration file. fixes #43

commit 628e61ac4acf73ae2eb7b4919cc4ded4506fe14e
Author: Carl Chenet <chaica@ohmytux.com>

    modify the configuration parameter called hash by sha512

commit 45eed2c3fcc901aee7ff401f309dd01f96df7a5b
Author: Carl Chenet <chaica@ohmytux.com>

    add missing gpg footer test, missing gpg header test and strip gpg header for tar gz archive test

commit bfb17fd0fb01fb2e103afbd104e6ecbb207d30bb
Author: Carl Chenet <chaica@ohmytux.com>

    add sha sum in configuration file test

commit 05bbccaf2b961a1b11fcf0ad4f86cbb22be27080
Author: Carl Chenet <chaica@ohmytux.com>

    support for hash sum of the list of files in the configuration file

commit 2eefed69d52209ae1e4ae950a36b60978daf3bfa
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.7 for changeset abdba4451b0a

commit 2a498b5e7328f49ca3cbc09934382aaf773a144f
Author: Carl Chenet <chaica@ohmytux.com>

    uncomment all the test suite

commit 00778d5fcc06d1f25256a4baba87062e405d5898
Author: Carl Chenet <chaica@ohmytux.com>

    remove list of files from the scop of the generate conf and file list of a tree of files test

commit fa4e869a8f31f3f184529ad892d525795fbb76c4
Author: Carl Chenet <chaica@ohmytux.com>

    exclude mode from generate conf and file list tree test

commit 1e9f686f9cb673100d6f63004fa15715da4cd2c3
Author: Carl Chenet <chaica@ohmytux.com>

    recompose list file to exclude uid/gid

commit 2e41a3cea79dff53766eaa60c1547b79c540e810
Author: Carl Chenet <chaica@ohmytux.com>

    remove uid/gid because triggers errors for functional tests while executed on a computer not having the sames users

commit 556dbb94db7bfd6fedd79ff3b342f7b2bf3b5e58
Author: Carl Chenet <chaica@ohmytux.com>

    update README for 0.7

commit a882ec02471a2fb3e287ca3545fff7c95b9341a4
Author: Carl Chenet <chaica@ohmytux.com>

    update README for 0.7

commit 00da8d426f94df4c1666d525daf5c0188651be37
Author: Carl Chenet <chaica@ohmytux.com>

    update the changelog for 0.7

commit aa7fdd17cf6b88ae55e2397d599ea6555e9bf4b6
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list for tree of files test temporary files in .hgignore

commit 8558b370b3a364359760c0b70c5f593872db1e10
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list for tree of files test

commit 45984abe93d4c3d8425e35b3703c23565b7b966f
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list in xz test temporary files in .hgignore

commit d4dbb146e676984c2cf3bbe2f6682549a7dd61b3
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list for xz archive test

commit 3e1d9977679707fdfd67408fb478311ede091967
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list in gz and bz2 tests temporary files in .hgignore

commit dc56cfaad07e07ba833080d836fa65af5e59049c
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file liste for gzip and bzip archives test

commit f68ccf1c6888494cacc0c592fb1a2e8fab5c49ec
Author: Carl Chenet <chaica@ohmytux.com>

    ignore temporary files of generate conf and file list for zip archive test

commit 5656957b56b09ddbe9b6b71b0ef323aabc046c4e
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf an file list for zip archive test

commit 9316db554c427e4f6ba65b9e31b832ff33d924a8
Author: Carl Chenet <chaica@ohmytux.com>

    ignore temporary files for the generate conf and file list for tar archive test

commit 58aff0af69f24e42af920e009d0fa0ad6b49fd59
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list for tar archive test

commit e50beb84a7c6de2c86c5fe0fcfd1c9ba59b9dc96
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list in tar xz test temporary files in .hgignore

commit 7488656317dddf4d2b5c78843a2036adbe4b83c3
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list tar xz test

commit c257add3c5f0225ccea544d92bc14928b079f074
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list in tar bz2 test temporary files in .hgignore

commit abdb05ee9774b87a1fba96a9cd285d08f7b03c21
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list tar bz2 test

commit 86d208e7edd1c9a0dad5ffc890e17859b521e8a7
Author: Carl Chenet <chaica@ohmytux.com>

    improve generate conf and file list tar gz test - support list file

commit 983897fe5ff285b57049cc02e714eaed445f98fa
Author: Carl Chenet <chaica@ohmytux.com>

    add generate conf and file list for tar gz archive test

commit d2ac28f208af973541c70897b4c128a10e46ac52
Author: Carl Chenet <chaica@ohmytux.com>

    add new files to ignore for genereate conf and file list for tar gz archive test

commit 49ef75d180948f5b01a0c4330ad2f8e07889ee35
Author: Carl Chenet <chaica@ohmytux.com>

    bump 0.6 to 0.7

commit 52073f3ce0b79e69da3dfc30acbbe14138f3acb2
Author: Carl Chenet <chaica@ohmytux.com>

    add unsupported parameters for zip archive test

commit 5aac0ee04e824822f52c5099953e29bdc413e182
Author: Carl Chenet <chaica@ohmytux.com>

    check every files from the .list files to find unsupported actions for a given kind of archive. fixes #42

commit 81dfd07664f7c652db0d06082dc1f9eba7d13fce
Author: Carl Chenet <chaica@ohmytux.com>

    correct typo in error message

commit c78d764db212064046507dacd3a8986a5351b49c
Author: Carl Chenet <chaica@ohmytux.com>

    bump brebis version to 0.7

commit d414e444280c245148b0b6664ad1ee805da8b854
Merge: 784412b b5d9695
Author: Carl Chenet <chaica@ohmytux.com>

    merge check-target-link branch into default branch

commit b5d9695a068998387ea288c0f0f00831468da917
Author: Carl Chenet <chaica@ohmytux.com>

    rename wrong-target* tests and add wrong target in tree test

commit 8d44037e7d321e1238fd2cc4c474b0724f8f913a
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong targe in tar {bz2,xz} archive tests

commit a2ec7b17ca1cb52d6349ca9c163f337d070cd252
Author: Carl Chenet <chaica@ohmytux.com>

    update the code to use targe in generatelistfortree and checktree

commit 53c2165e7d93fd5a062fd73e82b94987e1599d5c
Author: Carl Chenet <chaica@ohmytux.com>

    update test_listfortree_translate_type_file test

commit 2fe35d8a0bec19d77563a6578ea40ba4e83d6af6
Author: Carl Chenet <chaica@ohmytux.com>

    add  target as unsupported feature for gz bz2 zip and lzma archive. rename lists for unsupported features to correct old bug

commit 7610151f4b906879531e156c25013654b6e7606f
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong target in tar gz archive test

commit f7ce0e8ac501fc1d1943dc46c6b173095ad92cfb
Author: Carl Chenet <chaica@ohmytux.com>

    add target test on tar gz archive

commit 784412bc1d10c2eace7eb2ada7b01adccf75b54e
Author: Carl Chenet <chaica@ohmytux.com>

    control the behaviour when wrong data are in input. fixes #39

commit dbb753a542761b1b449bd4dc2cd204f2bc493b1f
Merge: 83f2086 2c7ffef
Author: Carl Chenet <chaica@ohmytux.com>

    define option -G to generate the .conf file. fixes #38

commit 2c7ffefd0df9f8184f51541b015554cba5989d18
Author: Carl Chenet <chaica@ohmytux.com>

    modify existing tests for generatelist

commit c7a9679042d09c536a6a3c70d6bd205630b330ee
Author: Carl Chenet <chaica@ohmytux.com>

    add option -G to generate configuration file

commit 83f2086b346d5acc6d1cbc53aad50f17e2a61869
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.6 for changeset 3b7e8e691fd0

commit 8f96de40908688e9ac48f386e44e137af390d3dd
Author: Carl Chenet <chaica@ohmytux.com>

    update the changelog for version 0.6

commit 2783040ceda2911c5198e8ec7d8787097a746991
Author: Carl Chenet <chaica@ohmytux.com>

    update the README for the version 0.6

commit ae2b3740da4037b9685708a27ab7a5d174d4c442
Author: Carl Chenet <chaica@ohmytux.com>

    bump version to 0.6

commit 115db58ff0b5f2e9e9c825b103ba22aa09ede4a5
Author: Carl Chenet <chaica@ohmytux.com>

    give the good name to a (rather unused) stat module function S_ISBLK. fixes #28

commit 521f4a106faa61e271d3473db8f99f2b6ae0cb7f
Merge: 0f0a4a3 d0eb8ab
Author: Carl Chenet <chaica@ohmytux.com>

    catch EOFError exception triggered while generating/checking a (big) tar archive. fixes #36

commit d0eb8ab10f70c2c13ff16dee3c8d9a37f907c8fc
Author: Carl Chenet <chaica@ohmytux.com>

    catch EOFError while checking tar file because it is a sign of corruption of the file

commit ed4c8b7d3614b5e5bbb9b2e69dae3c3025f9ad2c
Author: Carl Chenet <chaica@ohmytux.com>

    catch EOFError while manipulating tar file because it is a sign of corruption of the file

commit 0f0a4a3a9c1e646afd076e002fb4c8d570827c32
Author: Carl Chenet <chaica@ohmytux.com>

    update shebang with debian python3.3

commit ecf3d56a43582c2b599e1e7de7dd87feb3f57275
Author: Carl Chenet <chaica@ohmytux.com>

    add generate list and parse tgz and tbz2 archive tests. fixes #31

commit 12d9bdd979ee0385ce894cd42924e17927102840
Author: Carl Chenet <chaica@ohmytux.com>

    fix code error about support for tbz2

commit 971e61ed46480cc5ca337cef793def728db8839b
Author: Carl Chenet <chaica@ohmytux.com>

    check if configuration paths exist. fixes #34

commit db468d6e2c901b6856fef66e279033e2bd1a40d8
Merge: fd87da5 7f7cbad
Author: Carl Chenet <chaica@ohmytux.com>

    provide only one configuration file on the cli. fixes #21

commit 7f7cbad82cf255e9573866cd9db5739f5460ede3
Merge: f7607c7 fd87da5
Author: Carl Chenet <chaica@ohmytux.com>

    merge to check if only one conf file feature works with latest version in head

commit fd87da579c70f8033eb60e8fea345dc275ae92a4
Author: Carl Chenet <chaica@ohmytux.com>

    create the need directory for wrong file type (hard link) in tree test

commit b3e95c697b284e024e16924d1dd44b781365922f
Author: Carl Chenet <chaica@ohmytux.com>

    update to wrong file type (hard link) to generate the needed hard link  itself

commit a1fba115ae4de2b3cc0fd9e1c0d87e861db15ad0
Merge: 8fd3397 fa646fe
Author: Carl Chenet <chaica@ohmytux.com>

    detect hard link with stat. fixes #33

commit fa646feb661bd3c863c59295d12bbe05ca1d81a8
Author: Carl Chenet <chaica@ohmytux.com>

    activate wrong file type hard link in tree test

commit 41fe3686ad885b6f1802e4f0f7cb338aa9652d03
Author: Carl Chenet <chaica@ohmytux.com>

    detect hard link for uncompressed tree of files

commit 8fd33973e2c2215f8911f4f93c7fe4df40bf3662
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file type hard link in tree - test is useless for now, need #33 to be solved

commit 5fbd86891bfdcc7fad87690a4e725f152db36cd0
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file type (hard link and symbolic link) detection tests in tar.gz, tar.bz2, tar.xe and tree of files

commit b7ca15baca6df3867822e21f418adc2c328b6082
Author: Carl Chenet <chaica@ohmytux.com>

    add expecting hard link for tar gz archive functional test

commit 35535d4d456176e0aa03f1ee6a2499e91e552c12
Author: Carl Chenet <chaica@ohmytux.com>

    add hard link type support for the error message. fixes #32

commit 93803613b56b627eea9d092de49392275a6f8c87
Author: Carl Chenet <chaica@ohmytux.com>

    add type l for hard link. fixes #29

commit 43054b62cb94eccb140c12953795adaa1d86a55b
Merge: 62b2b1e 4f7f571
Author: Carl Chenet <chaica@ohmytux.com>

    merge support for tbz archive. fixes #25

commit 4f7f5715505e18b921cc54bd7a18b782f3656ea4
Author: Carl Chenet <chaica@ohmytux.com>

    add generate list and parse tbz archive functional test

commit 1ba2cec4d02d2cbe54d8505bbbe6f8bbe1457c00
Author: Carl Chenet <chaica@ohmytux.com>

    add support for tbz archive

commit 62b2b1eec2dc84855d16720c7170123433b5a56f
Author: Carl Chenet <chaica@ohmytux.com>

    bump to good current version in cli help message

commit 2d687a08c0bf9f0be4bed16955ab2784615379cb
Author: Carl Chenet <chaica@ohmytux.com>

    add a test for version consistency in setup.py and cliparse.py. fixes #26

commit 88188657f6e9cbb61282efcaff38c940946a9710
Merge: e5cbe1b b57effd
Author: Carl Chenet <chaica@ohmytux.com>

    merge alert-message-for-no-conf-files branch to check if configuration files exist at the user-specified path. fixes #27

commit b57effd88abb30a4733d2e0c115eb7011a8d8edf
Author: Carl Chenet <chaica@ohmytux.com>

    check if configuration files exist at the user-specified path. fixes #27

commit e5cbe1b235b44100b03c63ed43362c2ffefd5159
Merge: abc1727 97a617e
Author: Carl Chenet <chaica@ohmytux.com>

    add new option to globally switch the default delimiter to a user-defined delimiter to generate the list of files of an archive/path and to check an archive/patch. fixes #22

commit 97a617ec16332b10f817682382e0985e62671a8d
Author: Carl Chenet <chaica@ohmytux.com>

    update the manual page

commit 9f06844e5022299e18fb1ddf6ae6b7d8d4396219
Author: Carl Chenet <chaica@ohmytux.com>

    add generate list changing default separator for {tar.gz,tar.bz2,tar.xz,gzip,bz2,zip,tree} tests

commit fcc746e231123e86b36a65be349559f45933e840
Author: Carl Chenet <chaica@ohmytux.com>

    fix broken tests by the changes for adding the option to swith the delimiter

commit 3ebee399b6928af739fae5b20caaca4014eb586b
Author: Carl Chenet <chaica@ohmytux.com>

    add delimiter option to replace default delimiter in the list of files, both working to generate lists and check backups

commit abc1727ee695a931f612f765ffd01ae26ba623d0
Merge: 476555b 6838428
Author: Carl Chenet <chaica@ohmytux.com>

    check if supported archives in listtype.py and checkbackups.py are consistent.fixes #24

commit 6838428e0aa915c437e198e8796f25a5513f6ab3
Author: Carl Chenet <chaica@ohmytux.com>

    add a test to detect missing archive types between listtype.py and checkbackups.py

commit 65b463ed843c853174d19d5c86e049458afcf7fd
Author: Carl Chenet <chaica@ohmytux.com>

    add missing support for tbz2

commit f7607c711c488153bf334be40da0e73ad59dda40
Author: Carl Chenet <chaica@ohmytux.com>

    -c option now manages a single configuration file

commit 476555b8f47bd90e06213cde1a5fbd44fcf837e4
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.5 for changeset 1616effdc58d

commit f90760577f8d0739975d6dde9d40697c67523b31
Author: Carl Chenet <chaica@ohmytux.com>

    add the brebis changelog

commit 326eb631c6ff8a0f468a6e4155e92800834f237c
Author: Carl Chenet <chaica@ohmytux.com>

    add a small script to generate archive given the current version in setup.py

commit 0461db94e8edba20910480900ce768d953f7f1e2
Author: Carl Chenet <chaica@ohmytux.com>

    switch the shebang to system path for python3.3 on debian linux

commit 746b53d7a27a58f9773f02d75ade06927df50204
Author: Carl Chenet <chaica@ohmytux.com>

    replace logging.warn (deprecated) by logging.warning

commit bce51296f148798be59152ae2d41d5069d84e883
Author: Carl Chenet <chaica@ohmytux.com>

    switch the shebang to system path for python3.3 on debian linux

commit 113d8d52d830bc4c26a69011b3ee1b99c5c87d88
Author: Carl Chenet <chaica@ohmytux.com>

    bump the date of the copyright to 2013

commit 0d617089db5f2ea2d59c59d796bb5c87b061eec1
Author: Carl Chenet <chaica@ohmytux.com>

    add a manual page for brebis. fixes #23

commit a6d1a3ba45891ddcf7feba0cdfa0cb5afe8de5d0
Author: Carl Chenet <chaica@ohmytux.com>

    add in the README that using .conf for the configuration file is mandatory. fixes #19

commit d8c801a9051eec8f2419b684a584ae411ff627dc
Author: Carl Chenet <chaica@ohmytux.com>

    update the README for python 3.3 and brebis 0.5

commit 89e63989174bba33e90aa989feffbe6a4e3147f7
Author: Carl Chenet <chaica@ohmytux.com>

    update to python 3.3 and brebis 0.5

commit d21b99f1266b17a843a25b0c0f5e4fa64df107de
Merge: 54e7037 e3267f4
Author: Carl Chenet <chaica@ohmytux.com>

    merge support for lzma in the default branch

commit e3267f4015dfd203b1f7c164a8f3b7a965e300aa
Author: Carl Chenet <chaica@ohmytux.com>

    add expected generated list for xz archive test

commit 9a91ee21e3495293c9f28637a58c3ad7efea22eb
Author: Carl Chenet <chaica@ohmytux.com>

    fix bug with the filename in the .list of a xz generated archive & add generate liste and parse parameters xz archive test

commit 73e72f050a1e937269bf8e42d694b012853317c5
Author: Carl Chenet <chaica@ohmytux.com>

    add unsupported parameters xz archive test

commit 684ae13c2e14b98423bf612de0820a1d593736fb
Author: Carl Chenet <chaica@ohmytux.com>

    add file missing in xz test

commit 9f779953dcb2f1cab07765171040f1b2fcdb3dd0
Author: Carl Chenet <chaica@ohmytux.com>

    not easily possible to get lzma/xz uncompressed file size - maybe later

commit e039382848c266ef9ac61d4a76df1411850d9aa6
Author: Carl Chenet <chaica@ohmytux.com>

    add corrupted xz archive test

commit 64e1e5f33ee01cb8f09ffff96f85bea673a99a09
Author: Carl Chenet <chaica@ohmytux.com>

    add expected file smaller than file in tar xz archive test

commit ad0c27c61937641570b2171cabb5078222956735
Author: Carl Chenet <chaica@ohmytux.com>

    add expected file not equals file in tar xz archive test

commit c4c10ef0aef5075ee4b4f91f02825ae46623c42a
Author: Carl Chenet <chaica@ohmytux.com>

    add expected file greater than file in tar xz archive test

commit cddde8df44e84676c4783c2e90878b0dc91d9075
Author: Carl Chenet <chaica@ohmytux.com>

    add corrupted tar xz archive test

commit 756ea60fa5eb45b7e3493cb5c6b73b6521ecc1dd
Author: Carl Chenet <chaica@ohmytux.com>

    add unexpected file in tar xz archive test

commit d153e6c477f7e02be0f0608899893c54f2bb2707
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha512 in xz archive test

commit 67be34bcef4bdffcc052daf09765065b7845491f
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha384 hash in xz archive test

commit 86b5ec691f08809df0ebc2218301e3fc08c1bcc9
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha256 hash in xz archive test

commit c6d0cd0e87eaa4a05552b0ebeb1d00553c76f3dc
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha224 in xz archive test

commit ba906f5c5e9cb68d24c9c24fab6e9a4b71a4c1f6
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha1 in xz archive test

commit 78048a5b2b4b6f3155dfd738531f616a9095ea3a
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file md5 hash in xz archive test

commit 4664eedea2c02603d43ec8a9771c8439bdc93473
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha512 hash in tar xz archive test

commit 1c1104ed0687735462b24fe0edc7faf4c5af2a3c
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha384 hash in tar xz archive test

commit 9b7ce7d3409c99f53ba88f1d282983561116a3ca
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha256 hash in tar xz archive test

commit 6cc21a420e4f9238e458d8a9ded30456ce8b57d4
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha224 hash in tar xz archive test

commit 685aa731e8cffcb1caf1b247a92fdfc078678a1f
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file sha1 hash in tar xz archive test

commit a9f9fb0d2a6155054326f771e7e2fb0440f56a24
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file md5 hash in tar xz archive test

commit 7586b2fdc8a9c8ff63f26d8862be6dfb3b48bd33
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file type f in tar xz archive test

commit ed3b14b6f442c971ed8ea3610b8e7df746277356
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file type d in tar xz archive test

commit 2408fc545ae18864eeda5c4543b6f1ecf06e4638
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file gid in tar xz archive test

commit 2c02d490a3a41ed556232d368e55a1e3c5a6992f
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file uid in tar xz archive test

commit d7e9d83797b859683b239a908fcdf362a22d62e1
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong file mode in tar xz archive test

commit a2ad59835c84afa9398c7e89b8eecf737702fcba
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong bzip2 archive gid test

commit bb7988233f935fe4de0e4028e76fb3d88c67326d
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong bz2 archive uid test

commit c6b4d4f8ba95e6b2fd690deeac6ad8310cacc2df
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive sha512 hash test

commit f8c642d12aeb413067373c0dbe5412ba3f35df13
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive sha384 hash test

commit 0a3462f80c26f94d7f8f4d16a2dbef4ae0fcacaa
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive sha256 hash test

commit 0476f5fd54a686c961830fec5ddc3b936ea6ac8c
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive sha224 hash test

commit 2291bff870e17d15457ee470b6fa68c2816af638
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive sha1 hash test

commit 6921cc10797c1968c4856f3a13dd27d3df194926
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive md5 hash test

commit a36fb0017ec222ed540c5edb27a3d8f65e9273ce
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive mode test

commit c73a1b098bc50c245a3f46154380cc7c60a318f5
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive gid test

commit 61c3783b45f23e217ac1f434660aaadda68ff18d
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong xz archive uid test

commit fd34302503d7bccc5fc7998a37bd8c5348eb8393
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha512 hash test

commit f54d47a47867f1b3f2a5939716af3d268591dabd
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha384 hash test

commit 831e61dce4c044353f8ea88ee24b916c75c75cea
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha256 hash test

commit 43b7845ba168c699b335eb57e9f8540c4b04476e
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha224 hash test

commit e156d8083da648b232048c400ec463891bdddab5
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha1 hash test

commit a9aa52074278f0c8db91d5c447729aa0e1d24bc8
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive sha1 hash test

commit c3190b853886380fdbb725bdf7344be976979d6a
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive md5 hash test

commit b60d02d159d00d1045cc8ae6a2bcba95deed0944
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive mode test

commit 51526e5d9ff557aacde8be0dbd9f7c5d42e19ad4
Author: Carl Chenet <chaica@ohmytux.com>

    add wrong tar xz archive uid and gid tests

commit ad512854cb6b87688b34f1a61ae47f83e5792af5
Author: Carl Chenet <chaica@ohmytux.com>

    add tar xz archive size smaller than expected size test

commit 12e0f953c8f27696705cab3b3670abc4d8d679f5
Author: Carl Chenet <chaica@ohmytux.com>

    add tar.xz archive size not equals expected size test

commit 5293912d6a7adfc4779f829976d282f40e011a98
Author: Carl Chenet <chaica@ohmytux.com>

    add a test for tar zx archive size bigger than an expected size and removing unexpected a.out file

commit 6e1acb22028ac77f9dc16f0e20d73d461966918b
Author: Carl Chenet <chaica@ohmytux.com>

    add test tar-xz archive size bigger than an expected size

commit 1d4f753c001c003be3fa5e9fc08603ba73fa2873
Author: Carl Chenet <chaica@ohmytux.com>

    add support for tar.xz files and add two functional tests for xm format

commit 5b3814683eaf7fa347a28ee53b0bbd715cc978d1
Author: Carl Chenet <chaica@ohmytux.com>

    support for lzma and first functional test

commit 54e703767f6e9c321063f08aa849b89b15d1be00
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset 955e902e51c8

commit 495a72baee17bf2dddefdacd423ba99c7a6640fe
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag v0.4 for changeset 955e902e51c8

commit 0bcf32dffe6a57a0ea09f7c1e0939a4f9d0a4b66
Author: Carl Chenet <chaica@ohmytux.com>

    add comment about delimiter optional field

commit 5a3cfae47e7d540eb9f1469f9966fd228c2e3b36
Author: Carl Chenet <chaica@ohmytux.com>

    modify setup.py in order to manage new packages brebis.checkbackups and brebis.generatelist while installing

commit c7cf1ecb4e1bbd036feb5520d6683e7d082d29c2
Author: Carl Chenet <chaica@ohmytux.com>

    update for version 0.4

commit f01876c52e14841cb9adde5b9a55e4d2dc4bc8e3
Author: Carl Chenet <chaica@ohmytux.com>

    fixing issue with no perm, in generatelist part

commit d2fb241cd3d1cda55a6f65239f00e3affcfc109c
Author: Carl Chenet <chaica@ohmytux.com>

    fixes #14, size unit can now be lower or upper case

commit fcf49db55f81bda3e258de338365a427af31ecc0
Author: Carl Chenet <chaica@ohmytux.com>

    fixes #15 managing special cas when mode == '0' -> transforming into '000'

commit 5b2f7de772964d60dfcefef773ac3660a78c5337
Author: Carl Chenet <chaica@ohmytux.com>

    fixed #16 correcting a bad format using non-existing keyword size (should have been =)

commit a5794664d74a91aff485bf713d6b11ab04f68e34
Merge: 60f1957 5711a7b
Author: Carl Chenet <chaica@ohmytux.com>

    merging branch for archive size functional tests

commit 5711a7bce2a9f404d730577a25a5c7447720cab7
Author: Carl Chenet <chaica@ohmytux.com>

    adding functional tests for testing smaller than parameter of the size of an archive

commit 20028ca3184271bf2646eacc3ca696d3c5dbb938
Author: Carl Chenet <chaica@ohmytux.com>

    adding functional tests for testing bigger than parameter of the size of an archive

commit 3685aaf3c42f91f5c276a3798f45434972807f60
Author: Carl Chenet <chaica@ohmytux.com>

    adding functional tests for testing equality of the size of an archive

commit 60f19570bf88793316fa20b2ca909fa4807b5dee
Merge: b9b6ea5 bb7b6a0
Author: Carl Chenet <chaica@ohmytux.com>

    merging -g option branch and updating version number

commit bb7b6a0d798babec03b440c0b3a326bef807e6c7
Author: Carl Chenet <chaica@ohmytux.com>

    achieved to write functional tests for the tar-only archive

commit cd4a793945d9adea10783188c881b1fbb75f46bd
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests for tar-only archive type

commit beedce2bbef19e8e62a2fbcd84a2a545f4792d03
Author: Carl Chenet <chaica@ohmytux.com>

    support for user-specified delimiter, unit tests and functional tests, removed number for each functional test

commit 4cb7dcaeb3d9f1172531f0b22e10a37f5c078514
Author: Carl Chenet <chaica@ohmytux.com>

    intermediate commit for -g option and new delimiter and custom delimiter

commit b9b6ea5ce93ed668eb701e56b4037970e7a2293d
Author: Carl Chenet <chaica@ohmytux.com>

    adding directory for unit tests

commit e285701e75f3d426eff0c411b57424240081a737
Author: Carl Chenet <chaica@ohmytux.com>

    adding unit tests for private/protected methods

commit 7bb988455e3fa2c05238bb03f1264604774cf228
Author: Carl Chenet <chaica@ohmytux.com>

    upgrading version number in setup.py

commit a22d39d402a850b88eae3f5b02ec32d2efa620cc
Author: Carl Chenet <chaica@ohmytux.com>

    upgrading version number in README

commit 7fe63b27a24f194f4744138704162f9391edfefc
Author: Carl Chenet <chaica@ohmytux.com>

    upgrading version number

commit c9dccae4825fedc93fe1313c6e471add9d1f4fab
Author: Carl Chenet <chaica@ohmytux.com>

    correctiong unit tests to manage new check modules organization

commit 323b61dfc85114aa0e739b81bfc0f0bb41e89bd7
Author: Carl Chenet <chaica@ohmytux.com>

    fixed #9 - support for tar-only file

commit 524fafb31b06abcf8c10d5fbef0a5a1b4ce1f76e
Merge: 0fb7337 525959c
Author: Carl Chenet <chaica@ohmytux.com>

    fixed #11

commit 525959c366cab81ea0dd5ecad81a1227ab7d9dbe
Author: Carl Chenet <chaica@ohmytux.com>

    fixed #11 - new package checkbackups

commit 0fb73371177abd0779779c0a70ebb57b29a11da9
Merge: 93ce6ba 75041ac
Author: Carl Chenet <chaica@ohmytux.com>

    merging generate-list-files branch and default branch

commit 75041ac4c793f146683d5c0acc8b749ebd084712
Author: Carl Chenet <chaica@ohmytux.com>

    final tests generate and parse for --gen-list option

commit 59c5ff5156458e258f81d6479876ce6c6bef4aee
Author: Carl Chenet <chaica@ohmytux.com>

    removing expected-generated-list-for-tree because of lack of portability

commit dcd1583a9917226ecb1966f7f40cd097e39ba57a
Author: Carl Chenet <chaica@ohmytux.com>

    functional tests for expected generated list files

commit 4da23acbde4ab36414f2423fa739f1f5e99592e1
Author: Carl Chenet <chaica@ohmytux.com>

    added the support of generation of list of files for gzip archives

commit 6f02a0f02f45b174e94603bea44ed8ebee51baff
Author: Carl Chenet <chaica@ohmytux.com>

    complete generated list for tar,zip,tree

commit ebe30e99a673deb202b21a2fb0923af84751b074
Author: Carl Chenet <chaica@ohmytux.com>

    added the support of generation of list of files for tree of files

commit 028139303627c34bf81e43f4177ec77e425a4232
Author: Carl Chenet <chaica@ohmytux.com>

    removing unwanted file list from hg watched files

commit 01a803c07717277403e41eaed1920a1bc64bca29
Author: Carl Chenet <chaica@ohmytux.com>

    generate list of files for tar and zip archives - tree incoming

commit c6163c01ec1b5c160f87eee84b9c42214fb464bd
Author: Carl Chenet <chaica@ohmytux.com>

    seems to begin to work - issue with name of output file and headers of generated list solved

commit 5a94ba7718544010cf56c288fe8d86b199c5f075
Author: Carl Chenet <chaica@ohmytux.com>

    seems to begin to work - a problem remains with the output file named tlist

commit e4cc245e805a6b6a896d8bea65978ccf6975def4
Author: Carl Chenet <chaica@ohmytux.com>

    added generate list modules for archives and tree

commit 9aa5be9895d90d57732bb92b06515185430619f4
Author: Carl Chenet <chaica@ohmytux.com>

    first commit with beginning of support to generate list of files in the archives

commit 93ce6ba543eb7e0281019e0e2d1b65dc4f10da36
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset 5a1340cb05cf

commit a9ecff88f5be55929e42830c1e9db01db2ac5ee2
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag v0.3 for changeset 986f90788294

commit 3d9a66149f542ba916a14c29be9887510f100b6a
Author: Carl Chenet <chaica@ohmytux.com>

    updating version field

commit b7e3e6cf4fbb0851ac4fbe0a09b1bd25ace1d87c
Author: Carl Chenet <chaica@ohmytux.com>

    updated README

commit 7dffc0a91041190630e0a1638a168fd60d21f3fd
Author: Carl Chenet <chaica@ohmytux.com>

    setting version to 0.3

commit 8cf238ef552049445df699abc630d0e100717a3a
Author: Carl Chenet <chaica@ohmytux.com>

    replacing parameters tuples by sets

commit 4621fc33b61adadbbb119f444e8a21f5c63c2940
Author: Carl Chenet <chaica@ohmytux.com>

    adding support for warning about archive limitation for bzip2 archive

commit eae5ac0263e735b5dcfb08e246dadd461eeba0b1
Merge: 74b386b fa065fb
Author: Carl Chenet <chaica@ohmytux.com>

    merging the branch for test limitations for archive and default

commit 74b386bc712521658f3e40ac209c6644f5b619dc
Merge: a430b52 2632166
Author: Carl Chenet <chaica@ohmytux.com>

    merged support for bzip2 only archive in default branch

commit 2632166adbe395508ab488202c8b289286430503
Author: Carl Chenet <chaica@ohmytux.com>

    added default parameter type for file inside a bzip2 archive

commit fa065fb610ade4e6d5053256c71c0c6023fff502
Author: Carl Chenet <chaica@ohmytux.com>

    added support for warning user about current archive limitation

commit 543e30411c7befc87b536dcc2609dc2851501e1e
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests for file hash in bzip2 files - added unit tests for hash in gzip and bzip2 files

commit 5bb71daea4030dd0393f0ffb12c725e5793cc5ef
Author: Carl Chenet <chaica@ohmytux.com>

    functional tests for hash of the bzip2 archive

commit 56b8c877dd75ce8e6d3d2ac01d79d05bd3938810
Author: Carl Chenet <chaica@ohmytux.com>

    Support for missing file and default size - associated unittests

commit 996e143ee306877ed3264e16d6e3f8b259c98428
Author: Carl Chenet <chaica@ohmytux.com>

    support for corrupted bz2 archive detection and associated test

commit 81a245cfeab36c21f610d282d261482bf2f938f5
Author: Carl Chenet <chaica@ohmytux.com>

    corrected mistakes in docstring

commit d34822549f0727e9c9426d4cc70b05d863c8910b
Author: Carl Chenet <chaica@ohmytux.com>

    corrected docstrings

commit a430b5221665c96386403d6bda41b08b07ec6f71
Merge: 37ee442 6d02301
Author: Carl Chenet <chaica@ohmytux.com>

    merging support-for-gzip branch with default branch

commit 6d0230199d5ea37959bcfc7c32f5d4dd9557defc
Author: Carl Chenet <chaica@ohmytux.com>

    acceptable detection for gzip archive corruption

commit e824dcda21b4053b83d5a5dd4064c5f47e8eb0d3
Merge: 3edb894 37ee442
Author: Carl Chenet <chaica@ohmytux.com>

    synchronzed with default branch

commit 37ee4423fb112ed4185af199c637c61e9faee9aa
Author: Carl Chenet <chaica@ohmytux.com>

    reverting last fix -not the good way to do it

commit 4c2f669dfb3ee33e650b93e933bb112ff7f52499
Merge: 3d08e49 74f302a
Author: Carl Chenet <chaica@ohmytux.com>

    fixed #8 support for error detection in gzip archive

commit 74f302aed83744dab96f67e05a7e51a217ecaa4e
Author: Carl Chenet <chaica@ohmytux.com>

    added support for error detection on gzip archive

commit 3d08e49a3f01f7f58974d0661158e46d716098aa
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset b746a25ea5dc

commit 107ada589f0901be511fa21af303aae81ad28012
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.2 for changeset b746a25ea5dc

commit 518d3fd1fe7049b25e849ca2ef9233195b35314b
Author: Carl Chenet <chaica@ohmytux.com>

    fixed version id

commit 850697cc986994445db28315794e4038e52161c2
Author: Carl Chenet <chaica@ohmytux.com>

    Removed tag 0.2

commit 5444a2c10247a8b302278389d35026f537158ba5
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset 333cde7ecab7

commit 542713ed8642dd0909cd2406066afec2938209d9
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.2 for changeset 333cde7ecab7

commit 6ea81bafa4462be9ad9fe9478c147c3ed1e0ce33
Merge: 1f3b04f 3edb894
Author: Carl Chenet <chaica@ohmytux.com>

    merging support-for-gzip in default - fixes #3 #5

commit 3edb894c5e94ff187aca9b864506e6a7bd34a120
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests for the new CheckGzip class private and protected methods

commit 87fa08d2a0788026c887dd2c5b6a00665101cc83
Author: Carl Chenet <chaica@ohmytux.com>

    solved an issue with unclosed file object

commit 88d83284f03b2736744412aa8e3987fc26521c9a
Author: Carl Chenet <chaica@ohmytux.com>

    added gzip archive to full criteria multiple backups functional tests

commit 4369578345154a3109a34cd825d46c10e6044e8b
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test for unexpected file in gzip archive

commit 79d82c49e94b57e97a30462943d173ba3522bdf4
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to check a missing file in a gzip archive

commit a4dac2d552903f864c8376974fcdd3977072db8a
Merge: ae6eab8 7d12ee5
Author: Carl Chenet <chaica@ohmytux.com>

    merging current branch and add-missing-types branch

commit 7d12ee5ab3fe4fedbf4bf77c8d5d62465fa8667e
Author: Carl Chenet <chaica@ohmytux.com>

    support for hash checking for file in gzip and associated tests

commit 97ea9b1f36e78e1d8422d43d453ef7507aef6d19
Author: Carl Chenet <chaica@ohmytux.com>

    tarfile.CONTYPE -> tarfile.CONTTYPE

commit ae6eab8077d8401cfd650f1b6a8edb51ac8fb730
Author: Carl Chenet <chaica@ohmytux.com>

    added support for initial filename in gzip and associated test with corrections on existing gzip tests

commit e6930f9ef462c462cc307b93e3d1286c396e3d46
Author: Carl Chenet <chaica@ohmytux.com>

    added tests bigger than and smaller than for file inside gzip archive

commit 4bda1595c8f9e43a260402cdb508be9ba39a7788
Author: Carl Chenet <chaica@ohmytux.com>

    adding files for equality functional test

commit b2e19f08f217c9e6e0bf125fbdb688caa60acc03
Author: Carl Chenet <chaica@ohmytux.com>

    added support for size test on a file inside the gzip archive + equality functional test

commit b7018793e59f55857bb3c47b78d28fc2411e60c5
Author: Carl Chenet <chaica@ohmytux.com>

    added support for gzip file and associated functional tests

commit 1f3b04f1c3f4092fbdeef5af8bfe223123b88b7f
Author: Carl Chenet <chaica@ohmytux.com>

    Added signature for changeset ec91cf3e3652

commit 76c133b3ffc6eb247c62d02ad934eb43223e29ef
Author: Carl Chenet <chaica@ohmytux.com>

    Added tag 0.1 for changeset 95d79ac84890

commit 78d0344d70075bd79aaec01fad4b6390d9ba76d9
Merge: 9951ea9 8505eaa
Author: Carl Chenet <chaica@ohmytux.com>

    updating README

commit 8505eaa3edf478244c05593b9bac76a52b3a6fce
Author: Carl Chenet <chaica@ohmytux.com>

    fixed issues with multiple backups/criterias test

commit e7aac4ebfcf936ff0ac747d6ee34e3378bbd9f2f
Author: Carl Chenet <chaica@ohmytux.com>

    written test for multiple backups with several criterias

commit 0dced8f3495658c4f2057a1adbad88a76e69e5ab
Author: Carl Chenet <chaica@ohmytux.com>

    fixed a bug with double entries in list file - configparser error not catched

commit d71bdc2d682ef5c9bc0e8abbadbdfcc5eaff0da1
Author: Carl Chenet <chaica@ohmytux.com>

    writing a functional test with all the criterias for several backups in one launch

commit 7a78f39597bbecfc4d222ef8048767357e4e13b3
Author: Carl Chenet <chaica@ohmytux.com>

    empty directory made mercurial skips the repertory and fails the test93

commit 5ccffbb90945270a45188f6f9d857d7a1a52ec2e
Author: Carl Chenet <chaica@ohmytux.com>

    fixed a bug when in configuration type is archive and a path to a directory is given - also wrote functional tests

commit a2dd80ca29d24823f2d18f3278ead39d2e527b32
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests on the size of the files inside the archive

commit 24c35c2bbdee6bb8ec0399a44885f187a2ac6565
Author: Carl Chenet <chaica@ohmytux.com>

    added test2 docstring in functionaltests.py

commit f20d3bf6e82dcc319d5df81bf7508b882d67c2c5
Merge: 2a9387c 4cb8b94
Author: Carl Chenet <chaica@ohmytux.com>

    added changes from shell-variable-in-functionaltests-py branch

commit 4cb8b9470a1104ae5999e592ba2b3fde6912e71d
Author: Carl Chenet <chaica@ohmytux.com>

    functionaltests.py is now supported by buildbot

commit 2a9387c0390cfa72d7a9a3ecf2d89de9a716a6f4
Author: Carl Chenet <chaica@ohmytux.com>

    added AUTHORS, LICENSE and README files

commit 27a35830db2438207f468e2314b31cd26cfa9e07
Author: Carl Chenet <chaica@ohmytux.com>

    corrected a permission denied bug while creating the logging brebis file in unauthorized directories

commit 38261a61bc878b60a8d06a9ad0b2d2f337e1e696
Author: Carl Chenet <chaica@ohmytux.com>

    modified root directory structure in order to ease developement process

commit bef5ba6ccd2f215e15b44d14808496162d213a73
Author: Carl Chenet <chaica@ohmytux.com>

    functionaltests.py provides error output and error status

commit 26cd32d12ca02f50fa1496c5b56d6bb531cb4263
Author: Carl Chenet <chaica@ohmytux.com>

    added a test to check if two config files with the same names are rejected

commit 313c06f75842006514c347746f62c795e2b88679
Author: Carl Chenet <chaica@ohmytux.com>

    fixed unit tests in order to be portable

commit 99be963629c19193dd831b37ed46c09153252d54
Author: Carl Chenet <chaica@ohmytux.com>

    added comment on functional test1

commit e8e034eda54e8b1288a057a4d607de19f4547a0f
Merge: 1e0481c f3da1fb
Author: Carl Chenet <chaica@ohmytux.com>

    merged with removed-checkhashes-class in order to removed no more used part of the code

commit f3da1fbaf3c4f5cd7c623e530b63f080470b7eac
Author: Carl Chenet <chaica@ohmytux.com>

    removing unused CheckHashes classes and associated tests

commit 3254fe187391206284a4db8e5bdf0f0d885acd1c
Author: Carl Chenet <chaica@ohmytux.com>

    created remove-checkhashes branch

commit 1e0481c5f4762d5603c1886c8182e95bfbb367fe
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests to identify corrupted zip archive

commit b422523f6db8b471f633d8c68b66368ba3d34611
Author: Carl Chenet <chaica@ohmytux.com>

    added cleare warning message about zip archive corruption

commit 835a66127e88a24bfe1dc2418f4493960a969030
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to identify corrupted tar.bz2 archive

commit f1e7a2ee14e7027073805a999c849c4f97b66edf
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test for tar.gz corrupted archive

commit a0483bdfcea3044f89c3de36238ac459d8cf820b
Author: Carl Chenet <chaica@ohmytux.com>

    discriminating archives by their extensions

commit 7abaccb4a3f8f0fe0f33766a3b248db096aeb1a0
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests for private/protected methods in checktree.CheckTree

commit 5803c090db9b5c3193d97e1e09f86542488c78ac
Author: Carl Chenet <chaica@ohmytux.com>

    switched from os.stat() to os.lstat() to identify symbolic link

commit c44761b0c7b6f69a863892171feda2425d8d9517
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests for private/protected methods in checktar.CheckTar

commit b1d8e622c1274560c2ef8088dc4a9792e67d0661
Author: Carl Chenet <chaica@ohmytux.com>

    added unit test for checkzip.CheckZip__extract_uid_gid private method

commit 4b24065f7e5cc6965197fbbf05df84ed37fdd019
Author: Carl Chenet <chaica@ohmytux.com>

    added unit test for checkzip.CheckZip__extract_uid_gid private method

commit 020b8a391035600722103e772dd1bd4dde7aa572
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests to check checkzip.CheckZip.__translate_type method

commit b97320171ad94d860b7a3ab9ad488efd87096f11
Author: Carl Chenet <chaica@ohmytux.com>

    simplify functional tests by cutting in half the number of lines of code

commit 342e4230d9c8f30f6321759a938e63975da237a1
Author: Carl Chenet <chaica@ohmytux.com>

    corrected bug on directory, normalizing in striping the trailing slash because of possible wrong user input

commit 1d2c649c361bdf97fbdbe21df3191aa7de4074a7
Author: Carl Chenet <chaica@ohmytux.com>

    added tests for wrong file mode in zip, wrong file type directory and file for zip archives and wrong uid and gid for files in zip archive

commit 6cb00105241729ded0275260a301e2b405710c14
Author: Carl Chenet <chaica@ohmytux.com>

    added support for mode checking in zip archive and associated functional tests

commit 5d5b16b9d3aeff84f81ed83a2d1d0bec38a3592d
Author: Carl Chenet <chaica@ohmytux.com>

    added tests for file mode and type (f,d) in the archives and trees

commit d103d5776fc8e46fc79b6f99d903784751bb1675
Author: Carl Chenet <chaica@ohmytux.com>

    functional tests to check hash in tar.gz,tar.bz2,zip and tree

commit 1eec1c8525c247be27666ef22dffb24d62a90a00
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests for wrong hashes for files inside tar.gz and tar.bz2

commit b4dd930cba386972ca5ca459facd385ea4d5f0c8
Author: Carl Chenet <chaica@ohmytux.com>

    added tests for unexpected files and for wrong uid/gid for files inside archives and tree

commit e95672f48b2c8589865d1a57a47506e3b65dee68
Merge: 8e0460e 0503522
Author: Carl Chenet <chaica@ohmytux.com>

    merge queue use for multiprocessing communication in functionaltests.py

commit 0503522e85554153de4c8c4b5c8fc7e3d3d152ae
Author: Carl Chenet <chaica@ohmytux.com>

    added queue for multiprocessing communication in functionaltests.py

commit 8e0460e5b57590e7057cc279eb1568da9eada0b5
Author: Carl Chenet <chaica@ohmytux.com>

    added locks for functional tests access to print and wrote uid/gid tests for file inside the archive

commit e6c9f131dbbb95930c7b0073a354df1b626e310c
Author: Carl Chenet <chaica@ohmytux.com>

    moving functional tests to functionaltests.py with introspection to simplify the code

commit 2548cd8b7b0dd99e3e178a48bd5439c183a6afad
Merge: bab9e54 29b7f6f
Author: Carl Chenet <chaica@ohmytux.com>

    using multiprocessing for functional tests

commit 29b7f6fe87fc62c59d5ce57360dda33d0292a48e
Author: Carl Chenet <chaica@ohmytux.com>

    added multiprocessing to execute functional tests

commit bab9e54382cbf14adde093f96fae31f3c81bd5f4
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests to check the hashes of zip archives

commit c92779ca25d0e90bce514b023c5a081484ecdd91
Author: Carl Chenet <chaica@ohmytux.com>

    added functional tests to check the hashes of tar.gz and tar.bz2 archives

commit 4785b64e3c0604ee0bc19de13ca19c82bf019491
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to check the gid of an archive

commit 760ab2132d6496c04823c8051b7b88ea1bfe535f
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to check the uid of an archive

commit eb68547ed33a38e54bfbc9456c4dbcf8a50c9d35
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to check the mode of an archive

commit a3f24c2b08297d62cb8472116b64c95eb772aea0
Author: Carl Chenet <chaica@ohmytux.com>

    added functional test to check file missing in tree

commit b0f7552c552fd1548240b83383ccc1be695112fa
Author: Carl Chenet <chaica@ohmytux.com>

    adding functional tests to complete unittests

commit 4bbe19c31d7259e955cddbf7c228f9f1afdb0f0e
Author: Carl Chenet <chaica@ohmytux.com>

    improved the syntax of the list of files for tree

commit 7431b2926bf1827902d02f92688ffa592e8cb77a
Author: Carl Chenet <chaica@ohmytux.com>

    catch correctly ConfigParser errors from the expected values file

commit 563325bbb637b23ab6f726b1c04ddb172fffcbb9
Author: Carl Chenet <chaica@ohmytux.com>

    fixed corrupted zip detection

commit bb725b5d2bf9b6114d678b0589f1870064540622
Author: Carl Chenet <chaica@ohmytux.com>

    fixed unpleasant syntax for the hash of the expected archive

commit 9951ea92469410b6cf8c83c3b63a95cc2aaacd4b
Merge: cb479cd 01ccfd8
Author: Carl Chenet <chaica@ohmytux.com>

    merge with most recent branch

commit 01ccfd82392e35837e321dcce80c66ec56d01d36
Author: Carl Chenet <chaica@ohmytux.com>

    issues with relative links fixed thanks to absolute links use

commit 4b24e89aa8df4627b14fc341de23d6a9a2a4b72e
Author: Carl Chenet <chaica@ohmytux.com>

    relative paths issues

commit d034a5b5f048f074a70d5ac5ea0d84edb66bfa74
Author: Carl Chenet <chaica@ohmytux.com>

    correct error in the call of the main module

commit eed953339a712399c5d618ab0aaf6e4db3e010ae
Author: Carl Chenet <chaica@ohmytux.com>

    stop execution when two configurations have the same name

commit ccc17b0ead2ddf93d2099f4762e495b702ffa2c3
Author: Carl Chenet <chaica@ohmytux.com>

    added expectFailure for tests with sticky bits and special files (user should fix it by himself after checking out the repository)

commit 0386c39f628a2d70e50c73b534048e9de9f2c497
Author: Carl Chenet <chaica@ohmytux.com>

    added missing file bar with 755 rights

commit cb479cd603d4a34c031d684cb11d8e0cd0a6d597
Author: Carl Chenet <chaica@ohmytux.com>

    added absolute path to main module

commit 6c593556bf6d58c7738d835fb3ef395502b7e24e
Author: Carl Chenet <chaica@ohmytux.com>

    again again a test for buildbot

commit 7e8aa36eb03bbfd5e88fb9ef7b6378de78454fdd
Author: Carl Chenet <chaica@ohmytux.com>

    again a simple test

commit 9f85543a7f1d4149b1616984cd16556ac6716c70
Author: Carl Chenet <chaica@ohmytux.com>

    simple test for buildbot

commit 82fbdf0cce1394dc356d28c33c8d716fe9cfb316
Merge: 5f3a28f 6c59355
Author: Carl Chenet <chaica@ohmytux.com>

    hopefully last test for buildbot

commit 5f3a28f5c254181acb862058fa9a0bc5495e8ec4
Author: Carl Chenet <chaica@ohmytux.com>

    added restrictions on python versions able to install Brebis

commit 5bda9e81e2201bc98e538c41b531c57504217e75
Author: Carl Chenet <chaica@ohmytux.com>

    updated copyright mentions

commit 2521e402a8644358c756b9fed8be8291575ac154
Author: Carl Chenet <chaica@ohmytux.com>

    good path to brebis script

commit 7b5e32d80457a721846c16128e7348d55b22d5f6
Author: Carl Chenet <chaica@ohmytux.com>

    modified package structure

commit 88d53e42d3bfe0bbd9303fca4c9d4d17ab874416
Author: Carl Chenet <chaica@ohmytux.com>

    using distutils with setup.py

commit eb5a018f9d4560a437616dfea390bebe96afc029
Author: Carl Chenet <chaica@ohmytux.com>

    corrected an error in setup.py

commit 75a0952a4715c781bbd71073be3399244daeb1f5
Author: Carl Chenet <chaica@ohmytux.com>

    added setup.py

commit c6273064873be881d25e554d8701ddd2090afc26
Author: Carl Chenet <chaica@ohmytux.com>

    added unit tests for private methods of CheckArchive and uid-gid of the archive itself

commit cf0e6a2462ab0b821c9f3b0dd58ff914af5c5cc4
Author: Carl Chenet <chaica@ohmytux.com>

    added support for checking uid gid of the archive itself

commit 482eecd93c13c93f10be5a7bb550be470ede3d2d
Author: Carl Chenet <chaica@ohmytux.com>

    added support for checking the mode of the archive itself

commit 9b590341a3e49effcb665d656aa30240d56a9607
Author: Carl Chenet <chaica@ohmytux.com>

    moved archive checks to checkarchive.py

commit 4f948e6720d56f7ece3563de1fe92a212dcaee87
Author: Carl Chenet <chaica@ohmytux.com>

    added support for hash checking for the archive itself

commit 9b511c311518859d4b60a85304f728e9e38cce77
Author: Carl Chenet <chaica@ohmytux.com>

    modified messages to cope with the check results for the archive itself

commit cc9192295b32a0154b39b9e56eea75b60443d8bc
Author: Carl Chenet <chaica@ohmytux.com>

    using : instead of = with configparser in attribute lists

commit a2380bacf2e0e98b45ddfa425bc5954ca1574847
Author: Carl Chenet <chaica@ohmytux.com>

    checking the size (equal/biggerthan/smallerthan) of the archive itself is now available - tests and uniitests also ready

commit 88bfce07f0b926e355061e4ea560f5fb93d9e288
Author: Carl Chenet <chaica@ohmytux.com>

    bump shebang to python3.2

commit d595a947851fa4f1b3b5b7724bf3314e37958231
Author: Carl Chenet <chaica@ohmytux.com>

    modified equal/bigger/smaller messages to cope with the archives themselves

commit f72a783187ba6034eb677af3cf90516cf151591f
Author: Carl Chenet <chaica@ohmytux.com>

    resized the test archive and fixed the associated value

commit f3ce089f3c96ea646993f2246e2117137b6a15f9
Author: Carl Chenet <chaica@ohmytux.com>

    replaced expectedfiles class and module by expectedvalues

commit 1170e66142f5a68f5647d30a8ea9c161ce83a700
Author: Carl Chenet <chaica@ohmytux.com>

    fixed a ResourceWarning warning

commit 485a92afca629271662ff19c314444330ca4add8
Author: Carl Chenet <chaica@ohmytux.com>

    using hashlib.algorithms_guaranteed starting with python3.2

commit 01388b7d11637ba8b1d0255f6b92e0090f749e92
Author: Carl Chenet <chaica@ohmytux.com>

    changed expectedfiles class and module by expectedvalues

commit ff6582bfd793e675e4fc47da30d41e8a62bf8798
Author: Carl Chenet <chaica@ohmytux.com>

    fixed descriptor issue triggering a ResourceWarning with python 3.2

commit 70003d407b241568b37ab401007cccbe3ddebf2a
Author: Carl Chenet <chaica@ohmytux.com>

    added information in the docstrings

commit 07afee16429aa40d75292cfc8f16983fd50439e5
Author: Carl Chenet <chaica@ohmytux.com>

    got rid of database controls - see database support branch from now on

commit dd032825f241e9581fcec7ee3df486845db7748e
Author: Carl Chenet <chaica@ohmytux.com>

    added tests for existing table in mysql and postgresql databases

commit 214454fc084a42b1e201c2e24fd51c062977fe5f
Merge: 0d9d842 73b119c
Author: Carl Chenet <chaica@ohmytux.com>

    added support for hash control of a file inside an archive

commit 73b119cfe3a0ac99fdabc68bfc49cda3b0472084
Author: Carl Chenet <chaica@ohmytux.com>

    added support for hash control in archives (zip,tar and filetree)

commit 0d9d842523da9dbbfbc13ac5cf58a9850a342ab3
Author: Carl Chenet <chaica@ohmytux.com>

    changed the string required to identify the mode parameter

commit 9bf018e3de5aea5e3c41029599eaa769048950ef
Author: Carl Chenet <chaica@ohmytux.com>

    support for expected types for both tarfiles and filetree

commit 84c053bb31bf67f8008b097e641671126d0f978b
Merge: 4c44a3e 50f526e
Author: Carl Chenet <chaica@ohmytux.com>

    merge branch dedicated to support for expected modes in filetree

commit 50f526e4794bd1e723b0ab1be0f3ac04eee1f556
Author: Carl Chenet <chaica@ohmytux.com>

    added support for expected modes for filetree

commit 5af2ba717b0e8f6a186ca170a159207618e2894c
Author: Carl Chenet <chaica@ohmytux.com>

    adde support for expected file mode for archives

commit 4c44a3ef34e233c0a7482765007adb0c03e734fe
Author: Carl Chenet <chaica@ohmytux.com>

    added support for uid/gid parameter for filetree

commit e74c04932995a45b945829a712a66a670e36f345
Author: Carl Chenet <chaica@ohmytux.com>

    added support for zip64 (zip files > 4G)

commit 03461c6e64d9264888742ee9ef2c95c9327118c8
Author: Carl Chenet <chaica@ohmytux.com>

    catch uid/gid wrong parameters with ValueError exception

commit ab67ab273abcf92249c3c8618f982f5842fabd4e
Author: Carl Chenet <chaica@ohmytux.com>

    added support for uid/gid checks

commit 9cf9dc70a6ee85a54e55cf292aea699b12a38aae
Author: Carl Chenet <chaica@ohmytux.com>

    added support for unexpected files

commit 176d03880bbbff1e3be1a1b549c0a896a3d36c81
Author: Carl Chenet <chaica@ohmytux.com>

    added support for multiple items for a file

commit 25f7eb59153ab6c01f70fdca6cb7afb96176069c
Author: Carl Chenet <chaica@ohmytux.com>

    added good test for ExpectedFiles class

commit 1da162e8a1d127d1100fabc26ad75825ebeb3d1f
Author: Carl Chenet <chaica@ohmytux.com>

    corrected a runtime error

commit d20d6b942359b017ecc452d6e709527500daf650
Author: Carl Chenet <chaica@ohmytux.com>

    conforming to pep008

commit 77d859d7e1125a81d48ddd4c6cf2c53bc9c667d1
Author: Carl Chenet <chaica@ohmytux.com>

    added unittests for md5,sha1,sha224,sha256,sha384 and sha512 sums

commit f3e5841f83221ef9f180413590d9d59b00477844
Merge: 0ac670a 0d4996c
Author: Carl Chenet <chaica@ohmytux.com>

    merging default and with-expectedfiles-configparser branches

commit 0d4996cda292779990136cde431e0b9d3ff8f6bf
Author: Carl Chenet <chaica@ohmytux.com>

    lists of files now use configparser. tests.py modified accordingly

commit f671b774c7a3accdd81ffc230ebb809046069782
Author: Carl Chenet <chaica@ohmytux.com>

    new branch : with expectedfiles.py using configparser

commit 0ac670a3337c193b42d610e478181f218bf995e9
Author: Carl Chenet <chaica@ohmytux.com>

    added files for postgresql support

commit 7ef0a32bde90b96fb573664ca4092fd5c06e8070
Author: Carl Chenet <chaica@ohmytux.com>

    correcting a regression

commit 7a1a42bb558a0fc34f59147ccbcbe2949e3ba9cb
Author: Carl Chenet <chaica@ohmytux.com>

    personalizing the error message depending if you use sqlite or other databases

commit 074f205ceaf1d43e509330a0bc754170242e56cc
Author: Carl Chenet <chaica@ohmytux.com>

    using a table which does not exist

commit 5c52f26dd85def1d150369992458e9dcc58bab96
Author: Carl Chenet <chaica@ohmytux.com>

    updated the path to mysql-list

commit 911921d8917d184024dcfbcd4df31e748166e27c
Author: Carl Chenet <chaica@ohmytux.com>

    splitting db_test/ in db_mysql_test/ and db_sqlite_test/

commit 51e303777a851f008c037c88894e8fa59701a50b
Author: Carl Chenet <chaica@ohmytux.com>

    using 127.0.0.1 as default for dbhost

commit cd9adf6da1461da22da04fcd1f94d7a333e28851
Author: Carl Chenet <chaica@ohmytux.com>

    restricting database types allowed to be specified by users

commit ae16b6a711cab9192af26c5b09478eccf007e57a
Author: Carl Chenet <chaica@ohmytux.com>

    added support for mysql database and postgresql database

commit 2d468f0172714ad67add8c5cbe89fc6d80acbc22
Author: Carl Chenet <chaica@ohmytux.com>

    switch from double quotes to single quotes for comments

commit 97123f6b63bdeddb69941f29a37c0eb002552b9b
Author: Carl Chenet <chaica@ohmytux.com>

    fixed a mispelled word

commit 9723e3e1c6d2b7aed528556e48184f7bc1a27edc
Author: Carl Chenet <chaica@ohmytux.com>

    removed the brebis name

commit b4db6080b66d8bfe023374808bddd8ae2fa6a0b8
Author: Carl Chenet <chaica@ohmytux.com>

    removed absolute paths in zip test

commit 65fb155d82e419a2f233e561f7c55cebe96fd0c0
Author: Carl Chenet <chaica@ohmytux.com>

    added a new zip_content directory in the test directory

commit 1a0ddc3b83befb66f88af0370c770aeb9c7aa39e
Author: Carl Chenet <chaica@ohmytux.com>

    modifying zip test to follow the new test directory structure

commit 8e202d9f4ded59467f48ee05de25ca72e6195fad
Author: Carl Chenet <chaica@ohmytux.com>

    removed mysql broken support for 1.0

commit ed25b7365c03100edb63181603575139faadb6eb
Author: Carl Chenet <chaica@ohmytux.com>

    ugly moves to reorganize the test directory

commit d5c5b522e9cbaec15765d2a4820e6e08925ec08d
Author: Carl Chenet <chaica@ohmytux.com>

    loop for kilo, mega, giga, whatever

commit a5f9f2f3cac33dc8c1be14b5f2584c01c8eba4d9
Author: Carl Chenet <chaica@ohmytux.com>

    Removing tests on mysql until it's supported by mysql driver from sqlalchemy

commit 41805d3812b94f4cb68d6549519814a4083058de
Author: Carl Chenet <chaica@ohmytux.com>

    Added test on dbname value in the database test

commit db422c4dcf80e5f7aaa9f63584d076ad8b2efd19
Author: Carl Chenet <chaica@ohmytux.com>

    Removed useless comments

commit df8012b1e34718ef4087ecab44991310ac143f2f
Author: Carl Chenet <chaica@ohmytux.com>

    Removed a false comment

commit fa9eef1d19134dda8b69b40ddf46f3b3884d1faf
Author: Carl Chenet <chaica@ohmytux.com>

    Modifying the checks for db to be more flexible

commit 69a50db3160c9264ac55035399fda5592c5125c3
Author: Carl Chenet <chaica@ohmytux.com>

    Remove useless files

commit 5ad22f8344b3124891410f3e8ea9e837dfe9c315
Author: Carl Chenet <chaica@ohmytux.com>

    Configuration for mysql

commit 36ef8cefe26b627c5abb0152136f23c9b668df75
Author: Carl Chenet <chaica@ohmytux.com>

    Added support for dbname

commit bbfb74a4378ca7c5dbb5e49c76df97de9f376dfb
Author: Carl Chenet <chaica@ohmytux.com>

    files to test mysql

commit d80569e111e42f565b87bf22c9449330007ff8c4
Author: Carl Chenet <chaica@ohmytux.com>

    Suppressed data relative to sqlite3

commit ca4e360fe9b062f902a0766ae7cd8ee633bef0a2
Author: Carl Chenet <chaica@ohmytux.com>

    Removed useless comments

commit 7809305be4e413561bdaf70ef6add365565e730d
Author: Carl Chenet <chaica@ohmytux.com>

    Modifying according to the new keyword sqlite to identify a sqlite database

commit cfdc070b2ce954d6b799900cc4abdaf628f334ed
Author: Carl Chenet <chaica@ohmytux.com>

    Splitting checkbackups.py

commit 28457dd4c4aea822a496559ebf7b4a560686d2ab
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote.

commit 60b19e3531d8bca112d119847361f1c1b26c468e
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote.

commit 8a6b890ad84b9a5471ef1bd011c07f8ed2c213b9
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote.

commit f2aaa8b767e2acc44a1c2b1312f1632a256306cd
Author: Carl Chenet <chaica@ohmytux.com>

    Simplifying the process to check a database

commit e0473345542310b3ff8b08a39d589060b0a3ef4b
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote.

commit 4e1108eceddc1889532bcd3053626d79cd494f1d
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote. Old comments also removed.

commit eb82f665a893927421c93314b5c1b86dff85f620
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote

commit 9b53d8ec8c96dc9b95e01b76a2b24ebc53dc861b
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote

commit b9d753e1c0986c1e0a64fcfb255dbbca6efc4960
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote

commit 37c4329616ac52781158bc187e1916ab7f1ddd53
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote

commit bde28dcc3406b00211dde5e3b74a9d4eab2a81d2
Author: Carl Chenet <chaica@ohmytux.com>

    Style improvement: switched from docstrings with double quotes to single quote

commit 5ff85a3a86071841f44ea641efd1940f56969c52
Author: Carl Chenet <chaica@ohmytux.com>

    Support for sqlite databases

commit 99d01d749eedad343f0bb19d159d27cd6e8c5b03
Author: Carl Chenet <chaica@ohmytux.com>

    expectedobjects.py provides useful methods regarding the expected objects (files, database objects) we need

commit 5428ac48360493a7c2b57edc27a0b4ccbf0f4f96
Author: Carl Chenet <chaica@ohmytux.com>

    A file to test what database object exists

commit a647504c02d22eeea2346b8fede1dcf591acec98
Author: Carl Chenet <chaica@ohmytux.com>

    checkbackups.py now supports databases. Also some style improvements

commit 7c5d42002cdb9bea6c5e5355d2e9af5416832596
Author: Carl Chenet <chaica@ohmytux.com>

    The Configuration class now manages sqlite databases

commit d2c01b312e3fab218bf2315d0f6fd4c6720dabf1
Author: Carl Chenet <chaica@ohmytux.com>

    Modified the configuration class test

commit 28ed6f29c94ba30d0bdac9581c8bde79dfe10dce
Author: Carl Chenet <chaica@ohmytux.com>

    Added files to test sqlite3 db integrity

commit ecc1188ccb9740915f27ee8aab102a713549ba8f
Author: Carl Chenet <chaica@ohmytux.com>

    Added complete series of tests for archive backups

commit 781c83770eddd72fd14cf0ae1b60e391318d1e32
Author: Carl Chenet <chaica@ohmytux.com>

    Added unit tests for checktree module

commit f8f09c589e79f2721d21774f41193979a0720a95
Author: Carl Chenet <chaica@ohmytux.com>

    Modified the tests/filetree/filelist for checking equality

commit 5ad9b7305ed112de9798cd4acc0e844d8c1d105b
Author: Carl Chenet <chaica@ohmytux.com>

    Removed a useless print

commit be0afc388c88db87a2b1e6ab2a9fdaad2176e37d
Author: Carl Chenet <chaica@ohmytux.com>

    Added some files to test the tree file backups

commit 54d4972223d005dcc55a346bc052ffcb643699b4
Author: Carl Chenet <chaica@ohmytux.com>

    Added support for file trees as a backup

commit 621ffc7638642e72431a5ee18fa3b07499f0c5fe
Author: Carl Chenet <chaica@ohmytux.com>

    Switched level logging from INFO to WARNING

commit 2434436718eb792c91168a63c51ed4a76809f2b2
Author: Carl Chenet <chaica@ohmytux.com>

    Added some files for tests

commit 9a454a3c2126c2afda11e0d70a72e39ce1f7b6f0
Author: Carl Chenet <chaica@ohmytux.com>

    Check if the backup path from the configuration exists

commit 530a0b7cd7d4e597f286ce084a66a16c356628e2
Author: Carl Chenet <chaica@ohmytux.com>

    Removed a useless print

commit d74181db72e765010760af740cea1541d826667f
Author: Carl Chenet <chaica@ohmytux.com>

    Removed useless error messages

commit 25bf1638b3da7bb82669ffdb75aefe6c6dfbf951
Author: Carl Chenet <chaica@ohmytux.com>

    Switched logging level from info to warn

commit 572bdfb8fe7ff2273a87c47b6bec4554cbcdac16
Author: Carl Chenet <chaica@ohmytux.com>

    Addes a docstring for __main

commit de367ab7b46043886f48d7e255970d14c9be4c9c
Author: Carl Chenet <chaica@ohmytux.com>

    Fixed a typo

commit 9c47485b15c4c97f4fdf06db14593c06e4ff3c00
Author: Carl Chenet <chaica@ohmytux.com>

    Fixed an issue with managing exceptions

commit 719d1163d864f60a815b9ffa760f116e10756ceb
Author: Carl Chenet <chaica@ohmytux.com>

    Added a default for logfile and confpath

commit ed1dc3d65807bbcd1798e9e9967f8275a569261d
Author: Carl Chenet <chaica@ohmytux.com>

    Fixed a small typo. Improved the hashtype option help message.

commit 533de88ffb41a463ae3164964e828dd600c95033
Author: Carl Chenet <chaica@ohmytux.com>

    Fixed variables visibility issues. Paths from cliparse are now absolute paths

commit 9f9ee8fab419464dbb9f4ba17c8a51d301919cd5
Author: Carl Chenet <chaica@ohmytux.com>

    Both zip and tar archive types are supported. The code has been efficiently reduced.

commit ead528b3ced53150470d2cb6918ab3cebb8854dc
Author: Carl Chenet <chaica@ohmytux.com>

    Reducing redundant code

commit 1273863622e38f41bd484287d505d6257b94d8ca
Author: Carl Chenet <chaica@ohmytux.com>

    Ignoring files named a.out

commit 346719ee48a2586f31e34b1f86af10fd1e2a21eb
Author: Carl Chenet <chaica@ohmytux.com>

    These files help to test the new code for conditions on file sizes

commit b02b74489331984050294447bd281ce0498bb669
Author: Carl Chenet <chaica@ohmytux.com>

    checkarchive.py will factorize checktar.py and checkzip.py

commit af0f5fc78e92808c6e0c95c7fa2f9a6504879f5e
Author: Carl Chenet <chaica@ohmytux.com>

    new unit tests

commit 4c5e2a36eca88926f0cd6012d9d7c82568dda81e
Author: Carl Chenet <chaica@ohmytux.com>

    .hgignore to get rid of *.pyc

commit 597a27c38c3c68f2b8ce67c4a49f5cc5c43fe458
Author: Carl Chenet <chaica@ohmytux.com>

    Some files to test Brebis

commit 3837d096ff79be8e80176a0cafca74e67b1f1b14
Author: Carl Chenet <chaica@ohmytux.com>

    checkzip.py provides checks for zip files, checkhashes.py provides md5 sums checks for backups before proceeding

commit 2df74f80785a3ff2b442edce6661f77a91b2c1a7
Author: Carl Chenet <chaica@ohmytux.com>

    some files for the unit tests

commit 395ff2707c08ec7e50fc99b7b42d879efe1982df
Author: Carl Chenet <chaica@ohmytux.com>

    tests.py provides unit tests for Belier - 89% of code coverage for now

commit 8c268a3acc130c40a3289467e0bb422589f36208
Author: Carl Chenet <chaica@ohmytux.com>

    expectedfiles.py provides the paths for expected files inside the archive

commit 10a8335bb94a1c1b5ef1736ab0605df8159efa71
Author: Carl Chenet <chaica@ohmytux.com>

    brebislogger.py defines a logger for the Brebis events

commit 2a84469efbb90bcceb6ae7e1edaad95c6ec29dbb
Author: Carl Chenet <chaica@ohmytux.com>

    Added the test directory and some test elements under it.

commit c40881e61432319bc46a741b2cdd44f4007eea39
Author: Carl Chenet <chaica@ohmytux.com>

    Added checktar.py which checks tar files.

commit 8ea992231dd15689a715fe280c55d51322b251d4
Author: Carl Chenet <chaica@ohmytux.com>

    Added checkbackups.py which knows what to do with each kind of backup we meet.

commit 782c4a52fa572ffd0fda4da4deaa34fcce1fbe82
Author: Carl Chenet <chaica@ohmytux.com>

    Added configurations.py which extracts the different information about archives and (in the future) dumps we have to check.

commit 99f0aca983b4607d37b8a73f7f7c51e1541e9f9f
Author: Carl Chenet <chaica@ohmytux.com>

    Added cliparse.py which parses the command line options and args.

commit 684709fa81da6f035cc992f6070cbd4ac99be6dd
Author: Carl Chenet <chaica@ohmytux.com>

    Added main.py which provides the Main class of Brebis.

commit 57e3ab2c70a6e6af9132fe10cb82c3fb395068a7
Author: Carl Chenet <chaica@ohmytux.com>

    Added brebis file to call the main.