-
Notifications
You must be signed in to change notification settings - Fork 66
/
ChangeLog
executable file
·2062 lines (1376 loc) · 62.7 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
commit 049cf9c737c69cdc07b252e08a4177027834f97c
Author: Abhishek Shrivastava <i.abhi27@gmail.com>
Date: Thu Sep 15 03:45:21 2011 +0530
GIT testing
commit b9a1bf90a99d4271c2df0997bf3bcbb6750ca766
Author: Boopathi Rajaa <boopathi@live.com>
Date: Wed Sep 14 21:47:33 2011 +0530
including autocomplete for login box
commit 963c2cec6340f57cb1d200907ac01a490cffd591
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 11:13:22 2011 +0530
form2
commit 4b8f090d34ba5095cc2db182b9c5d8f296355a65
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 05:51:08 2011 +0530
form2 beginning
commit 8ca8dba6b16456b7f978640354ddd090c44bea34
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 04:23:51 2011 +0530
base for public profile
commit 0ee0017d203db7209ae276c4f691320baa3b704c
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 04:02:08 2011 +0530
ignore all temp files ending with a
commit c5038cb401608535613b9a6b91ddc29ff9948dd3
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 04:01:25 2011 +0530
enabled feature user:username to redirect to profile
commit a3123aaf3f4b52728a7e4b9529320c1ef05fa549
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 03:09:53 2011 +0530
gitignore modified
commit ac0b27dbf5bc267962d2cfc571c9bad8605d1bc6
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 14 03:04:23 2011 +0530
ignore INSTALL DIRECTORY
commit e52483c31f389535ee9ff8af0045fc112a7ea6af
Author: Boopathi Rajaa <boopathi@live.com>
Date: Thu Aug 11 13:30:04 2011 +0530
modified gitignore file to include INSTALL folder
commit f187ecaca31e92855a25975aa51097430d5cb00e
Author: Boopathi Rajaa <boopathi@live.com>
Date: Thu Aug 11 13:29:10 2011 +0530
changing permissions on files
commit 7b340f223b80697a89471339d666904c40864331
Author: Boopathi Rajaa <boopathi@Scriptle.localdomain>
Date: Thu Aug 11 13:15:07 2011 +0530
added git ignore file
commit 9b1ac90ecd0aa85c81e3d6016d3897ca67f8bfda
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Aug 8 16:23:30 2011 +0530
readme
commit 12218e0e0d828e122c8811f06768587467fac128
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Aug 8 16:14:01 2011 +0530
README
commit 2eac0b3974c5ddd09a3b1403539806284060e1b1
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Aug 8 16:02:34 2011 +0530
move readme.html
commit 46a4da294538ae8a320c7cabdcbd7514946d8235
Author: root <root@Scriptle.localdomain>
Date: Mon Aug 8 15:48:08 2011 +0530
Made readme a markdown file
commit e3cee5664c3b5d42b82bab996d70ec7752fc24e8
Merge: a3c0ce3 6aa33ee
Author: Siddhant Sanyam <siddhant3s@gmail.com>
Date: Sun Aug 7 18:05:14 2011 +0530
Merge branch 'master' of https://github.com/Integriti/pragyan
commit a3c0ce3dfa40f48817f5df038120de8b6d02f510
Author: Siddhant Sanyam <siddhant3s@gmail.com>
Date: Sun Aug 7 17:48:12 2011 +0530
Moved codebase/<everything> to root
commit f074e3281efc3927e0f8a7f907222e99f92e62ac
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 7 08:57:52 2011 +0000
remove files
commit 504f9f9bf0516e1ed37e7a9ced576e39c25555ad
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sun Aug 7 08:56:13 2011 +0000
svn:ignore project
commit 660feb8a281ed857ddf66fbe4a9f2337ab7fdd55
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jul 9 21:49:15 2011 +0000
Few updates in README file
commit 9e00fea43286dbfd4e96d91c6f7f2312fc38e0c5
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Jun 13 00:29:42 2011 +0000
Removing an echo from article module while toggling ckeditor
commit 56bc2ba0f9b5da6d6474788a5c838346f80dcda0
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jun 4 23:59:51 2011 +0000
Adding modified .htaccess for servers where PHP is running as CGI binary
commit 802b3ea0222e477e6226c5d0ea14355d388d138d
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jun 4 23:54:53 2011 +0000
Adding runtime functions to undo effects of magic_quotes and register_globals in case .htaccess is disabled and they're enabled.
commit 72b836bd966e4de433d9698c423eb2704cd93a18
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jun 4 23:08:56 2011 +0000
Prioritising ORIG_SCRIPT_NAME over SCRIPT_NAME server variable for mod_rewrite+phpsuexec environment.
commit f4577f670bca77cc9091b578bb8fe71e09a854b2
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jun 4 00:11:20 2011 +0000
Added FollowSymLinks in htaccess-dist and better warning messages during installation
commit 388e46ef582b1681204cf1c1bc972f18a7ff1505
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Jun 3 22:42:31 2011 +0000
Added check for issues in widget during widget installation
commit b4c476d53033a72b0f8b2d79d9bb13ae91b24eae
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Jun 3 22:03:10 2011 +0000
Fixed an installation bug in widget management,renamed required file WidgetInfo.pgyn to widget.info,modified integriti template and added censor words in article comments
commit 29c120678fc2c74241826c4e031babe6efa5d4b4
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun May 22 21:49:12 2011 +0000
Adding missing database structure for gallery ratings
commit 953842a0d7353b1c0f2a5402412cdd6a697cf960
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun May 22 21:39:15 2011 +0000
Finished integriti template
commit ee108b4a2283f7c78a3bb49528e1130203c3c15d
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed May 18 16:21:52 2011 +0000
Added ability to edit links #140
commit b698681f7b3e9d7894b6f95d77a24120a6030d90
Author: balanivash <balanivash@gmail.com>
Date: Mon Apr 25 17:06:50 2011 +0000
Correcting a minor error in page settings
commit 47c330f582591cd042076a8b4776e607cd36e317
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Apr 14 09:02:23 2011 +0000
Adding option to dynamically disable cKeditor
commit 3e8d2fb7af15b261ac9416110f32c24694690d78
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Apr 14 08:35:47 2011 +0000
Renaming of INSTALL folder after installation to avoid hacking #162
commit d4198870bd2e95b372d8e25a768cfa4ff5abb5bd
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Apr 12 17:02:49 2011 +0000
Added option to disable cKeditor #139
commit 22547df4efff2eda9e29fa059fb7b0cbf3404d0f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Apr 9 17:17:11 2011 +0000
Disabling password reset for openid users #137
commit b646a3a566ce88e925c82bb0f62eaebc595908b4
Author: Akash Chouhan <akash6190@gmail.com>
Date: Thu Mar 31 01:11:50 2011 +0000
Small typo in searchstructure solved
commit 6aa33eeab1720d27ca7f9b135b011079a2286476
Author: Boopathi Rajaa <boopathi@live.com>
Date: Tue Mar 29 22:31:45 2011 +0530
Add description
commit 3f0ff5fe9653a284a72bfa6a0ccece7946fa2a47
Author: Boopathi Rajaa <boopathi@live.com>
Date: Tue Mar 29 22:06:41 2011 +0530
First Commit
commit 0cce35648615b7749723ca80b624c97598b62dc9
Author: Boopathi Rajaa <boopathi@live.com>
Date: Tue Mar 29 15:10:54 2011 +0530
Readme
commit 6a58fc123b80921304118294ffda3990a5adc3c5
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Mar 27 17:09:37 2011 +0000
Added rating in gallery #64
commit 8e6e0bd12348702b9373a567817822561e941a2a
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Mar 26 20:04:04 2011 +0000
Fixed a bug when opening integriti in chrome
commit 28f3c4947215535fe3cd1291e330220f21212fe3
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Mar 21 00:54:42 2011 +0000
Updating ckeditor to v3.5
commit 7598b72e2d6aa6bf8ae1917c358e989f61332e96
Author: Akash Chouhan <akash6190@gmail.com>
Date: Sat Mar 19 11:39:38 2011 +0000
Changed latex to gd library for portability with windows
commit 204c63656ce89c2b4e02efe38080946659d3cc5d
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Mar 18 14:04:46 2011 +0000
Adding automatic menu propagation to child pages #143
commit b451f1d6b7b8bbc590245553d1ed89a01a98be4a
Author: Akash Chouhan <akash6190@gmail.com>
Date: Thu Mar 17 17:51:46 2011 +0000
Fixed some typo bugs in quiz and hospi modules
commit 86c70d02ba3f87851d8d2499a8c1b02efda9f51e
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Mar 17 08:09:53 2011 +0000
Fixed typo bugs in quiz and sitemap
commit 0c80dd359c3288486c57280f4d743f51a291695f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Mar 16 18:57:34 2011 +0000
Fixed a bug in escape function
commit 255f6573924d96653585f6b684512782e3d5263f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Mar 16 18:36:04 2011 +0000
Added another escape function which doesn't require mysql connection
commit d6b56f165fa3b8c7ba52369120c1be4bcf71ce7c
Author: chakradarraju <charkadarraju@gmail.com>
Date: Wed Mar 16 16:45:58 2011 +0000
Ticket #151: bug in Multiple Choice Question
commit 3c47f6ef9e8d423c9c4e2ee9b3a47bfe63f771be
Author: Akash Chouhan <akash6190@gmail.com>
Date: Wed Mar 16 12:52:49 2011 +0000
Ticket #127 Sql injection in V3.0 resolved
commit fb218385cc7d454d870e97111179cbdd28bf786a
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Mar 14 01:30:45 2011 +0000
Updating documentation
commit aec6210d546ce61508f36657d9b9355ec18d7750
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Mar 14 01:03:34 2011 +0000
Finishing touches on trinity template, will be followed by one more commit
commit e423932306af54dfc31456ae289c94f0d3ecd29b
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Mar 13 19:33:51 2011 +0000
Finalizing integriti template
commit a64f537c1421f61350954d77a732540f8b1460b1
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Mar 13 15:40:28 2011 +0000
Changes in integriti template
commit 92e00b70cfa1472a6c2b43caf9e958d5f3f9c7bd
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Mar 13 13:38:20 2011 +0000
Adding submenu in integriti template
commit 69593d713185b8f5d9363f82c068dd008776d67a
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Mar 13 10:57:08 2011 +0000
Adding template integriti
commit 99552bbe4c38d0e38a594c65648dbbc7e08e4223
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sat Mar 12 08:21:11 2011 +0000
Ticket #113 Generalised copy/create/delete module in core part of cms
commit 6e6248d37d7676427c68d3e4b0fda3469834b242
Author: balanivash <balanivash@gmail.com>
Date: Fri Mar 11 19:04:29 2011 +0000
Adding functions to block disposable emails #124
commit 3622f631b9db78adfa6dfaec7b572d7b9f6f8793
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Mar 11 15:44:57 2011 +0000
Fixed template deletion #123
commit 2b1aa5ab1866c72b1412259adabc412e97f85263
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Mar 11 15:29:27 2011 +0000
Fixed URL Rewrite bugs #115 and #117
commit 044022eb6f679d14a088918a06a2245a40ccb060
Author: chakradarraju <charkadarraju@gmail.com>
Date: Fri Mar 11 12:51:01 2011 +0000
Ticket #122, activating/deactivating/deleting multiple users
commit 7bfc87790f7751e20618208f4ea688210ab436b8
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Mar 10 22:51:24 2011 +0000
Auto detection of Rewrite engine during installation #98
commit d0353a69d6a13bce323688dbbd499e8a1c5d376a
Author: chakradarraju <charkadarraju@gmail.com>
Date: Wed Mar 9 00:06:41 2011 +0000
Ticket #120 - Permissions improvement
commit e1b9f8a3d9166ba53d2defcb4d88f5dc66008745
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Mar 7 16:51:55 2011 +0000
User Public Profile - Redirection Only.
commit 1f2602c230a98347a811c7ebdd8d25f41d59858c
Author: balanivash <balanivash@gmail.com>
Date: Mon Mar 7 10:33:20 2011 +0000
Patch for Ticket #121
commit 5d933da2c54786300580e13f5d7155806dc4dd43
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Mar 7 03:43:04 2011 +0000
iconmanagement.lib documentation
commit b9f1cc007289cc1fe68cf8e9ce7d046dadd636ea
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Mar 7 03:06:50 2011 +0000
Menu Documentation
commit 06fc67ea1ba2442b20f2ca7e9c84b790f3d97db1
Author: balanivash <balanivash@gmail.com>
Date: Fri Mar 4 13:24:28 2011 +0000
Adding Documentation for core libraries
commit 5164238efa4ae313fa5d9cc0e418ea49b88fb58f
Author: chakradarraju <charkadarraju@gmail.com>
Date: Fri Mar 4 02:43:30 2011 +0000
Documentation for quiz module
commit e67bc08f7a6ae47e9a15991f7863ee396291d3ec
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Mar 3 19:20:44 2011 +0000
Adding form deadlines feature #125 and fixed hospi module #83
commit 85c1b9dfb949ae11f12da0b8b7284e84967805be
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Feb 24 23:44:53 2011 +0000
Escaping user inputs and moving save config.inc.php as the last step during install for security
commit 5fb0612421af91d5860c06cfeefbd2fad7119c91
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Feb 17 19:42:03 2011 +0000
Fixed an xss vulnerability related to cms_desc,cms_keywords and footer in admin module
commit fc3d7c62e18e2b9b9739b90e488152e02e92490a
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sun Feb 13 23:16:16 2011 +0000
Preventing auto-correct, Correct only on btn clik, and small bugfix
commit 71c56f10c849b9cab0cb60fb849e03814c3cbd6f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Feb 13 18:08:06 2011 +0000
Fixing a bug in quiz correct
commit b1323cb8f5c44bec2ecd84e420a39d83a2a60325
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Feb 13 13:58:26 2011 +0000
Fixing bugs in quiz and form view registrants
commit 6339a51ae859642c7b376121f9d80bab003d7af7
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Feb 12 19:40:44 2011 +0000
Adding save as excel feature to quiz and having the form or quiz name as excel file name
commit 20ffcb7db3daf5e27af4ddeb454334e86021eb10
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Feb 12 19:26:56 2011 +0000
Adding profile information display in quiz correct
commit 4d385efe7ad5fab4617a2abace5ba6fecb0d7278
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Feb 12 15:41:05 2011 +0000
Adding hospitality module
commit af6f9dafe5629779361193a1f8d66806df21869f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Feb 8 02:27:04 2011 +0000
Adding the news slider in trinity
commit b5a81e216fb3f7dfb8aff2833b763f3233a5d203
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Feb 8 01:24:33 2011 +0000
Just another commit
commit 334a347e048b6b89e645cb3ddfedf9c00b5963bc
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Feb 3 19:30:04 2011 +0000
Editing template for email, fixing a bug in show-details of forum users, and trinity template improvements
commit 15828b84b3ee926cf9b049d8199eac647e0ad120
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Feb 3 18:20:06 2011 +0000
Adding right sub menu in trinity
commit 378227d0ed7ba69d198a6e3698d28fc31ad0b710
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Feb 2 07:50:52 2011 +0000
Trinity improvements
commit 436b0d9065a058d2edce29683eefca1f1231692b
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Feb 2 07:50:02 2011 +0000
Displaying emails instead of usernames in permissions table
commit b2e5af56ec3a5f2f250b65d1f06b7eb8fbd1b66b
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Feb 2 07:48:55 2011 +0000
Changing the default entry of form
commit b204ba6fc0ee5fe896f97700f8724dd5cff76bf2
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Feb 1 14:55:58 2011 +0000
Commiting minor changes related to Pragyan 2011 and trinity template
commit f6319cf71082cd80df542fa6f5bd2e248a72488e
Author: Boopathi Rajaa <boopathi@live.com>
Date: Tue Feb 1 13:57:18 2011 +0000
Resolving conflicts between templates
commit ea5fae28aef35ef2f1cb9d8559ef669f7d539f77
Author: Boopathi Rajaa <boopathi@live.com>
Date: Tue Feb 1 07:03:17 2011 +0000
Renaming the news widget to updates widget due to conflict with news module class
commit 32f04e3bb2d2346530f5ce3e5dbe31b00dfff491
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Jan 31 18:53:58 2011 +0000
Trinity Updates
commit 576e9be6e7553ff4a1ea6f4b7049ed5c1248dedb
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Jan 22 20:50:16 2011 +0000
Trinity Bug fixes
commit 06b8eb80891f767d175c956cd686415bd0d7f31f
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sat Jan 22 09:29:37 2011 +0000
Changes in previous commit
commit cc653cc70df0b92f2ff8c3d4f1a078bfa6734652
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sat Jan 22 05:06:27 2011 +0000
Fixed permission bug with url rewrite, and included jQuery to Jack template
commit 958d1e80803bdad9838657395f07d19fcc0e211c
Author: Boopathi Rajaa <boopathi@live.com>
Date: Wed Jan 19 08:35:10 2011 +0000
trinity menu background bug fix
commit 9146823a20367330ce3d0b15e51e40ec189d3aab
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Jan 19 06:14:32 2011 +0000
Bug fixes in Trinity
commit 505c74b76ed1844177b9dad87876ce47fcbb04f6
Author: Boopathi Rajaa <boopathi@live.com>
Date: Wed Jan 19 05:46:52 2011 +0000
Trinity Improvements
commit 3ee64a91fdf5a0f3bdb0205fdaf4f94ab4104f11
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Jan 18 20:57:07 2011 +0000
Adding save as excel to form view registrants
commit 86542bd49d0c248549bed0546597e7ee5289d13f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Tue Jan 18 20:42:49 2011 +0000
Applying saving as Excel sheet in user management
commit 9cc9003434a90184cbf8b0bea95685dd79044ead
Author: balanivash <balanivash@gmail.com>
Date: Tue Jan 18 19:10:35 2011 +0000
Minor corrections in Recaptcha, Form and User Management
commit 6e42c3d113d0930f609705e70925c661f65565aa
Author: Boopathi Rajaa <boopathi@live.com>
Date: Thu Jan 13 09:42:44 2011 +0000
Removing unwanted stuff from trinity
commit 3b69582bf40528076043a87373bf4e8bfe0091bd
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Jan 10 04:31:11 2011 +0000
Trinity Improvements
commit c34cabeb3f2c7bdad2c22a47ce9d340603fc8e5d
Author: balanivash <balanivash@gmail.com>
Date: Sun Jan 9 18:31:45 2011 +0000
Adding basic working prototype of share module
commit f4ebe4ef8d678e23366e2ce627eadbdecec7dfc5
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Jan 8 11:49:57 2011 +0000
Trinity Modifications - testing
commit 3ba079a9e06f5f4af3b118d0fffc7f3dfce4cc0f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Jan 7 22:01:33 2011 +0000
Some bugs fixed in beta installation
commit 2412589b7df3576024765683a2ce9e7624299b89
Author: balanivash <balanivash@gmail.com>
Date: Fri Jan 7 10:34:14 2011 +0000
Minor corrections in Icon Management and Article
commit cb118115612599dcfd8b68e8eec86bd20d8e6159
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Jan 7 06:56:58 2011 +0000
Template fixes in trinity
commit c0c6b1309eaabe63eab9ec730a19ef7c2d68310f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jan 1 23:42:01 2011 +0000
Final commit before the beta release
commit d54c4b75d799f2ef4be6b77fd264e84938b6cc2f
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Jan 1 21:44:32 2011 +0000
Adding view count in gallery pictures
commit 2ce5077926344ec3f35b8c1438bf7abe421cb959
Author: balanivash <balanivash@gmail.com>
Date: Wed Dec 29 17:25:22 2010 +0000
Adding facebook like widget
commit 8312733f266ccf758f4bee09117e904c3f554d03
Author: chakradarraju <charkadarraju@gmail.com>
Date: Tue Dec 28 17:51:15 2010 +0000
Improvements in Module, Template management
commit 906d8b945299c9da6c019ffc50c1621d85e807e3
Author: chakradarraju <charkadarraju@gmail.com>
Date: Mon Dec 27 19:21:33 2010 +0000
removing http_send_status function
commit 9a80f282814194276a596e921c001c2c8d3830a2
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Dec 27 19:13:27 2010 +0000
Converting all instances of http_send_status() to equivalent header() function
commit 7e50d2361c7443509924162ecb9dc9647efde588
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Dec 26 21:33:33 2010 +0000
Bugfixes in form view registrants, added selected tab in book module and trinity template improvements
commit aad947a20770e00d7cd4235240425c719f1ebcf0
Author: balanivash <balanivash@gmail.com>
Date: Sun Dec 26 18:13:38 2010 +0000
Adding Widget:slider
commit 4bd9a865175ee1543d9adc92dd3ed24e76b0a485
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sun Dec 26 07:58:57 2010 +0000
documentation for book, safedit and bug fix in book, template installation
commit 46208118ea9a1c134307fba06794c7c965cce1b4
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 25 14:41:48 2010 +0000
Trinity improvements
commit 7517795f3bc5d0b092fc1d1f3b38c2fc6fe90390
Author: chakradarraju <charkadarraju@gmail.com>
Date: Sat Dec 25 11:20:32 2010 +0000
Widget installation done, Template installation vunerability fixed
commit 93f68547738f51521ae9e500dedd7c0caff91968
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Fri Dec 24 22:37:49 2010 +0000
Fixing the security bug related to direct script access reported in #111
commit be8a332bc00afc2587db13d2d7529873d132bfd1
Author: Boopathi Rajaa <boopathi@live.com>
Date: Fri Dec 24 05:00:38 2010 +0000
Corrected errors in Icon Management
commit 437d73a7919348386c53f4f22fff85aca349ed52
Author: Boopathi Rajaa <boopathi@live.com>
Date: Thu Dec 23 23:39:00 2010 +0000
Icon management add icon and select multiple files in upload form
commit 39f9fae9bbfd3b9c3ea2b0739643ae53f6d42de6
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Dec 23 22:00:50 2010 +0000
Updating pragyan_structure.sql
commit 9117d5b91d1921b013ab1088beed52cb0141a0a8
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Dec 23 21:27:05 2010 +0000
Added support for widget propagation to child pages recursively
commit 28a979dd98224f0ea33abfcb4b6b720671d4ceb3
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Dec 20 21:13:16 2010 +0000
Unnecessary usage of cms-variable . removed all instances
commit 0d7396a8b287f51fc6669e780f0b411cfdcbb1a2
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Dec 20 20:51:03 2010 +0000
changed to relative links in icon management. Dependencies corrected.
commit 473d51389b7c3ec6b78b9e372e834ab45e2e73f7
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Dec 20 20:49:04 2010 +0000
Added advanced options to news widget so that it can be integrated with trinity
commit 2f9f71a01e4d8711139555435e27ba6cbc6d491b
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Dec 20 19:07:56 2010 +0000
Fixing a bug in countdown widget due to addition of js calender
commit eb3d45fd1fb10061ee11e93b0c087161e929ccf4
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Dec 20 18:34:08 2010 +0000
Adding support for noinput type configuration in widget framework
commit 721841cc476dfb7d44b885f0d3eb143fc3fcf04a
Author: Boopathi Rajaa <boopathi@live.com>
Date: Mon Dec 20 16:59:15 2010 +0000
Classic menu restored #106, Icon management bugs with mozilla and drag-drop fixed. #107
commit 8619f027653c1d09619ccf8d1521f7784174b0b8
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Mon Dec 20 15:37:38 2010 +0000
Fixing potential bugs in countdown and news widget
commit 5c5e8d4f2584e3511fe51af46d63112e5a96f97a
Author: balanivash <balanivash@gmail.com>
Date: Mon Dec 20 00:58:43 2010 +0000
Resolving the clash between trinity and ReCaptcha css #108
commit d37dfb7d3a37cca6a8b644fc722ceb9dba59e075
Author: balanivash <balanivash@gmail.com>
Date: Sun Dec 19 23:47:36 2010 +0000
Resolving errors in js in countdown and news widget #104 #102
commit 45533ee8f6efd564e97a4dc9583ad0a6cc405c4b
Author: balanivash <balanivash@gmail.com>
Date: Sun Dec 19 20:44:50 2010 +0000
Fixing bugs in upload
commit 7bc6548c47e1f46375d7aa27be1413afc1253a1e
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Dec 19 20:08:49 2010 +0000
Adding support for common widget output
commit 0d0b53b1011a9a78a7c29e2bbdae1e1a212d42c2
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Dec 19 19:20:41 2010 +0000
Fixing the bug with child page pdf
commit dcd491ee163c0fd00c2627e38be1416a547bef79
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sun Dec 19 19:09:58 2010 +0000
Fixing bug in widget framework and adding display text option in server_date_time widget
commit 182e73279b43492791a3ef7504d1dc9f508b7cda
Author: balanivash <balanivash@gmail.com>
Date: Sun Dec 19 18:50:16 2010 +0000
Correcting errors in gallery thumbnail and child pages pdf
commit 2c5d0b11d687dc4ffd42e4fda1f6ad5f6f409288
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 21:57:25 2010 +0000
Removing unnecessary files from the documentation template
commit 779d0cbed74e99f055725be6a1abc3ec552786a4
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 21:45:58 2010 +0000
Changes in trinity template including removal of pragyan video
commit 603342247c32990471818576fc9bb6912fe7c66e
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 21:17:19 2010 +0000
Fixing bugs in installation form
commit 2c085e82c54b08aaa82404ac58bb2166f34c9782
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 20:07:43 2010 +0000
Fixing bugs in openid user deletion and activation
commit 3c55a68a25b6d3688e523b66f2df5afc739dcfbe
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 19:40:04 2010 +0000
Fixing the height of the thumbnail generated in gallery to be same as its widget
commit 3a254c47f1b249c7b0388ad6b959a223caca0b5d
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Sat Dec 18 18:43:59 2010 +0000
Modifying the template of documents and relocating all documents to docs folder
commit 618756bd25795079a7fd4e03a2276243cf109cfa
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Thu Dec 16 19:55:47 2010 +0000
A minor bug in installation related to the ordering of installation functions
commit 98b8d34792164bebb13dafa3e354eea519712b8a
Author: balanivash <balanivash@gmail.com>
Date: Tue Dec 14 23:06:18 2010 +0000
Options to use recaptcha
commit c8a7506b81d1a27d4ff80f10c8b1a44d1ed8f7ac
Author: balanivash <balanivash@gmail.com>
Date: Sat Dec 11 19:04:14 2010 +0000
Correcting minor problems in login/register disable
commit 9b9e6f1b2603f9ca4564f3a8d6899e42a7ebfe5b
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 18:51:06 2010 +0000
prettyURL changed. Works fine with the present menu and breadcrumb
commit e5570a2aa68b0175de1ad0ed79d997a407350952
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 17:51:50 2010 +0000
Menu errors corrected
commit 85926e20464d88eb03f68dbcec52f9d93b77f15d
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 10:20:54 2010 +0000
Changed clock date in trinity template
commit 86b5171958540436ce90afdc85d4da8cf208426a
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 10:09:32 2010 +0000
Icon Management Improvements - Erase Icon, File fetch changed
commit 704d24abd9fbefca9ffa77033a33c0cee47ef39c
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 06:31:17 2010 +0000
Countdown timer changed
commit f8f0cb94e93e47c062d8354c024943e4ba0a0b3e
Author: Boopathi Rajaa <boopathi@live.com>
Date: Sat Dec 11 05:34:34 2010 +0000
Registration form styling
commit cae2959a79d0187b7b6ab6fa1d09a84e1dbca04f
Author: balanivash <balanivash@gmail.com>
Date: Sat Dec 11 04:59:37 2010 +0000
Correcting typo in pragyan_structures.sql
commit 0daa17f7e1a283c5edb035cc96a19fb8737ceabb
Author: balanivash <balanivash@gmail.com>
Date: Fri Dec 10 23:52:37 2010 +0000
Correcting problems in icon enable/diable propagate
commit e63944c699e6ab601a2441ec2c468a07dce7e688
Author: balanivash <balanivash@gmail.com>
Date: Fri Dec 10 23:32:49 2010 +0000
Adding Funtion for saving article edits as draft #93
commit f15d6e1af32b4a4175d581e28336ee09985ae8b4
Author: balanivash <balanivash@gmail.com>
Date: Fri Dec 10 22:24:59 2010 +0000
Option to include Child pages in pdf Ticket#12
commit 9a797f2ab4feee402ba6d015035297483e78c360
Author: balanivash <balanivash@gmail.com>
Date: Fri Dec 10 18:45:59 2010 +0000
Adding News widget
commit 9a60da966c104693b51927926ffd9e3d0ca7441c
Author: balanivash <balanivash@gmail.com>
Date: Thu Dec 9 21:23:11 2010 +0000
Adding Count Down Widget
commit 49937a0faa67ca33370820b4790acd6af27064ef
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 23:03:23 2010 +0000
Color change in the menu css of trinity
commit 6339833483bdf33e79b1674046f6604bbc0c1056
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 22:34:52 2010 +0000
Fixing some minor bugs in openid
commit 7b0830fb17f03c7113063ba9883e06db941eccf1
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 22:23:47 2010 +0000
Adding pragyan logos, banners and images and also adding them in the trinity template
commit bc0666c53e60079c21c2a31c17400e1f20717996
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 21:58:59 2010 +0000
Resizing the countdown timer in trinity
commit 5e1d63ad1975fcbbb895487a2dba63f5e37d38ec
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 21:24:02 2010 +0000
Fixing conflicts between openid and trintiy template : courtesy siddhant
commit 9207dcec3b053515788222c1073f9d822bf6e7f9
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 19:38:57 2010 +0000
Fixed bug in installation, duh
commit 9e551ee5353f7e536e6e491f2e529028f5aab13b
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 19:07:49 2010 +0000
Fixing the installation script with some installation steps being done even though user has selected not to install that feature
commit 0504c2d506514179ab62ae08f7f781e10fa87ae6
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 18:20:25 2010 +0000
Undoing commit 179 regarding breadcrumbs url rewrite bug, some fatal error found
commit b827a23432ab148294534d6d31c8455b9a8b04e9
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 17:13:39 2010 +0000
Fixed openid bug which logged in even deactivated users
commit 8d11cdc285884b4e75978a3eaa0e0fb1a38d7972
Author: Abhishek Srivastava <i.abhi27@gmail.com>
Date: Wed Dec 8 09:11:09 2010 +0000