-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathghissues2.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 24 columns, instead of 12 in line 1.
3708 lines (3009 loc) · 216 KB
/
ghissues2.csv
File metadata and controls
3708 lines (3009 loc) · 216 KB
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
Summary,Description,DateCreated,DateModified,Status,Reporter,Assignee,AffectsVersion,FixVersion,Resolution,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody,CommentBody
old BPR icon on Stakeholder matrix pg needs to be updated,"on the Stakeholder matrix pg in PWX, the old BPR icon is displayed in the lower right hand corner of the pg while the new one's at the top of the pg.
can we replace the old one w/ the new on the bottom of the pg?
thanks!
http://www.peerwater.org/home_page/stakeholder_advantage",10/10/2011 09:45:11,10/10/2011 10:25:03,Closed,rajesh,rajesh,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:25:01; ajaya;
fixed
changeset:1776","10/10/11 10:25:03; rajesh; **Author: annette**
the icon on the bottom right of the Stakeholder matrix pg is still the old BPR logo. please change to new logo.
"
admin dashboard show when orgs log in,"It would be helpful to have some notice on the admin dashboard when partner organizations log in.
",10/10/2011 09:45:15,10/10/2011 10:25:16,Closed,rajesh,rajesh,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:25:13; ajaya;
What you mean? Does this mean: a status screen for admin to show who logged in and when?
AJ","10/10/11 10:25:14; rajesh; **Author: rajesh**
two parts:
1/ for all members: can we show a count of how many users logged in?
in the future when we have over 50 orgs, it might look good when someone logs into pwx and they see: 8 users logged in ...
2/ for admin: in the users profile, can admin see last login?","10/10/11 10:25:16; ajaya;
check admin dashboard
changeset:2411"
icons not appearing on www map (though we have coordinates),"Below are several projects/application that has coordinates, but the icon isn't appearing on the map. They're all El Porvenir:
Project #26, 21, 55, 57, 58
Application #4 ",10/10/2011 09:45:18,10/10/2011 10:25:18,Closed,rajesh,ajaya,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:25:18; ajaya;
changeset:8332"
icons not appearing on www map (though we have coordinates),"Below are several projects/application that has coordinates, but the icon isn't appearing on the map. They're all El Porvenir:
Project #26, 21, 55, 57, 58
Application #4 ",10/10/2011 09:45:22,10/10/2011 10:25:20,Closed,rajesh,ajaya,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:25:20; rajesh; **Author: annette**
forget #4, it's just projects 26,55,57,58,21"
project icons should appear in front of buildings and application icons on map,"Please make it so that the project drop icons dominate/appear in front of buildings and application icons on the map.
After project icons, partner buildings should appear and application icons should appear last.
",10/10/2011 09:45:27,10/10/2011 10:25:25,Open,rajesh,ajaya,Wish List,Wish List,Unresolved,"10/10/11 10:25:23; ajaya;
Milestone Future Release deleted","10/10/11 10:25:25; rajesh; **Author: abhishek**
Google maps api doesnt allow manipulating this.. need to think of some other work around"
no location showing for app that appears on map,"This application appears on the map but the lat/longitude aren't appearing in the application details page.
http://www.peerwater.org/apps/42",10/10/2011 09:45:28,10/10/2011 10:25:42,Closed,rajesh,rajesh,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:25:35; ajaya;
There is no way this application can be on the map. There are no locational info for this in the DB.","10/10/11 10:25:37; rajesh; **Author: rajesh**
this works as designed for apps.
if there is no data for app, it appears next to the office location.
better to have that than it not appearing.
--- NEW ASSIGNMENT OF TICKET ---
this is not true about projects.
i believe it would be good to have the projects show next to home location so we know which ones to fix.
can we do this easily?","10/10/11 10:25:39; ajaya;
changeset:2152
changeset:2153
Display projects next to organization's primary location if no co-ordinates are provided for proj","10/10/11 10:25:41; rajesh; **Author: rajesh**
do not know if this is related to the fixes, but when i map SFYD the map is zoomed out and not in on Sierra Leone. All the icons should be in one country and so map should zoom in like it does for the others.
http://www.peerwater.org/map/organizations/6-Safer-Future-Youth-Development-Project","10/10/11 10:25:42; ajaya;
http://peerwater.org/projects/34-RWHT-for-2-rural-schools-in-Mamama-and-Makande/proj_locations/34 this one has really bad co-ordinate of 999
Fixed in www."
change approval screen in referral on pwx,"Under the 'refer' section, we need to redo the approval screen - it's currently the same as the approval screen in the application section. ",10/10/2011 09:45:33,10/10/2011 10:25:56,Closed,rajesh,rajesh,Wish List,Wish List,Fixed,"10/10/11 10:25:52; ajaya;
Hmm.. What you mean? Do you mean review screen?","10/10/11 10:25:54; rajesh; **Author: rajesh**
i too am not sure of what screen is being referred to here.","10/10/11 10:25:56; rajesh; **Author: rajesh**
yes, the review screen.
we may want a different scale and a different number of text boxes."
"Typos on referral pages, org forms, team, and about","Irina discovered many typos on the org pages for newly referred (and existing) orgs.
Also, updates to the about pages (including changing logo) and team pages",10/10/2011 09:45:37,10/10/2011 10:26:00,Closed,rajesh,rajesh,Next release,Next release,Fixed,"10/10/11 10:26:00; rajesh; **Author: rajesh**
done, submission issues in svn exist though.
and also, other parts of the referral process (email notifications) need to be made."
email notifications missing in referral process,"at least one email notification is missing:
when q&a happens, notification should go out to all the reviewers and applicant (hopefully except the org/person who submitted).
also, the email to inform them of acceptance/rejection/deferred may be missing. the template should be created.
after inserting the appropriate email code, assign to rajesh or annette to fix the language.",10/10/2011 09:45:41,10/10/2011 10:26:04,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed,"10/10/11 10:26:02; rajesh; **Author: annette**
Missing emails:
-When an applying organization initially submits itself for review, there is no confirmation email. There is only a box that appears while it's logged in.
-When one reviewing organization posts a question, all reviewers should receive a msg. currently only the applying organization receives a message.
-Fix: when an applying organization responds to a question, they are the only org to receive a message. the reviewing organizations should be the ones receiving messages, not the applying organization!
-Admin should get an email notifying when reviewing organizations submit reviews
-When a new organization has been approved, all the partners should get a message.","10/10/11 10:26:04; ajaya;
Fixed all except
-When a new organization has been approved, all the partners should get a message.
Please test. Depoyed on qa.
AJ"
Referral email text changes,"The emails for approved and denied need to change a lot.
No 'rejected' for denied.
More 'welcome' and some info for approved.
",10/10/2011 09:45:48,10/10/2011 10:26:09,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed,"10/10/11 10:26:07; rajesh; **Author: rajesh**
resolved, updated the text in both acceptance and denial emails, both text and html","10/10/11 10:26:09; rajesh; **Author: rajesh**
more text changes needed, found after testing and put in a doc by Annette"
Referral double acceptance email being sent,"During the Refer process, when admin accepts an organization, the org is sent 2 acceptance emails. (When an org is rejected, it only gets one.)
Here's the subject line of this email: Your organization has been accepted into PWX!",10/10/2011 09:45:53,10/10/2011 09:45:56,Closed,rajesh,ajaya,Org Referral System,Org Referral System,Fixed
Orgs receiving notification when they post a question,"During project application Q&A, when the applying org responds to question, it receives unnecessary email notification of their own response.
This message is sent to all the contacts PWX has for the org.
",10/10/2011 09:45:59,10/10/2011 10:26:13,Closed,rajesh,ajaya,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:26:13; ajaya;
duplicate ticket:8349"
Text edits for PWX,"Irina made a thorough text edit doc for PWX which we haven't taken advantage of yet.
I've edited a few of her edits and attached it.
",10/10/2011 09:46:04,10/10/2011 10:26:17,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed,"10/10/11 10:26:15; ajaya;
Please update this document with the latest round of text changes we had done. Please open specific issues.
","10/10/11 10:26:17; ajaya;
Milestone Future Release deleted"
Deadline to appear in emails,"
Would be nice to mention upcoming deadline for review of application and of referral, so that people know by when things need to happen.
Date field needs to be created: there is a date for application, but no deadline for referral.
Following the creation of the fields, reassign to rajesh so he can insert the field into the text.",10/10/2011 09:46:08,10/10/2011 10:26:23,Closed,rajesh,rajesh,Org Referral System,Org Referral System,Fixed,"10/10/11 10:26:19; ajaya;
already done.","10/10/11 10:26:21; rajesh; **Author: rajesh**
only the initial email has the date.
lets put the deadline on all emails sent out.","10/10/11 10:26:23; ajaya;
Milestone Future Release deleted"
Clean up emails - get out of db and put in text files,"
there are many emails in the database (old design).
then need to be converted to text/html files
the notifier.rb files needs to be really cleaned up so variables are shared or made clear.",10/10/2011 09:46:12,10/10/2011 10:26:25,Closed,rajesh,rajesh,Org Referral System,Org Referral System,Fixed,"10/10/11 10:26:25; ajaya;
notify_final_app_status is done.
List the rest here & assign it to me if you need.
changeset:1866"
replace 'submit' with 'save',"in the organization profile edit page (both the one after login and the one you see first time you get invited thru a referral) the 'submit' button should be replaced by a 'save' button.
we ask the applicants to submit and the button is confusing because of a double meaning.",10/10/2011 09:46:16,10/10/2011 10:26:56,Closed,rajesh,rajesh,AWWC - support for new groups,AWWC - support for new groups,Fixed,"10/10/11 10:26:47; ajaya;
fixed
changeset:1871","10/10/11 10:26:49; rajesh; **Author: rajesh**
the fix is not present in the new screen when the user first goes to the site. it still says 'submit' and it can confuse the person the first time they login into the system and feel that they have to fill out everything.
http://qa.peerwater.org/organizations/new?code=207d286e8d6cf83ad57521277715926e","10/10/11 10:26:51; ajaya;
Checked again. Fixed.","10/10/11 10:26:53; ajaya;
Milestone Future Release deleted","10/10/11 10:26:55; rajesh; **Author: rajesh**
fixed on both contact screens, new and edit"
replace 'submit' with 'save',"in the organization profile edit page (both the one after login and the one you see first time you get invited thru a referral) the 'submit' button should be replaced by a 'save' button.
we ask the applicants to submit and the button is confusing because of a double meaning.",10/10/2011 09:46:20,10/10/2011 09:46:22,Closed,rajesh,ajaya,Org Referral System,Org Referral System,Fixed
can't distribute apps for review in QA,"Trying to distribute apps for review in QA, using Mozilla.
When click submit, get message:
Error: Following problems occured. Please review and correct of necessary
* System Error
http://qa.peerwater.org/admin/distribute_app;display_review_orgs?application_id=73
Please advise. This happened signed in as CARE and WaterAid.",10/10/2011 09:46:24,10/10/2011 10:26:59,Closed,rajesh,rajesh,Org Referral System,Org Referral System,Fixed,"10/10/11 10:26:57; ajaya;
fixed.
changeset: 1870","10/10/11 10:26:59; ajaya;
deployed on qa.
changeset:1870"
project application email error,"The current wording makes the application title unclear.
The subject line for the ""assigned to review a project application"" should read ""You have been assigned to review '''the''' project application ""French taken in Chad.""
Instead of ""You have been assigned to review a project application for French taken in Chad.""
The first sentence of the email should read:
""You have been selected to review the project French taken in Chad (http://qa.peerwater.org/apps/72) to be considered for funding through PWX.""
Instead of ""You have been selected to review the project http://qa.peerwater.org/apps/72 by French taken in Chad to be considered for funding through PWX.",10/10/2011 09:46:30,10/10/2011 10:27:01,Closed,rajesh,rajesh,Bug Fix,Bug Fix,Fixed,"10/10/11 10:27:01; ajaya;
Rajesh: You have been working on the emails. Please check."
allow admin to update project details as pwx,"For delinquent organizations, it will be good to allow pwx to update project pages as pwx. in the past, i've been updating project pages as an organization and this will show how often i have to update vs. the organization.
is this possible?",10/10/2011 09:46:34,10/10/2011 10:27:09,Open,rajesh,rajesh,Wish List,Wish List,Unresolved,"10/10/11 10:27:05; ajaya;
Hmm. You mean some kind of tracking who changed? I am not sure what we need to do here. Rajesh?","10/10/11 10:27:07; rajesh; **Author: rajesh**
barefoot has not updated any projects; in fact, they have not even gone to the 'accept funding' screen.
i want to update their bengal projects (which they sent as a document), but i want to show that it was not them who put in the data.
we have the data and i want us to put in, but ensure that barefoot does not get the credit.","10/10/11 10:27:09; ajaya;
I don't think this is possible unless we build some kind tracking functionality for field updates. Lot of work. Re-prioritize."
migrate production databases to demo|qa|dev|rajesh's computer,"after we start the referral feature, migrate production databases to demo|qa|dev|rajesh's computer. also create a script that we can run to do the same.
ask R if questions",10/10/2011 09:46:36,10/10/2011 10:27:32,Closed,rajesh,rajesh,AWWC - support for new groups,AWWC - support for new groups,Fixed,"10/10/11 10:27:17; ajaya;
changeset:1889
Upgraded Capistrano 2 & update the current deployment scripts. Backup DB next.
","10/10/11 10:27:18; rajesh; **Author: rajesh**
raising its priority and moving it to this release so that we get the scripts for db migration working or a set of mysql instructions.","10/10/11 10:27:20; rajesh; **Author: rajesh**
now with focu changing and all the african groups coming on ... www db is ahead.
need script + instructions (mysql commands) to copy databases to qa, dev, and local.
change all emails to <x>
change all passwords to <y>","10/10/11 10:27:23; rajesh; **Author: rajesh**
need to clean up demo (its running on mongrel) and move it to thin too.","10/10/11 10:27:25; ajaya;
Done.
changeset:2094
PLEASE READ CAREFULLY before DOING IT.
Steps To Refresh:
1. On your local. Update ""svn update lib config/deploy.rb""
2. export DEPLOY_TYPE=qa ( could be dev/demo/qa ). Don't do www as we don't refresh db in production.
3. rake db:production_data_refresh_local ( to refresh your local db and attachments )
4. rake db:production_data_refresh_server ( to refresh server db and attachments. )
5. restart thin or mongrel if u updating the server.
","10/10/11 10:27:30; ajaya;
Steps To Refresh:
- On your local. Update ""svn update lib config/deploy.rb""
- export DEPLOY_TYPE=qa ( could be dev/demo/qa ). Don't do www as we don't refresh db in production.
- rake db:production_data_refresh_local ( to refresh your local db and attachments )
- rake db:production_data_refresh_server ( to refresh server db and attachments. )
- restart thin or mongrel if u updating the server. ","10/10/11 10:27:32; ajaya;
changeset:2095
Set the default password to pwx and email to rshah@blueplanetrun.org
"
Refer email links not working,"The link in the ""Thank you for submitting your organizational profile for review by PWX members"" email isn't working.
http://qa.peerwater.org/organizations/28
Same link for the ""You have created a new organizational profile on PWX,"" isn't working.
http://qa.peerwater.org/organizations/28",10/10/2011 09:46:41,10/10/2011 10:27:38,Closed,rajesh,ajaya,Org Referral System,Org Referral System,Fixed,"10/10/11 10:27:34; ajaya;
fixed.
changeset:1874","10/10/11 10:27:36; rajesh; **Author: annette**
Fixed: refer email links all working.
Emails are being sent when questions/responses are posted.
Last problem: the applicant is receiving an email when it responds. it doesn't need to get an email when it's the one posting something on the question/answer forum. this happened with both orgs i'm testing right now.
","10/10/11 10:27:38; ajaya;
Closing this. Open a new one for the specifc enhancement. ticket:8392"
Can't assign reviewers in referral logged in as pwxadmin,"Getting ""system error"" pg when logged in as pwxadmin, try to assign reviewers with a deadline. used 10/30/07 for date.
http://qa.peerwater.org/organizations/29/reviews;list_reviewers",10/10/2011 09:46:46,10/10/2011 10:27:40,Closed,rajesh,rajesh,Org Referral System,Org Referral System,Fixed,"10/10/11 10:27:40; ajaya;
Done. changeset:1876"
2nd login in pwx cannot administer referral,"created a 2nd login for the peerwater org - pwxassist
pwxassist can create cycles, etc, but when the referral screen is open, the admin tab is disabled.",10/10/2011 09:46:51,10/10/2011 10:27:48,Open,rajesh,rajesh,Wish List,Wish List,Unresolved,"10/10/11 10:27:42; rajesh; **Author: rajesh**
also cannot administer project apps; basically all apps","10/10/11 10:27:44; ajaya;
Is this really critical. We never thought to have multiple admins. This could be a huge change. Unless i am missing something.","10/10/11 10:27:48; rajesh; **Author: rajesh**
the understanding is that admin functionality is by org, not by user.
pwxassist is the 2nd login of pwx.
there are many things that they can do admin-wise, but if you click on 'home' from a few screens (like assign final status) it goes to member dashboard.
you can do final app status but if you click on the app or ratings then you cannot return to the screen (admin tab is disabled). have to go back to dashboard and then start again. this is not true for pwxadmin.
reducing this priority, but want to keep this on the bug list."
No emails being sent in project application reviews,"rajesh has been coding and may have messed with the email notifier.rb file.
some confirmation emails were sent, but nothing to the orgs.
",10/10/2011 09:46:53,10/10/2011 10:27:59,Closed,rajesh,rajesh,Org Referral System,Org Referral System,Fixed,"10/10/11 10:27:53; ajaya;
Can you elaborate please?","10/10/11 10:27:55; rajesh; **Author: rajesh**
the emails that are sent out when reviews (for project) are assigned, and the emails that are sent out when comments are posted do not go out any more.","10/10/11 10:27:57; rajesh; **Author: rajesh**
note that the emails for referrals (""you have been referred"" ""you have created a login"" and ""you have submitted"") are working
none of the project emails seem to be working.","10/10/11 10:27:59; ajaya;
fixed
changeset:1877"
refer accepted into pwx being sent 2x to org & admin,"The ""Your organization has been accepted into PWX!"" is being sent out twice to the org and to admin.
Please make it only one email.",10/10/2011 09:46:57,10/10/2011 10:28:08,Closed,rajesh,ajaya,Org Referral System,Org Referral System,Fixed,"10/10/11 10:28:06; rajesh; **Author: rajesh**
its okay to send out 2 copies of this nice email
needs to be fixed, but does not block the release
","10/10/11 10:28:08; ajaya;
fixed changeset:1879"
Create reports,"1.) date report: when is funding cleared, when is project created, when is it updated, when completed
2.) money report: when is funding accepted, when are the funds allocated (esp. for multi-project ), how much remains
3.) activity report: last login, actions, can we tie actions to when we send out emails? i want to track response times
4.) statistics report: total up numbers in each of the entries (people getting water, school children getting water, sanitation...) by project, by app, by year",10/10/2011 09:47:02,10/10/2011 10:28:22,Open,rajesh,ajaya,Wish List,Wish List,Unresolved,"10/10/11 10:28:20; ajaya;
Milestone Future Release deleted","10/10/11 10:28:22; rajesh; **Author: rajesh**
need to start designing this feature.
maybe a mockup.
would software like actuate help? a friend promised me a free copy.
"
Create scripts to automate the db backups/refresh etc,"Scripts for admin: to clear data, to move current production data into demo, into qa, into dev, into localhost
that includes resetting passwords and changing all emails (except pwx and bprf) to point to annette@",10/10/2011 09:47:04,10/10/2011 10:28:24,Closed,rajesh,ajaya,Project mgmt enhanced,Project mgmt enhanced,Fixed,"10/10/11 10:28:24; ajaya;
duplicate ticket:8361"
Cycle not working,"created a cycle starting Nov18 (it is 19th in India, but 18 PST).
on admin dashboard, it is visible.
on list of cycles it is NOT highlighted.
logged in as bpr, it says no cycles active.
also logged in as barefoot, and same result.",10/10/2011 09:47:09,10/10/2011 10:28:29,Closed,rajesh,ajaya,Org Referral System,Org Referral System,Fixed,"10/10/11 10:28:26; rajesh; **Author: rajesh**
after a 10 hour wait, i logged in again as bpr and barefoot. no cycle active.
however, as pwxadmin, and viewing list of cycles, the cycle now is highlighted (bold and red)","10/10/11 10:28:28; rajesh; **Author: rajesh**
repeated in dev.
same results: no cycle visible on member dashboard, the cycle is not 'active' i.e. not highlighted thru admin (logged out and back in to verify).","10/10/11 10:28:29; ajaya;
fixed changeset:1890"
Font color and size change,"request from the field (east meets west):
{{{
I also strongly recommend that you change the BPR website layout to:
a) Make the font larger; and
b) Make the font the font darker so that it is easier to read.
This may sound silly, but this has bothered me ever since the first time I signed in.
I'm sure that it would take you web guy about two minutes to do this.
}}}
I totally agree with making the light grey into black for the text, esp. the fields if not the titles (they are bold anyway).
Be nice to also increase the size (i may be getting glasses)
",10/10/2011 09:47:13,10/10/2011 10:28:35,Closed,rajesh,ajaya,Next release,Next release,Fixed,"10/10/11 10:28:35; ajaya;
duplicate of ticket:8084"
Font color and size change,"request from the field (east meets west):
{{{
I also strongly recommend that you change the BPR website layout to:
a) Make the font larger; and
b) Make the font the font darker so that it is easier to read.
This may sound silly, but this has bothered me ever since the first time I signed in.
I'm sure that it would take you web guy about two minutes to do this.
}}}
I totally agree with making the light grey into black for the text, esp. the fields if not the titles (they are bold anyway).
Be nice to also increase the size (i may be getting glasses)
",10/10/2011 09:47:19,10/10/2011 10:28:37,Closed,rajesh,ajaya,Next release,Next release,Fixed,"10/10/11 10:28:37; ajaya;
duplicate of
ticket:8084"
Font color and size change,"request from the field (east meets west):
{{{
I also strongly recommend that you change the BPR website layout to:
a) Make the font larger; and
b) Make the font the font darker so that it is easier to read.
This may sound silly, but this has bothered me ever since the first time I signed in.
I'm sure that it would take you web guy about two minutes to do this.
}}}
I totally agree with making the light grey into black for the text, esp. the fields if not the titles (they are bold anyway).
Be nice to also increase the size (i may be getting glasses)
",10/10/2011 09:47:25,10/10/2011 10:28:50,Open,rajesh,rajesh,Wish List,Wish List,Unresolved,"10/10/11 10:28:39; ajaya;
Made it bigger[[BR]]
changeset:1914[[BR]]
[[BR]]
Check QA.","10/10/11 10:28:41; ajaya;
Milestone Future Release deleted","10/10/11 10:28:43; rajesh; **Author: rajesh**
i think with the new css, somethings have become smaller again.
need to revisit, maybe with a full ui investigation.","10/10/11 10:28:45; rajesh; **Author: rajesh**
fonts appear to be much smaller overall.","10/10/11 10:28:47; ajaya;
which page?","10/10/11 10:28:50; rajesh; **Author: rajesh**
part of new ui effort possibly.
i think he applies to project & app pages mainly."
search broken and also needs to be enhanced and visible,"1 bug & ui enhancements with search:
1/ when searching, if something matches in the org review, the link is wrong. If there is an app with the same number as the org, then it goes to the wrong url. Otherwise generates a system error. This is because the org qandas follow app, but not all the way.
2/ the search functionality should be available to people not logged in (this is experimental, later we may disable showing of names to non-members or turn it off) - so the search menu should always be visible.
3/ The text inside should say ""Search ..."" instead of the current ""Search Knowledge base"". This will help reduce the size - when nobody is logged in, the spaces is less.
4/ the search should have the following headings and subheadings (needs reordering from current and indenting of 2nd level headers):
Project
Project Reports
Project Attachments
Reviewer Reports <blank for now>
Application
Application Text
Application Discussion (Q&A)
Application Attachments
Organization
Organization Profile
People Profile
Membership Review
",10/10/2011 09:47:28,10/10/2011 10:29:48,Closed,rajesh,ajaya,Next release,Next release,Fixed,"10/10/11 10:29:37; ajaya;
Almost done. ","10/10/11 10:29:39; ajaya;
Done & deployed in qa. Test.
changeset:1891
changeset:1892","10/10/11 10:29:41; rajesh; **Author: rajesh**
Tested and found not working fully.
Like searching for:
- 'Martin' results in not finding Martin Strele one contact in Kairos
- 'Kairos' results in blank
- Kyrgyzstan which is mentioned in Kairos profile does result in Kairos
Org discussions don't seem to show up in the search.","10/10/11 10:29:44; ajaya;
Yes. They all working. Just that those data didn't exist in QA. Have refreshed QA from www. Check now.
One thing: Org profile is not visible for anonymous members.. We should deal with it when somebody clicks from search.
aj","10/10/11 10:29:46; ajaya;
I meam org contact.","10/10/11 10:29:48; rajesh; **Author: rajesh**
The search looks great now.
Just one more fix in the new fix:
When non-logged in public is searching, under Org Contact it should say:
""This personal data can be searched by members only.""
Right now it shows the name but the link is to the home page and that is bizarre."
application -> project link,"when you visit any project, you see 'application: ##' and can easily go to view the application for the project.
however, from an application you cannot go to the project.
for all applications or only funded applications or accepted applications, put a 'Project report: ##' field and link on the application.",10/10/2011 09:47:32,10/10/2011 10:29:58,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:29:49; rajesh; **Author: rajesh**
basically a link from app to project.
could be next to status - if funded then a ""Project report: ##"" is shown","10/10/11 10:29:51; ajaya;
Added. changeset:1913","10/10/11 10:29:53; ajaya;
check: [[BR]]
[[BR]]
http://qa.peerwater.org/apps/35[[BR]]
http://qa.peerwater.org/apps/45","10/10/11 10:29:56; rajesh; **Author: rajesh**
this is a good start. all the relevant data is there.
would like to finalize the design a bit more, with the following considerations:
1/ http://qa.peerwater.org/apps/74 shows many projects off one app and its very confusing in the small column
2/ some of the data on app status, etc is repeated from the top
lets put in a new tab (""Project Summary"") that is only visible if the application is funded. this tab will display the following items:
section 1 (background, with current info still visible on top)
1/ date funds accepted
section 2 (project info in list format)
1/ number (of list)
2/ name of each project with link to the project
3/ date started
4/ date completed (if provided)
5/ date of last report/update
6/ cost of that project
section 3 (totals below columns of section 2, only for program funding)
1/ # of projects
2/
3/ earliest date started
4/ latest date completed
5/ most recent update
6/ total costs
","10/10/11 10:29:58; ajaya;
done. changeset:1919"
On QA: 'Home' does not go to dashboard,"whenever i click on 'home' or when a task is completed, i end up on the PWX home page (with the quotes and photos), still logged in, but not at the dashboard.
this most likely is because of the migration to rails 2.",10/10/2011 09:47:36,10/10/2011 10:30:04,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:00; ajaya;
fixed.
changeset:1901
deployed in qa.
","10/10/11 10:30:02; rajesh; **Author: rajesh**
not yet working.
on qa, i logged in as 'norbu' did a search and then clicked home and found myself on the main home page with the quotes|photos|etc. i did not go to dashboard.
same when i edit an application.","10/10/11 10:30:04; ajaya;
fixed & deployed in QA.
changeset:1911"
Link to attach photos in project application broken,"This is what I got using both IE & Mozilla Firefox when I tried to attach photos to an application in QA.
NoMethodError in AppsController#save_app_step2
undefined method `app_new_attachment_path' for #<AppsController:0xb59494f8>
RAILS_ROOT: /home/peerwate/apps/qa/releases/20080327165435
Application Trace | Framework Trace | Full Trace
app/controllers/apps_controller.rb:118:in `save_app_step2'
/usr/bin/mongrel_rails:19:in `load'
/usr/bin/mongrel_rails:19
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:725:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `proxy_before_and_after_filter'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:722:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:695:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching.rb:678:in `perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process'
vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:281
app/controllers/apps_controller.rb:118:in `save_app_step2'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:725:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `proxy_before_and_after_filter'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:722:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:695:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching.rb:678:in `perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process'
vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:281
/usr/bin/mongrel_rails:19:in `load'
/usr/bin/mongrel_rails:19
Request
Parameters:
{""app""=>{""phases""=>"""",
""technology_used""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""ancillary_activities""=>"""",
""community_org""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""project_background""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""other_issues""=>""""},
""attach_app_photographs.x""=>""27"",
""attach_app_photographs.y""=>""11"",
""_method""=>""put"",
""id""=>""95""}
Show session dump
---
:sessionobj: !ruby/object:UserSessionMgmt::UserSession
currently_logged_in: Y
first_name: Rick
last_name: McGowan
login_time: 2008-03-31 19:19:32.381108 -04:00
org_type: 1
organization_id: 8
person_id: 10
user_name: emw
:pagenoinfo: page2
:new_session: ""false""
flash: !map:ActionController::Flash::FlashHash {}
Response
Headers:
{""cookie""=>[],
""Content-Type""=>""text/html; charset=utf-8"",
""Cache-Control""=>""no-cache""}",10/10/2011 09:47:41,10/10/2011 10:30:06,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:06; ajaya;
fixed & deployed in QA.
changeset:1911"
Link to attach files in project application broken,"Same as the link to attach photos, this link to attach files is broken. (in Mozilla, did not test in IE) Same page appears:
NoMethodError in AppsController#save_app_step2
undefined method `app_new_attachment_path' for #<AppsController:0xb57d7d7c>
RAILS_ROOT: /home/peerwate/apps/qa/releases/20080327165435
Application Trace | Framework Trace | Full Trace
app/controllers/apps_controller.rb:123:in `save_app_step2'
/usr/bin/mongrel_rails:19:in `load'
/usr/bin/mongrel_rails:19
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:725:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `proxy_before_and_after_filter'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:722:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:695:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching.rb:678:in `perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process'
vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:281
app/controllers/apps_controller.rb:123:in `save_app_step2'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:1158:in `perform_action_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:697:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:725:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:664:in `proxy_before_and_after_filter'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:483:in `call'
vendor/rails/actionpack/lib/action_controller/filters.rb:722:in `run_before_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:695:in `call_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:689:in `perform_action_without_benchmark'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
/usr/lib/ruby/1.8/benchmark.rb:293:in `measure'
vendor/rails/actionpack/lib/action_controller/benchmarking.rb:68:in `perform_action_without_rescue'
vendor/rails/actionpack/lib/action_controller/rescue.rb:199:in `perform_action_without_caching'
vendor/rails/actionpack/lib/action_controller/caching.rb:678:in `perform_action'
vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb:33:in `cache'
vendor/rails/activerecord/lib/active_record/query_cache.rb:8:in `cache'
vendor/rails/actionpack/lib/action_controller/caching.rb:677:in `perform_action'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `send'
vendor/rails/actionpack/lib/action_controller/base.rb:524:in `process_without_filters'
vendor/rails/actionpack/lib/action_controller/filters.rb:685:in `process_without_session_management_support'
vendor/rails/actionpack/lib/action_controller/session_management.rb:123:in `process'
vendor/rails/actionpack/lib/action_controller/base.rb:388:in `process'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:171:in `handle_request'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:115:in `dispatch'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:126:in `dispatch_cgi'
vendor/rails/actionpack/lib/action_controller/dispatcher.rb:9:in `dispatch'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:76:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `synchronize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/rails.rb:74:in `process'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:159:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:158:in `process_client'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:285:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `initialize'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `new'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel.rb:268:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:282:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `each'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/configurator.rb:281:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:128:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/lib/mongrel/command.rb:212:in `run'
/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.3/bin/mongrel_rails:281
/usr/bin/mongrel_rails:19:in `load'
/usr/bin/mongrel_rails:19
Request
Parameters:
{""app""=>{""phases""=>"""",
""technology_used""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""ancillary_activities""=>"""",
""community_org""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""project_background""=>""An essential issue on the main goal of water sector development in Indonesia is to ensure the safe access,
reliable and affordable water services,
particularly for the poor."",
""other_issues""=>""""},
""attach_app_documents.x""=>""34"",
""_method""=>""put"",
""attach_app_documents.y""=>""2"",
""id""=>""95""}
Show session dump
---
:sessionobj: !ruby/object:UserSessionMgmt::UserSession
currently_logged_in: Y
first_name: Rick
last_name: McGowan
login_time: 2008-03-31 19:19:32.381108 -04:00
org_type: 1
organization_id: 8
person_id: 10
user_name: emw
:pagenoinfo: page2
:new_session: ""false""
flash: !map:ActionController::Flash::FlashHash {}
Response
Headers:
{""cookie""=>[],
""Content-Type""=>""text/html; charset=utf-8"",
""Cache-Control""=>""no-cache""}",10/10/2011 09:47:48,10/10/2011 10:30:12,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:12; ajaya;
fixed & deployed in QA.
changeset:1911"
All attach file links broken,"The same message appeared for every link to attach photos/files.
Thanks for fixing!",10/10/2011 09:47:53,10/10/2011 10:30:15,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:14; ajaya;
fixed & deployed in QA.
changeset:1911"
Typo in Project Application,"When you submit your application, the page you are directed to reads ""Successfully submited the application""
Please change to ""Successfully submitted the application""
Thanks!",10/10/2011 09:47:56,10/10/2011 09:47:58,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed
referral causes system error,"
as bpr: referred a new org
as org: filled up and submitted
as admin: clicked on name to assign reviewers
got system error:
Status: 500 Internal Server Error Content-Type: text/html
500 Internal Server Error
http://qa.peerwater.org/organizations/25",10/10/2011 09:48:00,10/10/2011 10:30:22,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:17; rajesh; **Author: rajesh**
in the dashboard referral screen,
http://qa.peerwater.org/referrals/pending
only clicking on the submitted (or new) link causes a crash.
all previous referrals (approved, pending, draft) don't have any problems.
","10/10/11 10:30:19; ajaya;
fixed & deployed in QA.
changeset:1911","10/10/11 10:30:22; rajesh; **Author: rajesh**
tested and verified -rajesh"
old BPR icon on how PWX works pg needs to be updated,"old BPR icon still on bottom right of the ""how PWX works page,"" http://qa.peerwater.org/home_page/how_pwx_works. ",10/10/2011 09:48:04,10/10/2011 09:48:06,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed
typo on Volunteering page,"Text currently reads:
""While currently, there are no volunteer opportunities at PWX, below are a list of opportunities we forsee.""
Please change to ""While currently, there are no volunteer opportunities at PWX, below are a list of opportunities we '''foresee'''.""
http://qa.peerwater.org/home_page/volunteer",10/10/2011 09:48:09,10/10/2011 09:48:12,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed
Typos,"http://qa.peerwater.org/home_page/contribute
Change line to:
If you want to contribute to the PWX platform for continuing development of many much needed features, please email water (@) blueplanetrun (.) org.
For donating from all other countries not using the Euro, you can use a credit card or Paypal from the Blue Planet Run website.
http://qa.peerwater.org/organizations/25/reviews/index
Change line to:
After you submit your rating, you can see everyone else's comments.
Change:
Please rate this organization's application as you see the potential of this organization being successful in the PWX model.
",10/10/2011 09:48:14,10/10/2011 09:48:16,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed
add fields for video links on projects and applications,"
add 2 fields for each application (below the photo attachments) and for each project where the users can enter an url for a video link (utube or ...)
should say: ""<b>Links</b> Enter upto two relevant links, e.g. to videos on YouTube:""",10/10/2011 09:48:18,10/10/2011 10:30:31,Closed,rajesh,rajesh,AWWC - support for new groups,AWWC - support for new groups,Fixed,"10/10/11 10:30:27; ajaya;
Done.. I think we talked about adding this for project report. Do we need to do for others too?
http://qa.peerwater.org/projects/17/proj_reports/8
","10/10/11 10:30:29; rajesh; **Author: rajesh**
lets add a field in the project application, below the photo/file attachment on page 2 of the form.
we also need to display it when the application is viewed.","10/10/11 10:30:31; ajaya;
Done. changeset:2119
Run rake db:migrate RAILS_ENV=qa_peerwater_org once you deploy"
all emails should come from one account,"currently, emails are going out from both 'system@' and 'admin@'
they should go only from one: 'system@'
it should be easy to change this in the future: 'do_not_reply@'
so the code should be designed that the sender info is easily modifiable in one place.",10/10/2011 09:48:23,10/10/2011 10:30:35,Closed,rajesh,rajesh,Rails 2 + Amazon migration Testing,Rails 2 + Amazon migration Testing,Fixed,"10/10/11 10:30:33; rajesh; **Author: rajesh**
seems that the 'you have been assigned to review ..."" emails come from admin@","10/10/11 10:30:35; ajaya;
Fixed. changeset:1915"
logout/home causes system error,"
http://qa.peerwater.org/admin/home_page/logout
Status: 500 Internal Server Error Content-Type: text/html
500 Internal Server Error
logged in as pwxadmin
changed cycle (extended to current date)
from the cycle page i logged off
earlier, i had logged in as natya and norbu without problems",10/10/2011 09:48:27,10/10/2011 10:30:46,Closed,rajesh,rajesh,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:30:37; rajesh; **Author: rajesh**
its logout button from the cycle view that crashes.
from the pwxadmin home page, it is not a problem.
am reducing it urgency, though if this problem occurs from a user page, then its a real problem.
","10/10/11 10:30:39; rajesh; **Author: rajesh**
raising its priority because the crash happens when i logout from:
pwxadmin: statistics
but also when i click ""Users"" on the pwx dashboard
http://qa.peerwater.org/person/list
Status: 500 Internal Server Error Content-Type: text/html
500 Internal Server Error
not just logout, but now with a function link","10/10/11 10:30:41; ajaya;
fixed
changeset:1916
changeset:1917
","10/10/11 10:30:43; rajesh; **Author: rajesh**
still happening, esp. from cycles pages ""Home"" does not work","10/10/11 10:30:46; ajaya;
must been fixed before."
search for an organization broken,"
http://qa.peerwater.org/organization_search/organization_search
Status: 500 Internal Server Error Content-Type: text/html
500 Internal Server Error
--------
on the member dashboard, search for any organization - the box on the right, pwx crashes",10/10/2011 09:48:32,10/10/2011 10:30:51,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:51; ajaya;
fixed
changeset:1918
"
Application to be reviewed not appearing,"We're testing an application cycle and the app that was submitted isn't showing on any of the dashboards, both in Mozilla and IE.
This app should appear under Review Project App but that section is empty and just reads there are no projects to be reviewed. The applying org's home page does show that it has an app in Peer Review.
The emails notifying reviewers are going out and the link in those msgs works. ",10/10/2011 09:48:36,10/10/2011 10:30:56,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:54; ajaya;
Just tested this. It works for me.. Send me the actual one where u having problem.. Send me the link & org u testing as.
","10/10/11 10:30:56; rajesh; **Author: annette**
http://qa.peerwater.org/apps/95/qandas
I'm still using this application - it's odd because it doesn't show up under Peer Review except in the applying org (EMW's) dashboard. The orgs that are supposed to review it don't display it in their list of apps to review, but if I do anything in Q&A, they all get the emails they're supposed to get.
"
unable to do ratings,"when you click on ratings and comments, you get to the finished page, not the page (form) you can do a rating on.
the finished page shows only all ratings in progress, since no one can do a rating!",10/10/2011 09:48:41,10/10/2011 10:30:58,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:30:58; ajaya;
can't reproduce. send me the actual link & org u r testing as."
Search has too much blank space when no results,"search for 'glen' and only results are in projects.
a user seeing no results found in application and organizations will not scroll down to see projects.
when 'no results found' the white space above should be removed",10/10/2011 09:48:46,10/10/2011 10:31:00,Closed,rajesh,rajesh,Rails 2 + Amazon migration,Rails 2 + Amazon migration,Fixed,"10/10/11 10:31:00; ajaya;
Added search summary module on the top. changeset:1931"
blank out project info at startup and show all project fields,"when viewing a project one sees only a partial list of all the data that the project info contains. this data is visible only when editing.
when a project is created all the fields should be blank. right now all the fields inherit the text from the application.
also, if the width of the project pages can be increased to 1100
",10/10/2011 09:48:51,10/10/2011 10:31:17,Closed,rajesh,rajesh,Features for External Funders,Features for External Funders,Fixed,"10/10/11 10:31:02; ajaya;
done.. Layout would be update in a separate track..
Check
http://qa.peerwater.org/projects/17/proj_reports/8
","10/10/11 10:31:04; rajesh; **Author: rajesh**
this probably should have been 2 (or 3) separate tickets.
1. blank project info <done>