-
Notifications
You must be signed in to change notification settings - Fork 8
/
ChangeLog
2284 lines (1649 loc) · 92.1 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
VERSION 1.1.24 XX XX XXXX
* Profiles:
- Display the school id on profiles -XEL
* Emails:
- Open up access to the "lost users" page -XEL
* Admin:
- Improve the help message on AX ID batch edition page -XEL
- Allow adding more secondary degrees (beyond Master/Doctor) -XEL
================================================================================
VERSION 1.1.23 15 02 2018
* Emails
- Don't notify end users deathdate update -XEL
- Mailing lists should now include RFC2369 headers -PAD
- Fix email address in profile modification email -IOS
* Forums
- Fix Discourse's SSO -PAD
* Login:
- Move to auth.polytechnique.org's new SSO -LEV
* Maps:
- Use a Google API key and fix geoloc's MarkerClusterer -PAD
* Newsletter:
- Process text messages (in-message attachment bounces) -IOS
* Profiles:
- Add a profile_json admin endpoint -LEV
- Close parentheses when displaying field visibility -IOS
- Move to ax.polytechnique.org -LEV
* Search:
- Move to ax.polytechnique.org -LEV
* Scripts:
- Add a script which computes group members statistics -IOS
* XnetEvent:
- Remove / and \ from the CSV file name -IOS
================================================================================
VERSION 1.1.22 30 10 2016
* Broken emails management:
- Add some hints from the latest bounced emails -IOS
- Indicate dead people in broken email marketing -IOS
* Forums:
- Change links to Discourse forums -FUL
- Adds a hook for discourse-sync in Discourse's SSO -PAD
* Profile:
- Fix a potential infinite loop when removing an education entry -IOS
* XnetEvent:
- Fix closing date of events -IOS
================================================================================
VERSION 1.1.21 13 08 2016
* Account:
- Add Discourse Single-Sign-On module -IOS
* Admin:
- Display a warning when strong and weak passwords match -XEL
* AXLetter:
- Update letter header -IOS
* Profile:
- Fix birthday mail emission -XEL
* XnetList:
- Only display active users when syncing list and directory -FUL
================================================================================
VERSION 1.1.20 31 01 2016
* Account:
- Allow adding accounts for old promotions in account admin page -IOS
- Support double-dash in capitalize_name -IOS
* Profile:
- Fix spamiful education comparison when recording profile changes -IOS
- Activate birthday notification -IOS
- Add a link to AX profile on profiles for admins -FUL
* Lists:
- Make existence of other mailing lists explicit -EKL
* Tests:
- Accept "hidden" value in publicity test and fix other tests -IOS
* Wats4U:
- Fix remaining bugs before Wats4U launch -XEL
- Update all links to www.wats4u.com -XEL
* XnetGrp:
- Only match on hruid and email when operating on ML -IOS
- Allow removing non-email addresses from ML owners -IOS
- Keep the AX approval date for groups when editing them -IOS
- Allow creating an announce 3 months before an event -IOS
================================================================================
VERSION 1.1.19 14 10 2015
* Registration:
- Fix missing semicolumn -IOS
================================================================================
VERSION 1.1.18 14 10 2015
* Core:
- Fix Mail_RFC822 warnings -XEL
* Profile:
- Hide ax_id to non-admin members -FUL
================================================================================
VERSION 1.1.17 04 10 2015
* Lists:
- Handle unicode characters nicely in mailman-rpc -IOS
- Use prepared statements to query the SQL database -IOS
* Payments:
- Fix payment commission sign for BPLC -KIT
* Registration:
- Make registration error messages clearer -FUL
* Wats4U:
- Improve data export scripts -FUL/XEL
* Wiki:
- Upgrade e-protect2 plugin to use preg_replace_callback -FEA
================================================================================
VERSION 1.1.16 22 06 2015
* Admin:
- Add bulk PhD validation -FUL
* Lists:
- Fix mailman-rpc for master/PhD profiles -XEL
* Profile:
- Add birthday notification -FUL
* Skins:
- New sking: g15 -GAL
* Wats4U:
- Add Wats4U batch export -XEL
* XnetGrp:
- Fix non-member subscription to events -FUL
- Properly display email aliases for xnet members -FUL
================================================================================
VERSION 1.1.15 28 02 2015
* Admin:
- Sort recent modifications page by timestamp instead of name -FUL
- Fix the filling of recent modifications table -FUL
* Links:
- Update several links to external websistes -FUL
* NL:
- Improve the processing of broken addresses -IOS
* Wats4U:
- Add Wats4U SSO -XEL
* XnetGrp:
- Fix display for xnet accounts on lists -FUL/IOS
- Add a status field for inactive and dead groups -IOS
================================================================================
VERSION 1.1.14 07 12 2014
* Address:
- Fix address deletion so that every component is deleted -IOS
* Fusion:
- Improve the pages presenting the diff of names -IOS
* Letters:
- Remove community letters from non-community members menu -FUL
* XnetGrp:
- Change the checked permission of the newsletter pages -XEL
================================================================================
VERSION 1.1.13 21 06 2014
* Fusion:
- Update scripts (MySQL compatibility, new AX data...) -KIT/IOS
* Profile:
- Handle the new 'hidden' visibility flag on profile editor -IOS
* NL:
- Improve the processing of broken addresses -IOS
- Fix unscription link -IOS
* XnetGrp:
- Various fixes (ML owner deletion...) -KIT
- Fix the "sending mail" feature -KIT
* XnetEvent:
- Fix archive events -KIT
- Handle canceled payment transactions -KIT
================================================================================
VERSION 1.1.12 08 03 2014
* NL:
- Improve Community Letter CSS & template. -KIT
- Improve mail headers. -IOS
* Profile:
- Activating 'hidden' visibility flag. -LEV
- #1697: Add hobby visibility on profile. -LEV
- Small fixes for AX. -FUL
* Usability:
- Make /emails page clearer -IOS
- Sort validations categories. -IOS
* XnetEvent:
- Prevent notifications if no changes were done. -KIT
* XnetGrp:
- Fix bugs with former members which were still members. -KIT
================================================================================
VERSION 1.1.11 31 12 2013
* Letters:
- Add EP and AX newsletters -XEL
- Add Community Letter -IOS
- No longer wait the next day to sent a newsletter -IOS
* XnetGrp:
- Add email field in the CSV export of event participants -IOS
* Javascript:
- Fix broken JS URLs downloaded by the Makefile -IOS
- Fix several JS errors -IOS
- Use HTTPS to retrieve Google Maps elements -IOS
* Usability:
- Add label for password confirmation field in registration form -IOS
================================================================================
VERSION 1.1.10 08 12 2013
* Maps:
- Fix global map for users where uid ≠ pid -XEL
* Misc:
- Improve performance of end-of-month sessions cleanup -XEL
* XnetGrp:
- Notify force-subscribed new members of groups -KIT
- Disable "group-level email" for groups with 1000+ members -FUL
================================================================================
VERSION 1.1.9 15 10 2013
* NL:
- Improves NL broken bounces processor -IOS
- Change AX letter css -KRL
* Payments:
- Fix payment commission for foreign countries -KIT
* Profile:
- Fix profile deletion -KIT
- Show link to XnetGroups site on profile -FUL
- Remove dead people from the map -FUL
* XnetGrp:
- Add job infos in XnetGroup export -KIT
- Fix user count in XnetEvents -FRU/KIT
================================================================================
VERSION 1.1.8 15 05 2013
* XnetGrp:
- Add footer linking to the group for group-related emails -XEL
- Allow disabling the "send mails" on a per-group basis -XEL
================================================================================
VERSION 1.1.7 18 02 2013
* Payments:
- Automatically closes the payment where the event is archived -KIT
- Fixes non-integer payments with BPLC -KIT
- Fixes bug with paypal payments for user without postal address -KIT
* Search:
- Fix search on AX mail address and on current address -XEL
* Survey:
- #1648: Fixes name display in csv for non-anonymous surveys -KIT
* XnetEvent:
- Allows groupadmin to choose events display order -KIT
- Rewording XnetEvent subscription page -KIT
- #381: Adds job infos in csv for event participants -KIT
* XnetGrp:
- Adds dagger symbol for dead group members -KIT
- Allows the forum page to be seen by every connected user -KIT
From 1.1.6 branch:
* Lists:
- Fixes ML creation on Xnet -XEL
- Fixes ML display -XEL
================================================================================
VERSION 1.1.6 15 11 2012
* AX:
- Pre-split addresses for AX CSV export -XEL
* Lists:
- Rewrite MailingList backend -XEL
- Update promo ML subscription pages -XEL
- Enhance list members view performance -XEL
* Payments:
- Add a reference to RIBs in the payment table -KIT
- Allow many payments for a single event -KIT
* XnetEvent:
- Order events in decreasing order -XEL
* XnetGrp:
- #1627: Fixes accounts awaiting validation page -JAC
From 1.1.5 branch:
* Search:
- #1622: Fixes address search -JAC
* XnetEvent:
- #1621: Properly computes event participants for the whole event -JAC
================================================================================
VERSION 1.1.5 31 05 2012
Bug/Wish:
* Admin:
- #1568: Adds log search on actions -JAC
- #1604: Displays AX id on admin page -JAC
* Auth:
- #1608: Displays proper url in auth-group-x login -JAC
* Email:
- #1597: Fixes reactivation of broken and suspended emails -JAC
- #1601: Displays errors and warnings when adding people to ML -JAC
* Payments:
- #1615: Increases payment name length limit -JAC
* Profile:
- #1589: Fixes clicks on main jobTree titles -JAC
* Search:
- #1572: Removes remaining results count from queries -JAC
- #1574: Correctly displays State corps -GLN
- Adds search on AX mail addresses -JAC
* Validations:
- #1571: Fixes the opening of the comments panel -GLN
* XnetEvent:
- #1348: Keeps the amount paid when updating participation -GLN
- #1577: Fixes alternative payements given by admins -GLN
- #1578: Fixes deletion of people inscriptions -GLN
- #1583: Fixes date display in events longer than a single day -JAC
- #1603: Fixes Xnet events edition for users without profile -JAC
* XnetGrp:
- #1580: Fixes count in group directory title -JAC
- #1596, #1598: Lists non-X accounts awaiting validation -JAC
- #1609: Adds link to account on Xnet account validation -JAC
* XnetList:
- #1518: Allows group animators to edit group's lists' members -JAC
* XnetNl:
- #1606: Fixes Xnet NL deletion -JAC
From 1.1.4 branch:
* XnetEvent:
- #1566: Corrects the total number in events -GLN
- #1567: Payment takes into account the amount when it is given -GLN
================================================================================
VERSION 1.1.4 14 11 2011
New:
* Newsletter:
- Displays number of subscribers without any valid redirection -JAC
- Provides statistics about subscribers -JAC
* Search:
- Switches autocomplete to jQuery UI -JAC
Bug/Wish:
* Carnet:
- #709: Adds multiple contacts, and markets those unregistered -JAC
- #808: Enables watch of groups -JAC
- #1528: Do not display birthday of deceased users in emails -FUL
* Core:
- #1523: Rename AUTH_MDP to AUTH_PASSWD -JAC
- #1534: Fixes birthday calendar downloading with IE -JAC
* Email:
- #1529: Stores and uses preferences for sending emails from site -JAC
- #1516: Enables @polytechnique.edu adresses for old promotions -GLN
- #1549: Updates aliases and MLs on new redirection addition -JAC
* Lists:
- #1543: Displays no member in directory view for empty lists -JAC
- #1555: Ensures an email is given only once in mass subscription -JAC
* Newsletter:
- #1509: Adds a Reply-To field for newsletters -GLN
- #1526: Shows user filter used after sending -GLN
- #1538: Improves display in main NL administration page -FUL/JAC
* Payments:
- #1512: Allows payments for unlogged users -JAC
- #1537: Replaces payments page on main site by a donation page -JAC
* Profile:
- #1289: Links binet to their xnet page if any on profiles -FUL
- #1381: Adds levels to medals -JAC
- #1446: Adds field for sports and hobbies -JAC
- #1535: Moves and displays skills with mentoring informations -JAC
- #1554: Allows admins to modify unregisterd users' ref birthdate -JAC
* Search:
- #1284: If a country is chosen, only proposes its cities -JAC
* XnetGrp:
- #1525: Fixes broken page on erroneous group page edition -JAC
- #1530: Enables reminder for xnet accounts -JAC
- #1558: Allows (un)subscription to be notified not to all admins -JAC
From 1.1.3 branch:
* Profile:
- #1545: Fixes link to profiles on IE7 -FRU
================================================================================
VERSION 1.1.3 10 09 2011
New:
* API:
- Enable the 'sharing' API (profile exchange with other sites) -XEL
* Auth:
- Add per-group options to configure the auth-groupe-x behaviour -XEL
* Profile:
- Significantly improve visibility handling -XEL
* Xnet:
- Allow auth-groupe-x for X.net accounts -XEL
Bug/Wish:
* Email:
- #1517: Fixes bestalias update when two local_part are identical -JAC
- #1533: Fixes bestalias after updating melix alias -JAC
* Profile:
- #1532: Allows edition of empty reference birthdates -JAC
From 1.1.2 branch:
* Newsletter:
- #1524: Fixes NL unsubscription when not loggued on the site -JAC
* Search:
- #1520: Fixes deltaten -XEL
================================================================================
VERSION 1.1.2 28 06 2011
New:
* Geoloc:
- Updates geocoding to Google Maps API v3 -JAC
- Reintroduces maps, now based on Google Maps -JAC
Bug/Wish:
* Paiement:
- #192: Displays users donations -JAC
- #1499: Fixes session user's payment display in xnet admin page -JAC
* Profile:
- #1489: Enables automatic procecessing for secondary education -JAC
- #1497: Fixes issues with ordinary names -JAC
* Register:
- #1501: Displays redirections in succesful registration summary -JAC
- #1506: Displays errors summary on registration alert emails -JAC
* Search:
- #1285: Autocompletes on internal words in university search -JAC
- #1513: Allows search on both only_referent and compagny fields -JAC
* XnetGrp:
- #947: Lists group former members to group admins -JAC
- #1481: Adds group nl subscription from group profile edition -JAC
- #1504: Displays users without profile in alphabetic lists -JAC
- #1507: Adds sort on last modification in directory display -JAC
- #1508: Do not export emails in members csv files -JAC
- #1511: Adds subscriber position to groups -JAC
* XnetEvent:
- #1487: Removes link to event attending users to group outsiders -JAC
- #1491: Fixes participants multi-page display -JAC
================================================================================
VERSION 1.1.1 09 05 2011
New:
* XnetGrp:
- Enables creation of multiple Xnet accounts for groups -JAC
Bug/Wish:
* Auth:
- #1474: Provides accounts data for accounts without profile -JAC
- #1476: Logs last use of Auth-Groupe-X keys -JAC
* Carnet:
- #1486: Allows deletion of deceased contact/watched user -JAC
* Core:
- #1484: Fix reference to is_IE that does not exist anymore -FRU
* Emails:
- #1110: Improves email combobox -JAC
- #1459: Lists and administrates aliases on main domain -JAC
- #1477: Fixes display and (de)activation of email storages -JAC
- #1479: Fixes display of corps in bounce list -JAC
* Events:
- #1475: Fixes date storage for next reminder -JAC
* Newsletter:
- #1394: Links nl unsubscribtions to the issues that caused them -JAC
* Paiement:
- #1485: Properly formats name and comment field in paiements -JAC
* Profile:
- #1445: Add job entry year -JAC
- #1478: Uses user's visibility limitations to display vcards -JAC
* Search:
- #911: Adds search on corps -JAC
- #990: Adds search on broken redirections -JAC
- #1469: Adds search on firstname/lastname/nickname -JAC
- #1470: Fixes autocomplete on countries -JAC
* XnetGrp:
- Enables NLs filling from group members -JAC
- #1179: Adds alphabetic choices for group directories -XEL
- #1460: Enables NLs creation for groups -XEL
- #1473: Enables group filling from its MLs and aliases -JAC
* XnetList:
- #957: Allows xnet list sorting by description and members count -JAC
From 1.1.0 branch:
* Search:
- #1449: Load json2 on IE because IE<=7 do not implement JSON -FRU
================================================================================
VERSION 1.1.0 26 03 2011
New:
* Search:
- Add suggestions on quicksearch box -FRU
Bug/Wish:
* Admin:
- #1042: Implements a url-shortener -JAC
- #1315: Displays antispam level in users email admin pages -JAC
- #1399: Displays all similar entreprises only on demand -JAC
- #1403: Displays grade if any in medal validation process -JAC
* Emails:
- Allows antispam level choice for each redirection -JAC
- #1035: Bases emails on users types (eg educationnal types) -JAC
- #1404: Implements best_domain -JAC
* Newsletter:
- #664: Adds tool to search in nl archives -JAC
- #908: Displays remaining lines and characters in submission -JAC
- #1393: Logs main nl events (create, delete, validate, cancel) -JAC
* Payments:
- #1398: Creates csv for payments -JAC
* Profile:
- #1324,1352: Adds jobs to vcards -JAC
- #1380: Allows multiple entries for some medals -JAC
- #1389: Do not require validation for private names modifications -JAC
- #1401: Main addresses are displayed before secondary addresses -JAC
* Xnet:
- Accounts for xnet only users -JAC
* XnetGrp:
- #907: Adds more info about groups (address, phones, positions) -JAC
================================================================================
VERSION 1.0.2 31 01 2011
Bug/Wish:
* Admin:
- #1362: List last profile modifications for secretary -JAC
* Core:
- #1352: Fixes csv downloading with IE8. -JAC
- #1355: Mode with propagation of the skinning mode -FRU
* Newsletter:
- #774: Enable custom newsletters for groups -XEL
- #1047: Filter the list of previous AXletters -XEL
* Payments:
- #1290: Fixes display of payments on xnet -JAC
- #1318: Fixes PHP errors in PayPal payments -JAC
* Profile:
- #1270: Adapts default picture to main education -JAC
- #1340: Allows secretaries and admin to fully edit profiles' name -JAC
- #1354: Do not notify death to a deceased user -JAC
- #1356: Indicates delivery issues on addresses -JAC
- #1360: Default profile publicity is now ax -JAC
- #1361: Allows secretaries to validate entreprises -JAC
- #1363: Prevents deletion of private information by secretaries -JAC
- #1364: Only admin can edit original corps -JAC
- #1367: Improves postal address formatting -JAC
- #1368: Allows admin profile edition even if birthdate is unknown -JAC
- #1369: Properly displays moderated jobs -JAC
* Register:
- #1374: Adapts registration for master and doctorate -JAC
* Search:
- #1365: Outputs csv of postal addresses for advanced search -JAC
- #1366: Adds 'by AX id' advanced search for admins -XEL
* XnetEvent:
- #1373: Fixes acceptance of non member in xnet events. -JAC
================================================================================
VERSION 1.0.1 26 10 2010
New:
* Admin:
- Accounts not attached to a profile can be deleted -FRU
* Core:
- Access to the website by non-X -FRU
- Add foreign key constraints for uid and pids -JAC
* Profile:
- Sectors replaced by job terms (thesaurus) -Car
- Profile edition interface for secretaries of the AX -FRU
- #1256: Notify user when his profile has been edited -JAC
* Search:
- Search results depend on user's permissions -XEL
Bug/Wish:
* Admin:
- #1182: Notify admins when a account is edited -JAC
- #1258: Fix promotion insertion -FRU
* Lists:
- #1208,1250: Fix export of a mailing list as a CSV file -JAC
* Profile:
- #1265: Fix access to profile using a user identifier -FRU
* Register:
- #1261: Fix wrong join between user and profile -JAC
* Search:
- #1177: Clean url in advanced search -Car
- #1251: More intuitive networking search -XEL
- #1283: Restrict second operation on promo search -Car
* Survey:
- #964: The creator of a survey can get early results -FRU
- #1282: The creator can always view the results -FRU
* XnetGrp:
- #1252: Don't include dead user in directory listing -FRU
- #1253: Don't include not-registered users in promo listing -FRU
From 1.0.0 branch:
* Admin:
- #1196: Fix password edition on admin page -JAC
- #1197: Allow user unsubscription -JAC
* Auth:
- #1246: Fix GroupeX auth -Car
* AXLetter:
- Fix unsubscription -XEL
* Carnet:
- Fix inaccessible carnet/panel in case of profile update -FRU
- #1176: Fix notification email -JAC
* Events:
- Fix promotion_ml reminder -FRU
* Forums:
- #1247: Fix RSS feed -XEL
* Lists:
- Fix inclusion of banana for achives and moderation preview -FRU
- #1218,1222: Fix link to profiles -JAC
* Profile:
- Fix entreprise validation -JAC
- Fix name validation -XEL
- Fix orange validation -XEL
- Fix vcards -FRU
- #1173,1174,1205,1219: Fix geocoding -JAC
- #1232: Fix autocompletion for the first enterprise -JAC
* Newsletter:
- Fix user selection -FRU
* Register:
- Fix calls to missing functions -JAC
- #1216: Fix missing check that the user was not registered -FRU
* Search:
- Fix filtering by promotion -XEL
- Fix search by address -XEL
* Survey:
- #1214: Fix result of a survey -FRU
- #1263: Fix edition of pending surveys -FRU
* XnetEvent:
- #1187: Fix listing of the participant -JAC
* XnetGrp:
- Fix name in unsubscription notification -JAC
- Fix mailer sending O(n^2) mails -VZA
* XnetList:
- Fix group directory synchronization page -JAC
================================================================================
VERSION 1.0.0 30 06 2010
New:
* Core:
- New directory format -JAC
- Split user management into accounts and profiles -FRU
- New database abstraction for user selection -FRU/XEL
- Centralises email management through an email combobox -JAC
Bug/Wish:
* Auth:
- #1089: Also logs the return url in auth for groupesx -Car
* Carnet:
- #507: Uses full name in notification email -JAC
- #1074: Removes the red cross to reset contact search -Car
* Core:
- #1019: Allow 35 points passwords as announced -Car
- #1059: Fix support of '?' in mail subjects -FRU
* Payments:
- #932: Adds the date of linked event in payments admin listing -Car
* Profile:
- New contact/networking fields -GUI/JM
- #16, #528, #917: Changes job interface, updates business sectors -JAC
- #188: Adds informations about the Corps d'État -JAC
- #209: Thoroughly changes education's implementation -JAC
- #373: User now chooses the name we use to talk to him/her -JAC
- #386: Adds the possibility to fill in multiple nationalities -JAC
- #443: Adds concept of ordinary firstname -JAC
- #450: Adds marital name, thus ordinary name can be any name -JAC
- #670: Adds Outlook CSV format for birthdays and contacts -Car
- #891: Improves education display -JAC
* Search:
- #870: Fixes region selection when choosing country from list -Car
* Survey:
- #993: Enables survey for oranges -Car
- #1002: Lets the user set promo interval in both ways -Car
- #967: Lets admin see surveys even when not in targeted promos -Car
- #1119: Removes useless links on post-edit admin page -Car
* XnetGrp:
- #1086: Fixes view members of group even if not in group -Car
* XnetEvents:
- #737: Admin can cancel subscription to an event -Car
* XnetLists:
- #1010: Prevent empty list creation -Car
================================================================================
VERSION 0.10.2 13 11 2009
New:
* Admin:
- Now processes broken addresses through the web site. -JAC
* Core:
- Prunes old sessions/events logs after 12 months -VZA
- Adds proper content caching for static and semi-static content -VZA
Bug/Wish:
* AXLetter:
- #980: Adds option to invert a subset definition -XEL
* Carnet:
- #975: Cleans up watch_nonins when someone dies -JAC
- #1000: Notifies her contacts when a user has no redirection left -JAC
* Core:
- #984: Properly upper/lowercases accented letters when necessary -JAC
* Lists:
- #978: An email address has to be valid to be added to a ML -JAC
* Mail:
- #988: Gets rid of <h1> tags in the mails we send -JAC
* Marketing:
- #946: Displays marketing email and allows the sender to edit it -JAC
* Newsletter:
- #986: Improves the nl edition page -JAC
- #991: Adds the text of the article in the mail when refused -JAC
- #992: Simplifies blacklist verification -JAC
* Profile:
- #983: Fixes issue with the professional email publicity -JAC
* XnetEvents:
- #919: Allows negative amounts in the column "Autre" -JAC
- #979: Fixes javascript for people who paid but did not book -JAC
- #985: Adds payment related email lists for events -JAC
From 0.10.1 branch:
* Core:
- Fixes the use of Smarty's "default" modifier -VZA
* Profile:
- #977: Professional addresses can now be deleted -JAC
- Removes stats about profiles view: it was far too costly -JAC
================================================================================
VERSION 0.10.1 30 07 2009
New:
* Events:
- Reminders -JAC/VZA
Bug/Wish:
* Admin:
- #965: Prevents password hashes from being broadcasted by email -VZA
* AXLetter:
- Enables axletter mailings to a subset of subscribers -XEL
* Core:
- #680: Retrieve dead redirections thanks to inactive redirections -JAC
- #862: Remodels the registration process -VZA
* Mail:
- Notifies the sender when a moderated message to a ML is accepted -JAC
- #963: Fixes notification email on removal of "nom d'usage" -VZA
- #972: Adds a legend on the email redirection page -JAC
* Payment:
- #669: Sends comments with the payment notifications -JAC
* Profile:
- #951: The address of a dead person is her last address -JAC
- #958: Fix the address in the professionnal vcard -JAC
- #970: Shows a confirmation message when the profile is modified -JAC
* Marketing:
- #671: Displays more statistics about marketings -JAC
* Survey:
- #794: Adds wiki syntax to surveys -PIK
* XnetGrp:
- #973: Only site administrators can allow AX aggregation -JAC
From 0.10.0 branch:
* Auth:
- Fix use of deprecated PlLogger in password recovery -JAC
* Lists:
- #942: Fix missing MLs in ML listing -FRU
- #943: Fix adding member to a list -FRU
* Profile:
- Fix malformed query leading to error when adding an address -FRU
* XnetGrp:
- #861: Fix adding non-registered X with compound name to a group -JAC
================================================================================
VERSION 0.10.0 11 12 2008
New:
* Core:
- Move plat/al engine in a separated library -FRU
- Introduction of 'hruid' as a replacement for 'forlife' -VZA
* Mail:
- Validation of the rewrites -FRU
* Newsletter:
- Tool to process bounces -mYk
* OpenId:
- OpenId provider -mYk
Bug/Wish:
* Admin:
- #912: Fix error when validating an 'alread-validated' request -FRU
* Core:
- #918: Use POST for wiki preview -FRU
* Search:
- #691: Adds search on postcode and thus on "arrondissements" -JAC
- #791: Adds the possibility to do an exact search -JAC
- #822: Adds the possibility to search on diplomas -JAC
* Lists:
- #927: Can export the list of members as a CSV file -FRU
* XnetEvents:
- #751: Fix calculation of the number of pages -FRU