File: ChangeLog

package info (click to toggle)
solarpowerlog 0.23a-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,624 kB
  • sloc: sh: 11,423; cpp: 7,558; ansic: 1,036; makefile: 96
file content (2264 lines) | stat: -rw-r--r-- 91,182 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
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
# Generated by Makefile. Do not edit.

# Repository Information: (git describe)
solarpowerlog-0.22-23-g6fcd336

2012-03-14  Tobias Frost <tobi@coldtobi.de>

	* configure.ac: [RELEASE] Version 0.23a -- no source change Source-only release. (no changes to source except comments)

2012-03-14  Tobias Frost <tobi@coldtobi.de>

	* COPYING, configure.ac, src/Connections/CAsyncCommand.cpp,
	src/Connections/CAsyncCommand.h, src/Connections/CConnectDummy.cpp,
	src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/Connections/factories/IConnectFactory.cpp,
	src/Connections/factories/IConnectFactory.h,
	src/Connections/interfaces/IConnect.cpp,
	src/Connections/interfaces/IConnect.h,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/HTMLWriter/CHTMLWriter.h,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.h,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.h,
	src/DataFilters/HTMLWriter/formatter/IFormater.cpp,
	src/DataFilters/HTMLWriter/formatter/IFormater.h,
	src/DataFilters/interfaces/IDataFilter.cpp,
	src/DataFilters/interfaces/IDataFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.h,
	src/Inverters/BasicCommands.h, src/Inverters/Capabilites.h,
	src/Inverters/DummyInverter/CInverterDummy.cpp,
	src/Inverters/DummyInverter/CInverterDummy.h,
	src/Inverters/DummyInverter/CInverterFactoryDummy.cpp,
	src/Inverters/DummyInverter/CInverterFactoryDummy.h,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/Inverters/factories/IInverterFactory.cpp,
	src/Inverters/factories/IInverterFactory.h,
	src/Inverters/factories/InverterFactoryFactory.cpp,
	src/Inverters/factories/InverterFactoryFactory.h,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.h,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/Inverters/interfaces/ICapaIterator.h,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/configuration/CConfigHelper.cpp,
	src/configuration/CConfigHelper.h, src/configuration/ILogger.cpp,
	src/configuration/ILogger.h, src/configuration/Registry.cpp,
	src/configuration/Registry.h, src/interfaces/CCapability.cpp,
	src/interfaces/CCapability.h, src/interfaces/CDebugHelper.cpp,
	src/interfaces/CDebugHelper.h, src/interfaces/CMutexHelper.cpp,
	src/interfaces/CMutexHelper.h, src/interfaces/CTimedWork.cpp,
	src/interfaces/CTimedWork.h, src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h, src/patterns/CValue.h,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h,
	src/patterns/ICommandTarget.cpp, src/patterns/ICommandTarget.h,
	src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h, src/porting.h,
	src/solarpowerlog.cpp: [MISC] Repairing Licenseheader to work with
	licensecheck

2012-03-13  Tobias Frost <coldtobi@users.sourceforge.net>

	* tools/buildbot/buildbot_pdebuilder: [BUILDBOT] only update
	pdebuilder when apt's list cache is newer than the pdebuilder

2012-03-13  Tobias Frost <tobi@coldtobi.de>

	* tools/make-slp-dist: [TOOLS] make-slp-dist: fixed typo in release
	tar name

2012-03-10  Tobias Frost <tobi@coldtobi.de>

	* configure.ac: Setting development version to 0.24-dev

2012-03-10  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, tools/solarpowerlog.default,
	tools/solarpowerlog.init, tools/solarpowerlog.logrotate: [MISC] Work
	on daemon support files (init.d, logrotate)

2012-03-10  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, tools/README.txt, tools/buildbot/README,
	tools/buildbot/buildbot_linitian,
	tools/buildbot/buildbot_make_orig_source,
	tools/buildbot/buildbot_pdebuilder,
	tools/buildbot/configuration/README,
	tools/buildbot/configuration/master/master.cfg,
	tools/buildbot/configuration/slave/buildbot.tac,
	tools/solarpowerlog.default, tools/solarpowerlog.init,
	tools/sputnik_simulator/README: [MISC] Adding init.d files, adding
	buildbot configuration...  The startup-files will be maintained in trunk, as they might be
	useful not only for debian packaging.  The buildbot configuration files are added to keep them in th VCS.

2012-02-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* solarpowerlog.1: [MAN PAGE] Update, missed the first time

2012-02-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* solarpowerlog.1: [MAN PAGE] Update

2012-02-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [DAEMON] Switched to sigaction() for
	signal-handling

2012-02-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* tools/buildbot/buildbot_linitian: [BUILDBOT] typo in lintian step

2012-02-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [DAEMON] Handling pid-files The daemon will create a pid-file if askeda, (cmdline option
	--pidfile <filename>)

2012-02-21  Tobias Frost <coldtobi@users.sourceforge.net>

	* Makefile.am, tools/buildbot/README,
	tools/buildbot/buildbot_dpkgbuildpackage,
	tools/buildbot/buildbot_linitian,
	tools/buildbot/buildbot_make_orig_source: [BUILDBOT] Some scripts
	for my private CI Server

2012-02-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/interfaces/CWorkScheduler.cpp: [CTimedWork] Remove boost>1.40
	conditional.

2012-02-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/interfaces/CTimedWork.cpp: [CTimedWork] Debug statements
	silenced Put several LOGDEBUG Statements under the regime of the #define
	switch CTIMEDWORK_DEBUG.

2012-02-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [Logging] Registry-Logger ignored dbglevel The logger obtainable by Registry::Instance().GetMainLogger() was
	not setup to use the application-section defined loglevel, leading
	to a quite noisy logging behaviour in the recently introduced debug
	code.

2012-02-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/configuration/ILogger.cpp, src/configuration/ILogger.h: 
	[ILogger] allow runtime modification of logging level at runtime

2012-02-19  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/DummyInverter/CInverterFactoryDummy.cpp: 
	[CDummyInverterFactory] Removed 2 warnings.

2012-02-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [DAEMON] Improving daemon behaviour, part 2 - Hooking up SIGUSR1 to enable rotation of logfile.  In daemon mode,
	stderr and stdout will be reopened on SIGUSR1

2012-02-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [CDebugHelper] connects now on SIGUSR2 SIGUSR1 will be used by the daemon, so SIGUSR1 will be freed up

2012-02-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [DAEMON] Improving daemon behaviour, part 1 - command line option to select which file we should redirect stderr
	/ stdout - command line option to select directory we should change to after Missing is the support to reopen the logfiles on SIGUSR1, but for
	this another commit is necessary as currently CDebugHelper uses this
	signal.

2012-02-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.ac: [AUTOTOOLS] Set Version to 0.23-dev

2012-02-15  Tobias Frost <tobi@coldtobi.de>

	* tools/make-slp-dist: [TOOLS] update of make-slp-dist

2012-02-11  Tobias Frost <tobi@coldtobi.de>

	* README, configure.ac: [Release 0.22] Releasing 0.22 now.  This a service release with some improvments under the hood: - The work-scheduler should now use even less CPU cycles - Updated the configuration system to be compatible with
	libconfig-1.4.8 (this should also ease compilation on Win32 ...)

2012-02-11  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/CConfigHelper.h: [CConfigHelper] Add support for
	new libconfig 1.48 Libconfig does not support long / unsigned longs anymore.  This
	commit adds a wrapper to support those types internally.  Also added documentation for this module

2012-02-11  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, configure.ac, src/Makefile.am: [AUTOTOOLS] Disabled
	dbixx build and removed warning about AM_PROG_CC_C_O.

2012-02-11  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am: [BUILD-SYSTEM] Changelog now being autogenerated from
	git2cl Git2cl is integrated into the dist-hook of Makefile.am.  See
	http://josefsson.org/git2cl for details on git2cl.

2012-02-11  Tobias Frost <tobi@coldtobi.de>

	* tools/make-slp-dist: [TOOLS] Added tools/make-slp-dist make-slp-dist is a convenience script that automates the release of
	source tars and auto-creates debian packages with some extra build
	tests.

2012-01-10  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/interfaces/CTimedWork.cpp, src/interfaces/CTimedWork.h: 
	[CTimedWork] reformated source code, only whitespace changes

2012-01-10  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/interfaces/CTimedWork.cpp: [CTimedWork] Interrupt thread only
	when required Reworked scheduling code in CTimedWork::ScheduleWork() to interrupt
	worker thread only if the new request is due earlier than the
	current thread.  Note that his checkin contains tons of debug messages, will be
	removed in a later commit.

2012-01-10  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/interfaces/CTimedWork.cpp, src/interfaces/CTimedWork.h: 
	[CTimedWork] Wrapped debugcode for boost1.46 regression into
	preprocessor marcros

2012-01-03  Tobias Frost <tobi@coldtobi.de>

	* src/interfaces/CDebugHelper.h, src/interfaces/CTimedWork.cpp,
	src/interfaces/CTimedWork.h, src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h: Added debugging code used for
	debugging the 1.46-boost problem.  It is just kept for reference how
	to use the new CDebugHelper interface and will be compile-time code
	soon.

2012-01-02  Tobias Frost <tobi@coldtobi.de>

	* .gitignore, Makefile.am, configure.ac, solarpowerlog.1,
	src/configuration/Registry.cpp, src/configuration/Registry.h: [Misc]
	merging changes from 0.21a to trunk Adding manpage to Makefile.am, adding link to wiki to manpage

2011-12-31  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectTCPAsio.cpp,
	src/configuration/CConfigHelper.cpp,
	src/configuration/CConfigHelper.h, src/configuration/Registry.cpp,
	src/solarpowerlog.cpp: [MISC] Removed some warnings about unused
	parameters also changed to catching exceptions per references

2011-12-30  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/Registry.h, src/solarpowerlog.cpp: Attaching
	CDebugHelper to Registry, attaching SIGUSR1 handler Adding data to
	CDebugHelper (commandline)

2011-12-30  Tobias Frost <tobi@coldtobi.de>

	* src/Makefile.am, src/interfaces/CDebugHelper.cpp,
	src/interfaces/CDebugHelper.h: Adding CDebugHelper classes

2011-12-30  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/configuration/CConfigHelper.h, src/configuration/ILogger.h,
	src/configuration/Registry.h, src/interfaces/CMutexHelper.cpp,
	src/interfaces/CMutexHelper.h, src/patterns/IValue.h,
	src/solarpowerlog.cpp: [ILogger] braces around macros

2011-12-29  Tobias Frost <tobi@coldtobi.de>

	* src/porting.h: merging fix for windows build

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* configure.ac, m4/boost.m4, src/Connections/interfaces/IConnect.h,
	src/Inverters/interfaces/InverterBase.h: BUILDSYSTEM -- bumping
	version to 0.22-dev and a warning/typo removed.

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/Inverters/DummyInverter/CInverterDummy.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h: [IInverterBase] Removed
	depreciated AddCapability function.

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/Connections/interfaces/IConnect.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/patterns/ICommand.h: [Communication] Removed syncronous
	interfacec

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/Connections/interfaces/IConnect.h: [IConnect] Adding
	Send-Interface for async only operation adding this interface function: virtual bool Send(ICommand *cmd) All other send interfaces will be made obsolete...

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectTCPAsio.cpp: [BOOST:ASIO based comms] fixed
	a potential null-pointer issue .. not seen in real life, but if the send interface would be used in
	sync mode, without any ICommand Callback, solarpowerlog would have
	been crashed.  (This is the inteface I am currently depreciating)

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CAsyncCommand.cpp,
	src/Connections/CConnectDummy.cpp, src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionSlave.h,
	src/Connections/interfaces/IConnect.h: [Communication] Preparation
	for depreciating the sync interface - Changed the IConnect interface to require a ICommand (removing the
	default value of NULL) - Updated CDummy to have asyncronous error reporting. It will tell
	"EIO" on every action requested...

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: 
	[CInverterSputnikSSeries] changed sync disconnect request to async
	behaviour to prepare for depreciation of syncronous comms interface

2011-12-28  Tobias Frost <tobi@coldtobi.de>

	* NEWS, src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: [CVSWriter] removed warnings,
	documentation update, defaulting not to flush - removed warning that docs are not up to date - updated this documentation which was not uptodate - changing the default behaviour to not call flush - some whitespace, doxygen changes

2011-12-27  Tobias Frost <tobi@coldtobi.de>

	* COPYING, README: [COPYING] Clearifcation that one should look
	inside the file [README] Added pointers where to get help / docs.

2011-12-27  Tobias Frost <tobi@coldtobi.de>

	* COPYING, bootstrap.sh: repaired COPYING and bootstrap.sh

2011-12-25  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am: [AUTOCONF] Makefile.am missed bootstrap.sh to
	distribute

2011-12-25  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am: Makefile.am should not mention ChangeLog in
	dist_doc_DATA

2011-12-25  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, src/Makefile.am: [AUTOTOOLS] made make distcheck work

2011-12-25  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, extlibs/README, extlibs/ctemplate/COPYING,
	extlibs/ctemplate/Makefile, extlibs/ctemplate/ctemplate.c,
	extlibs/ctemplate/ctemplate.h, extlibs/ctemplate/doc.html,
	extlibs/ctemplate/examples/Makefile,
	extlibs/ctemplate/examples/fact.c,
	extlibs/ctemplate/examples/fact.tmpl,
	extlibs/ctemplate/examples/printenv.c,
	extlibs/ctemplate/examples/printenv.tmpl,
	extlibs/ctemplate/examples/weather.sh,
	extlibs/ctemplate/examples/weather.tmpl, extlibs/ctemplate/main.c,
	extlibs/ctemplate/t/test.sh, src/Makefile.am, src/ctemplate/README,
	src/ctemplate/ctemplate.c, src/ctemplate/ctemplate.h: Integrated
	ctemplate into src, dropping fro extlibs as the code has diverted
	from ctemplate origin

2011-12-25  Tobias Frost <tobi@coldtobi.de>

	* : commit ff82dcefb6055d85833513ea5c268692a3318b72 Author: Tobias
	Frost <tobi@coldtobi.de> Date:   Sat Dec 24 13:33:41 2011 +0100

2011-12-24  Tobias Frost <coldtobi@users.sourceforge.net>

	* COPYING, ChangeLog, Makefile.am, WINDOWS.txt: [AUTOTOOLS]
	Autogenerate ChangeLog

2011-12-23  Tobias Frost <tobi@coldtobi.de>

	* bootstrap.sh: [AUTOTOOLS] bootstrap failed when not having dbixxx

2011-12-23  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, bootstrap.sh, configure.in,
	src/Connections/CAsyncCommand.cpp, src/Connections/CAsyncCommand.h,
	src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/HTMLWriter/CHTMLWriter.h,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.h,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.h,
	src/DataFilters/HTMLWriter/formatter/IFormater.cpp,
	src/DataFilters/HTMLWriter/formatter/IFormater.h,
	src/Inverters/BasicCommands.h,
	src/Inverters/DummyInverter/CInverterDummy.cpp,
	src/Inverters/DummyInverter/CInverterDummy.h,
	src/Inverters/DummyInverter/CInverterFactoryDummy.cpp,
	src/Inverters/DummyInverter/CInverterFactoryDummy.h,
	src/Makefile.am: [MISC] Added missing copyright information to
	certain src/*.[h|cpp] files Also made the build of dbixx dependent on the existance of the
	source

2011-12-23  Tobias Frost <tobi@coldtobi.de>

	* debian/changelog, debian/compat, debian/control,
	debian/copyright, debian/dirs, debian/docs, debian/rules,
	debian/solarpowerlog.1, debian/solarpowerlog.default,
	debian/solarpowerlog.init, debian/solarpowerlog.install,
	debian/source/format: [DEBIAN] files removed to maintain them in
	extra branch

2011-12-22  Tobias Frost <tobi@coldtobi.de>

	* debian/source/format, debian/watch: [Debian] Changing to debian
	native format after getting first feedback from debian-mentors

2011-12-22  Tobias Frost <tobi@coldtobi.de>

	* debian/control, debian/rules: [DEBIAN] reverting hack with git to
	remove build output files .. as whenn using the debian tools the git repository may not be
	available and then this fails.  Instead the build files are removed
	manually.

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, debian/changelog, debian/control: [MISC] maintaince removed double changelog, master one is now the debian one debian
	standard bump (no changes)

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, debian/changelog: [Changelog] contained still an error.

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, debian/changelog: [Debian] Typo in changelog

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* configure.in: [CONFIGURE] Bumping version to 0.21 for relase

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, debian/changelog, debian/copyright,
	debian/solarpowerlog.1: [DEBIAN] spelling errors removed, added
	changelog

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* debian/rules: [DEBIAN] Removed a linitian wanring

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* debian/control, debian/rules: [DEBIAN] modified control and rules build-depends on git as rules now uses git to clean some generated
	files / links during execution of the debian/rules clean target

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* debian/files: removing debian/files

2011-12-21  Tobias Frost <tobi@coldtobi.de>

	* .gitignore, COPYING, GPL, GPL-3, LGPL-2.1, LGPL-3,
	debian/copyright, extlibs/README: debian/copyright is now
	machinereadable, COPYING now refers to this file and added missing
	license text files

2011-12-12  Tobias Frost <tobi@coldtobi.de>

	* configure.in, debian/control, debian/copyright, debian/rules,
	debian/solarpowerlog.1: [debian files] Updated some files, specifing
	dependencies

2011-12-12  Tobias Frost <tobi@coldtobi.de>

	* example_confs/solarpowerlog.conf: [Example Configuration] Cleaned
	up example configuration and updated documentation

2011-12-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: [Documention] update for the CVS
	Dumper This documentation (doxygen format) can be used for the wiki....

2011-08-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* : commit d766e13ea5608a37aa7220b2fe771e32e9d38f04 Author: Tobias
	Frost <coldtobi@users.sourceforge.net> Date:   Thu Aug 25 00:46:36
	2011 +0200

2011-08-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnectionMaster.cpp: [DBGLOGGING] Changed
	some logging levels from FATAL to ERROR to be more consistent.

2011-08-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* README, example_confs/solarpowerlog.conf: [DOCS] Update

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionSlave.cpp: [SharedConnection] Slave
	-- First errors fixed

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnection.cpp,
	src/Inverters/DummyInverter/CInverterDummy.cpp,
	src/Inverters/DummyInverter/CInverterDummy.h: [DummyInverter] Needs
	to check the connection's config...

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnectionSlave.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/solarpowerlog.cpp: [GENERAL] Passing exceptions a reference,
	some other minor changes

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/factories/IInverterFactory.h,
	src/Inverters/factories/InverterFactoryFactory.h,
	src/Inverters/interfaces/InverterBase.h: [GENERAL] Some
	documentation added

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.in, src/Inverters/DummyInverter/CInverterDummy.cpp,
	src/Inverters/DummyInverter/CInverterDummy.h,
	src/Inverters/DummyInverter/CInverterFactoryDummy.cpp,
	src/Inverters/DummyInverter/CInverterFactoryDummy.h,
	src/Inverters/factories/InverterFactoryFactory.cpp, src/Makefile.am: 
	[Inverters] Added a Dummy-Inverter class This class shows an example for starting a own inverter
	implementation and also will be usefull for debugging.  The dummy inverter will just instanciate itself and then keep quiet.

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h: [SharedComms] Some
	comments revised

2011-07-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/patterns/IObserverObserver.cpp: [Observer Pattern] Including
	stdef.h to have NULL defined

2010-10-29  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	[TCPComms and Sputnik] Timeout did not set a error string. Now
	timeout on read will be also LOG_ERROR'd without lying about not
	knowing the error.  Before, LOG_DEBUG was used and "unknown error"
	would have been printed when no ICM_ERRNO_STR was et. In this cases
	the error number will be used to print out a message, using
	strerror().

2010-10-29  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionSlave.cpp, src/patterns/ICommand.h: 
	[Shared Connection] Master has been debugged in stand-alone
	operation (that is, only one inverter is attached to a
	sharedconection master)

2010-10-29  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	[Sputnik] Fix for an introduced bug due to the Shared Comms mods

2010-10-29  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/interfaces/IConnect.cpp,
	src/Connections/interfaces/IConnect.h: [ASIO Based Comms] Starting
	the thread later, to ensure that logging is already set up.
	Otherwise, there is a (cosmetical) race condition for the first
	logging message.

2010-10-28  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnectionMaster.cpp: [SharedConnection]
	Debugging CheckConfig and Instanciation of Master.

2010-10-28  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/factories/IConnectFactory.cpp: [SharedConnection]
	Making shared connection instanceable by the connection factory

2010-10-28  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	Reducing the change for a race when sending to a shared connection
	in the Sputnik class.

2010-10-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [MISC] Reworked the dumpcfg to give out
	also values.

2010-10-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: 
	[INVERTER] Preparing the Sputnik inverter for shared connections --
	it will now handle received strings not adressed to its own adress
	as a failure, but just ignore the telegram.

2010-10-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/rules, debian/solarpowerlog.1: [DEBIAN] Added a man page.

2010-10-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/interfaces/IConnect.h,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/configuration/CConfigHelper.h, src/configuration/ILogger.h: 
	[MISC] Fixed some more typos

2010-10-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/compat,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: Fixed
	typo Added debian/compat

2010-10-24  Tobias Frost <coldtobi@users.sourceforge.net>

	* ChangeLog, README, WINDOWS.txt, configure.in,
	debian/manpage.1.ex, debian/manpage.sgml.ex, debian/manpage.xml.ex,
	debian/solarpowerlog.doc-base.EX,
	example_confs/htmlwritertemplate/snippets/basic_inverter_data.tmpl,
	example_confs/htmlwritertemplate/test.tmpl,
	example_confs/solarpowerlog.conf, extlibs/README,
	src/Connections/CAsyncCommand.h, src/Connections/CConnectDummy.cpp,
	src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.cpp,
	src/Connections/factories/IConnectFactory.h,
	src/Connections/interfaces/IConnect.cpp,
	src/Connections/interfaces/IConnect.h,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/interfaces/IDataFilter.cpp,
	src/DataFilters/interfaces/IDataFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.h,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/Inverters/factories/IInverterFactory.cpp,
	src/Inverters/factories/IInverterFactory.h,
	src/Inverters/factories/InverterFactoryFactory.cpp,
	src/Inverters/factories/InverterFactoryFactory.h,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.h,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/Inverters/interfaces/ICapaIterator.h,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/configuration/CConfigHelper.cpp,
	src/configuration/CConfigHelper.h, src/configuration/ILogger.cpp,
	src/configuration/ILogger.h, src/configuration/Registry.cpp,
	src/configuration/Registry.h, src/interfaces/CCapability.cpp,
	src/interfaces/CCapability.h, src/interfaces/CMutexHelper.cpp,
	src/interfaces/CMutexHelper.h, src/interfaces/CTimedWork.cpp,
	src/interfaces/CTimedWork.h, src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h, src/patterns/CValue.h,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h,
	src/patterns/ICommandTarget.cpp, src/patterns/ICommandTarget.h,
	src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h, src/porting.h,
	src/solarpowerlog.cpp, tools/sputnik_simulator/solarpowerlog.conf: 
	Corrected some spelling errors: charachter character arguement
	argument Programm Program unkown unknown informations information
	unkown unknown Removed some more dh_make template files

2010-10-24  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/README.Debian, debian/changelog, debian/control,
	debian/copyright, debian/cron.d.ex, debian/dirs, debian/docs,
	debian/emacsen-install.ex, debian/emacsen-remove.ex,
	debian/emacsen-startup.ex, debian/files, debian/init.d.ex,
	debian/init.d.lsb.ex, debian/menu.ex, debian/postinst.ex,
	debian/postrm.ex, debian/preinst.ex, debian/prerm.ex, debian/rules,
	debian/solarpowerlog.default, debian/solarpowerlog.default.ex,
	debian/solarpowerlog.init, debian/solarpowerlog.install,
	debian/source/format: [DEBIAN] Cleanup in the debian directory.

2010-10-11  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/Inverters/interfaces/InverterBase.h: [SharedConnection]
	Commiting some code for backup reason... (No, not yet finished.)

2010-10-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/interfaces/InverterBase.h, src/solarpowerlog.cpp: 
	[Inverterinterface] Added Getter for configurationpath, needd for
	shared communication [misc] Typo in solarpowerlog.cpp

2010-09-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h: [SharedConnection] Check
	in for backup. Functionality not yet complete.

2010-09-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectSerialAsio.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/interfaces/IConnect.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h: [Platform] Added
	member function to merge to ICommand's data.

2010-09-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectDummy.h,
	src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	[COMMS] Support for syncronous read using IConnect::Receive()
	dropped.

2010-09-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h:  [CONNECTIONS] Feature: sharing connections between two and more
	 inverters.  Still stubs, no functionality.  (And a good way to test if the email hook is now working)

2010-09-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.in, src/Connections/CSharedConnection.cpp,
	src/Connections/CSharedConnection.h,
	src/Connections/CSharedConnectionMaster.cpp,
	src/Connections/CSharedConnectionMaster.h,
	src/Connections/CSharedConnectionSlave.cpp,
	src/Connections/CSharedConnectionSlave.h, src/Makefile.am: 
	[CONNECTIONS] Added classes for sharing connections between two and
	more inverters.  However, these are stubs at the moment and
	therefore not functioning.  The configure script will only enable
	them when explicitly told.

2010-09-12  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	[CONNECTIONS/INVERTERS] Removed an obsolete #warning and a default
	message if no error message is given.

2010-09-12  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp: [COMMS] unhandled exception
	when resolving failed, for example due a down interface.

2010-09-12  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: [FTBFS] When liblog4cxx was not available,
	main.c did not compile.

2010-06-01  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectSerialAsio.h, src/Inverters/Capabilites.h: 
	[MISC] Typo in the capabilties, wrong define for header

2010-06-01  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/interfaces/CWorkScheduler.cpp: [BUGFIX] Memoryleak reported by
	mebuh, proper fix for boost >1.40

2010-05-17  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.in, src/Connections/CConnectSerialAsio.cpp,
	src/Connections/CConnectSerialAsio.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.cpp: [AUTOTOOLS & COMMS]
	Modularized the comms.  You can now select at configure-time what to
	compile in and what not...

2010-05-16  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp: [COMMS] In the TCP class, for
	the default tcptimeout, the macro has not been used. (Still the
	right time was used)

2010-05-16  Tobias Frost <coldtobi@users.sourceforge.net>

	* : (Merging feature branch 'serial_comms' into trunk) Signed-off-by: Tobias Frost <coldtobi@users.sourceforge.net>

2010-05-16  Tobias Frost <coldtobi@users.sourceforge.net>

	* : [GIT] Added some files to .gitignore Signed-off-by: Tobias Frost <coldtobi@users.sourceforge.net>

2010-05-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl,
	example_confs/htmlwritertemplate/snippets/basic_inverter_data.tmpl: 
	[EXAMPLE CONF] net frequency is "Hz" not "W"...

2010-05-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* bootstrap.sh, configure.in, m4/ax_boost_asio.m4,
	m4/ax_boost_base.m4, m4/ax_boost_date_time.m4,
	m4/ax_boost_program_options.m4, m4/ax_boost_system.m4,
	m4/ax_boost_thread.m4, m4/boost.m4, src/Makefile.am,
	src/interfaces/CWorkScheduler.cpp: [AUTOTOOLS] Changed boost
	detection macros to the one from tsuna
	(http://wiki.github.com/tsuna/boost.m4/), as the old ones caused
	problems.  [OTHERS] Boost 1.42 obsoleted one header and caused a
	compile error.

2010-01-16  Tobias Frost <coldtobi@users.sourceforge.net>

	* Makefile.am, bootstrap.sh, configure.in, debian/watch,
	debian/watch.ex, extlibs/README, extlibs/dbixx/COPYING,
	extlibs/dbixx/Makefile.am, extlibs/dbixx/autogen.sh,
	extlibs/dbixx/configure.in, extlibs/dbixx/dbixx.h,
	extlibs/dbixx/result.cpp, extlibs/dbixx/row.cpp,
	extlibs/dbixx/session.cpp, extlibs/dbixx/test.cpp, src/Makefile.am: 
	[EXTLIBS] Adding libdbi-wrapper dbixx

2010-01-16  Tobias Frost <coldtobi@users.sourceforge.net>

	* : [NEW FEATURE] solarpowerlog can not be run in background, as a
	daemon.

2010-01-07  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/docs,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: [DEBIAN]
	Add files to doc. Whitespace changes (reformatting code to coding
	style)

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* ChangeLog, configure.in, debian/changelog, debian/files,
	extlibs/README: [RELEASE] Release 0.20

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* extlibs/ctemplate/ctemplate.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.h: Reverting part of
	82a94ef820679ee5590011a4292f56951c45a060

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* extlibs/ctemplate/ctemplate.c: [EXTLIBS] patched libctemplate to
	avoid writing double blanks.

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwritertemplate/css/style.css,
	example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl: [EXAMPLES]
	Now fit for the Internet Exploerer (testet Version 7)

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwritertemplate/css/style.css,
	example_confs/htmlwritertemplate/css/style_dark.css,
	example_confs/htmlwritertemplate/css/style_play.css,
	example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl,
	example_confs/htmlwritertemplate/snippets/CSVLogger_header.tmpl,
	example_confs/htmlwritertemplate/snippets/basic_inverter_data.tmpl,
	example_confs/htmlwritertemplate/test.tmpl: [EXAMPLES] Artwork
	complete for now ;-)

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwritertemplate/css/style.css,
	example_confs/htmlwritertemplate/css/style_play.css,
	example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl: 
	[EXAMPLECONF] Updating example configuration for css

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp: [DATAFILTERS]
	Reverting the last commit, and reapplying it in the right function.

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp: [DATAFILTERS] Some
	members were not initialized.

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore: [GITIGNORE] a build-result of the libctemplate

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwritertemplate/css/style.css,
	example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl,
	example_confs/htmlwritertemplate/snippets/CSVLogger_header.tmpl,
	example_confs/htmlwritertemplate/snippets/basic_inverter_data.tmpl,
	example_confs/htmlwritertemplate/test.tmpl,
	tools/sputnik_simulator/solarpowerlog.conf: [TEMPLATES] Coded some
	templates, not yet finished. The templates are for the HTML Writer

2010-01-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.cpp,
	src/Inverters/Capabilites.h: [DATAFILTERS] Coded the new formatter
	for finding the CSV column Cleanup in the HTML Writer, also adding
	the version of solarpower to the template [CAPABILITES] Fixed a typo

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.h,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormatterSearchCSVEntry.h,
	src/DataFilters/HTMLWriter/formatter/IFormater.cpp,
	src/DataFilters/HTMLWriter/formatter/IFormater.h, src/Makefile.am: 
	[DATAFILTERS] Formatter interface changed -- does not get the
	configuration data anymore Also, the formatters gets there
	parameters now not by configuration entries in the Data-filters
	configuration,  but by arguments given to the
	formatter-configuration array in the solarpowerlog.conf

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp: [DATAFILTERS]
	HTMLWriter emits the loop number , useful for templates

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/Capabilites.h: [CAPABILITIES] Typo in Capa name

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.cpp: 
	[DATAFILTERS] Removed debug statement from CFormaterWebroot

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp: [WIN32] FTBFS in
	Win32-specific code

2010-01-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/HTMLWriter/CHTMLWriter.cpp: [WIN32] Preparing to
	build again with cygwin

2010-01-04  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.in, example_confs/htmlwriter.conf,
	example_confs/htmlwritertemplate/css/style.css,
	example_confs/htmlwritertemplate/snippets/CSVLogger.tmpl,
	example_confs/htmlwritertemplate/snippets/basic_inverter_data.tmpl,
	example_confs/htmlwritertemplate/test.tmpl,
	src/Connections/CConnectDummy.h, src/Connections/CConnectTCPAsio.h,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/CHTMLWriter.cpp, src/DataFilters/CHTMLWriter.h,
	src/DataFilters/HTMLWriter/CHTMLWriter.cpp,
	src/DataFilters/HTMLWriter/CHTMLWriter.h,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.cpp,
	src/DataFilters/HTMLWriter/formatter/CFormaterWebRootStrip.h,
	src/DataFilters/HTMLWriter/formatter/IFormater.cpp,
	src/DataFilters/HTMLWriter/formatter/IFormater.h,
	src/DataFilters/interfaces/IDataFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Makefile.am, src/configuration/CConfigHelper.h,
	src/solarpowerlog.cpp,
	tools/sputnik_simulator/netcat_sputnik_parse.sh,
	tools/sputnik_simulator/solarpowerlog.conf: [DATAFILTER] HTMLWriter
	now can tranform some data

2010-01-03  Tobias Frost <coldtobi@users.sourceforge.net>

	* extlibs/README, extlibs/ctemplate/ctemplate.h,
	src/DataFilters/CHTMLWriter.cpp, src/DataFilters/CHTMLWriter.h: 
	[EXTLIBS] Moved C++-compability to library.  (Path supplied to
	upstream to libctemplate author for inclusion) Removed a warning from CHTMLWriter

2010-01-03  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	tools/sputnik_simulator/README,
	tools/sputnik_simulator/netcat_sputnik.sh,
	tools/sputnik_simulator/netcat_sputnik_parse.sh: [DATAFILTERS]
	Capability "what file I am writing" was set wrongly.

2009-12-29  Tobias Frost <coldtobi@users.sourceforge.net>

	* extlibs/ctemplate/Makefile, extlibs/ctemplate/examples/Makefile: 
	[GIT] Added makefiles of the ctemplatelib, which was ignored by
	git...

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwriter.conf: [EXAMPLE] Fixed syntax error in
	example configuration for the HTML Writer

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CHTMLWriter.cpp: [DATAFILTERS] HTML Writer started
	debugging... (does already something now)

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp: [CONNECTIONS] Fix for
	possible race while initiaizing a sempaphore.

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/configuration/CConfigHelper.h: [DOCUMENTATION] Added for some
	member function

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.cpp: [DATAFILTERS] Tweaking &
	Optimizing CSVDumper: - For getting "own" Capabilities, use
	  IInverterBase::GetConcreteCapability to avoid getting a parent
	  (actually, will not happen if current design, but this is safer - Whitespace changes DumpDumper: - Same with the IInverterBase::GetConcreteCapability.  - Removing some Capabilities which are unused from the
	CheckSubscribe helper - Whitespace changes

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore: [GIT] Another Binary slipped in, adding libraries to
	ignored.  Also updated PLAN (for HTLMWriter, reviewed)

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* PLAN: [GIT] Another Binary slipped in, adding libraries to
	ignored.  Also updated PLAN (for HTLMWriter, reviewed)

2009-12-27  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/htmlwriter.conf, src/DataFilters/CHTMLWriter.cpp,
	src/DataFilters/CHTMLWriter.h: [DATAFILTERS] HTMLWriter proceedings

2009-12-24  Tobias Frost <coldtobi@users.sourceforge.net>

	* Makefile.am, configure.in, src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CHTMLWriter.cpp, src/DataFilters/CHTMLWriter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/Makefile.am, tools/sputnik_simulator/netcat_sputnik_parse.sh,
	tools/sputnik_simulator/solarpowerlog.conf: [DEBUGING] Tweaked
	sputnik simulator [DATAFILTER] Added HTML Filter to build
	configuration

2009-12-24  Tobias Frost <coldtobi@users.sourceforge.net>

	* extlibs/README, extlibs/ctemplate/COPYING,
	extlibs/ctemplate/ctemplate.c, extlibs/ctemplate/ctemplate.h,
	extlibs/ctemplate/doc.html, extlibs/ctemplate/examples/fact.c,
	extlibs/ctemplate/examples/fact.tmpl,
	extlibs/ctemplate/examples/printenv.c,
	extlibs/ctemplate/examples/printenv.tmpl,
	extlibs/ctemplate/examples/weather.sh,
	extlibs/ctemplate/examples/weather.tmpl, extlibs/ctemplate/main.c,
	extlibs/ctemplate/t/test.sh, src/DataFilters/CHTMLWriter.cpp,
	src/DataFilters/CHTMLWriter.h, src/Makefile.am: [AUTOTOOLS]
	Preparing the HTML Writer Added new class to git and autotools Added the new external library
	ctemplate to the autotools (As this is not in debian, its source is
	also added into the extlibs dir)

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/interfaces/InverterBase.h: [FRAMEWORK] AddCapability
	flavour added which extracts the required infos out of the
	parameters, not using an extra one...

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* ChangeLog, src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h, src/Inverters/Capabilites.h,
	src/configuration/CConfigHelper.h: [DATAFILTERS] CSVDumper a little
	more RFC-something conform -- also in the header Also implemented the facility, that a subsequent plugin knows what
	we are doing: - Capability CAPA_CSVDUMPER_LOGGEDCAPABILITES shows (comma
	seperated) the layout of the CSV, - Capability CAPA_CSVDUMPER_FILENAME the current file name.

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp: [DATAFILTERS] CSVDumper:
	Added new parameters to CheckSyntax() Also, add "rotate" as this was
	missing

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp: [DATAFILTERS] CSVDumper:
	removed unused config parameter from CheckConfig()

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp: [DATAFILTERS] CSVDumper:
	Debugging the compact-file feature

2009-12-20  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: [DATAFILTERS] CSVDumper: Only
	emmit lines if they actually changed The new option (with the configuration option) Compact_CSV, only
	lines which actually changed are written into the CSV.  This will
	decrease filesize, if only slow-changing data is emitted, especially
	when the inverters are down due insufficient irradiation.

2009-12-19  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp: [DATAFILTERS] CSVDumper a
	little more RFC-something conform The CSV Files should not have spaces between the seperator and the
	values, as I previously learned.

2009-12-15  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: [DATAFILTERS] Changed timeformat
	for the CSV to ISO 8601.  String can be configured via conf-file, the option
	"Format_Timestamp" specifies -- in boost::date_time syntax -- how it
	is layouted.  The default is "%Y-%m-%d %T" For all the valid format options, see

	http://www.boost.org/doc/libs/1_35_0/doc/html/date_time/date_time_io.html#date_time.format_flags

2009-12-15  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore: [GIT] gitignore the config dir

2009-12-15  Tobias Frost <coldtobi@users.sourceforge.net>

	* example_confs/solarpowerlog.conf, solarpowerlog.conf: 
	[CONFIGURATON] moved example conf to own dir

2009-12-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CAsyncCommand.cpp,
	src/Connections/CAsyncCommand.h: [Connections] Move of CAsyncCommand
	continued...

2009-12-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* : commit f6338a36b1c0355fbea55fedb30c87396ab08a52 Author: Tobias
	Frost <coldtobi@users.sourceforge.net> Date:   Mon Dec 14 21:42:35
	2009 +0100

2009-12-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h, src/Makefile.am: [Connection]
	Moving CAsyncCommand to own file

2009-12-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/rules: [DEBIAN] Fix debian build error, if it was not
	already built

2009-12-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* debian/changelog, debian/rules: [DEBIAN] debian/* updated

2009-12-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* ChangeLog, WINDOWS.txt, configure.in: Preparing for Version 0.12

2009-12-06  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/configuration/ILogger.h: On Win32 the enum used in ILogger
	caused a name collision, prepending LL_ to avoid.

2009-12-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/interfaces/IConnect.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	[INVERTER:SPUTNIK] Removed old synchronous code

2009-12-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore: [GIT] Adding src/solarpowerlog to the files being
	ignored

2009-12-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	Bugfixing in the new async-Sputnik-Code

2009-12-05  Tobias Frost <coldtobi@users.sourceforge.net>

	* tools/sputnik_simulator/README,
	tools/sputnik_simulator/netcat_sputnik.sh,
	tools/sputnik_simulator/netcat_sputnik_parse.sh,
	tools/sputnik_simulator/solarpowerlog.conf: Added a "Simulator" for
	Sputnik This will just create static answers to every question. So hardly to
	be called simulator, but will anyway help debugging in the dark

2009-12-02  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/interfaces/IConnect.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: "Send"
	of TCPASIO is now also async

2009-12-01  Tobias Frost <coldtobi@users.sourceforge.net>

	* ChangeLog: Backup of the Changelog

2009-12-01  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/interfaces/InverterBase.h: Added a define and some
	comments

2009-12-01  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/configuration/ILogger.h: Logger: Build error if liblog4cxx is
	not available (already applied on master branch)

2009-11-30  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: Adapted
	Sputnik Inverter for asyncronous communication (almost complete)

2009-11-25  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/patterns/ICommand.cpp, src/patterns/ICommand.h: Cleaned up
	ICommand -- removed old void *data, replaced by the data map.
	"FindData()" should be "const"

2009-11-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp: Some more logging, some typos
	in logging less

2009-11-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.h: First Debugging: Two '!' were
	missing...

2009-11-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/interfaces/IConnect.h,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h: Recoded existing
	code for new ICommand Interface. Not yet debugged

2009-11-22  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/patterns/ICommand.cpp, src/patterns/ICommand.h: ICommand gets
	a map for its parameters It showed, during the async-comm patch, that it is hard to keep
	track on the parameters to a ICommand, if we want to supply more
	than one information (like success/error and on success also the
	data) So now ICommand gets a std::map<std::string,boost::any> to
	keep track of data more easily.

2009-11-18  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/solarpowerlog.cpp: added --version to options

2009-11-15  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/DataFilters/CCSVOutputFilter.cpp: CVSDumper: Bugfix for Win32,
	"Won't open file"  Win32 does not create a file if ios:in is specified when opening a
	fstream. Added a retry for Windows only, retrying to open a file
	with "ios:out".

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Connections/CConnectTCPAsio.cpp: CConnectTCPAsio::Send ->
	added exception handling

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* src/Makefile.am, src/interfaces/CTimedWork.cpp,
	src/interfaces/CWorkScheduler.cpp, src/interfaces/CWorkScheduler.h: 
	Autotools-Fix: Apr linking instructions applied to src/Makefile.am Cleanup of some includes to get it build under  win32

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore, configure.in: Typo in configure.in corrected

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* : Fixes for autotools, esp on Win32 Conflicts: 	bootstrap.sh 	configure.in

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* .gitignore: Tweaked gitignore to suppress autogenerated files

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* configure.in, src/config.h.in: Autotools: Fix for Win32:
	liblog4cxx depends on apr and needs also to link in this library.
	This was not seen on linux

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* Makefile.in, config/config.guess, config/config.sub,
	config/depcomp, config/install-sh, config/missing, configure,
	src/Makefile.in: Autotools tweakup: Removing autogenerated stuff

2009-11-14  Tobias Frost <coldtobi@users.sourceforge.net>

	* bootstrap.sh, m4/ax_boost_program_options.m4,
	m4/ax_cxx_explicit.m4, m4/ax_cxx_have_stl.m4,
	m4/ax_cxx_namespaces.m4: Autotools fix - Added missing m4 macros to the m4 dir - On bootstraping, remove tha aclocal.m4 file

2009-11-11  Tobias Frost <coldtobi@users.sourceforge.net>

	* solarpowerlog.conf, src/Connections/CConnectTCPAsio.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: Backup

2009-11-09  Tobias Frost <tobi@moria@frost.de>

	* bootstrap.sh, configure.in, m4/ax_boost_program_options.m4,
	m4/ax_cxx_explicit.m4, m4/ax_cxx_have_stl.m4,
	m4/ax_cxx_namespaces.m4: Added missing m4 macros to autotools m4
	dir.  Should be one step forward for "build on win32 without create
	configure from linux"

2009-10-06  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/interfaces/IConnect.h: Added interface to IConnect
	and derived for async sending.  (However, async sending is not yet implemented) :

2009-10-06  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCPAsio.cpp,
	src/Connections/interfaces/IConnect.h: ASYNC COMMS - First Debugging -- seems to work, at least as far as tested - Added some comments - Now the error codes used should be more informative about the
	  cause.  Also by trying to definie some common error cause, the
	  interface should be more robust.

2009-10-04  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCPAsio.cpp: Some debugging and first bugs
	destroyed.  Still experimental.

2009-10-04  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/ILogger.h: Added the config.h include. (Helps
	eclipse to detect the real active code)

2009-10-04  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/interfaces/IConnect.cpp,
	src/Connections/interfaces/IConnect.h: This is a mayor change how
	connections can be handled: With this patch, the infrastructure for async communication is
	implemented and the ASIO TCP is adapted to be async.  However, be warned: THIS IS UNTESTED CODE! Also, the Sputnik Inverter (which is currently the only one
	implemented) is not adapted to use this, but under-the-hood
	everything is async, so I expect breakage.  REPEAT: This version will probably not work.  (But as this is 2 weeks of work, I really need to have this in git.) TODO: Sending is not yet "async". Planned to be soon.

2009-10-04  Tobias Frost <tobi@coldtobi.de>

	* : commit ebebfeff276e214a7a7084d1e5c685479be6f42d Author: Tobias
	Frost <tobi@coldtobi.de> Date:   Sun Oct 4 19:22:13 2009 +0200

2009-10-04  Tobias Frost <tobi@coldtobi.de>

	* src/patterns/ICommand.h: Added facility to set new data on a
	command

2009-09-26  Tobias Frost <tobi@moria.(none)>

	* : Merge commit 'origin/trunk' into trunk

2009-09-13  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/factories/IConnectFactory.h,
	src/Connections/interfaces/IConnect.cpp,
	src/Connections/interfaces/IConnect.h,
	src/Inverters/interfaces/InverterBase.h, src/Makefile.am,
	src/interfaces/IConnect.cpp, src/interfaces/IConnect.h: moved
	IConnect.(h|cpp) to Connections/interface

2009-09-11  Tobias Frost <tobi@moria.(none)>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	Added some debug code for the Sputnik inverters.

2009-09-10  Tobias Frost <tobi@moria.(none)>

	* src/configuration/ILogger.cpp, src/configuration/ILogger.h: 
	Documented ILogger Changed conditional code in ILogger.h, to make it
	more readable Also, along the way, solved a bug with the logging
	levels.

2009-09-10  Tobias Frost <tobi@moria.(none)>

	* src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h: (Micro)commented the class CInverterFactorySputnik

2009-09-10  Tobias Frost <tobi@moria.(none)>

	* Makefile.in, configure,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/factories/IInverterFactory.cpp,
	src/Inverters/factories/IInverterFactory.h,
	src/Inverters/factories/InverterFactoryFactory.cpp,
	src/Inverters/factories/InverterFactoryFactory.h, src/Makefile.am,
	src/Makefile.in, src/config.h.in,
	src/interfaces/factories/IInverterFactory.cpp,
	src/interfaces/factories/IInverterFactory.h,
	src/interfaces/factories/InverterFactoryFactory.cpp,
	src/interfaces/factories/InverterFactoryFactory.h,
	src/solarpowerlog.cpp: Moved some files to a new location: The
	factories for the inverters are now under Inverters, not under
	interfaces, which is more logical.  Also, removed some generated files from git. (from the autotools)
	They can be regenerated by ./bootstrap anyway.

2009-09-09  Tobias Frost <tobi@moria.(none)>

	* configure.in, src/solarpowerlog.cpp: Modularized the use of
	programm-options.  If turned off (with configure), it will use some
	defaults like the configuration file path and name:
	"./solarpowerlog.conf".

2009-09-09  Tobias Frost <tobi@moria.(none)>

	* src/configuration/ILogger.h: removed some
	unused-parameters-warnings showed when logging-support is disabled.

2009-09-09  Tobias Frost <tobi@moria.(none)>

	* configure.in, src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/interfaces/factories/InverterFactoryFactory.cpp: Made also other
	components optional: - Inverter Sputnik - Filters (CSV, Dumb) (use ./configure --help to see the exact
	options)

2009-09-07  Tobias Frost <tobi@moria.(none)>

	* src/configuration/ILogger.h: Now really doing what the configure
	help says: If logging is disabled, the loglevels "ERROR" and "FATAL"
	are going to cerr. Everything else nowhere.

2009-09-07  Tobias Frost <tobi@moria.(none)>

	* configure.in, src/configuration/ILogger.cpp,
	src/configuration/ILogger.h, src/solarpowerlog.cpp: Made liblog4cxx
	optional. For now, disabling will just discard any loggings, even
	errors.

2009-08-16  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	SputnikInverter: Tell caller of parsing failure

2009-08-02  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/configuration/CConfigHelper.cpp,
	src/configuration/CConfigHelper.h, src/configuration/Registry.cpp,
	src/configuration/Registry.h, src/patterns/IValue.cpp,
	src/solarpowerlog.cpp: removed cerrs

2009-07-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCPAsio.h: Documented class

2009-07-28  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCPAsio.cpp: Applied logger to TCP-ASIO

2009-07-28  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	Bugfix in comms-error-detection of CInverterSputnikSSeries

2009-07-28  Tobias Frost <tobi@coldtobi.de>

	* src/solarpowerlog.cpp: Minor Logging Change

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/Inverters/interfaces/InverterBase.cpp: Applied Logger to Sputnik
	Class & Inverter Base Class.  Documented the same.

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCPAsio.h: Custom Setup for the Logger in
	CConnectTCPAsio

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/ILogger.cpp, src/configuration/ILogger.h: Added
	Macros to help using the logger

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/interfaces/IConnect.cpp, src/interfaces/IConnect.h: Added
	Logger to IConnect Interface

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/interfaces/InverterBase.h: Documentation

2009-07-27  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.cpp,
	src/Connections/CConnectDummy.h: Documented a class

2009-07-23  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/interfaces/IDataFilter.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h: Adding logger to the
	Baseclas of Inverters and Filters

2009-07-23  Tobias Frost <tobi@coldtobi.de>

	* src/solarpowerlog.cpp: Added Logging, removed cerr, cout

2009-07-23  Tobias Frost <tobi@coldtobi.de>

	* configure.in, src/Makefile.am: Activate lob4log building via
	autotools

2009-07-23  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/configuration/ILogger.cpp: New sample conf
	with Loggers

2009-07-22  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.h: removed two warnings

2009-07-22  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CDumpOutputFilter.cpp: Replaced Iterator with
	auto_ptr

2009-07-22  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/CConfigHelper.h: Corrected placement of template
	directive for doxygen generation

2009-07-22  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/ILogger.cpp, src/configuration/ILogger.h: Added
	Interface for Logging.  (not yet activated in build system)

2009-07-16  Tobias Frost <tobi@coldtobi.de>

	* NEWS: News added

2009-07-16  Tobias Frost <tobi@coldtobi.de>

	* Makefile.in, src/Makefile.in: Added missing files for Win32 build
	to git

2009-07-15  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, debian/changelog: Debianized Changelog-Format

2009-07-15  Tobias Frost <tobi@coldtobi.de>

	* debian/solarpowerlog.substvars: Removed one autocreated debian
	file from git

2009-07-15  Tobias Frost <tobi@coldtobi.de>

	* .gitignore, ChangeLog, debian/changelog, solarpowerlog.conf: 
	Changelog and example configuration updated.  (We'll release 0.10!)

2009-07-15  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CCSVOutputFilter.cpp: Bugfix in CVSOutputFilter --
	selecting Capas to log with the array did not work

2009-07-15  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/Capabilites.h: Renamed some Capabilites to avoid
	non-ASCII chars

2009-07-13  Tobias Frost <tobi@coldtobi.de>

	* aclocal.m4, src/DataFilters/CCSVOutputFilter.cpp: CVSDumper: Fixed
	Date-Format to YYYY-MM-DD

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/DataFilters/CCSVOutputFilter.cpp: First
	half-way tested, so far working, CVS Filter

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/interfaces/InverterBase.h, src/patterns/CValue.h: 
	Commented Constructor of IInverterBase (no code change) Reformated
	CValue.h (no code change)

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/patterns/IValue.cpp, src/patterns/IValue.h: Setting default
	Values in IValue-Factory

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp: 
	CSputnikSSeries: Did not call Notify on the Data-State Capability.

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/interfaces/factories/IDataFilterFactory.cpp: Added
	CSVDumper to Factory

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/Makefile.am: Addes CCSVDumper to normal build via configure

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/patterns/CValue.h, src/patterns/IValue.h: Added operator
	string() to the Value-Classes. This easies using of it a lot, if the
	value itself is not interesting but the info stored is. (Or, in
	other words: If you need to dump the infos, you don't need to know
	the type...)

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: Backup-Checking: Intermediate
	Version of the CSV Writer

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/interfaces/IDataFilter.h: Fixed Warning -- unused
	parameter

2009-07-12  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/CConfigHelper.h: Added Suzpport for Arrays to
	CConfigHelper

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: Backup-Time...

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CDumpOutputFilter.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/InverterBase.h: Fixed memory leak --
	IInverterBase::GetCapaNewIterator() needs a delete or auto_ptr
	afterwards

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/CConfigHelper.cpp,
	src/configuration/CConfigHelper.h: Forgot to really add the
	ConfigHelper...

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* src/patterns/IObserverSubject.cpp: IObserver-> checks now if
	already subscribed before doing something

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: 
	Tokenizer Bug -- sometimes the tokenizer did not correctly split the
	first token.  (it gave all the string...)

2009-07-05  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectTCPAsio.cpp,
	src/Connections/factories/IConnectFactory.cpp,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Makefile.am, src/configuration/Registry.h: Added CConfigHelper
	-- This also fixes some bugs where type-checking of the
	configuration was not working.  Updated Configuration related docs.

2009-07-04  Tobias Frost <tobi@coldtobi.de>

	* .gitignore, Doxyfile, doxygen.css,
	src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/interfaces/IDataFilter.cpp,
	src/DataFilters/interfaces/IDataFilter.h,
	src/Inverters/interfaces/InverterBase.h,
	src/configuration/Registry.h, src/interfaces/CCapability.h,
	src/solarpowerlog.cpp: - Documentation update (some doxygen problems solved...) - Specified CSV Logger Config Options.

2009-06-30  Tobias Frost <tobi@coldtobi.de>

	* src/DataFilters/CCSVOutputFilter.cpp,
	src/DataFilters/CCSVOutputFilter.h: Documented and started the CVS
	writing class.

2009-06-29  Tobias Frost <tobi@coldtobi.de>

	* Doxyfile, doxygen.css,
	src/Connections/factories/IConnectFactory.cpp,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/interfaces/CCapability.cpp, src/patterns/IValue.cpp: Continued
	some documentaion.

2009-06-27  Tobias Frost <tobi@coldtobi.de>

	* : commit f885b75beeaf6b7c38e9f4900585b4e365e25ff7 Author: Tobias
	Frost <tobi@coldtobi.de> Date:   Sat Jun 27 14:06:37 2009 +0200

2009-06-27  Tobias Frost <tobi@coldtobi.de>

	* Doxyfile, configure.in, src/DataFilters/CDumpOutputFilter.cpp,
	src/configuration/Registry.cpp, src/configuration/Registry.h,
	src/interfaces/CCapability.cpp, src/interfaces/CCapability.h,
	src/porting.h, src/solarpowerlog.cpp: Started to document

2009-06-26  Tobias Frost <tobi@coldtobi.de>

	* WINDOWS.txt, src/DataFilters/CDumpOutputFilter.cpp,
	src/__obsolete__/CConnectTCP.cpp, src/__obsolete__/CConnectTCP.h,
	src/__obsolete__/CMutexHelper.cpp, src/__obsolete__/CMutexHelper.h,
	src/__obsolete__/README.txt, src/patterns/IObserverSubject.cpp,
	src/patterns/IObserverSubject.h: remove Obsolete Files removed a
	typo in a member function

2009-06-24  Tobias Frost <tobi@coldtobi.de>

	* .gitignore, ChangeLog, aclocal.m4, configure, configure.in,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.cpp, src/Makefile.am,
	src/__obsolete__/README.txt, src/config.h.in,
	src/interfaces/CTimedWork.cpp, src/porting.h: Changes since last
	 commit: *  Added some files for which autotools are needed to reconstruct.       This is, as I had problems recreating them under cygwin.   *  ported to Win32. (Builds at least under XP and cygwin. )      (Closes BT-0000001)  *  CTimedWork: Fixed a bug that only showed on Win32.

2009-06-23  Tobias Frost <tobi@coldtobi.de>

	* configure.in: Check added for cygwin WIN32-API Header.

2009-06-23  Tobias Frost <tobi@coldtobi.de>

	* : commit 808d08134747fb0dee52a345cf3ef7b4a2931b52 Author: Tobias
	Frost <tobi@coldtobi.de> Date:   Fri Jun 19 23:48:39 2009 +0200

2009-06-19  Tobias Frost <tobi@coldtobi.de>

	* ChangeLog, configure.in, src/Connections/CConnectDummy.cpp,
	src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.cpp,
	src/Connections/factories/IConnectFactory.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/interfaces/IDataFilter.cpp,
	src/DataFilters/interfaces/IDataFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.h,
	src/Inverters/BasicCommands.h, src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.h,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/Inverters/interfaces/ICapaIterator.h,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/configuration/Registry.cpp, src/configuration/Registry.h,
	src/interfaces/CCapability.cpp, src/interfaces/CCapability.h,
	src/interfaces/CMutexHelper.cpp, src/interfaces/CMutexHelper.h,
	src/interfaces/CTimedWork.cpp, src/interfaces/CTimedWork.h,
	src/interfaces/CWorkScheduler.cpp, src/interfaces/CWorkScheduler.h,
	src/interfaces/IConnect.cpp, src/interfaces/IConnect.h,
	src/interfaces/factories/IInverterFactory.cpp,
	src/interfaces/factories/IInverterFactory.h,
	src/interfaces/factories/InverterFactoryFactory.cpp,
	src/interfaces/factories/InverterFactoryFactory.h,
	src/patterns/CValue.h, src/patterns/ICommand.cpp,
	src/patterns/ICommand.h, src/patterns/ICommandTarget.cpp,
	src/patterns/ICommandTarget.h, src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h,
	src/solarpowerlog.cpp: Applied config.h-inclusion to all files.

2009-06-19  Tobias Frost <tobi@coldtobi.de>

	* : commit acfdec93d4c920da02942c826adf0e070f89bcf3 Merge: 337ebe1
	7331756 Author: Tobias Frost <tobi@coldtobi.de> Date:   Fri Jun 19
	22:33:30 2009 +0200

2009-06-19  Tobias Frost <tobi@coldtobi.de>

	* .gitignore: Adding gitignore...

2009-06-19  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, bootstrap.sh, configure.in, run_autotools.sh,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h, src/Makefile.am, src/config.h.in: 
	Autotools: - Boost detection did not work properly (did not abort on some
	errors) - Boost asio detection changed to check the header only, as this is
	a header-only  (and AX_BOOST_ASIO failed on the Win32 tries) - Added a two-stage Makefile.am -> src has now its own.  - renamed run_autotools.sh to bootstrap.sh (as this one is more
	common) src/Connections/CConnectTCPAsio.[h|cpp] - Changed to avoid boost::regex dependency (this requires to
	hand-pick the asio headers)

2009-06-17  Tobias Frost <tobi@coldtobi.de>

	* run_autotools.sh: added script for easy-auto-tools-generation

2009-06-17  Tobias Frost <tobi@coldtobi.de>

	* Makefile.in, aclocal.m4, configure, debian/README.Debian,
	debian/changelog, debian/compat, debian/control, debian/copyright,
	debian/cron.d.ex, debian/dirs, debian/docs,
	debian/emacsen-install.ex, debian/emacsen-remove.ex,
	debian/emacsen-startup.ex, debian/files, debian/init.d.ex,
	debian/init.d.lsb.ex, debian/manpage.1.ex, debian/manpage.sgml.ex,
	debian/manpage.xml.ex, debian/menu.ex, debian/postinst.ex,
	debian/postrm.ex, debian/preinst.ex, debian/prerm.ex, debian/rules,
	debian/solarpowerlog.default.ex, debian/solarpowerlog.doc-base.EX,
	debian/solarpowerlog.substvars, debian/watch.ex: Adding files needed
	for debian package generation (directory debian)

2009-06-17  Tobias Frost <tobi@coldtobi.de>

	* Makefile.am, configure.in, src/solarpowerlog.cpp: Added Support
	for parsing the commandline (using liboost::programm options) - can specify the conffile now - prepared for debug level and daemonizing...

2009-06-15  Tobias Frost <tobi@coldtobi.de>

	* AUTHORS, BUILDING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
	NEWS, PLAN, README, aclocal.m4, config/config.guess,
	config/config.sub, config/depcomp, config/install-sh,
	config/missing, configure, configure.in, m4/ax_boost_asio.m4,
	m4/ax_boost_base.m4, m4/ax_boost_date_time.m4,
	m4/ax_boost_system.m4, m4/ax_boost_thread.m4,
	src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.h,
	src/DataFilters/interfaces/IDataFilter.h,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h, src/config.h.in,
	src/configuration/Registry.cpp: - Changed to autotools completed - As writing the autotools files, replaced the standalone asio
	library with the (almost identical) boost::asio - RELEASE 0.01

2009-06-14  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/Capabilites.h: Backup

2009-06-14  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCP.cpp, src/Connections/CConnectTCP.h,
	src/Connections/factories/IConnectFactory.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/__obsolete__/CConnectTCP.cpp, src/__obsolete__/CConnectTCP.h,
	src/__obsolete__/CMutexHelper.cpp, src/__obsolete__/CMutexHelper.h,
	src/interfaces/CMutexHelper.cpp, src/interfaces/CMutexHelper.h,
	src/interfaces/CTimedWork.cpp, src/interfaces/CTimedWork.h,
	src/interfaces/CWorkScheduler.cpp, src/interfaces/CWorkScheduler.h,
	src/solarpowerlog.cpp: Changed CWorkSchedule, CTimedWork to boost.

2009-06-13  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectTCPAsio.cpp,
	src/DataFilters/CDumpOutputFilter.cpp, src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: get
	network frequency on Sputnik corrected.

2009-06-13  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCP.cpp, src/Connections/CConnectTCP.h,
	src/Connections/CConnectTCPAsio.cpp,
	src/Connections/CConnectTCPAsio.h,
	src/Connections/factories/IConnectFactory.cpp,
	src/Connections/factories/IConnectFactory.h,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h, src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/interfaces/IConnect.h,
	src/interfaces/factories/IConnectFactory.cpp,
	src/interfaces/factories/IConnectFactory.h, src/solarpowerlog.cpp: 
	first working version with asio

2009-06-07  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectTCP.cpp,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.cpp,
	src/DataFilters/interfaces/factories/IDataFilterFactory.h,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/interfaces/CTimedWork.cpp,
	src/interfaces/factories/IDataFilterFactory.cpp,
	src/interfaces/factories/IDataFilterFactory.h,
	src/patterns/IObserverObserver.cpp, src/solarpowerlog.cpp: Backup --
	This time, solarpowerlog does something to stdout: Compile, launch
	and see yourself..  (Unfortunatly, there seems a bug in libcommonc++::TCPStream...:
	Cannot send two packages, if you've read from the stream.

2009-06-04  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCP.cpp,
	src/DataFilters/CDumpOutputFilter.cpp,
	src/DataFilters/CDumpOutputFilter.h,
	src/DataFilters/interfaces/IDataFilter.cpp,
	src/DataFilters/interfaces/IDataFilter.h,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/Inverters/interfaces/CNestedCapaIterator.cpp,
	src/Inverters/interfaces/CNestedCapaIterator.h,
	src/Inverters/interfaces/ICapaIterator.cpp,
	src/Inverters/interfaces/ICapaIterator.h,
	src/Inverters/interfaces/InverterBase.cpp,
	src/Inverters/interfaces/InverterBase.h,
	src/configuration/Registry.cpp, src/interfaces/CCapability.h,
	src/interfaces/CTimedWork.cpp, src/interfaces/InverterBase.cpp,
	src/interfaces/InverterBase.h,
	src/interfaces/factories/IDataFilterFactory.cpp,
	src/interfaces/factories/IDataFilterFactory.h,
	src/patterns/CValue.h, src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/solarpowerlog.cpp: Talked to the inverter, queriing some datas.
	(Seems to work) Now working on the DataFilters implementatoin.  Added Infrastructure
	and a simple data dumper.  (Not tested at all)

2009-06-01  Tobias Frost <tobi@coldtobi.de>

	* src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h, src/solarpowerlog.cpp: Changed
	CWorkScheduler to use semaphores.  No we can just call DoWork and
	thers no need to poll for work.

2009-06-01  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectTCP.cpp,
	src/Connections/CConnectTCP.h, src/Inverters/BasicCommands.h,
	src/Inverters/Capabilites.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/interfaces/IConnect.h, src/interfaces/InverterBase.h,
	src/patterns/IValue.h, src/solarpowerlog.cpp: Implemented most of
	the Sputnik inverter queries.  Now we are ready to implement the
	query logic....

2009-05-24  Tobias Frost <tobi@coldtobi.de>

	* README, solarpowerlog.conf, src/Connections/CConnectTCP.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/interfaces/InverterBase.h, src/patterns/ICommandTarget.h,
	src/solarpowerlog.cpp: The "it does something" commit.  I just
	talked the very first time to the inverter...  (and finding out,
	that the inverter cannot handle reponses longer than 255 bytes..) So
	new approach: Estimate the answer length and use that for how much
	commands to put in...)

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h: Backup

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/CConnectDummy.h,
	src/Connections/CConnectTCP.cpp, src/Connections/CConnectTCP.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/configuration/Registry.cpp, src/configuration/Registry.h,
	src/interfaces/IConnect.h, src/interfaces/InverterBase.h,
	src/solarpowerlog.cpp: Time for backup...  Implemented and
	basic-tested the tcp connector.

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCP.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/configuration/Registry.cpp, src/configuration/Registry.h,
	src/interfaces/CCapability.h, src/interfaces/InverterBase.cpp,
	src/interfaces/InverterBase.h,
	src/interfaces/factories/IConnectFactory.cpp,
	src/interfaces/factories/IConnectFactory.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h,
	src/solarpowerlog.cpp: 2 Basic Capabilites added to IInverterBase
	Tested instanciation of Capabilites and Configuration Check of the
	Sputnik ones.

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectTCP.cpp, src/Connections/CConnectTCP.h,
	src/Connections/ConnectionTCP.cpp, src/Connections/ConnectionTCP.h,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/interfaces/factories/IConnectFactory.cpp,
	src/interfaces/factories/IConnectFactory.h: Renamed...

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/interfaces/IConnectFactory.cpp,
	src/interfaces/IConnectFactory.h,
	src/interfaces/IInverterFactory.cpp,
	src/interfaces/IInverterFactory.h,
	src/interfaces/InverterFactoryFactory.cpp,
	src/interfaces/InverterFactoryFactory.h,
	src/interfaces/factories/IConnectFactory.cpp,
	src/interfaces/factories/IConnectFactory.h,
	src/interfaces/factories/IInverterFactory.cpp,
	src/interfaces/factories/IInverterFactory.h,
	src/interfaces/factories/InverterFactoryFactory.cpp,
	src/interfaces/factories/InverterFactoryFactory.h,
	src/solarpowerlog.cpp: Moved factory patterns to own directory

2009-05-22  Tobias Frost <tobi@coldtobi.de>

	* src/Connections/CConnectDummy.cpp,
	src/Connections/CConnectDummy.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/interfaces/IConnect.cpp, src/interfaces/IConnect.h,
	src/interfaces/IConnectFactory.cpp,
	src/interfaces/IConnectFactory.h: new CDummyConnection, making sure
	that we can easily check if a valid mode of comms are specified.

2009-05-21  Tobias Frost <tobi@coldtobi.de>

	* solarpowerlog.conf, src/Connections/ConnectionTCP.cpp,
	src/Connections/ConnectionTCP.h,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/configuration/Registry.h, src/interfaces/CTimedWork.cpp,
	src/interfaces/CTimedWork.h, src/interfaces/IInverterFactory.cpp,
	src/interfaces/IInverterFactory.h, src/interfaces/InverterBase.cpp,
	src/interfaces/InverterBase.h,
	src/interfaces/InverterFactoryFactory.cpp,
	src/interfaces/InverterFactoryFactory.h, src/solarpowerlog.cpp: 
	Backup

2009-05-21  Tobias Frost <tobi@coldtobi.de>

	* BUILDING, solarpowerlog.conf,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.cpp,
	src/Inverters/SputnikEngineering/CInverterFactorySputnik.h,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.cpp,
	src/Inverters/SputnikEngineering/CInverterSputnikSSeries.h,
	src/configuration/Registry.cpp, src/solarpowerlog.cpp: Backing up

2009-05-19  Tobias Frost <tobi@coldtobi.de>

	* src/configuration/Registry.cpp, src/configuration/Registry.h,
	src/interfaces/CWorkScheduler.cpp, src/interfaces/CWorkScheduler.h,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h,
	src/patterns/ICommandTarget.h, src/solarpowerlog.cpp: Backup

2009-05-17  tobi <tobi@localhost>

	* src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h: Implemented Scheduler.

2009-05-17  tobi <tobi@localhost>

	* src/interfaces/CMutexHelper.cpp, src/interfaces/CMutexHelper.h,
	src/interfaces/CWorkScheduler.cpp, src/interfaces/CWorkScheduler.h,
	src/patterns/ICommandTarget.h: Mutex Helper -- helps not lettnig
	behind a locked mutex

2009-05-17  tobi <tobi@localhost>

	* README: Added a README

2009-05-17  tobi <tobi@localhost>

	* COPYING, COPYRIGHT, GPL, LGPL, src/configuration/Registry.cpp,
	src/configuration/Registry.h, src/interfaces/CCapability.cpp,
	src/interfaces/CCapability.h, src/interfaces/CWorkScheduler.cpp,
	src/interfaces/CWorkScheduler.h, src/interfaces/IConnect.cpp,
	src/interfaces/IConnect.h, src/interfaces/IConnectFactory.cpp,
	src/interfaces/IConnectFactory.h, src/interfaces/InverterBase.cpp,
	src/interfaces/InverterBase.h, src/patterns/CValue.h,
	src/patterns/ICommand.cpp, src/patterns/ICommand.h,
	src/patterns/ICommandTarget.cpp, src/patterns/ICommandTarget.h,
	src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h,
	src/solarpowerlog.cpp: -- Added some classes -- Putting the whole thing under a license:    GPL -- For the code-files, excluding the headers    LPGL -- For the headers See Copying for details The idea behind
	this is to also allow "closed source" modules, for example if a
	vendor decidess that the protocol is "top secret" but allows us to
	also support his model...  (No actual case, just learned from e.g
	navit)

2009-05-17  tobi <tobi@localhost>

	* src/interfaces/InverterBase.cpp, src/interfaces/InverterBase.h,
	src/patterns/CValue.h, src/patterns/ICommand.cpp,
	src/patterns/ICommand.h, src/patterns/ICommandTarget.cpp,
	src/patterns/ICommandTarget.h, src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h, src/patterns/IValue.cpp,
	src/patterns/IValue.h, src/solarpowerlog.cpp: Backup

2009-05-16  tobi <tobi@localhost>

	* BUILDING, src/InverterBase.cpp, src/InverterBase.h,
	src/Registry.cpp, src/Registry.h, src/configuration/Registry.cpp,
	src/configuration/Registry.h, src/interfaces/InverterBase.cpp,
	src/interfaces/InverterBase.h, src/patterns/IObserverSubject.cpp,
	src/patterns/IObserverSubject.h, src/solarpowerlog.cpp: Moved to own
	directory

2009-05-15  tobi <tobi@localhost>

	* BUILDING, solarpowerlog.conf: Backup

2009-05-15  tobi <tobi@localhost>

	* src/InverterBase.h, src/Registry.cpp,
	src/patterns/ICapability.cpp, src/patterns/ICapability.h,
	src/patterns/IValue.cpp, src/patterns/IValue.h: Factory for Values
	done

2009-05-13  tobi <tobi@localhost>

	* src/InverterBase.cpp, src/InverterBase.h, src/Registry.cpp,
	src/Registry.h, src/patterns/ICapability.cpp,
	src/patterns/ICapability.h, src/patterns/IObserverObserver.cpp,
	src/patterns/IObserverObserver.h,
	src/patterns/IObserverSubject.cpp, src/patterns/IObserverSubject.h,
	src/solarpowerlog.cpp: Implemented Observer Pattern

2009-05-10  tobi <tobi@localhost>

	* src/Registry.cpp, src/Registry.h, src/solarpowerlog.cpp: Backup.

2009-05-10  tobi <tobi@localhost>

	* Initial Commit with some code....