-
Notifications
You must be signed in to change notification settings - Fork 43
/
ChangeLog
10832 lines (7912 loc) · 350 KB
/
ChangeLog
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
2012-08-31 15:45 mdethmers
* public_html/lists/admin/connect.php: put all in one line to allow
easier removal on release
2012-08-31 15:24 mdethmers
* public_html/lists/admin/setpermissions.php: ignore permissions
for superusers
2012-08-26 18:05 mdethmers
* public_html/lists/admin/initialise.php: on initialisation add the
admin as a subscriber as well
2012-08-26 18:02 mdethmers
* public_html/lists/admin/index.php: check for table, before
calling, to avoid error on empty db
2012-08-26 18:01 mdethmers
* public_html/lists/admin/init.php: default ui to lite, if it's
there
2012-08-26 16:31 mdethmers
* public_html/lists/admin/sendemaillib.php: #16671 - do not remove
"unused" placeholders.
2012-08-24 21:44 mdethmers
* public_html/lists/admin/locale/ar/phplist.po,
public_html/lists/admin/locale/da/phplist.po,
public_html/lists/admin/locale/de/phplist.po,
public_html/lists/admin/locale/el,
public_html/lists/admin/locale/el/.translation_index,
public_html/lists/admin/locale/el/.translation_index/xapian,
public_html/lists/admin/locale/el/.translation_index/xapian/flintlock,
public_html/lists/admin/locale/el/.translation_index/xapian/iamchert,
public_html/lists/admin/locale/el/.translation_index/xapian/position.DB,
public_html/lists/admin/locale/el/.translation_index/xapian/position.baseA,
public_html/lists/admin/locale/el/.translation_index/xapian/position.baseB,
public_html/lists/admin/locale/el/.translation_index/xapian/postlist.DB,
public_html/lists/admin/locale/el/.translation_index/xapian/postlist.baseA,
public_html/lists/admin/locale/el/.translation_index/xapian/postlist.baseB,
public_html/lists/admin/locale/el/.translation_index/xapian/record.DB,
public_html/lists/admin/locale/el/.translation_index/xapian/record.baseA,
public_html/lists/admin/locale/el/.translation_index/xapian/record.baseB,
public_html/lists/admin/locale/el/.translation_index/xapian/termlist.DB,
public_html/lists/admin/locale/el/.translation_index/xapian/termlist.baseA,
public_html/lists/admin/locale/el/.translation_index/xapian/termlist.baseB,
public_html/lists/admin/locale/el/phplist.po,
public_html/lists/admin/locale/el/phplist.po.pending,
public_html/lists/admin/locale/en/phplist.po,
public_html/lists/admin/locale/es/phplist.po,
public_html/lists/admin/locale/es_AR/phplist.po,
public_html/lists/admin/locale/fa/phplist.po,
public_html/lists/admin/locale/fr/phplist.po,
public_html/lists/admin/locale/hu/phplist.po,
public_html/lists/admin/locale/it/phplist.po,
public_html/lists/admin/locale/ja/phplist.po,
public_html/lists/admin/locale/nl/phplist.po,
public_html/lists/admin/locale/nl_BE/phplist.po,
public_html/lists/admin/locale/pl/phplist.po,
public_html/lists/admin/locale/pt_BR/phplist.po,
public_html/lists/admin/locale/ru/phplist.po,
public_html/lists/admin/locale/sl/phplist.po,
public_html/lists/admin/locale/sv/phplist.po,
public_html/lists/admin/locale/vi/phplist.po,
public_html/lists/admin/locale/zh_CN/phplist.po,
public_html/lists/admin/locale/zh_TW/phplist.po: commit
translation updates from Pootle
2012-08-24 18:48 mdethmers
* public_html/lists/admin/admin.php: init var
2012-08-24 18:44 mdethmers
* public_html/lists/admin/locale/templates/phplist.pot: language
template update
2012-08-24 18:37 mdethmers
* public_html/lists/admin/commonlib/pages/user.php: change some
terminology
2012-08-24 18:09 mdethmers
* public_html/lists/admin/index.php: suppress queue notice on
upgrade page
2012-08-24 18:07 mdethmers
* VERSION, public_html/lists/admin/structure.php,
public_html/lists/admin/upgrade.php: updates on upgrade and DB
structure
2012-08-24 18:06 mdethmers
* public_html/lists/admin/auth/phplist_auth.inc: avoid notice on
not-upgraded DB
2012-08-24 18:06 mdethmers
* public_html/lists/admin/connect.php: use our own session name
2012-08-24 18:01 mdethmers
* public_html/lists/admin/mysql.inc: ignore errors on create table
2012-08-24 13:11 mdethmers
* public_html/lists/admin/auth/phplist_auth.inc: avoid the lack of
the privileges column to lock the admin out
2012-08-24 13:10 mdethmers
* public_html/lists/admin/mysql.inc: pass on ignore
2012-06-19 15:39 mdethmers
* public_html/lists/admin/commonlib/pages/users.php: #16645 -
remove tables from users page
2012-06-19 11:48 mdethmers
* public_html/lists/admin/commonlib/pages/attributes.php: #16644 -
remove table markup from attributes page
2012-06-14 14:31 mdethmers
* public_html/lists/admin/usercheck.php: add verification
2012-06-14 14:28 mdethmers
* public_html/lists/admin/structure.php: remove some tables
2012-06-14 14:05 mdethmers
* public_html/lists/admin/bouncerule.php: sanitise var
2012-06-14 14:04 mdethmers
* public_html/lists/admin/user.php: update language texts to not
include html
2012-06-14 14:02 mdethmers
* scripts/short2long.sh: update short2long
2012-06-14 14:01 mdethmers
* public_html/lists/admin/init.php: set installation name, if not
set, and first stab at using Request2, but unfinished
2012-06-14 14:00 mdethmers
* public_html/lists/admin/upgrade.php: create i18n tables
2012-06-14 13:57 mdethmers
* public_html/lists/admin/languages.php: take DB translation over
gettext, as the DB is updated from the translation site, and
therefore more recent
2012-06-12 18:19 mdethmers
* public_html/lists/admin/lib.php: first stab at making
HTTP_Request2 work, but not working yet, so disabled
2012-06-12 18:02 mdethmers
* public_html/lists/admin/template.php: update long php tag
2012-06-12 15:36 mdethmers
* public_html/lists/admin/members.php: small upadte
2012-06-12 15:34 mdethmers
* public_html/lists/admin/about.php: add some more
2012-06-12 11:27 mdethmers
* public_html/lists/admin/locale/es_AR,
public_html/lists/admin/locale/es_AR/phplist.po: copied spanish
to argentinian
2012-06-11 15:06 mdethmers
* public_html/lists/admin/importadmin.php: by default check all
2012-06-11 14:52 mdethmers
* public_html/lists/admin/about.php: add some more important people
2012-06-11 14:37 mdethmers
* public_html/lists/admin/locale/fi,
public_html/lists/admin/locale/fi/phplist.po,
public_html/lists/admin/locale/sl,
public_html/lists/admin/locale/sl/phplist.po: add Slovenian and
Finnish
2012-06-11 14:36 mdethmers
* public_html/lists/admin/locale/templates/phplist.pot: language
string updates
2012-06-11 14:05 mdethmers
* public_html/lists/admin/editlist.php: remove notice
2012-06-05 20:00 mdethmers
* public_html/lists/admin/plugins/defaultplugin/helloworld.php:
secure input
2012-06-05 19:36 mdethmers
* public_html/lists/admin/init.php,
public_html/lists/admin/pluginlib.php: allow actively disabling
plugins
2012-06-05 19:35 mdethmers
* public_html/lists/admin/messages.php: name the tabs, so they can
be remembered correctly
2012-06-05 19:34 mdethmers
* public_html/lists/admin/list.php: remember uncategorised tab
correctly
2012-06-05 19:33 mdethmers
* public_html/lists/admin/commonlib/lib/interfacelib.php: allow
remembering the active tabs even when translated
2012-06-05 17:09 mdethmers
* public_html/lists/admin/editlist.php: add class listorder
2012-06-05 14:02 mdethmers
* public_html/lists/admin/connect.php: add space
2012-06-05 14:01 mdethmers
* public_html/lists/admin/tests.php: add accesscheck
2012-06-05 14:00 mdethmers
* public_html/lists/admin/importsimple.php: remove button class for
text
2012-06-05 13:53 mdethmers
* public_html/lists/admin/index.php: make php dependency a bit
lower
2012-06-02 19:17 mdethmers
* public_html/lists/admin/languages.php: update the way plugin
titles are displayed
2012-06-02 17:51 mdethmers
* public_html/lists/admin/connect.php: use pagetitles for context
menu, allow all pages that haven't been disallowed
2012-06-01 18:29 mdethmers
* public_html/lists/admin/connect.php: reorganise page
categorisation a little
2012-06-01 18:27 mdethmers
* scripts/mkimp.pl: generate test file for admin imports
2012-06-01 18:26 mdethmers
* public_html/lists/admin/importadmin.php: update admin import to
use new permission system
2012-06-01 18:26 mdethmers
* public_html/lists/admin/upgrade.php: add DB changes to the
upgrade page
2012-06-01 18:25 mdethmers
* public_html/lists/admin/list.php: remove on-the-fly db fix, to
put it in upgrade
2012-06-01 18:23 mdethmers
* public_html/lists/admin/adminattributes.php: disallow checkbox
attribute for admins
2012-06-01 18:21 mdethmers
* public_html/lists/admin/accesscheck.php: non-superusers can only
see owner views of pages.
2012-06-01 18:19 mdethmers
* public_html/lists/admin/init.php: default to encrypting admin
passwords
2012-06-01 18:18 mdethmers
* public_html/lists/admin/admins.php: make button
2012-06-01 18:13 mdethmers
* public_html/lists/admin/admin.php: update admin permission system
to use four categories only
2012-06-01 18:12 mdethmers
* public_html/lists/admin/auth/phplist_auth.inc: load privileges in
session on login
2012-06-01 18:04 mdethmers
* public_html/lists/admin/index.php,
public_html/lists/admin/setpermissions.php: include file for
calculating admin permissions
2012-06-01 17:59 mdethmers
* public_html/lists/admin/structure.php: add privileges column to
admin table
2012-05-31 13:12 mdethmers
* bin/phplist: update commandline example script
2012-05-31 12:12 mdethmers
* public_html/lists/admin/languages.php: fix parse error on last
commit
2012-05-31 11:59 mdethmers
* public_html/lists/admin/defaultplugin.php,
public_html/lists/admin/languages.php: #15458 - apply patches for
plugin language functionality
2012-05-31 11:20 mdethmers
* TODO, public_html/lists/admin/actions/processqueue.php,
public_html/lists/admin/commonlib/lib/userlib.php,
public_html/lists/admin/connect.php,
public_html/lists/admin/index.php,
public_html/lists/admin/lib.php: remove any safe_mode related
stuff
2012-05-31 11:18 mdethmers
* public_html/lists/admin/configure.php: point out on configure
that it's not necessary to save each item individually
2012-05-31 00:25 mdethmers
* public_html/lists/admin/phpmailer: remove old unused phpmailer
2012-05-31 00:17 mdethmers
* public_html/lists/admin/mysql.inc: #15554 - removed unused
function using obsolete mysql_db_query
2012-05-31 00:10 mdethmers
* public_html/lists/admin/commonlib/pages/attributes.php,
public_html/lists/admin/connect.php,
public_html/lists/admin/defaultconfig.inc,
public_html/lists/admin/lib.php: #15554 remove use of deprecated
php function split
2012-05-30 23:59 mdethmers
* ., public_html/lists/admin/commonlib: move commonlib to it's
actual place
2012-05-30 23:43 mdethmers
* public_html/lists/admin/checki18n.php,
public_html/lists/admin/class.image.inc,
public_html/lists/admin/connect.php,
public_html/lists/admin/defaultconfig.inc,
public_html/lists/admin/dlusers.php,
public_html/lists/admin/fckphplist.php,
public_html/lists/admin/import1.php,
public_html/lists/admin/import3.php,
public_html/lists/admin/importadmin.php,
public_html/lists/admin/index.php,
public_html/lists/admin/lib.php,
public_html/lists/admin/list.php,
public_html/lists/admin/reconcileusers.php,
public_html/lists/admin/rsslib.php,
public_html/lists/admin/sendemaillib.php,
public_html/lists/admin/upgrade.php,
public_html/lists/admin/viewrss.php: #15554 remove any remaining
use of deprecated php ereg function
2012-05-30 20:55 mdethmers
* public_html/lists/admin/languages.php: 15654 - optimise language
includes, by only doing it once per page
2012-05-30 19:02 mdethmers
* public_html/lists/admin/bounce.php: do a var check
2012-05-30 17:23 mdethmers
* public_html/lists/admin/lib.php,
public_html/lists/admin/send_core.php: #15545 - make sure iconv
is available before using it
2012-05-28 14:21 mdethmers
* public_html/lists/admin/about.php: fix tag
2012-05-25 01:48 mdethmers
* public_html/lists/admin/tests/parseplaceholders.php: add test for
parsing placeholders
2012-05-25 01:47 mdethmers
* public_html/lists/admin/sendemaillib.php: #11585 update
placeholder parsing to handle international characters
2012-05-25 01:45 mdethmers
* public_html/lists/admin/connect.php: add central function to list
placeholder and clean an attribute name so that parsePlaceHolders
won't choke on them
2012-05-24 11:12 mdethmers
* public_html/lists/admin/css/app.css: css change
2012-05-23 23:38 mdethmers
* public_html/lists/admin/lib.php: #15298 - handle utf in user
values for remote URL fetching
2012-05-23 19:58 mdethmers
* public_html/lists/admin/actions/processqueue.php: sleep a little
to avoid continuously reloading if there's nothing to send due to
batch limits being reached
2012-05-23 19:57 mdethmers
* public_html/lists/admin/mclicks.php: hide sent column
2012-05-23 13:43 mdethmers
* public_html/lists/admin/spageedit.php: #15425 - only allow public
lists to be added to subscribe pages
2012-05-23 12:45 mdethmers
* public_html/lists/admin/js/phplistapp.js: #15574 - require 8
chars
2012-05-23 12:28 mdethmers
* public_html/lists/admin/sidebar.php: remove obsolete file
2012-05-23 12:12 mdethmers
* public_html/lists/admin/editlist.php: #15371 - fix permission
2012-05-23 11:59 mdethmers
* public_html/lists/admin/about.php: #15629 - fix about plugins
2012-05-23 11:24 mdethmers
* public_html/lists/admin/actions/processqueue.php: #8244 - use the
disabled flag, similar to !confirmed
2012-05-23 04:11 mdethmers
* public_html/lists/admin/subscribelib2.php: #14599 add more info
on spam blocks
2012-05-23 03:00 mdethmers
* public_html/lists/admin/structure.php: ##10609
2012-05-23 02:31 mdethmers
* public_html/lists/admin/tests/test_is_email.php: add email with '
for testing
2012-05-23 01:18 mdethmers
* public_html/lists/admin/defaultconfig.inc: term change
2012-05-23 00:59 mdethmers
* public_html/lists/admin/lib.php: #15671 fix parseDate function
2012-05-23 00:52 mdethmers
* public_html/lists/admin/date.php: add class around date for
better styling
2012-05-22 22:01 mdethmers
* public_html/lists/admin/connect.php,
public_html/lists/admin/init.php,
public_html/lists/admin/processbounces.php,
public_html/lists/admin/sendemaillib.php,
public_html/lists/config/config.php: #16611 - allow different
scheme for front and backend, new config PUBLIC_PROTOCOL
2012-05-22 21:42 mdethmers
* public_html/lists/admin/send_core.php: #16615 - show a warning
when placing a message in the queue that has a send until in the
past
2012-05-22 21:41 mdethmers
* public_html/lists/admin/actions/processqueue.php: only show time
in verbose mode
2012-05-22 19:18 mdethmers
* public_html/lists/admin/connect.php: add title tag
2012-05-22 19:15 mdethmers
* public_html/lists/admin/home.php,
public_html/lists/admin/upgrade.php: add triggers in upgrade and
home to fetch the list of TLDs
2012-05-22 19:14 mdethmers
* public_html/lists/admin/init.php: add settings for authoritative
list of TLDs
2012-05-22 19:13 mdethmers
* public_html/lists/admin/lib.php: add function to fetch list of
TLDs
2012-05-22 19:12 mdethmers
* public_html/lists/admin/defaulttest.php,
public_html/lists/admin/tests.php,
public_html/lists/admin/tests/sendpage.php,
public_html/lists/admin/tests/test_is_email.php: update tests
2012-05-22 15:01 mdethmers
* public_html/lists/admin/actions/processqueue.php: #11336 - avoid
division by 0
2012-05-22 14:47 mdethmers
* public_html/lists/admin/js/phplistapp.js: refresh the export
page, to get a new security token
2012-05-22 14:46 mdethmers
* public_html/lists/admin/export.php: #15583 - allow export
regardless of dates (ie all dates)
2012-05-22 14:44 mdethmers
* public_html/lists/admin/class.phplistmailer.php: clean up
2012-05-22 13:04 mdethmers
* public_html/lists/config/config.php: add example of secure pop
fetching
2012-05-22 12:47 mdethmers
* public_html/lists/admin/actions/processqueue.php,
public_html/lists/admin/sendemaillib.php: #15633 - fail sending
when fetching the remote URL fails, and show an error
2012-05-22 12:45 mdethmers
* public_html/lists/admin/actions/msgstatus.php: don't show limit
reached when batch size is 0
2012-05-21 19:19 mdethmers
* public_html/lists/admin/init.php,
public_html/lists/config/config.php: allow a setting for the
cut-off from listing to requiring searching subscribers
2012-05-21 16:51 mdethmers
* public_html/lists/admin/class.phplistmailer.php: mark smtpauth
2012-05-21 12:27 mdethmers
* public_html/lists/admin/locale/templates/phplist.pot: template
update
2012-05-20 17:58 mdethmers
* public_html/lists/admin/send.php: move test panel inside the
form, so that it actually works, duh
2012-05-18 17:43 mdethmers
* public_html/lists/admin/class.phplistmailer.php,
public_html/lists/admin/locale/templates/phplist.pot,
public_html/lists/admin/pluginlib.php, scripts/mkimp.pl: comment
upadtes
2012-05-18 17:42 mdethmers
* public_html/lists/admin/actions/processqueue.php: keeps counters
per message in the queue
2012-05-18 16:55 mdethmers
* public_html/lists/admin/actions/storemessage.php: don't add
protocol when "saving" the example URL
2012-05-18 16:30 mdethmers
* public_html/lists/admin/js/phplistapp.js,
public_html/lists/admin/js/phplistapp.min.js: remove example url
2012-05-18 16:29 mdethmers
* public_html/lists/admin/send.php,
public_html/lists/admin/send_core.php: move test panel below
2012-05-18 14:46 mdethmers
* public_html/lists/admin/css/app.css: remove explicit positioning
of send test div
2012-05-18 14:46 mdethmers
* public_html/lists/admin/lib.php: fix invalid method call
2012-05-18 14:44 mdethmers
* public_html/lists/admin/admin.php: update admin password reset
2012-05-18 14:38 mdethmers
* public_html/lists/admin/connect.php: don't explicity call
connect, as it will connect on the first query
2012-05-18 14:36 mdethmers
* public_html/lists/admin/index.php: show link to view queue, as
well as process
2012-05-18 14:32 mdethmers
* public_html/lists/admin/defaultplugin.php,
public_html/lists/admin/mysql.inc: call plugins on DB errors, so
they can handle it
2012-05-14 18:52 mdethmers
* public_html/lists/admin/actions/msgstatus.php: when plugins
handle status leave it at that.
2012-05-09 18:54 mdethmers
* public_html/lists/admin/actions/processqueue.php: handle a max
passed on the commandline
2012-05-02 21:09 mdethmers
* public_html/lists/admin/init.php: init some counters
2012-03-19 15:34 mdethmers
* public_html/lists/admin/dir_conflicts.prej,
public_html/lists/admin/install-old.zip: cleanup
2012-03-19 15:31 mdethmers
* public_html/lists/admin/reconcileusers.php: #16557
2012-03-05 12:34 mdethmers
* public_html/lists/admin/actions/processqueue.php: make test delay
a bit more realistic
2012-03-03 18:13 mdethmers
* public_html/lists/admin/pageaction.php: redirect to home on no
action
2012-03-03 18:01 mdethmers
* public_html/lists/admin/locale/templates/phplist.pot: gettext
template update
2012-03-03 17:58 mdethmers
* public_html/lists/admin/sendemaillib.php: on error sending,
include the sequence in the batch
2012-03-03 17:24 mdethmers
* public_html/lists/admin/actions/processqueue.php: remove test
delay
2012-03-03 17:14 mdethmers
* public_html/lists/admin/init.php: init counters globally
2012-03-03 17:13 mdethmers
* public_html/lists/admin/actions/processqueue.php: when using
prequeue, make sure to continue with the first batch, otherwise
it'll consider it done
2012-03-03 16:41 mdethmers
* public_html/lists/admin/actions/processqueue.php,
public_html/lists/admin/processqueue.php: make processqueue work
on commandline again, after overhaul
2012-03-03 16:33 mdethmers
* public_html/lists/admin/js/phplistapp.js: swap buttons
2012-03-03 16:32 mdethmers
* public_html/lists/admin/lib.php: var init
2012-03-03 16:31 mdethmers
* public_html/lists/admin/css/app.css: css updates
2012-03-03 16:30 mdethmers
* public_html/lists/admin/accesscheck.php: skip closing tag
2012-03-02 13:45 mdethmers
* public_html/lists/admin/sessionlib.php: skip close tag
2012-03-02 13:43 mdethmers
* public_html/lists/admin/languages.php: ignore translation query
if it fails
2012-03-02 13:42 mdethmers
* public_html/lists/admin/mysql.inc: pass on ignore flag
2012-03-02 13:41 mdethmers
* public_html/lists/admin/index.php: log speed and queries, when
logfile is set
2012-03-02 13:11 mdethmers
* public_html/lists/admin/actions/updatetranslation.php,
public_html/lists/admin/updatetranslation.php: show error on
failure to fetch the languages
2012-03-02 13:06 mdethmers
* public_html/lists/admin/updatetranslation.php: show error on
failure to fetch the languages
2012-03-02 13:06 mdethmers
* public_html/lists/admin/languages.php: catch network errors
2012-03-02 00:15 mdethmers
* public_html/lists/admin/languages.php: update file reference
2012-03-02 00:14 mdethmers
* public_html/lists/admin/messages.php: add some more spans around
buttons
2012-03-01 22:02 mdethmers
* public_html/lists/admin/index.php: fix text
2012-03-01 16:40 mdethmers
* public_html/lists/admin/css/app.css,
public_html/lists/admin/css/appminimal.css: style updates for
processqueue page
2012-03-01 16:39 mdethmers
* public_html/lists/admin/init.php: make jQuery version a global
var
2012-03-01 16:38 mdethmers
* public_html/lists/admin/index.php: add a warning when there are
queued messages that need sending
2012-03-01 16:34 mdethmers
* public_html/lists/admin/js/jquery-1.7.1.js,
public_html/lists/admin/js/jquery-1.7.1.min.js,
public_html/lists/admin/js/phplistapp.js,
public_html/lists/admin/js/phplistapp.min.js: upgrade jQuery and
add some functions for the processqueue page
2012-03-01 16:31 mdethmers
* public_html/lists/admin/processqueue.php: move real queue
processing into action and set up page using iframe to call it
2012-03-01 16:30 mdethmers
* public_html/lists/admin/lib.php: reformat sentence, for better
translating
2012-03-01 16:28 mdethmers
* public_html/lists/admin/connect.php: var checks
2012-03-01 16:28 mdethmers
* public_html/lists/admin/actions/processqueue.php: make process
queue a page action
2012-02-28 20:05 mdethmers
* public_html/lists/admin/locale/fa/gettext_code,
public_html/lists/admin/locale/nl/gettext_code,
public_html/lists/admin/locale/templates/phplist.pot: language
template update
2012-02-28 15:08 mdethmers
* public_html/lists/admin/locale/templates/phplist.pot: language
template update
2012-02-28 14:32 mdethmers
* public_html/lists/admin/connect.php: add translation update to
the menu
2012-02-28 14:28 mdethmers
* phplist.php,
public_html/lists/admin/actions/updatetranslation.php,
public_html/lists/admin/init.php,
public_html/lists/admin/languages.php,
public_html/lists/admin/structure.php,
public_html/lists/admin/updatetranslation.php: add page to update
the translation from translate.phplist.com
2012-02-28 13:22 mdethmers
* public_html/lists/admin/locale,
public_html/lists/admin/locale/fa/phplist.po,
public_html/lists/admin/locale/fr/phplist.po,
public_html/lists/admin/locale/hu/phplist.po,
public_html/lists/admin/locale/it/phplist.po,
public_html/lists/admin/locale/nl_BE/phplist.po,
public_html/lists/admin/locale/pl/phplist.po,
public_html/lists/admin/locale/pt_BR/phplist.po,
public_html/lists/admin/locale/sv/phplist.po,
public_html/lists/admin/locale/vi/phplist.po,
public_html/lists/admin/locale/zh_CN/phplist.po,
public_html/lists/admin/locale/zh_TW/phplist.po: update from
translate.phplist.com
2012-02-28 13:19 mdethmers
* public_html/lists/admin/locale,
public_html/lists/admin/locale/ar,
public_html/lists/admin/locale/da,
public_html/lists/admin/locale/de,
public_html/lists/admin/locale/en,
public_html/lists/admin/locale/es,
public_html/lists/admin/locale/fa,
public_html/lists/admin/locale/fr,
public_html/lists/admin/locale/hu,
public_html/lists/admin/locale/it,
public_html/lists/admin/locale/ja,
public_html/lists/admin/locale/nl,
public_html/lists/admin/locale/nl_BE,
public_html/lists/admin/locale/pl,
public_html/lists/admin/locale/pt_BR,
public_html/lists/admin/locale/ru,
public_html/lists/admin/locale/sv,
public_html/lists/admin/locale/templates,
public_html/lists/admin/locale/vi,
public_html/lists/admin/locale/zh_CN,
public_html/lists/admin/locale/zh_TW: ignore pending file
2012-02-28 13:14 mdethmers
* public_html/lists/admin/locale/ar,
public_html/lists/admin/locale/da,
public_html/lists/admin/locale/de,
public_html/lists/admin/locale/en,
public_html/lists/admin/locale/es,
public_html/lists/admin/locale/fa,
public_html/lists/admin/locale/fr,
public_html/lists/admin/locale/hu,
public_html/lists/admin/locale/it,
public_html/lists/admin/locale/ja,
public_html/lists/admin/locale/nl,
public_html/lists/admin/locale/nl_BE,
public_html/lists/admin/locale/pl,
public_html/lists/admin/locale/pt_BR,
public_html/lists/admin/locale/ru,
public_html/lists/admin/locale/sv,
public_html/lists/admin/locale/templates/phplist.pot,
public_html/lists/admin/locale/vi,
public_html/lists/admin/locale/zh_CN,
public_html/lists/admin/locale/zh_TW: language and ignore update
2012-02-28 13:10 mdethmers
* public_html/lists/admin/locale/nl/phplist.po: update from
translate.phplist.com
2012-02-28 12:38 mdethmers
* public_html/lists/admin/locale/es/phplist.po: update from
translate.phplist.com
2012-02-28 12:34 mdethmers
* public_html/lists/admin/locale/de/phplist.po: update from
translate.phplist.com
2012-02-28 12:33 mdethmers
* public_html/lists/admin/locale/da/phplist.po: update from
translate.phplist.com
2012-02-28 12:33 mdethmers
* public_html/lists/admin/locale/ar/phplist.po: update from pootle
2012-02-24 16:32 mdethmers
* public_html/lists/admin/actions/msgstatus.php: stalled is so
negative :-)
2012-02-24 15:42 mdethmers
* public_html/lists/admin/send_core.php: correct comment
2012-02-24 15:41 mdethmers
* public_html/lists/admin/js/phplistapp.min.js: minimise app js
2012-02-24 15:40 mdethmers
* public_html/lists/admin/js/phplistapp.js: add old lib and add ;
so that it minimizes better
2012-02-24 12:41 mdethmers
* public_html/lists/admin/generatebouncerules.php: remove
deprecated ereg
2012-02-24 12:40 mdethmers
* public_html/lists/admin/home.php: don't classify the lack of an
initialised DB as an Error, but just make it info
2012-02-24 12:39 mdethmers
* public_html/lists/admin/index.php: zap output on commandline
2012-02-24 12:37 mdethmers
* public_html/lists/admin/connect.php: suppress ob_ errors
2012-02-24 12:37 mdethmers
* public_html/lists/admin/blacklistemail.php: blacklist by uid, and
add date
2012-02-22 19:34 mdethmers