File: NEWS

package info (click to toggle)
serendipity 1.0.4-1%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 14,692 kB
  • ctags: 10,206
  • sloc: php: 83,899; sql: 1,024; sh: 597; makefile: 56
file content (2267 lines) | stat: -rw-r--r-- 91,131 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
+# $Id$

Version 1.0.4 (December 1st, 2006)
------------------------------------------------------------------------

   * Fix local file inclusion bug on systems with two conditions:
     register_globals=on AND missing .htaccess for restricting access to
    .inc.php files. (garvinhicking)

   * Fixed problem in trackbacks using a formatted link (like through
     trackexits plugin) to trackback to instead of the real one
             
Version 1.0.3 (November 7th, 2006)
------------------------------------------------------------------------

   * Fix PHP 5.2.0 compatibility issue. (garvinhicking)

   * Add testsuite (nohn)

   * Some minor 1.1 bug backports:

     - Fix a problem where spartacus did not properly assign configured
       permissions to downloaded directories, thanks to danilo from
       the forums! (garvinhicking)

     - "View Article" in "Save Entry" dialog (nohn)

     - Fix possible integer wraparound in comment count leading to
      a gazillion counter state. Also now show links to the entries
      within the administration comment panel. Thanks to Julian Finn!

     - Fix bug with using %username% in author permalinks, thanks to oeli
      from the forums! (garvinhicking)

     - Fix a problem where spartacus did not properly assign configured
      permissions to downloaded directories, thanks to danilo from
      the forums!

     - Move trackback sending logic to the end when saving an entry.
      Should get rid of event plugins not operating when trackbacks
      painfully fail. Thanks to isotopp (garvinhicking)

     - Fixed bug that prevented native imports from other blog system
      to recode ISO-charsets into UTF-8. Major thanks to Jan of
      blog.salid.de. (garvinhicking)

Version 1.0.2 (October 18th, 2006)
------------------------------------------------------------------------

   * Fix a security issue with XSS on the admin backend for registered
     authors. Many thanks to Stefan Esser! (garvinhicking)

Version 1.0.1 (August 14th, 2006)
------------------------------------------------------------------------

   * Fix problem on newer Firefox versions, where insertion of images
     in the WYSIWYG editor did not work. It might be necessary to
     purge your browsers cache for this to properly work. (Jay Bertrandt)

   * Fix utf8 iconv conversion failing on some older PHP setups.
     Thanks to Matthias Leisi!

   * Fix multi-authors view only showing first author (garvinhicking)

   * Fix bug sending comment-notification mails to subscribed users
     without an email address (garvinhicking)

   * Fixed icelandic language bug preventing upgrade (garvinhicking)

Version 1.0 (June 15th, 2006)
------------------------------------------------------------------------

   * Insert logic for saving an entry that prevents the iframe for
     trackbacks/xml-rpc pings to save an entry multiple times upon
     failure. Many thanks to tharos from the Forums! (garvinhicking)

   * Add smarty parameter $view which can be used to detect what kind
     of page is being displayed. One of: archives, entry, feed, admin,
     archives, plugin, categories, authors, search, css, start, 404
     (garvinhicking)

   * Change Spartacus plugin to use new SourceForge URLs (garvinhicking)

   * Added polish language translation by CoSTa

   * Fix media browser sorting by authorid causing trouble in SQLite
     (Sven Oliver Moll)

Version 1.0-beta3 (May 5th, 2006)
------------------------------------------------------------------------

   * Fix another (minor) XSRF for entry manager, thanks to Geoff Johnson
     (garvinhicking)

   * Support "Force Feedburner" option to the syndication plugin to
     let rss.php only be accessible to feedburner and no clients.
     (garvinhicking)

   * Add Akismet antispam support (garvinhicking)

   * Saving special crafterd configuration data as Admin superuser
     could lead to arbitrary PHP code inclusion from
     serendipity_config_local.inc.php. Since admins usually already have
     superuser rights over their files, this is not considered a
     "real-life" security issue. (garvinhicking)

   * Added Pivot importer (garvinhicking)

   * The spamblock plugin now continues to check any comment/trackback
     set to MODERATE if maybe other rules override the status to
     REJECTED. This should reduce the amount of moderation mails that
     definitely are spam. (Bug #1467707) (garvinhicking)

   * Fix UTF-8 encoding of $i18n_filename_* variables for building
     permalinks (Bug #1461754, Thanks to Kim Sullivan) (garvinhicking)

   * Fix messing up comment count when deleting a trackback from admin
     panel (garvinhicking)

   * Fix missing UTF-8 encoding of date locales on Windows setups
     (garvinhicking)

   * Fix imagepng() function call for PHP 5.1.0 versions
     (Sebastian Mordziol)

   * Fix WYSIWYG javascript referencing so that plugins can access their
     objects (like emoticonchooser). Also replace <i> with <em> and
     <b> with <strong>. (Jay Bertrandt)

Version 1.0-beta2 (March 13th, 2006)
------------------------------------------------------------------------

   * Fixed chief-editor not being able to create editors (garvinhicking)

   * Added turkish language by Ahmet Usal

   * Fix also deleting thumbnail when removing an image (garvinhicking)

   * Added new competition theme winner by Carl Galloway

   * Enable Spamblock plugin to allow registered authors to not enter
     captchas and other spamchecks (garvinhicking)

   * Fixed spartacus DB error on postgreSQL installations, thanks to
     volkris! (garvinhicking)

   * Added partial Tamil translation by Selva

   * Fix Text_Wiki problems with UTF-8 charsets (garvinhicking)

   * Added PHP 5.1.3 filter awareness (Tobias Schlitt)

   * Properly sort template listings alphabetically, if using themes
     in subdirectories (garvinhicking)

   * Add new plugin API method "performConfig" for performing expensive
     configuration options that shall not impact the usual blog
     performance. Enhance mailentry plugin to send mails depending
     on the associated category of an entry (garvinhicking)

   * Add ability to "preload" specific plugins and SQL entries into
     Serendipity. Just create a plugins/preload.txt file containing
     the plugins to load (one plugin per line, indicate plugin type
     like "serendipity_event_spartacus:event"). Preloaded SQL data
     can be put into sql/preload.sql and may only contain INSERT
     statements. (garvinhicking, judebert)

   * When the "no_create" privilege is set, deny users access to any
     external admin plugins (garvinhicking)

   * Made categories plugin default HTML output more XHTML compliant.
     (garvinhicking)

   * Added option "stronger captchas" in spamblock plugin.

   * Transcode incoming trackbacks from the given charset to your blog's
     charset. Reliably only works with the two most common formats,
     ISO-8859-1 <-> UTF-8. (garvinhicking)

   * Change karma plugin and search results to output more HTML span
     classes for better styling (garvinhicking)

   * Modified plugin API to allow deactivating the output of plugin
     sidebars (garvinhicking)

   * Adjust the function serendipity_currentURL() to properly return
     path components without doubling any of them (garvinhicking)

   * Fix serendipity_event_mailer plugin to also work when being called
     from posting plugins like XMLRPC, popfetcher etc. (garvinhicking)

   * Make templatechooser plugin store the selected template in a cookie
     (garvinhicking)

   * Added new hook "backend_header" for plugins to emit output in the
     header section of the admin interface. (garvinhicking)

   * Added experimental MySQL5 "SET NAMES" support. Needs to be enabled
     by setting $serendipity['dbNames'] = true somehwere (like
     serendipity_config_local.inc.php) (garvinhicking)

   * Patch bundled PEAR.php so that it does not try to declare a PEAR
     class a second time. (garvinhicking)

   * RSS feeds use the permalink URL to link to extended entry, not the
     RSS guid element. (garvinhicking)

   * Remove duplicate path file name in serendipity_currentURL function,
     preventing the right "is frontpage?" detection routine from working.
     (garvinhicking)

   * Use mysql_real_escape_string when available (garvinhicking)

   * Atom feeds now use proper appliaction-mime type header, thanks to
     Boris

   * MoveableType importer no longer chokes on "FM/EM" timestamps
     (garvinhicking)

   * Fix undefined function call to "is_defined".

   * Added translation helper tool plugin_lang.php to detect untranslated
     plugin constants (garvinhicking)

   * Updated french translation by Sebastian Mordziol

   * Updated icelandic translation by rn Arnarson

   * Updated chinese plugin translation, by Demin Yin

Version 1.0-beta1 (January 23rd, 2006)
------------------------------------------------------------------------

   * Apply changes to shared installation directory detection so that
     it also works with Apache's mod_userdir (elf2000)

   * Fix some problems with sending UTF-8 emails on some systems. Allow
     Plugin API to handle the whole mailflow optionally.
     (garvinhicking)

   * Fixed Safari Browser issue with formatting and inserting media
     items (garvinhicking)

   * RFE #1387997 - Show amount of entries per archive period (archive
     sidebar plugin). Side-effect are some new additions to the
     serendipity_fetchEntries() function call for further abstraction.
     (garvinhicking)

   * Add new plugin hook "backend_http_request" which passes PEAR
     HTTP_Request options to plugins for modification. $addData contains
     the source of where a request is being made (garvinhicking)

   * Make WordPress importer not fail on the missing "user_level" column
     for WordPress 2.0 (garvinhicking)

   * Add new option to spamblock plugin to forbid trackbacks from URLs that
     don't have our URL in them. (garvinhicking)

   * Recognize "multiselect" as new plugin item type. Calls to get_config()
     will return a string, that needs exploding to convert it into the
     array of multi-selected input values.
     For the property bag object, you can set a new item "select_preselected"
     to indicate which (if any) values shall be preselected. The item "select_size"
     indicates the multi-select size.
     (garvinhicking)

   * Make spartacus plugin be able to filter comment bodies
     (garvinhicking)

   * Fixed bug which broke thumbnail generation with Imagemagick when
     safe-mode was ON (tomsommer)

   * New Smarty template preview_iframe.tpl for creating the entry's
     preview in the backend panel (garvinhicking)

   * Entry mail plugin can now send mails to multiple recipients, and
     define the list of recipients per-entry (garvinhicking)

   * Trackback now uses PEAR HTTP::Request class to send trackbacks.
     This allows to use HTTP redirects of trackbacks, which seem to
     get more common nowadays (garvinhicking)

   * Fix Bug #1377095 - Not counting correct number of entries on the
     /archives page. The page was counting entries belonging to more
     then one categories multiple times. (garvinhicking)

   * Fix MoveableType importer to better import comments (garvinhicking)

   * Allow category sidebar plugin to hide the parent category, if
     the plugin is configured to only show a leaf of a category tree
     (garvinhicking)

   * Allow to restrict not showing entries from special category via
     $serendipity['GET']['hide_category']. (garvinhicking)

   * Allow to edit a HTML nugget with a frontend link (garvinhicking)

   * Added sidebar plugin to show statistical data (garvinhicking)

   * Changed detection of "last_modified" timestamp, so that the date
     only gets bumped in case of real updates. Thanks to Ivan Cenov!

   * Changed interface language autodetection so that multilingual plugin
     can override it (garvinhicking)

   * Added option to turn off referrer tracking (garvinhicking)

   * Improved Smarty Plugin API so that a new function
     serendipity_fetchPrintEntries() can be used within a template to
     print more entries, and abstracted _fetchEntries()/_printEntries()
     calls a bit more so that future plugins can easier modify the
     global $entries array and control smarty/plugin execution
     (garvinhicking)

   * Inserted phpDoc code documentation for all Serendipity functions
     (garvinhicking)

   * Made remote RSS plugin be able to emit debug messages, enhance
     bbcode plugin with new [strike] command, thanks to comdoxx!

   * Fix wrong URL permalink detection when categories contain "." or "_"
     characters (garvinhicking)

   * Spamblock plugin can block comments when they only contain the
     entry title (garvinhicking)

   * Make RSS feeds templatable with Smarty .tpl files (feed_*.tpl), so
     that you can easily customize your feeds layouts, inject nagging
     ads and so on (garvinhicking)

   * Fix certain plugins to correctly behave when using entry-
     properties caching, by re-executing plugins that were not executed
     because they "scramble" the true content. (garvinhicking)

   * Introduced CUSTOM_ADMIN_INTERFACE that tells the user if the
     template author also made a stylesheet for the admin interface
     when selecting a theme (flotsam)

Version 0.9.2 ()
------------------------------------------------------------------------

   * Fix server locale order to always first use the charset locale
     instead of a generic locale. Fixes bug #1384978 (garvinhicking)

   * Fix entry quicksearch on postgresql, where it returned the same
     entry multiple times if it was contained in multiple categories.
     Fix by Robert Treat, many thanks!

   * Make templatechooser plugin emit a non-cached version of the
     stylesheet, so that user-changes will be visible without manually
     purging the cache (garvinhicking)

   * Fix personal configuration no more able to lock you out of all
     user groups (garvinhicking)

   * File CSS stylesheets occasionally not returning the right path
     (garvinhicking)

   * Fix not being able to create users of the same userlevel when
     being admin [workaround was to first create user with lower userlevel
     and then edit the user account, which lead to propper permission
     checks]

   * Include a template's "config.inc.php" also when previewing an entry,
     so that custom functions can be called (garvinhicking)

   * Media uploader remembers last used upload directory (garvinhicking)

   * Add "Precedence: Bulk" headers to sent mails (garvinhicking)

    * Fix bug #1371893: Category write permissions are not properly
      evaluated when writing into a category that a user has no
      access to. Thanks to cydvicious! (garvinhicking)

    * Fix bug #1371630: Write permissions to category are stored with
      input data of the 'Read permissions' author listing.

Version 0.9.1 (November 23rd, 2005)
------------------------------------------------------------------------

    * Fix renaming authors and categories to also properly update permalinks
      that have no %id% column (garvinhicking)

    * Fix configuration for non-admins to not properly store values like
      blog Title (garvinhicking)

    * Fix RSS import's timezone detection for ISO-8601 dates
      (garvinhicking)

    * Fix htmlarea when using UTF-8 charset on a ISO-8859-1 language
      (garvinhicking)

    * Statistics plugin now contains entries per author. Patch #1347639
      by SvOlli

    * Fix thumbnail generation for imageMagick when target image is
      smaller than the target size, it should not be blown up
      (garvinhicking)

    * Fix spartacus plugin to not properly indicate updatable versions
      of plugins (garvinhicking)

    * Fix multi-media upload in Safari browser (jhermanns)

    * Make calendar plugin also accept links to external events
      (garvinhicking)

    * Fix mod_rewrite rules to not differentiate on case-sensitivity for
      authors, archives and category URLs (garvinhicking)

    * Fix a bug in the serendipity_currentURL function when Serendipity
      is installed in your HTTP root. This bug only effects the plugins karma,
      entrysplit and multilingual on these installations.
      Thanks to Richard Davey for spotting this! (garvinhicking)

    * Fix showing preview image of hotlinked images. Thanks to Thomas
      and RobA from the forums! (garvinhicking)

    * Make Onyx RSS parser interpret HTTP redirecty. (Kristian Khntopp)

    * Added blogger.com importer by Jawish Hameed

    * Fix visitor tracking in statistics plugin (garvinhicking)

    * Fix incorrect entry count in categories sidebar plugin (was also
      counting drafts)

    * Set the correct reply-to name when sending comment mails, thanks
      to RobA from the forums (garvinhicking)

Version 0.9 (October 28th, 2005)
------------------------------------------------------------------------

    * Spamblock plugin can now check domains against the blogg.de
      blacklist (http://spam.blogg.de/blacklist.txt). Deactivated by
      default, the blacklist will be cached for 60 minutes before
      being queried again. Thanks to the guys of blogg.de for notifying
      us about their service! (garvinhicking)

    * Fix categories plugin to properly work on pgsql installations.
      Thanks to CaptainCrunch!

    * Make serendipity_makeFilename function be UTF-8 aware.

    * Fix syndication plugin not allowing to configure Atom 1.0 feed.
      Thanks to Boris from the forums!

    * Fix an issue of privilege escalation for non-admins (garvinhicking)

    * Fix a parse error in the Importer, introduced in beta3
      (garvinhicking)

    * Show installed plugin versions in plugin overview (garvinhicking)

Version 0.9-beta3 (October 21st, 2005)
------------------------------------------------------------------------

    * Syndication plugin: Do not show E-Mail adress in RSS feed by default
      (garvinhicking)

    * Fix Bug where siteConfiguration was not available to chief
      editors. Thanks to Jannis! :) (garvinhicking)

    * Fix Bug with category/author RSS feeds not properly recognize
      their content when URL rewriting is off (garvinhicking)

    * Enhanced entryproperties plugin to support entering custom field-
      names (RFE #1328773) (garvinhicking)

    * Also fetch and display entryproperties in the results of a search.
      Fixes bug #1329379 (garvinhicking)

    * Fix some dreaded "only variables can be returned by referenced"
      PHP 4.4 notices on some minor occasions (garvinhicking)

    * Fix problem with b2evo importer when db was not in the same db
      as serendipity. Thanks to Judebert from the forums! (garvinhicking)

Version 0.9-beta2 (October 13th, 2005)
------------------------------------------------------------------------

    * Fix "easy installation" leading to an error with language charsets.
      Thanks to Heddesheimer from the forums for spotting this!
      (garvinhicking)

    * Improve Spamblock plugin to allow configuring author/url filters
      straight from the "Comments" interface. (garvinhicking)

    * Fix a bug in the fetchEntry() function which can lead to wrong
      author/authorid settings when editing an existing entry. Thanks to
      Martin Eichenberg! (garvinhicking)

    * The output of the category plugin can now be styled via Smarty
      templating (plugin_categories.tpl). Also you can now enable showing
      the number of entries per category. (garvinhicking)

    * Admin entry overview: Show pagination on bottom of the list and
      allow filtering for showing drafts/publishs (garvinhicking)

    * Fix spartacus plugin to be able to upgrade plugins (garvinhicking)

    * Fix track exits plugin to redirect to the right URL when no URL-ID
      was found. (garvinhicking)

    * "Recent comments" plugin can be configured whether to show
       trackbacks, comments or both. (garvinhicking)

    * Spartacus can be configured to set file owner/permissions of
      downloaded files via chown/chmod. Also fix UTF-8 problems in
      non-UTF-8 environments. (garvinhicking)

    * Allow per-author XML feeds, added bundled sidebar plugin to show
      (multiple) authors. (jtate)

    * Enhance entryproperties plugin so that single entries can hide
      their content from the RSS feeds. (garvinhicking)

    * Fix using the "realname" of the author in entry preview instead of
      username. Also fix printing category info when no category was
      assigned. Thanks to Manuel Charisius! (garvinhicking)

Version 0.9-beta1 (September 29th, 2005)
------------------------------------------------------------------------

    * Change Onyx RSS parser and xml_parser_* functions to already specify
      the source charset, so that PHP functions can do the recoding on
      their own. Functionality differed on PHP4 and PHP5, this has now
      been unified. Thanks a lot to W-Mark Kubacki!

    * Enhance XHTML Cleanup plugin to recode double-encoded UTF-8 HTML
      entities on NON-UTF8 blogs. Patch thanks to W-Mark Kubacki!

    * Fix not showing thumbnail images in media database when thumbSuffix
      is empty. Thanks to Brian J. France!

    * Spamblock plugin can now define required comment fields. Also fix
      parameter order in mt_rand() call, thanks to Jens Kubieziel
      (garvinhicking)

    * Plugin API now allows to validate config options via a "validate"
      method, used by the plugin configuration panel. Need to set "validate"
      and "validate_error" property bag attributes in your custom
      introspect_config_item() calls, documented on
      http://www.s9y.org/index.php?node=43#A13 (garvinhicking)

    * Read/Write permissions for user-groups for specific categories.
      (garvinhicking)

    * Reduce memory usage by splitting up function files, optimizing
      spartacus parsing. New files:
        include/functions_rss.inc.php
        include/functions_entries_admin.inc.php
      (garvinhicking)

    * Inserting links via the Serendipity Toolbar over the entry area
      now also asks for a link tooltip/title.

    * Plugin API no longer queries the filename of a plugin if it is internal
      (increases performance because of less SQL queries) (garvinhicking)

    * Onyx RSS parser now uses PEAR::HTTP_Request instead of fopen wrappers
      to work on allow_url_fopen disabled hosts. Plugins like remoterss and
      aggregator can now properly fetch RSS feeds on those hosts.
      (garvinhicking)

    * Make "/archive" view also recognize selected category. Sidebar
      archive and calendar plugins also pay strict attention to which
      category is selected. Helps "semi-multiple" blogs based on categories
      a lot. (garvinhicking)

    * Make media insertion dialog remember settings (via Cookies) and
      insert return of the media database on cursor position.
      (garvinhicking)

    * Admin comment panels shows comments with their content and escaped HTML
      instead of stripping all HTML. Only summary, if longer than 200 characters
      will have stripped HTML because of otherwise invalid markup. (garvinhicking)

    * Updated statistics plugin to track seperate visitor/referrer statistics.
      Patch by Fredrik Sandberg, thanks a lot! (garvinhicking)

    * Make category selector be nicer to Opera. Load the handling functions
      only after the DOM load is completed. Add new "addLoadEvent"
      functionality for future use to stack onload events. (garvinhicking)

    * New Plugin API Hook "frontend_calendar" which allows to hook into
      sidebar calendar creation. Needs to be enabled in the calendar
      plugin configuration and needs a patch to the plugin_calendar.tpl
      file which is done in all bundled themes. (Anthem)

    * Atom 1.0 feed support (garvinhicking)

    * MoveableType importer now also recognizes comments and trackbacks.
      Tested with MT 3.17. (garvinhicking)

    * Make template directory allow to contain subdirectories with more
      templates. This allows you to symbolically link the "additional_themes"
      CVS directory within your templates path, just like you can do
      with the "additional_plugins" directory already (garvinhicking)

    * Allow UTF-8 recoding using mb_* functions (Tadashi Jokagi)

    * Allow to switch charsets ("Native" / "UTF-8"). (garvinhicking)

    * Permissions: The permission "adminImagesViewOthers" now controls
      whether an author is allowed to view images or not. In older Serendipity
      versions, any author could always view any images, but only modify those
      belonging to him. (garvinhicking)

    * Plugin API: Added plugin hooks for category properties, made smarty
      init function accept plugin values. See the plugin "Properties for
      Categories" for example usage. The plugin allows to create sub-blogs
      based on categories (garvinhicking)

    * Categories plugin can be configured to only show specific sub-
      categories and hide other categories when descending the tree
      (garvinhicking)

    * "Edit entries" panel can now delete entries and returns to the
      originating panel. Also it now utilizes Cookies (via JS) to remember
      the last used settings (sortorder, filters) (garvinhicking)

    * Added WordPress-PostgreSQL importer, by Devrim Gunduz

    * RFE #1231423: Allow to change the author of an entry with the
      "entryproperties" plugin. (garvinhicking)

    * Templates can now be handled via Spartacus (garvinhicking)

    * Plugin Manager: Improve Spartacus interface and include plugin
      categories (garvinhicking)

    * Support different WYSIWYG editors via new plugin hooks. TinyMCE
      plugin available. (garvinhicking)

    * Allow language files to define $i18n_filename_from and _to array
      so that each language can individually rewrite URL characters.
      Only the Russian language currently makes use of this.
      (garvinhicking)

    * fixed serendipity_traversePath() -  PHP5 issue with array_merge()
      Thanks to jdhawk for the fix (flotsam)

    * fixed wrong display of "found X entries matching your search" in
      genpage.inc.php (flotsam)

    * Added fix for wrong language in permission groups (were created in the
      language that the browser of the installing user has (flotsam)

    * Added Voodoo Wiki/XML importer, hooks into static page plugin.
      (Tim Putnam)

    * Make comment deletion return to the originating page, allow to
      display trackbacks and normal comments at once (new default).
      Bugs #1226440, #1226439 (garvinhicking)

    * Fix multi-category selector for Konqueror (garvinhicking)

    * Support use of Boolean search mode in MySQL. Is activated when using
      special characters like "()~*+-<>. Syntax see
      http://dev.mysql.com/doc/mysql/en/fulltext-boolean.html.
      (garvinhicking)

    * Apply patch to allow usage of Feedburner RSS feeds, by Anders Clerwall

    * Fixed using "_" instead of "-" in the approve trackback/comments
      URLs. (garvinhicking)

    * Introduce permission groups with customizable permission sets.
      (garvinhicking)

    * Make bblog importer recognize trackbacks. Thanks to Hanno!

    * Spartacus plugin can now properly handle plugins which contain both
      sidebar and event plugins in one directory (garvinhicking)

    * TEMPLATES: Added div.serendipity_section_(comments|trackbacks|commentform)
      containers inside the Default Template's entries.tpl file to be
      able to customize certain containers via CSS.
      Solves RFE #1210889 (garvinhicking)

    * TEMPLATES: Added div.serendipity_search_* wrapping elements to be
      able to style the search result messages specifically. Added new
      Smarty variables $searchresult_* (default/content.tpl).
      Solves RFE #1210676 (garvinhicking)

    * Fix editing a draft article to be properly displayed as draft
      in PostgreSQL setups. Thanks to Penny Leach! (garvinhicking)

    * Localized the string "Reply" which occured inside some templates.
      (s/Reply/{$CONST.REPLY}/) (garvinhicking)

    * Added swedish translation by Torbjrn Hedberg, Added european
      portugues translation by Joao Palhoto Matos, Added hungarian
      translation by Posz Marton

    * New configuration item: Gregorian or Jalali Calendar output.
      Patch by Omid Mottaghi

    * New personal configuration item: "Forbid creating entries" to
      allow authors to be logged in, but not create any entries. Meant
      to be used in conjunction with serendipity_plugin_adduser for
      user self-registration where you want to allow posting comments
      to registered users only. (garvinhicking)

    * Added Custom Permalink URL days, months, years, etc. to the
      Serendipity Configuration ("Paths") panel.
      If you use the external plugin serendipity_plugin_authors or
      serendipity_event_linktoolbar, you need to update those to
      their latest versions to work with the new changes.
      (garvinhicking, tomsommer)

    * Importers can now properly import data if the source database is
      not the same as the target database (garvinhicking)

    * Use $smarty.const. to access constants instead of $CONST within
      Smarty templates; this is replaced using a Smarty prefilter, so
      that within templates you can still use the $CONST shortcut
      (garvinhicking)

    * Added new event hook to the trackback sending facility so that
      plugins like serendipity_event_trackback (additional_plugins)
      can send trackbacks to Blogs without RDF-metadata (garvinhicking)

    * Allow to view and fetch multiple categories. Categories plugin
      can allow viewers to select multiple categories to view.
      (garvinhicking)

    * Added hooks into the image selector admin popup for plugins to
      support additional options. serendipity_event_imageselectorplus
      accesses those hooks already. (garvinhicking)

    * Categories plugin now offers to sort by category name, description
      or creation date. (garvinhicking)

    * Give HTML Nugget the option for a second "description" attribute
      that is used in the Plugin Configuration section, so that HTML
      nuggets with an empty title still display additional information
      to distinct multiple nuggets from another (garvinhicking)

    * New entryproperties plugin option: Hide an entry from the frontpage
      (garvinhicking)

    * Media manager: Allow to upload as many files as you want via
      JavaScript interaction and "add more images" button. (garvinhicking)

    * "Comments" Sidebar plugin can now have a custom title
      (garvinhicking)

Version 0.8.5 (September 29th, 2005)
------------------------------------------------------------------------

    * More Security: When changing the password in your personal preferences,
      you need to insert the old password. Secure backend forms with extra
      token checks to bypass XSRF attacks. Thanks to Nenad Jovanovic for
      contacting me about this issue! (garvinhicking)

    * Fix JS errors in admin comment overview for IE6 (garvinhicking)

    * Fix showing any entry-id related sidebar plugins, when a selected
      entry is not visible (permissions/drafts/...) by unsetting the
      global $serendipity['GET']['id'] in that case. (garvinhicking)

    * Fix "DATA_TRACKBACK_APPROVED" showing of constants when approving
      trackbacks/comments instead of the properly formatted message.
      (Would've required a template change for a "pretty solution", but
       the current fix is a BC-compatible fix by defining constants a bit
       differently) (garvinhicking)

    * Default Admin Stylesheet no longer uses direct height: assignment,
      but padding instead. This should get rid of occasional overlapping
      of menu items. Thanks a lot to Ognyan Kulev for the solution to this!

    * Fix putting sticky entry on the last page in postgreSQL setups.
      Thanks to Nate Johnston for working this out! (garvinhicking)

    * Fix file upload bug which limited upload filesize to 3 million bytes
      (2.86MB) regardless of PHP configuration. Maximum upload filesize
      should now be properly bound by PHP configuration settings.
      (wesley)

    * Fix cosmetic warning message about missing S9Y_PEAR_PATH when
      installing. (garvinhicking)

Version 0.8.4 (August 19th, 2005)
------------------------------------------------------------------------

    * Add HTML information about calendar arrows image size to bypass
      large sizing in Internet Explorer. Thanks to frodeste from the
      Forums!

    * Hide title of an entry in the frontend, if entry is draft and not
      displayed. Fixes Bug #1260667 (garvinhicking)

    * Unbundle Serendipity XML-RPC functions from the bundled distribution.
      You will now need to install the additional plugin "Post via XML-RPC"
      (serendipity_event_xmlrpc) to make entry posts via this interface.
      The ongoing security issues with this interface and the little usage
      of this functionality by the broad public have forced this move.
      After installing this plugin you can use the same URL and nothing
      will change for XML-RPC users. (garvinhicking)

   * Optionally allow using a local PEAR installation. Set
     $serendipity['use_PEAR'] = true
     in your serendipity_config_local.inc.php or serendipity_config.inc.php
     file. The required packages can be found in the
     bundled-libs/.current_version file. (garvinhicking)

   * Append the comment id to the mail that is sent to subscribers of
     an entry, so that they can jump to the submitted comment immediately.
     (garvinhicking)

Version 0.8.3 (August 4th, 2004)
------------------------------------------------------------------------

   * Upgraded bundled libs:
	Cache_Lite 	to 1.5.1
	HTTP_Request 	to 1.2.4
	Net_CheckIP     to 1.1
	Net_Socket      to 1.0.6
	Net_URL         to 1.0.14
	PEAR		to 1.3.5
	Text_Wiki	to 0.25.0
	XML_RPC		to 1.3.3
     Fixing several bugs and vulnerabilities. (nohn)

   * Make categories sidebar plugin show categories' description, not the
     name on mouse over (garvinhicking)

   * Added new config option "blogMail" that specifies the blog's used
     From: E-Mail address. If not given, falls back to not specifying
     From: field and using mailserver default ("wwwrun", "nobody", ...)
     (garvinhicking)

   * Fix possible exploit that sends comments to the blog owner and others
     with arbitrary mailheaders and a link to invalid entries. Thanks to
     Sebastian Raible! (garvinhicking)

   * Allow plugins to contain more than one HTML nuggets which can be
     WYSIWYGized. (garvinhicking)

   * Fix editing a draft article to be properly displayed as draft
     in PostgreSQL setups. Thanks to Penny Leach! (garvinhicking)

   * Fixed possible XSS in comment input validation, thanks to
     Ilia  Alshanetsky

   * Full Korean language support available! Translations done for:
      - main language file
      - all core plugins
      - Kubrick template
     (wesley)

   * TEMPLATES: New core hook "frontend_footer" is introduced and is
     added to index.tpl:
      {serendipity_hookPlugin hook="frontend_footer"}
     (wesley)

   * TEMPLATES: Added plugin hooks "entries_header" and "entries_footer"
     to the files entries_archives.tpl and entries_summary.tpl:
      {serendipity_hookPlugin hook="entries_header"}
      <div class='serendipity_entryFooter' style="text-align: center">
        {serendipity_hookPlugin hook="entries_footer"}
      </div>
     (wesley)

Version 0.8.2 (June 29th, 2005)
------------------------------------------------------------------------

    * fixed remote code execution vulnerability. Thanks to Gulftech
      Research for pointing out that bug and Stefan Esser for helping
      fix it (nohn)

    * Updated Spartacus to most recent version (nohn)

    * fixed serendipity_traversePath() -  PHP5 issue with array_merge()
      Thanks to jdhawk for the fix (flotsam)

    * CSS does no longer emit cache-restricting headers, so that the
      stylesheets can be cached by the browser for followup-requests
      Thanks to Sencer for pointing this out! (garvinhicking)

    * Patch/Bug #1209410 by swiesinger: When using shortcut admin URL,
      use https:// when specified by user

    * Fix deleting categories when having privileges but not being
      administrator (Patch #1205347, many thanks to Penny Leach)

    * Increased level of output message from the Spartacus plugin
      (garvinhicking)

    * Patched XML-RPC functions, thanks to Tim Putnam. This should enable
      XML-RPC services to properly fetch existing articles and edit them.

    * Fix Plugin API call performing too many unneeded SQL queries
      (garvinhicking)

    * Fix missing authorname when previewing entry. Thanks to winkiller,
      aquatic, thomas, wurstprinz and hansi for fixing this!

Version 0.8.1 (May 17th, 2005)
------------------------------------------------------------------------

    * Fix missing PDF thumbnail creation (imagemagick only)
      (garvinhicking)

    * Fix possible arbitrary media file upload for editors
      (garvinhicking, sesser, nohn)

    * Fix possible XSS when using the templatedropdown or shoutbox
      plugins (garvinhicking)

    * Fix pagination of "Entries by Author" (garvinhicking)

    * Fix RSS 1.0 missing top-level namespace (garvinhicking)

    * Deactivated gzip compression by default, as in certain server
      setups it creates problem with double-encoding or missing
      ob_gzhandlers. (garvinhicking)

    * Allow the serendipity_event_trackback additional trackbacks plugin
      to send trackbacks even if your entry did not contain at least one
      link. Also fix not sending trackbacks containing "#" fragments
      (garvinhicking)

    * Do not display Sidebar titles if they are not set for the bundled
      default, kubrick and wp templates (sidebar.tpl) (garvinhicking)

    * Fix error "Warning: ob_start(): output handler 'ob_gzhandler'
      cannot be used after 'URL-Rewriter'" which can occur on installations
      where session.use_trans_sid is activated and Serendipity's gzip
      compression is used. (garvinhicking)

    * Adjusted checking for "convert" binary in installation for
      Windows servers. Thanks to BobRock! (garvinhicking)

    * BBCode plugin: Allow =, ~ and ! URL characters (garvinhicking)

    * Added romanian translation by Alexandru Szasz

    * Some IIS webserver compatibility for $_SERVER variables. This should
      ensure most basic operations. (garvinhicking)

    * RSS feed does no longer initialize a session and thus now causes
      proper cachability for Conditional Get (garvinhicking)

    * Fix issues on Windows installations: %T strftime-Option not known
      when saving a plugin and emitting timestamp (was empty),
      redirecting to a wrong URL for installation with '\' instead of
      '/' path indicators. Thanks to Hendy Irawan! (garvinhicking)

Version 0.8 (April, 15th 2005)
------------------------------------------------------------------------

    * Added icelandic translation by rn Arnarson

    * Fixed a possible SQL injection issue in Tracking methods. Also
      fixed possible XSS exploit in BBCode markup, if enabled for
      comments. Thanks to ADZ Security Team for detecting this. Next
      time please give us more time to respond to your public announced
      exploits. ;) (garvinhicking)

    * Reverted more JavaScript-patches introduced in beta5 to make
      the extended body text visible when using WYSIWYG editor
      (garvinhicking)

    * Fix SQLite bug when fetching authorname in quicksearch. Thanks to
      Sven Oliver Moll!

Version 0.8-beta6 (April 8th, 2005)
------------------------------------------------------------------------

    * Remove unique constraint for url_idx on the referrer suppress table
      and replaced it by a simple index. Fixes fatal errors on postgresql
      (garvinhicking)

    * Fix inserting media manager items: Non-images were not properly
      detected (garvinhicking)

    * Fix broken SQL for inserting comments which showed in SQLite/PGSql
      and got introduced in beta5. (garvinhicking)

    * Reverted JavaScript-patches from nohn introduced in beta5 to make
      IE6 again show the category and extended entry toggle buttons
      (garvinhicking)

Version 0.8-beta5 (April 1st, 2005)
------------------------------------------------------------------------

    * Fix XMLRPC problems for getting existing posts. Thanks a lot to
      TimothyP from the forums! (garvinhicking)

    * Fix directory creation error; the mode 1777 failed on several setups,
      so we use 0777 again (garvinhicking)

    * Fix installer not being able to go above page 2 on special setups
      with register_globals On (garvinhicking)

    * Fixed buggy referrer tracking for MySQL (Bug #1170251)

    * Upgrade Smarty to v2.6.9 (tomsommer)

    * Added 'Cache-Control: no-cache' header to our CSS file; this may
      fix IE bugs where CSS was only loaded after 1-2 reloads.
      (TomSommer)

    * Fixed a XMLRPC problem for metaWeblog_newMediaObject() to properly
      save a binary file. Thanks to marco from the forums! (garvinhicking)

    * Fixed possible SQL-Injection in Pingbacks (nohn; reported by Stefan
      Esser)

    * Kubrick template: Fix comments always printed as 'Anonymous',
      put entry/extended parts not together (garvinhicking)

    * Fix installer: Serendipity does not run with magic_quotes_runtime
      set to on. Emit warning and try to switch off the directive.
      (garvinhicking)

    * Updated chinese language files, thanks to Andrew Huang

Version 0.8-beta3/4 (March 15th, 2005)
------------------------------------------------------------------------

    * Drop SQL index on comment's body. This was not used in our code,
      and caused trouble with large comments on pgsql and MySQL.
      (garvinhicking)

    * Monthly entry summary shows correct date header (garvinhicking)

    * RSS / Syndication plugin now offers to hide E-Mail adresses from
      XML feeds (garvinhicking)

    * After installing a plugin you will be either redirected to
      plugin config or to plugin overview, so that an accidental
      browser refresh does not install the plugin twice
      (garvinhicking)

    * Fixed wrong date format in portuguese and czech languages
      (garvinhicking)

    * Fix buggy wordfiltering of spamblock plugin (garvinhicking)

    * Fixed variable name for all markup plugins. They previously used
      localized versions like 'Extended entry' and now use a proper
      language independent string. The upgrader takes care of replacing
      the variables so that no options will get lost (garvinhicking)

    * Fixed bug with Markup plugins not getting their right settings
      under certain circumstances (only for autologin cookie users)
      (garvinhicking)

    * Correctly detect 500 Internal Server Error when installing
      (garvinhicking)

    * Emitting language headers only if no headers were sent yet.
      This fixes problems with embedded serendipity installations.
      (garvinhicking)

    * Fix postgresql query problem, when using the entryproperties
      plugin and browsing the calendar with category restriction(s).
      Thanks to Larry Rosenman for helping out with this!
      (garvinhicking)

    * Introduce "div.container_X" CSS class for sidebar plugin items.
      X is substituted with the plugin classname, like
      "serendipity_plugin_categories". This class is contained in the
      'default' template and all templates based on the sidebar.tpl
      file. (garvinhicking)

    * Fixed broken category pagination for "Newspaper" template
      (garvinhicking)

    * Bundle Tom Sommer's port of the Kubrick template

    * Fix hardcoded "templates" directory reference inside the admin
      style selector.

    * Updated czech language files, thanks to Josef Klimosz

    * Updated persian language files, thanks to Omid Mottaghi

    * Do not display rotation/resize image manipulation methods for
      hotlinked images (garvinhicking)

    * Do not use "layout.php" in Default template for upgrading users
      who did not delete that file from their directory (because the
      upgrade may not have sufficient write privileges to remove the
      file) (garvinhicking)

    * Make RSS import parse ISO-8601 dates (like
      '2004-11-24T22:43:08-05:00'), as PHPs strtotime() does not parse
      that. (garvinhicking)

Version 0.8-beta2 (March 5th, 2005)
------------------------------------------------------------------------

    * Show "create entry" toolbar for plugins like the Emoticon Chooser
      also when WYSIWYG editor is enabled (garvinhicking)

    * Do not display template engines in the template selector
      (tomsommer)

    * Fix HTML escaping of special characters for comments
      (garvinhicking)

    * Fix wrong username displayed in RSS comment feeds (garvinhicking)

    * Fixed bug that may occur on few plugins executing other plugins,
      like serendipity_event_entrypaging [this is the only bundled or
      internal plugin affected by the issue] (garvinhicking)

Version 0.8-beta1 (March 4th, 2005)
------------------------------------------------------------------------

    * Added Persian language and template for RTL-Languages by Omid
      Mottaghi

    * Fixed Windows path problems when synching with media manager.
      Thanks to Thomas Klinger for helping!
      (garvinhicking)

    * Media files can now be hotlinked to foreign servers and thus not
      using bandwidth from your own server. Media files can now also
      be searched by name. Thanks to Chris Chan for this feature!

    * Added ability to define a real name for each author. This is the
      name seen by readers of the blog. The username is now only used for
      logging into the administration suite (tomsommer)

    * Added ability to toggle the amounts of comments per page within
      a dropdown instead of needing to edit a Serendipity core file.
      (garvinhicking)

    * New configuration directive to tell Serendipity if the baseURL
      shall be autodetected. This can be useful if you use multiple
      domainnames listening on one blog installation. (Note: This auto-
      detection was previously already enabled if using 'embedded mode')
      (garvinhicking)

    * Fixed bug for postgreSQL: Comments for entries within multiple
      categories showed up as many times as the entry was within multiple
      categories. Thanks to rickmans from the forums for detecting this.
      (garvinhicking)

    * Added configuration directive to allow visitor language negotiation
      via browser language. (garvinhicking)

    * Added native importers to migrate entries, comments,
      categories and authors for:
      - geeklog 1.3.11
      - sunlog 0.4.4
      - b2Evolution "Paris"
      - boastMachine 3.0
      - Textpattern 1.0rc1
      - pMachine Pro 2.4
      - bBlog 0.7.4
      - Nucleus 3.15
      - WordPress 1.5 / 1.2
      - phpBB
      (garvinhicking)

    * Remember last state of media library (sort order, files per page,
      directory, sortfield), via JavaScript+Cookies (garvinhicking)

    * The config option 'extCSS' has been removed. It is now re-
      commended to set external stylesheets in the template's index.tpl
      file, or to @import it within the templates style.css file.
      (garvinhicking)

    * Personal Configuration allows to set defaults for creating new
      entries (allow comments, moderate comments, publish/draft)
      (garvinhicking)

    * When deleting a comment with nested comments, move nested ones
      to the parent of the deleted comment (fixes Bug #1079349)
      (garvinhicking)

    * Spamblock plugin allows to moderate/reject comments made via APIs
      like wfw:commentApi or trackbacks, but still allow normal comments
      (garvinhicking)

    * Fixed SQL index key creation on fresh installation (garvinhicking)

    * Upgraded htmlarea WYSIWYG editor to latest version. Entering
      links now properly works, as finally does Copy+Paste from Mozilla!
      (garvinhicking)

    * New pretty URLs "/blog/serendipity.css" and
      "/blog/serendipity_admin.css" as links to the Stylesheets.
      (garvinhicking)

    * Chief users are not allowed to hide plugins installed by other
      users. (garvinhicking)

    * Forbid uploading of active content files (.php, .shtml, ...) as
      user without Administrator privileges (garvinhicking)

    * Allow searching of the blog with pretty URLs, allow pagination
      of searched entries (garvinhicking)

    * Added handling of CONVERT BREAKS-directive in MT-Importer. Do the
      whole importing process in a transaction to ensure either all or
      no entires are imported. (pilif)

    * Added hook for external authentication. First implementation draft
      of LDAP auth added to additional_plugins CVS (garvinhicking)

    * Added an extended property to disable nl2br() for specific
      entries (pilif)

    * Added korean language by Erich Iseli (garvinhicking)

    * Change RSS feed's <guid> element to contain isPermaLink=false.
      Only the link of the <link> element should be used as Permalink.
      This fixes problems with copying links to send a trackback to from
      RSS readers/clients that used the <guid> element as Permalink.
      (garvinhicking)

    * Fixed flaw in the function used to validate path-names.
      Thanks to raperu2000 from the forums! (garvinhicking)

    * Added Finnish language by Mauri Sahlberg (garvinhicking)

    * Added Japanese language by Tadashi Jokagi (garvinhicking)

    * Add ability to see all entries made by a single user (tomsommer)

    * The "edit entry" overview will now highlight entries to be
      published in the future (garvinhicking)

    * Allow authors to easier reset the time for each entry, by clicking
      an icon (tomsommer)

    * Added new plugin, enabled by default, to enforce maximum browser
      compatibility. The only thing which 'serendipity_event_browsercompatibility'
      currently does is to add the transparent PNG Behaviour for IE.
      (garvinhicking)

    * 'Track Exits' plugin will no longer be enabled by default, as
      requested and discussed on the Mailinglist. (garvinhicking)

    * Added Simplified Chinese (GB2312, UTF-8) and Traditional Chinese
      (Big5, UTF-8) languages, thanks to skyroam!

    * Split up the configuration and the installer. Add a diagnostic
      page to the installer. Allow for simple or expert installation
      (tomsommer)

    * Fix problem in Imagemagick detection when checking the apache PATH,
      added /usr/local/bin to possible locations of Imagemagick
      (tomsommer)

    * Spam Protector can now log failed comments to either plaintext-
      file or database. Dedicated to all those trigger-happy logfile-
      statistic-hunters out there... (garvinhicking)

    * When using ImageMagick, create a thumbnail of a PDF for media
      browsing (nohn, garvinhicking)

    * More than one plugin cannow be saved per plugin/ subdirectory,
      event + sidebar plugins can be put together in one directory.
      Names of subdirectores are irrelevant now, but the filenames
      need to match 'serendipity_(event|plugin)_*.php'. (garvinhicking)

    * When entering a comment, the referring URL to the blog is saved
      (garvinhicking)

    * Use mbstring extension where available to correctly utilize PHPs
      string functions for multibyte chars. This is needed for UTF-8
      only languages like Chinese (garvinhicking)

    * Move the page where you change your details out of the
      configuration and into its own menuitem and page (tomsommer)

    * Allow the usage of persistent database connections (tomsommer)

    * New configuration directive to let user choose if entries in the
      future are hidden (default) or displayed. (garvinhicking)

    * Add ability to gzip compress pages (tomsommer)

    * Separate administration CSS layout from the rest of the blog
      (tomsommer)

    * Merge Administration and Author suite into one (tomsommer)

    * Allow $plugin->get_config([var]) to return the default value from
      introspect_config_item() if no value is found (tomsommer)

    * Preview/Saving entries now utilizes iframe techniques to faster
      send visual feedback and properly be able to style the entry
      preview independent from the Admin CSS code. [For older browsers,
      this can be turned of in serendipity_config.inc.php]
      (garvinhicking)

    * Allow sending trackbacks and tracking links of https URLs. Fix
      "Entry's Links" plugin to properly display trackable links.
      (garvinhicking)

    * Spamblock plugin can be configured to hide E-Mail adresses when
      displaying comments. (garvinhicking)

    * FIX: CSS classes in the comment manager was always set to uneven
      (tomsommer)

    * When a document does not exist and Serendipity has no idea how
      to create it, a 404 (not found) is sent instead of a 200 (OK)
      (tadpole9)

    * serendipity_config_local.inc.php can now contain user-defined
      variables, which are not overwritten when changing Configuration.
      (garvinhicking)

    * Improved overall performance of Plugin API, code improvements,
      query optimizing. Added with the entryproperties caching plugin,
      this boosts performance by about 15-30%. You are also adwised
      to use opcode-caches, if available [APC, Zend Cache, Turck, ...]
      (garvinhicking)

    * Entries can be cached by the 'entryproperties' plugins. This
      caching interacts with other plugins: When cacheable plugins are
      added, the cache is updated, as well as when an entry is modified.
      When the plugin is first installed, it creates the cache for the
      latest 15 entries; you can create a cache of all entries using
      the admin interface. (garvinhicking)

    * New CSS classes for distinction of authors within entries/comments:
      .serendipity_entry_(author|comment)_USERNAME, applied to each
      entry container, where USERNAME is replaced with the name of the
      author.
      .serendipity_entry_author_self, applied to the entry container if
      the currently logged in user is the author of an entry
      .serendipity_comment_author_self, applied if the commenting user-
      name matches the owner of the entry.
      (garvinhicking)

    * Rewrote importer to use import modules and class framework
      (tomsommer)

    * New language: Traditional Chinese (Big5). Thanks to Andrew Huang!

    * Recent Entries plugin: New configuration directive to not display
      items already shown on frontpage. Thanks to Sebastian Raible!
      (garvinhicking)

    * Articles per page (default 15) can now be set within Configuration
      (garvinhicking)

    * Plugin API: Event plugins using the 'entry_display' hook to set
      an entries page to not render (via 'clean_page') now need to use
      the new hook 'entries_header' for their output; the 'clean_page'
      variable still needs to be set within the hook 'entry_display'
      though. (garvinhicking)

    * Support for adding timezone offsets in configuration
      (garvinhicking)

    * Serendipity cannow be used with "JustBlogIt" extension. Just use
      this URL:
      http://yourblog/serendipity_admin.php?serendipity[adminModule]=entries&serendipity[adminAction]=new&serendipity[title]=%TITLE%&serendipity[body]=%TEXT%&serendipity[url]=%URL%
      (garvinhicking)

    * Plugin serendipity_event_spamblock: Added SURBL
      (http://www.surbl.org/) Support. Will now reject any comment that
      contains a blacklisted URL, if enabled. (nohn)

    * Do not allow to view extended article when item is set to "publish"
      but timestamp is in the future (garvinhicking)

    * RSS Export orders entries in reverse ID order for easier
      importing (garvinhicking)

    * Cleaned up directory structure, created new subdirectories,
      split up functions file. See docs/CHANGED_FILES for details if
      you have external dependencies on removed files (like custom
      plugins, themes, or special embedded usage) (garvinhicking)

    * "Recent Entries" Plugin can now have userdefined title and only
      show entries of a specific category (+ subcategories).
      (garvinhicking)

    * Media browser now allows to immediately upload a file from the
      entry creation screen and use that file/image easily
      (garvinhicking)

    * exit.php redirection will emit a 301 Moved Permanently header for
      the new location. (garvinhicking)

    * Reworked plugin manager for easier plugin installation (tomsommer)

    * Karma plugin works with enabled entryproperties plugin and can
      be configured to only show Hit-statistics for an entry without
      the voting ability (garvinhicking)

    * Routine for autodetecting links within an entry will now also
      allow images to be used as description. (garvinhicking)

    * Implement plugin install() and uninstall() methods that are called
      on installation and removal of a plugin (tomsommer)

    * Improve overall rewrite path syntax (tomsommer)

    * Allow the display of month, weeks and days in archive sidebar
      (tomsommer)

    * Add ability to display entries based on week (tomsommer)

    * Use rewrite paths in the syndication plugin (tomsommer)

    * Added import tool for Movable Type data files and WordPress
      databases. (tadpole9)

    * Syndication plugin offers to show full feed including extended
      entry (garvinhicking)

    * serendipity_event_entryproperties now supports entry caching to
      pregenerate the full article and display that instead of
      assigning event plugins time and again (garvinhicking)

    * New plugin serendipity_event_entryproperties: You can now define
      any property to an entry and query it. Currently implemented
      are "sticky posts" and "private/public/members-only" entries.
      (garvinhicking)                  [DB Layout change - > 0.8-alpha2]

    * Fixed bug #1031059 - Trackbacks to a link will not be sent more
      than once (garvinhicking)

    * Added "Ping-o-Matic!" to weblogping plugin (garvinhicking)

    * RSS Feed export will not contain rewritten URLs using event
      plugins (garvinhicking)

    * Updated upgrader to use MySQL as fallback when looking for
      appropriate database updates and none was found for the selected
      database type (tomsommer)

    * Added support for Smarty Templating. (garvinhicking, tomsommer)

Version 0.7.1 (December 2nd, 2004)
------------------------------------------------------------------------

    * Fixed captcha string variation on some setups by explicitly seeding
      the randomness (garvinhicking)

    * Fixed cross site scripting vulnerability. Thanks to Stefan Esser
      for reporting this issue. (nohn, garvinhicking)

    * Do not show entries of the future when entering their direct URL
      (garvinhicking)

Version 0.7 (November 8th, 2004)
------------------------------------------------------------------------

    * Fixed concatenation syntax on PostgreSQL, only used by plugin
      "Entrylinks". (garvinhicking)

    * SQLite database name was not saved properly and could get set to
      a wrong value when updating configuration (garvinhicking)

    * Better detection if Apache ErrorDocument can be used
      (garvinhicking)

    * Fixed PostgreSQL index key names (names are now unique, and
      combined indizes on the entries text-columns are no longer set)
      (jtate, garvinhicking)

    * Fixed bug with MySQL 3.x where the category was not properly set
      when editing (garvinhicking)

    * Fixed karma plugin to not track clicks when previewing an entry
      (garvinhicking)

    * Fixed some counting problems in statistics plugin (garvinhicking)

    * Fixed comment counter for deleting non-approved comments
      (tomsommer, griffinn)

Version 0.7-rc1 (October 20th, 2004)
------------------------------------------------------------------------

    * Fixed possible HTTP Response Splitting security issue. Thanks to
      ChaoticEvil for reporting! (jannis, garvinhicking)

Version 0.7-beta4 (October 14th, 2004)
------------------------------------------------------------------------

    * Bug #1016342 - Fixed RSS UTF8 decoding for remote RSS plugin.
      (garvinhicking)

    * Fixed some wrong calculations in the statistics plugin, thanks
      to David DeLauro! (garvinhicking)

    * Fixed entry count and category association bugs using SQLite
      (garvinhicking)

    * Fixed some error notices for installation with postgreSQL regarding
      field index names (garvinhicking)

    * Fixed wrong mod_rewrite rules to properly redirect to pages.
      (garvinhicking)

    * Trackback moderation support in admin panel, make captcha plugin
      only work for comments (garvinhicking)

    * Bug #1037122: BlogPDF plugin will me less strict in file inclusion
      (garvinhicking)

    * Fixed wrong entry id displayed in RSS comment feed. Thanks to
      romulus! (garvinhicking)

    * Fixed file permission checks when removing images inside media
      manager. Thanks to Thomas from the forums! (garvinhicking)

    * RSS Import: New option 'full body only', so that imported RSS
      contents can be forced to only show up in the full body. Fixed
      buggy substr() logic which may cause nasty splitting from entry
      body to extended entry. (garvinhicking)

    * Extend filter in commment moderation to allow the user to select
      which types of comments he wants displayed "All", "Only approved",
      "Need approval" (tomsommer)

    * Upgraded Spam Protector event plugin. Optionally:
      - use Captchas - images with string sequences which a
        user has to enter before his comment is accepted.
      - restrict captchas to entries older than X days
      - auto-moderate comments to entries older than X days
      - auto-moderate comments depending on their amount of
        contained links.
      - reject comments depending on their amount of
        contained links.
      - able to log rejected/moderated comments to a plaintext file
      - fallback method for non-gdlib-enabled hosts
      (garvinhicking)

    * Fixed wrong implode() arguments for error reporting in installer
      (garvinhicking)

    * Fixed windows detection for stripping backslashes out of
      uploaded files. Thanks to Thomas! (garvinhicking)

Version 0.7-beta3 (September 21st, 2004)
------------------------------------------------------------------------

    * Bug #1031444 - Fixed postgreSQL error (for older versions of
      pgsql) when creating categories (garvinhicking)

    * Fixed wrong XHTML entities in remoterss and shoutbox plugin. Thanks
      to Stephan van Beerschoten! (garvinhicking)

    * Fixed bug #1030581: Category sidebar plugin now properly displays
      only categories of selected author (garvinhicking)

    * Fixed XML RPC API to set categories when posting via BlogJet
      or other interfaces (garvinhicking)

    * Fixed invalid standard-SQL 'CURRENT_DATE' to use a real date
      string. Fixes Exit-Tracking with SQLite. (garvinhicking)

    * Fixed footer printing wrong amount of entries when entry was
      assigned to more than one category. Thanks to Kris/weigon for
      helping. (garvinhicking)

    * Use htmlspecialchars/strip_tags for escaping user input on comment
      moderation/viewing. (garvinhicking)

    * Fixed warning message from emoticon plugin when emoticons.inc.php
      does not exist (garvinhicking)

    * Fixed entries pagination for special cases where quickump calendar
      was displayed on the left sidebar (garvinhicking)

Version 0.7-beta2 (September 15th, 2004)
------------------------------------------------------------------------

    * Fixed entries pagination for special cases where quickump calendar
      was displayed on the left sidebar (garvinhicking)

    * Added Italian translations, thanks to Alessandro Pellizzari

    * Fixed missing CSS-class for BBCode Event-Plugin (Jez Hancock)

    * Fixed possible SQL injections. Thanks to aCiDBiTS!

    * Fixed postgreSQL quicksearch, thanks to Mauri Sahlberg!

    * Added Norwegian translations, thanks to Jo Christian

    * Fixed postgreSQL bugs for viewing comment moderation panel
      (garvinhicking)

    * Fixed postgresql bug for fetching the last entry id. Will fix bug
      with comment counter always reporting zero and trouble with
      assigning multiple categories. (garvinhicking)

    * Fixed  "no entry to display" bug when previewing entry
      (garvinhicking)

    * Fix several postgreSQL update errors. Thanks to daFool from the
      forums! (garvinhicking)

Version 0.7-beta1 (September 6th, 2004)
------------------------------------------------------------------------

    * Disable the use of popups by default (tomsommer)

    * BBCode plugin can now pretty print code/php style blocks.
      (Jez Hancock, garvinhicking)

    * Threaded/Linear view of comments can be toggled by the
      visitor. (garvinhicking, tomsommer)

    * Plugin serendipity_event_spamblock: Will reject any double
      comments, if enabled. Stub for enhancing other spam-protections
      (kaptchas, spamassassin-integration, IP-Blacklists, whatever)
      (garvinhicking)

    * When using mod_rewrite, make use of RewriteBase for correct
      subdirectory matching. Thanks to Martin Roell! (garvinhicking)

    * Don't use the title of an entry in the RSS feed <guid></guid> tags
      (tomsommer)

    * Use '-' as separator for IDs and words in our "nice" URLs, so
      Google and others can recognize 'a-nifty-word' as 'a nifty word'.
      Previously this was indexed as one single word.
      (tomsommer, garvinhicking)

    * Pagination now properly works for browsing months and categories.
      Previously paging worked through all entries and not a filter
      by date/category. [Bug #1009715] (garvinhicking)

    * Remote RSS feed can now contain a bullet image, skip blank head-
      lines and toggle the display of the date. Thanks to Joseph Guhlin!
      (garvinhicking)

    * Karma-Plugin disallows clicking from Googlebots following java-
      script links (garvinhicking)

    * Improved link detection routine for sending trackbacks, fixes
      problems with bbcode-transformed URLs (garvinhicking)

    * Fixed missing image display for rescaling images, when file was
      outside of parent upload directory [Bug #1007003] (garvinhicking)

    * Fixed some postgreSQL-issues, thanks to Ilya A. Volynets-Evenbakh!

    * Improved and fixed XHTML-Cleanup Event plugin (garvinhicking)

    * Fixed .htaccess update/creation errors for shared installation
      (garvinhicking)

    * RFE #832040 - Allow for easier handling of Calendar CSS classes
      and remove hardcoded attributes for "today" (tomsommer)

    * Add detection for support of php_value directives in .htaccess
      files (tomsommer)

    * Installation will report an error, if the needed db-extension for
      a specific database-type are not available within PHP
      (garvinhicking)

    * Added bulgariang language, thanks to Bogomil Shopov

    * Fix calendar bug to not show entries available for the 1st day
      of a month if on the first day on the next month an entry was
      posted (garvinhicking)

    * UTF-8 Encoding (for RSS-feeds) will make use of iconv-library, if
      available (garvinhicking)

    * Quicksearch no longer shows results for entries in the future
      (garvinhicking)

    * Removed {dbPrefix}css table, since it was not used for anything
      (tomsommer)                          [DB Layout change - > 0.6.11]

    * Redesign entry list (tomsommer)

    * Display subtitle (usually blogname) in <title> tags (tomsommer)

    * Don't embed comments, trackbacks and comment-form in entry CSS
      class (tomsommer)

    * RFE #996320: Added https-option to login sidebar-plugin
      (garvinhicking)

    * Removed full plaintext URI from trackback section and replaced it
      with a link to that URI (tomsommer, garvinhicking)

    * Several German spelling mistakes corrected (thanks to Timbalu)

    * Show trackbacks on the full-entry page if popups are disabled
      (tomsommer)

    * If popups are disabled, link to the full-page entry, with comments
      and trackbacks as page-anchors (tomsommer)

    * Use DIV tags for trackback layout, just like comments (tomsommer)

    * Make sure that the file/image manager can never remove the upload
      directory, but all files in it (garvinhicking)

    * Changed database key 'mime' to varchar(255) instead of varchar(15)
      (garvinhicking)                       [DB Layout change - > 0.6.9]

    * New CSS classes 'serendipity_msg_notice' and
      'serendipity_msg_important'. (garvinhicking)

    * Added a new theme, "Idea" (tadpole9)

    * Changed 'View extended entry' to 'Continue reading "[title]"'
      (tomsommer)

    * Make the non-WYSIWYG link-insertion and text-formatters work in
      the extended entry textarea (tomsommer)

    * Allow authors to toggle the extended entry textarea in the entry
      composer when using the non-WYSIWYG editor (tomsommer)

    * Better handling of unsubscriptions from entries, only show message
      if the user was indeed unsubscribed (tomsommer)

    * Added ability to moderate comments and trackbacks:
        * Moderate by email
        * Moderate and view comments from within Authoring Suite
        * Mass delete of comments from administration
      (tomsommer)                           [DB Layout change - > 0.6.7]

    * An entries' LastModified timestamp will get updated if a comment
      is made to it, but only if the article is newer than 7 days.
      Make the conditional Get RSS-feed a lot more usable because old
      entries no longer come up again. The limit of days can be set
      within serendipity_config.inc.php. (garvinhicking)

    * Plugins can register the event-hook 'external_plugin' to spawn
      individual content outside of the blog layout (garvinhicking)

    * Fixed link insertion in non-WYSIWYG-mode for Internet Explorer
      (garvinhicking)

    * Fixed retrieving multiple stored categories for Internet Explorer
      when editing existing entry (garvinhicking)

    * Added Bitflux Livesearch Javascript as plugin
      (serendipity_event_livesearch). It will immediately search your
      articlebase and offer an autocomplete dropdown to the quicksearch
      box. Users with the embedded mode need to add the call to the
      .js file manually into their headers. (chregu, garvinhicking)

    * Added new versions of mt-clean, mt-georgiablue, mt-gettysburg,
      mt-plainjane, and mt-rusty and activated them.

    * RSS Import: Allow toggling of draft/publish import, category
      association, more description. (garvinhicking)

    * Allow HTML nugget to be displayable on extended article only, over-
      view only or both (default) (garvinhicking)

    * New plugin 'serendipity_event_blogpdf'. Will export your blog
      as PDF file. Proof-of-concept, no nice formatting, no images yet.
      If you're using 'mod_rewrite' you need to update your .htaccess
      file. (garvinhicking)

    * Fixed bug causing the .htaccess file to never get updated when
      changing rewrite method (tomsommer)

    * Track Exits plugin: Now only uses the link id for link referral.
      Reduces URI length and makes random exit.php calling useless for
      spammers, as no URL is tracked, which the author didn't refer to
      (garvinhicking, isotopp)

    * Actually log the IP of users who submit comments and blogs which
      trackback (tomsommer)

    * Plugin hook 'backend_publish' now executed on entries saved as
      draft first and after that as a public. Fixes weblogpings not sent
      to those entries. (garvinhicking)

    * Added the ability to toggle the display of the Serendipity logo and
      text in the "Powered by" plugin (tomsommer)

    * Fixed problem with booleans not checking the correct radiobuttons in
      the plugin manager (tomsommer)

    * Fixed bug #983242: Missing entity encoding for blogtitle/subtitle
      for RSS feeds, thanks to Christian Wenz!

    * Added dutch and Portuguese language. Thanks to Paul de Bruyne and
      Ranulfo Netto!

    * Multi User: Fixed bug #977695 where simple editors couldn't re-edit
      their entries (garvinhicking)

    * Auto-Trackback from serendipity will now only fetch links smaller
      than 150kb. Use socket connections instead of URL wrappers for
      better control. (garvinhicking)

    * Fixed HTTP requests from installer and htmlvalidator plugin to
      send "\r\n" headers instead of only "\n". IIS-Servers didn't
      respond to the latter (garvinhicking)

    * Updated plugins to show default values in plugin configuration
      immediately. New bag property 'default' introduced to Plugin API,
      backwards compatible. (garvinhicking)

    * Remaining XHTML 1.1 issues fixed:
      - Use <div> instead of <span> for entry's contents.
      - Removed obsolete javascript-function for comments
      - Removed 'align' attribute from <div> tags, replaced with new
        CSS class 'serendipity_align'
      - Show the pingback-link element in the HEAD area. Embedded blogs
        need to do that on their own.
      - New plugin 'serendipity_event_xhtmlcleanup' to correct most
        common XHTML errors (unclosed single tags, missing 'alt'
        attribute, unescaped ampersands)
        (garvinhicking)

    * SQLite support now works. (garvinhicking)

    * Fixed Bug #963248 - Calendar cannot calculate LastRow CSS class if
      there are more than 4 rows (tomsommer)

    * Use the right HTML code for trackback-link detection when using
      markup plugins like Text_Wiki (garvinhicking)

    * Display information when sending/searching for trackbacks
      (garvinhicking)

    * Add support for MySQLi (tadpole9)

    * Alphabetically sort list of plugins (tadpole9)

    * Tweaks to plugin configuration design (tomsommer)

    * Added small comments to serendipity_functions.inc.php on how
      to enable the spellchecker module of the WYSIWYG editor.
      (Suggestion by Randall)

    * Plugin API: Now each sidebar plugin item will get a CSS class
      name added to the default "serendipitySideBarContent" one, which
      is called 'sidebar_wrap_', 'sidebar_title_', 'sidebar_content_'
      and then the original class name of the plugin appended. I.e.:
      'sidebar_wrap_serendipity_html_nugget_plugin'. This allows special
      customization of any individual sidebar item. (garvinhicking)

    * Finally a OPML-based blogroll importing feature added to
      the serendipity_plugin_remoterss plugin (Richard Harrison,
      garvinhicking)

    * Simple OPML 1.0 outline feed (Richard Harrison, garvinhicking)

    * Fixed variable namespace problems in Textile Event plugin
      (Reimer Behrends, garvinhicking)

    * Implemented "visitor/hits" counter for karma-plugin. Hook into
      Statistics plugin for showing additional data of karmavotes
      (garvinhicking)

    * Fixed receiving trackbacks of an intermediate s9y CVS release,
      which submitted wrong variables. Allow logging of incoming
      trackbacks to a file (for developers) (garvinhicking)

    * Post to multiple categories and subcategories implemented.
      (Evan Nemerson, garvinhicking)

    * Threaded comments.
      (Evan Nemerson)                       [DB Layout change - > 0.6.5]

    * Minor https fixes, when https is used as links from commenting
      users or in referring/exit links. Fix for RPC-ping function submitting
      double http://http:// URLs. (garvinhicking)

    * New sidebar plugin "eventlinks". Displays all links to the
      currently viewed article (only on full article view).
      (garvinhicking)

    * Plugin API: The method 'generate_content' of a sidebar plugin
      can now return false to instruct the plugin API to NOT display
      the sidebar. Allows optional sidebar plugins to be only shown
      on specific parameters (garvinhicking)

    * Updated upgrade.sh script for better checks (Jez Hancock)

    * Fixed javascript error when submitting comments with "remember me"
      checkbox. (garvinhicking)

    * XML-RPC methods updated to includer blogger.getRecentPosts and
      blogger.getPost (Till Adam)

    * Upgraded karma-plugin to allow logging (IP/User-Agent) of votes
     (garvinhicking)

    * User manager: New user right 'publish' which controls whether a
      user is allowed to publish entries or only drafts.
      (garvinhicking)                        [DB Layout change -> 0.6.4]

    * Added new plugin "serendipity_event_karma": Allows karma voting
      for each article with a flexible voting period. (garvinhicking)

    * Added event hook-variable for displaying an article footer.
      Enhanced Plugin API to allow passing a second array of data to the
      hook_event() function (backwards-compatible). Added hook for
      embedding CSS data from within a event plugin. (garvinhicking)

    * When sending trackbacks, the excerpt will now be stripped of HTML
      code BEFORE selecting the 255 characters to be sent.
      (garvinhicking)

    * Upgraded image manager to now also accept files (pdf, doc, ...)
      and manage/upload to/sync/browse subdirectories. Improved SQL-
      query for fetching list of images.
      (garvinhicking)                        [DB Layout change -> 0.6.3]

    * PHP pre-4.3.0 compatibility: Define PATH_SEPARATOR if not available
      (garvinhicking)

    * Upgraded PEAR::Text_Wiki and serendipity_event_textwiki plugin.
      Configuration options for wiki rules, options to use wiki/freelinks.
      (Tobias Schlitt)

    * Made RSS-feed compatible to sites running with UTF8-charset.
      (garvinhicking)

    * Fixed wrong proportions when resizing small images (tomsommer)

    * Fixed bug #940239 - Wrong message printed when deleting a category
      without any entries (tomsommer)

    * Bugfix for serendipity_plugin_remoterss: Wrong caching.
      (Richard Thomas Harrison)

    * Added new CSS class .serendipity_comments for the comments block
      on full article view (garvinhicking)

    * Added new CSS class .serendipity_admin_filters for the redesigned
      editing entries interface (tomsommer, garvinhicking)

    * Plugin API: Introduced function 'is_event_plugin' for easier
      integration (Jonathan Arkell)

    * New event hook 'entry_display' inside of serendipity_printEntries().
      Can be used to force entries not being shown by setting the
      $eventData['clean_page'] variable to 'true'. (Jonathan Arkell)

    * Don't show "expand"/"toggle all" buttons if there is only one section
      availiable (tomsommer)

    * Redesigned admin interface for editing entries: Adjust items per
      page, sort order, filter mode, combined EDIT+DELETE interface into
      one. Introduced new css classes "serendipity_admin_list_item_even"
      and "serendipity_admin_list_item_uneven" for displaying entries.
      Can now search for entries in admin panel, can edit entries with
      empty titles. (garvinhicking)

    * Fixed image comment manager's "center" alignment mode and use
      image width/height from the image manager to format the <img>-Tag,
      with regards to Lewe.
      (garvinhicking)

    * Plugin 'serendipity_event_weblogping' now takes manually defined
      pinging service as parameter. (garvinhicking)

    * Modified plugin 'serendipity_event_trackexits': New config
      directive to deflect any links from commenting users using a
      HTTP redirect. This destroys common search engine ranking and
      will not benefit comment spammers. Notice that it also disables
      the common linking to non-spammer authors, so use with caution.
      (garvinhicking)

    * New plugin 'serendipity_plugin_remoterss' - Can display a foreign
      remote feed. Results are cached for a custom period of time.
      Contributed by Udo Gerhards. (garvinhicking)

    * Fixed Bug #941922 - strftime %e does not work on windows platform
      (tomsommer)

    * Fix template chooser plugin to reflect new location of template
      variable (tadpole9)

    * Image upload now strips all characters not suggested for filename
      use (garvinhicking)

    * Categories can now have a fixed image which is embedded for
      every article. Can be styled via CSS (.serendipity_entryIcon).
      Integrated with s9y image manager.
      (Evan Nemerson, garvinhicking)         [DB Layout change -> 0.6.2]

    * Published entries from the future will only be displayed on the
      frontend when not in the future. They will get automagically
      displayed as soon as the publish time is effectively reached.
      #RFE 939867 (garvinhicking)

    * Exit/Referrer plugin can now limit the number of elements
      (garvinhicking)

    * Added possibility to embed a comment to an image when inserting
      it via the s9y image manager (garvinhicking)

    * Added czech language (ISO-8859-2 and Win-1250), translated by
      Josef Klimosz.

    * Added french language, translated by Renaud Lavigne.

    * Fixed some issues on windows servers. Patch by Richard Thomas
      Harrison

    * Improvements for multi-user interface:
       - Configuration is stored per-user (language, WYSIWYG-preference,
         and possibly others)
       - passwords/usernames/E-Mail adresses can be changed
       - introduction of userlevels (admin, chief, editor)
       - public/private categories
       - plugins are stored per-user. Admin-created plugins cannot be
         removed by chiefs/users, protected plugins (HTML nuggets) can
         only be configured by the owner or admin users
       - manage/create users
       - entries are stored per-user and can only be changed by the
         author or chief/admin users. Comments can only be toggled on/
         off and removed by the author or chief/admin users.
       - public/private images
       (garvinhicking)                       [DB Layout change -> 0.6.1]

    * Configuration is now language-dependant. (garvinhicking)

Version 0.6-pl3 (June 20th, 2004)
------------------------------------------------------------------------

    * WYSIWYG-Editor: Links were prefixed with '/' wrongly (IE only).
      Now all entered links will be put to an absolute URL consistently.
      Fix always inserting extended body with empty '<br />'
      (garvinhicking)

    * Fix bug during installation, which can cause an endless loop
      of connections (tomsommer)

    * Removed german blogbot pinging service, it was shut down (nohn)

    * Allow pinging of blogbot.dk (tomsommer)

Version 0.6-pl2 (May 24th, 2004)
------------------------------------------------------------------------

    * Fixed security vulnerability on servers with Register_Globals On.
      (garvinhicking, gschlossnagle, tomsommer)

Version 0.6-pl1 (May 15th, 2004)
------------------------------------------------------------------------

    * Fixed trackbacks not associated to the right entry id (garvinhicking)

    * Fixed typo in Creative Common Plugin (Jonathan Arkell)

Version 0.6 (May 12th, 2004)
------------------------------------------------------------------------

    [changes since 0.6-rc2]
    * Creative Commons plugin bugfix (wrong 'non-commercial' case)
      (garvinhicking)

    * Fixed wrong doctype header (garvinhicking)

    * Fix %e date issue on windows systems. (garvinhicking, tomsommer)

    * Fix serendipity_makefilename() to replace some more foreign
      characters (garvinhicking)

    * Shoutbox plugin bugfix (errors using '%' in shouts) (garvinhicking)

    * Error with non-absolute image paths in RSS feed (garvinhicking)

    * Fixed installer problems timeouting (garvinhicking)

    * Removed possible error message about session_start for categories
      admin page (garvinhicking)

    * Fixed postgresql limit error when browsing pages (garvinhicking)

    [changes before 0.6-rc2]
    * Image upload now strips all characters not suggested for filename
      use (garvinhicking)

    * Language Charset Header are now used throughout s9y which make it
      completely foreign-language compatible (garvinhicking)

    * German translation fix (garvinhicking)

    * Upgrader kills the current session for possible changes inside
      session data on upgrade (garvinhicking)

    * Fixed wrong comparison operator - bug reported by tom, where nl2br
      plugin has "reversed" logic. (garvinhicking)

    * Fixed textile plugin not enabled by default after adding it as a
      plugin (garvinhicking)

    * Comments plugin now correctly wordwraps (garvinhicking)

    * Fixed wrong HTML links for WYSIWYG-editor in Internet Explorer
      (garvinhicking)

    * Fixed htmlentites acceptance for foreign language entry titles
      (garvinhicking)

    * Relaxed dependency on WIKI plugin, if the inclusion fails.
      (garvinhicking)

    * PostgreSQL SQL update files (jtate)

    * Better detection of serendipityPath variable (garvinhicking)

    * Adjustable WYSIWYG-language for foreign languages (garvinhicking)

    * Fixed special characters for WYSIWYG-htmlarea.css file
      (garvinhicking)

    * Fixed WYSIWYG-editing error for HTML Nugget plugin (garvinhicking)

    * newline fixes inside the files (cosmetic issues) (isotopp)

    * Fixed losing commenting user details when previewing a comment
     (garvinhicking)

    * Added plugin for usage of CreativeCommons (creativecommons.org)
      license for the blog's contents (Evan Nemerson)

    * Templates with an "inactive.txt" or no "info.txt" inside their
      directory are not selectable for s9y. Usable for "work in progress"
      templates. (garvinhicking)

    * Fixed $su link for users with no URL rewriting (garvinhicking)

    * Fixed invalid XML for RDF trackback:ping (garvinhicking)

    * Added plugin 'serendipity_event_statistics'. Hooks into the
      admin entry-panel. (garvinhicking)

    * Do some "common XHTML-mistakes" fixing for output of RSS feeds
      (jalcorn)

    * Updated WYSIWYG-Editor (htmlarea) to latest version. Integrated
      s9y image manager in htmlarea window. Template file 'htmlarea.css'
      can be used to adjust the editor's look to your template.
      (garvinhicking)

    * Templates: New CSS classes for better customization
      - 'serendipity_entry_body_folded' for the entry body on the
         weblog index page
      - 'serendipity_entry_body_unfolded' for the entry body on
         article page
      - 'serendipity_entry_extended' for the extended body on article
         page
      (garvinhicking)

    * Image upload: Can now specify alternate file name. Renamed
      input field to not cause confusion with COOKIE-variable
      (garvinhicking, isotopp)

    * Image manager popup-window now resizable and with scrollbars
      (garvinhicking)

    * Serendipity can now be used in shared environments and act as a
      library for VirtualHost'ed Blogs. See README. (garvinhicking)

    * Fixed installer on hosts with non-standard (80) HTTP ports
      (garvinhicking)

    * Relaxed umask/chmod file and directory creation
      (garvinhicking)

    * Abstract archives/URL locations and regex-patterns in a central
      place for easier maintenance (zem)

    * Optimized db indizes on 'entries' (zem)

    * Added shoutbox plugin (Matthias Lange, garvinhicking)

    * Renamed "0.5.1" to "0.6" because of changes. Updated upgrade-
      script (garvinhicking)

    * Added home-link in templates for the header/subheader
      (garvinhicking)

    * Bugfix: With mod_rewrite redirection parameters to browse pages/
      calendar was not working in non-embedded blogs
      (garvinhicking)

    * Added many new templates (several MoveableType imitations,
      moz-modern) (sebastianbergmann, tomsommer, garvinhicking)

    * Added backwards-compatible CSS ids to admin panel for better CSS
      customization (garvinhicking)

    * Moved smilies/xml buttons to template directory (img/) to be
      customized per-template (garvinhicking)

    * Added plugin to switch themes on the frontend (Evan Nemerson,
      garvinhicking)

    * Allow (multiple) dependencies for plugin API to allow pairing of
      event/ sidebar plugins (garvinhicking)

    * Added an upgrade-script to allow for easier upgrade of an existing
      s9y installation (tomsommer)

    * Redesigned the plugin manager (tomsommer)

    * Added RFE #827945 - Allow for custom selection of calendar
      beginning on week (tomsommer)

    * Markup can be applied individually from a list of available
      transformations: BBCode, Wiki, Textile, s9y markup, Emoticons,
      nl2br. Multiple transformations are possible. (Colin Viebrock,
      garvinhicking)

    * Allow for each language to have its own charset (tomsommer)

    * Now able to preview comments. (garvinhicking)

    * Fixed bug that removed admin-cookie when you didn't check the
      "remember comment" box on submitting comments to your own blog
      (garvinhicking)

    * Conditional GET logic for RSS feeds using HTTP caching methods.
      See README for instructions, needs database schema update
      [db_update-0.5-0.5.1.sql] (garvinhicking)

    * Small XHTML-compliance fixes. (garvinhicking)

    * Image manager: Allow sorting by date/file attributes, changing
      sort order and choosing items displayed per page (garvinhicking)

    * Fixed wrong link to entry when not using any rewrite rule
      (tomsommer & AlfaTeK)

    * Changed type of DB password to 'protected' to avoid it being
      displayed as plaintext (tomsommer)

    * Added danish language file (tomsommer & Jeppe Lund)

    * Added notice when using a wrong username or password to gain
      access to admin/author suites (tomsommer)

    * Added date & time translation using strftime() and setlocale()
      (tomsommer)

    * HTML Validator event plugin. Can be used to validate your entry
      upon preview (garvinhicking)

    * Create example events: mailer, weblogping, contentrewrite,
      eventwrapper (garvinhicking)

    * Created event plugin API to hook on certain serendipity actions
      (garvinhicking)

    * Redesigned image manager. (tomsommer)

    * Added image syncronization with database. IMPORTANT: Click on
      "rebuild thumbs" to re-import your file-based images! (tomsommer)

    * Now able to use CommentAPI to post entries to an RSS/Atom feed,
      like from RSS Bandit (garvinhicking)

    * Renamed "sebastian's weblog" theme to "blue" (sebastianbergmann)

(Older NEWS see file NEWS_OLD)