summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-webteam/2011-April/subject.html
blob: de24806930f0b1e229ebff128f87a297daa71360 (plain)
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
  <HEAD>
     <title>The Mageia-webteam April 2011 Archive by subject</title>
     <META NAME="robots" CONTENT="noindex,follow">
     <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
  </HEAD>
  <BODY BGCOLOR="#ffffff">
      <a name="start"></A>
      <h1>April 2011 Archives by subject</h1>
      <ul>
         <li> <b>Messages sorted by:</b>
	        <a href="thread.html#start">[ thread ]</a>
		
		<a href="author.html#start">[ author ]</a>
		<a href="date.html#start">[ date ]</a>

	     <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
                    </a></b></li>
      </ul>
      <p><b>Starting:</b> <i>Fri Apr  1 00:00:02 CEST 2011</i><br>
         <b>Ending:</b> <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
         <b>Messages:</b> 201<p>
     <ul>

<LI><A HREF="000643.html">[Mageia-webteam] 2011/week 14 meeting
</A><A NAME="643">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000646.html">[Mageia-webteam] 2011/week 14 meeting
</A><A NAME="646">&nbsp;</A>
<I>kosmasc at gmail.com
</I>

<LI><A HREF="000791.html">[Mageia-webteam] 2011/week 17 review meeting
</A><A NAME="791">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000794.html">[Mageia-webteam] 2011/week 17 review meeting
</A><A NAME="794">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000796.html">[Mageia-webteam] 2011/week 17 review meeting
</A><A NAME="796">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000810.html">[Mageia-webteam] 2011/week 17 review meeting
</A><A NAME="810">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000802.html">[Mageia-webteam] [Bug 1001] [New] Wrong instructions to check that the signatures of ISO match
</A><A NAME="802">&nbsp;</A>
<I>Gerald
</I>

<LI><A HREF="000803.html">[Mageia-webteam] [Bug 1001] Wrong instructions to check that the signatures of ISO match
</A><A NAME="803">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000804.html">[Mageia-webteam] [Bug 1004] [New] When reporting new bugs, the wrong time is displayed.
</A><A NAME="804">&nbsp;</A>
<I>Remco Rijnders
</I>

<LI><A HREF="000805.html">[Mageia-webteam] [Bug 1004] When reporting new bugs,	the wrong time is displayed.
</A><A NAME="805">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000814.html">[Mageia-webteam] [Bug 13] Add component name or package name in notification mail subjects
</A><A NAME="814">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000775.html">[Mageia-webteam] [Bug 166] add a link in Home to monitor all the bugs which a person is CC'ed to
</A><A NAME="775">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000766.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="766">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000767.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="767">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000770.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="770">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000771.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="771">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000772.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="772">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000773.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="773">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000774.html">[Mageia-webteam] [Bug 166] add a option in bugzilla profile to show the bugs which a person is CC'ed to
</A><A NAME="774">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000635.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a	comment
</A><A NAME="635">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000637.html">[Mageia-webteam] [Bug 18] Do not allow to change status without a	comment
</A><A NAME="637">&nbsp;</A>
<I>D Morgan
</I>

<LI><A HREF="000696.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
</A><A NAME="696">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000713.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
</A><A NAME="713">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000719.html">[Mageia-webteam] [Bug 320] Missing component for infrastructure
</A><A NAME="719">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000632.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
</A><A NAME="632">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000633.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
</A><A NAME="633">&nbsp;</A>
<I>D Morgan
</I>

<LI><A HREF="000641.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0
</A><A NAME="641">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000813.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
</A><A NAME="813">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000815.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
</A><A NAME="815">&nbsp;</A>
<I>Kristoffer Grundstr&#195;&#182;m
</I>

<LI><A HREF="000816.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
</A><A NAME="816">&nbsp;</A>
<I>D Morgan
</I>

<LI><A HREF="000818.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
</A><A NAME="818">&nbsp;</A>
<I>Kristoffer Grundstr&#195;&#182;m
</I>

<LI><A HREF="000819.html">[Mageia-webteam] [Bug 40] Upgrade to Bugzilla 4.0.1
</A><A NAME="819">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000821.html">[Mageia-webteam] [Bug 452] Privacy policy is still a draft
</A><A NAME="821">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000726.html">[Mageia-webteam] [Bug 586] Remove the fields Reproducible: &amp; Steps to Reproduce: from the bottom of any reported bugs
</A><A NAME="726">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000623.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
</A><A NAME="623">&nbsp;</A>
<I>Thierry Vignaud
</I>

<LI><A HREF="000640.html">[Mageia-webteam] [Bug 591] Test bug, please ignore
</A><A NAME="640">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000644.html">[Mageia-webteam] [Bug 655] [New] Open German forum
</A><A NAME="644">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000731.html">[Mageia-webteam] [Bug 655] Open German forum
</A><A NAME="731">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000732.html">[Mageia-webteam] [Bug 655] Open German forum
</A><A NAME="732">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000645.html">[Mageia-webteam] [Bug 656] [New] Fix forum locales redirections
</A><A NAME="645">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000730.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
</A><A NAME="730">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000733.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
</A><A NAME="733">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000734.html">[Mageia-webteam] [Bug 656] Fix forum locales redirections
</A><A NAME="734">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000671.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
</A><A NAME="671">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000716.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
</A><A NAME="716">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000717.html">[Mageia-webteam] [Bug 690] /ru/downloads 404
</A><A NAME="717">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000669.html">[Mageia-webteam] [Bug 690] [New] language redirection problem
</A><A NAME="669">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000674.html">[Mageia-webteam] [Bug 723] [New] incorrect suggested command
</A><A NAME="674">&nbsp;</A>
<I>robert marshall
</I>

<LI><A HREF="000675.html">[Mageia-webteam] [Bug 723] incorrect suggested command
</A><A NAME="675">&nbsp;</A>
<I>robert marshall
</I>

<LI><A HREF="000676.html">[Mageia-webteam] [Bug 723] incorrect suggested command
</A><A NAME="676">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000647.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="647">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000648.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="648">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000649.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="649">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000650.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="650">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000651.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="651">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000654.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="654">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000655.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="655">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000664.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="664">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000665.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="665">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000666.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="666">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000667.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="667">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000668.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="668">&nbsp;</A>
<I>AL13N
</I>

<LI><A HREF="000672.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="672">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000673.html">[Mageia-webteam] [Bug 72] default page doesn't redirect to website
</A><A NAME="673">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000678.html">[Mageia-webteam] [Bug 734] [New] Text in bug submission page suggests using the Core option - this option is not available!
</A><A NAME="678">&nbsp;</A>
<I>robert marshall
</I>

<LI><A HREF="000681.html">[Mageia-webteam] [Bug 734] Text in bug submission page suggests using the Core option - this option is not available!
</A><A NAME="681">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000679.html">[Mageia-webteam] [Bug 742] [New] New user form is difficult to understand if you don't know LDAP keywords
</A><A NAME="679">&nbsp;</A>
<I>Fran&#195;&#167;ois Jaouen
</I>

<LI><A HREF="000721.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
</A><A NAME="721">&nbsp;</A>
<I>Buchan Milne
</I>

<LI><A HREF="000722.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
</A><A NAME="722">&nbsp;</A>
<I>Fran&#195;&#167;ois Jaouen
</I>

<LI><A HREF="000723.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
</A><A NAME="723">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000724.html">[Mageia-webteam] [Bug 742] User details form is difficult to understand if you don't know LDAP attributes
</A><A NAME="724">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000682.html">[Mageia-webteam] [Bug 767] [New] Strange notice on the download page
</A><A NAME="682">&nbsp;</A>
<I>Egor Suldin
</I>

<LI><A HREF="000685.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
</A><A NAME="685">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000686.html">[Mageia-webteam] [Bug 767] Strange notice on the download page
</A><A NAME="686">&nbsp;</A>
<I>Egor Suldin
</I>

<LI><A HREF="000695.html">[Mageia-webteam] [Bug 813] [New] The timestamp in Bugzilla comments	is wrong
</A><A NAME="695">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000698.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="698">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000699.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="699">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000700.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="700">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000701.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="701">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000702.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="702">&nbsp;</A>
<I>Frank Griffin
</I>

<LI><A HREF="000703.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="703">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000704.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="704">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000705.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="705">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000706.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="706">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000707.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="707">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000708.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="708">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000751.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="751">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000765.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="765">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000806.html">[Mageia-webteam] [Bug 813] The timestamp in Bugzilla comments is	wrong
</A><A NAME="806">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000709.html">[Mageia-webteam] [Bug 829] [New] Do not send reminder every day per	default
</A><A NAME="709">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000714.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per	default
</A><A NAME="714">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000746.html">[Mageia-webteam] [Bug 829] Do not send reminder every day per	default
</A><A NAME="746">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000711.html">[Mageia-webteam] [Bug 831] [New] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
</A><A NAME="711">&nbsp;</A>
<I>Johan Pirlouit
</I>

<LI><A HREF="000747.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
</A><A NAME="747">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000777.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
</A><A NAME="777">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000778.html">[Mageia-webteam] [Bug 831] Reporting bug doesn't open the requested form in browser even if we are already logged into Bugzilla
</A><A NAME="778">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000725.html">[Mageia-webteam] [Bug 879] [New] Test bug to check if bug #586 is	corrected.
</A><A NAME="725">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000727.html">[Mageia-webteam] [Bug 879] Test bug to check if bug #586 is	corrected.
</A><A NAME="727">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000735.html">[Mageia-webteam] [Bug 899] [New] Synchronize bugzilla groups with	ldap groups
</A><A NAME="735">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000736.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="736">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000738.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="738">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000739.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="739">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000740.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="740">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000741.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="741">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000742.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="742">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000743.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="743">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000744.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="744">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000745.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="745">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000748.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="748">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000749.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="749">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000750.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="750">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000756.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="756">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000760.html">[Mageia-webteam] [Bug 899] Synchronize bugzilla groups with ldap	groups
</A><A NAME="760">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000752.html">[Mageia-webteam] [Bug 907] [New] text/x-log attachments aren't opened in Firefox like text/plain
</A><A NAME="752">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000753.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
</A><A NAME="753">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000759.html">[Mageia-webteam] [Bug 907] text/x-log attachments aren't opened in Firefox like text/plain
</A><A NAME="759">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000754.html">[Mageia-webteam] [Bug 910] [New] Add a check box for security issue
</A><A NAME="754">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000755.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
</A><A NAME="755">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000757.html">[Mageia-webteam] [Bug 910] Add a check box for security issue
</A><A NAME="757">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000758.html">[Mageia-webteam] [Bug 912] [New] Custom field for CVE
</A><A NAME="758">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000763.html">[Mageia-webteam] [Bug 912] Custom field for CVE
</A><A NAME="763">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000764.html">[Mageia-webteam] [Bug 912] Custom field for CVE
</A><A NAME="764">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000812.html">[Mageia-webteam] [Bug 912] Custom field for CVE
</A><A NAME="812">&nbsp;</A>
<I>Fr&#195;&#169;d&#195;&#169;ric Buclin
</I>

<LI><A HREF="000817.html">[Mageia-webteam] [Bug 912] Custom field for CVE
</A><A NAME="817">&nbsp;</A>
<I>D Morgan
</I>

<LI><A HREF="000780.html">[Mageia-webteam] [Bug 966] Name check on identity should be more	open
</A><A NAME="780">&nbsp;</A>
<I>Pascal Terjan
</I>

<LI><A HREF="000790.html">[Mageia-webteam] [Bug 966] Name check on identity should be more	open
</A><A NAME="790">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000782.html">[Mageia-webteam] [Bug 975] [New] http://blog.mageia.org/et is not exist. Please foward it to english page
</A><A NAME="782">&nbsp;</A>
<I>Jaanus Ojangu
</I>

<LI><A HREF="000783.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
</A><A NAME="783">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000784.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
</A><A NAME="784">&nbsp;</A>
<I>Marek Laane
</I>

<LI><A HREF="000785.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
</A><A NAME="785">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000788.html">[Mageia-webteam] [Bug 975] http://blog.mageia.org/et is not exist. Please foward it to english page
</A><A NAME="788">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000787.html">[Mageia-webteam] [Bug 991] [New] Incorrect links on download pages
</A><A NAME="787">&nbsp;</A>
<I>Nicolas Vigier
</I>

<LI><A HREF="000789.html">[Mageia-webteam] [Bug 991] Incorrect links on download pages
</A><A NAME="789">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000792.html">[Mageia-webteam] [Bug 998] [New] O Brother, Where Art Thou?
</A><A NAME="792">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000793.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="793">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000797.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="797">&nbsp;</A>
<I>Barry Jackson
</I>

<LI><A HREF="000798.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="798">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000799.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="799">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000800.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="800">&nbsp;</A>
<I>Oliver Burger
</I>

<LI><A HREF="000807.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="807">&nbsp;</A>
<I>Dimitrios Glentadakis
</I>

<LI><A HREF="000808.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="808">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000809.html">[Mageia-webteam] [Bug 998] O Brother, Where Art Thou?
</A><A NAME="809">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000626.html">[Mageia-webteam] [Forum] Fwd: A request to join your group has been made
</A><A NAME="626">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000693.html">[Mageia-webteam] [Mageia-artwork] Mageia marketing plan is on the way, proposals and team reports needed
</A><A NAME="693">&nbsp;</A>
<I>Anne nicolas
</I>

<LI><A HREF="000624.html">[Mageia-webteam] Forums structure : support catregory
</A><A NAME="624">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000638.html">[Mageia-webteam] Fwd: [Mageia-i18n] Update Romanian homepage
</A><A NAME="638">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000689.html">[Mageia-webteam] Installing maintdb on Mageia servers
</A><A NAME="689">&nbsp;</A>
<I>nicolas vigier
</I>

<LI><A HREF="000690.html">[Mageia-webteam] Installing maintdb on Mageia servers
</A><A NAME="690">&nbsp;</A>
<I>Kosmas Chatzimichalis
</I>

<LI><A HREF="000691.html">[Mageia-webteam] Installing maintdb on Mageia servers
</A><A NAME="691">&nbsp;</A>
<I>nicolas vigier
</I>

<LI><A HREF="000712.html">[Mageia-webteam] Installing maintdb on Mageia servers
</A><A NAME="712">&nbsp;</A>
<I>Kosmas Chatzimichalis
</I>

<LI><A HREF="000692.html">[Mageia-webteam] Mageia marketing plan is on the way,	proposals and team reports needed
</A><A NAME="692">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000697.html">[Mageia-webteam] Mageia marketing plan is on the way,	proposals and team reports needed
</A><A NAME="697">&nbsp;</A>
<I>Marcello Anni
</I>

<LI><A HREF="000625.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="625">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000627.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="627">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000628.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="628">&nbsp;</A>
<I>Rapha&#235;l Jadot
</I>

<LI><A HREF="000629.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="629">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000630.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="630">&nbsp;</A>
<I>planas
</I>

<LI><A HREF="000652.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="652">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000656.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="656">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000657.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="657">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000658.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="658">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000659.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="659">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000660.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="660">&nbsp;</A>
<I>Ma&#226;t
</I>

<LI><A HREF="000661.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="661">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000662.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="662">&nbsp;</A>
<I>nicolas vigier
</I>

<LI><A HREF="000663.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="663">&nbsp;</A>
<I>Wolfgang Bornath
</I>

<LI><A HREF="000729.html">[Mageia-webteam] Questions about the forum - Part II
</A><A NAME="729">&nbsp;</A>
<I>Ahmad Samir
</I>

<LI><A HREF="000762.html">[Mageia-webteam] Request on behalf of secteam for a website for	security update
</A><A NAME="762">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000688.html">[Mageia-webteam] Team meeting - Wednesday, April 13th - aka today
</A><A NAME="688">&nbsp;</A>
<I>Oliver Burger
</I>

<LI><A HREF="000768.html">[Mageia-webteam] Web team in ldap
</A><A NAME="768">&nbsp;</A>
<I>Michael Scherer
</I>

<LI><A HREF="000795.html">[Mageia-webteam] Web team in ldap
</A><A NAME="795">&nbsp;</A>
<I>Romain d'Alverny
</I>

<LI><A HREF="000622.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="622">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000631.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="631">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000634.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="634">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000636.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="636">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000639.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="639">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000642.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="642">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000653.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="653">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000670.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="670">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000677.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="677">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000680.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="680">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000683.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="683">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000684.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="684">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000687.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="687">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000694.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="694">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000710.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="710">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000715.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="715">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000718.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="718">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000720.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="720">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000728.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="728">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000737.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="737">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000761.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="761">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000769.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="769">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000776.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="776">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000779.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="779">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000781.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="781">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000786.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="786">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000801.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="801">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000811.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="811">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000820.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="820">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

<LI><A HREF="000822.html">[Mageia-webteam] Your Bugzilla bug list needs attention.
</A><A NAME="822">&nbsp;</A>
<I>bugzilla-daemon at mageia.org
</I>

    </ul>
    <p>
      <a name="end"><b>Last message date:</b></a> 
       <i>Sat Apr 30 00:00:02 CEST 2011</i><br>
    <b>Archived on:</b> <i>Sat Apr 30 00:00:08 CEST 2011</i>
    <p>
   <ul>
         <li> <b>Messages sorted by:</b>
	        <a href="thread.html#start">[ thread ]</a>
		
		<a href="author.html#start">[ author ]</a>
		<a href="date.html#start">[ date ]</a>
	     <li><b><a href="https://www.mageia.org/mailman/listinfo/mageia-webteam">More info on this list...
                    </a></b></li>
     </ul>
     <p>
     <hr>
     <i>This archive was generated by
     Pipermail 0.09 (Mailman edition).</i>
  </BODY>
</HTML>