Home directory for Malawi's wwwroot
Duncan Ewan
2021-02-19 3e758c29e0fde36fc088efcfc88f9a3014432b64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
Êþº¾-±
SourceFileE/app/coldfusion10/cfusion/wwwroot/acc/notificationgroups_overview.cfm,cfnotificationgroups_overview2ecfm1350013679coldfusion/runtime/CFPage<init>()V 
    bindPageVariablesD(Lcoldfusion/runtime/VariableScope;Lcoldfusion/runtime/LocalScope;)V coldfusion/runtime/CfJspPage
 TIMELcoldfusion/runtime/Variable;bindPageVariabler(Ljava/lang/String;Lcoldfusion/runtime/VariableScope;Lcoldfusion/runtime/LocalScope;)Lcoldfusion/runtime/Variable; 
     ISADMIN     ISADMINISTRATOR      ISGROUPNOTIFMANAGER" "    $TIMES& &    (    TIMENAMES* *    , CURRENTUSER. .    0___IMPLICITARRYSTRUCTVAR02createImplicitVariableS(Ljava/lang/String;Lcoldfusion/runtime/VariableScope;)Lcoldfusion/runtime/Variable; 45
6 2    8com.macromedia.SourceModTimeNœÑµP pageContext#Lcoldfusion/runtime/NeoPageContext; =>    ?getOut()Ljavax/servlet/jsp/JspWriter; ABjavax/servlet/jsp/JspContextD
ECparentLjavax/servlet/jsp/tagext/Tag; GH    Icom.adobe.coldfusion.*KbindImportPath(Ljava/lang/String;)V MN
O
 
 
Q _whitespace%(Ljava/io/Writer;Ljava/lang/String;)V ST
U/class$coldfusion$tagext$html$ajax$AjaxImportTagLjava/lang/Class;)coldfusion.tagext.html.ajax.AjaxImportTagYforName%(Ljava/lang/String;)Ljava/lang/Class; [\java/lang/Class^
_] WX    a_initTagP(Ljava/lang/Class;ILjavax/servlet/jsp/tagext/Tag;)Ljavax/servlet/jsp/tagext/Tag; cd
e)coldfusion/tagext/html/ajax/AjaxImportTagg_setCurrentLineNo(I)V ij
k cfajaximportmtagso4cfwindow, cfform, cfgrid, cfmessagebox, cflayout-tabq_validateTagAttrValue\(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; st
usetTags wN
hx    hasEndTag(Z)V z{coldfusion/tagext/GenericTag}
~| _emptyTcfTag!(Ljavax/servlet/jsp/tagext/Tag;)Z €
‚
„.class$coldfusion$tagext$html$ajax$AjaxProxyTag(coldfusion.tagext.html.ajax.AjaxProxyTag‡ †X    ‰(coldfusion/tagext/html/ajax/AjaxProxyTag‹ cfajaxproxycfcacc.components.alarm‘setCfc “N
Œ” jsclassname–ACCAlarm˜setJsclassname šN
Œ›init
AjaxOnLoad ŸN
 
 
¢SESSION¤java/lang/String¦    USERROLES¨_resolveAndAutoscalarize9(Ljava/lang/String;[Ljava/lang/String;)Ljava/lang/Object; ª«
¬_String&(Ljava/lang/Object;)Ljava/lang/String; ®¯coldfusion/runtime/Cast±
²°ACC_ADMINISTRATOR´,¶ListContainsNoCase9(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)I ¸¹
º_Object(I)Ljava/lang/Object; ¼½
²¾set(Ljava/lang/Object;)V ÀÁcoldfusion/runtime/VariableÃ
ÄÂACC_GROUPNOTIF_MANAGERÆ_autoscalarize1(Lcoldfusion/runtime/Variable;)Ljava/lang/Object; ÈÉ
Ê_boolean(Ljava/lang/Object;)Z ÌÍ
²ÎAUTHUSERО
 
<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 
    <title>Notification Groups</title>
    
    Òwrite ÔNjava/io/WriterÖ
×Õ'class$coldfusion$tagext$lang$IncludeTag!coldfusion.tagext.lang.IncludeTagÚ ÙX    Ü!coldfusion/tagext/lang/IncludeTagÞ    cfincludeàtemplateâ /acc/jquery-include-template.cfmä setTemplate æN
ßçú
    <link rel="stylesheet" href="css/styles.css">
 
    <style type="text/css">
        #nmsTable td {
            padding: 4px 4px 4px 6px;
        }
 
        #nmsTable strong {
            font-weight: bold !important;
        }
    </style>
 
    <link rel="stylesheet" type="text/css" href="css/jquery.gritter.css" />
    
    <script language="javascript" src="js/selectbox.js"></script>
    <script type="text/javascript" src="js/jquery.gritter.js"></script>
 
    <script type="text/javascript" src="js/script.js"></script>
    <script type="text/javascript" src="js/custom/ACC.js"></script>
    <script type="text/javascript" src="js/custom/ACC.GrowlNotification.js"></script>
    <script type="text/javascript" src="js/custom/ACC.MessageBox.js"></script>
     <script type="text/javascript" src="/acc/js/custom/ACC.GridUtils.js"></script>
 
    <script type="text/javascript" src="js/custom/ACC.GlobalErrorHandler.js"></script>
 
<script language="javascript">
 
    function init() {
        initGrid("dgGroups","Groups");
        ACC.GridUtils.fixGridResize('dgGroups');
    }
 
    notificationGroupItem_renderer = function(data,cellmd,record,row,col,store) {
        if (record.data.GROUPNAME != undefined) {
            if (record.data.ISOWNER == '1')
                return "<img src=\"images/owners.gif\" border=\"0\" align=\"absmiddle\" alt=\"" + record.data.GROUPNAME + "\">";
        }
        return "";
    }
 
    function initGrid(gridName,title,type) {
        var grid = ColdFusion.Grid.getGridObject(gridName);
 
        grid.addListener("rowcontextmenu", function(grid, rowIndex, e) {
            var selectedNode = grid.getStore().getAt(rowIndex);
            if (selectedNode != null) {
                var contextMenu = new Ext.menu.Menu();
                //ColdFusion.Log.dump(record);
 
                currentRecord = selectedNode.data;
 
                
 
                é/
                if (currentRecord.ISOWNER == '1') {
                ë
                    contextMenu.add({text:"Delete",handler:deleteGroup.createDelegate(this, [currentRecord.GROUPNAME]), icon:"images/cross-script.png"});
                    // Stops the browser context menu from showing.
                    e.stopEvent();
 
                    // show menu at
                    contextMenu.showAt(e.xy);
                í
                }
                ï÷
            }
        });
 
        cm = grid.getColumnModel();
        cm.setRenderer(1,notificationGroupItem_renderer);
        grid.reconfigure(grid.getStore(),cm);
 
        var tbTop = ColdFusion.Grid.getTopToolbar(gridName);
        tbTop.add(
            'Search',
            {xtype: 'tbspacer'},
            {xtype: 'textfield',id:'tbTopFilter',listeners: {
                'render': function(c) {
                      c.getEl().on('keyup', function() {
                            $('#tbFilter').val(this.getValue());
                            ColdFusion.Grid.refresh(gridName);
                      }, c);
                    }
                }
            }
        );
 
        //Insert blank div on top of the grid.
        var tbar=Ext.DomHelper.insertFirst(grid.el,{tag:'div',id:Ext.id()},true);
        //Convert inserted div to Ext toolbar
        var gtbar = new Ext.Toolbar({
                renderTo: tbar,
                items: [
                    '<strong>' + title + '</strong><br>',
                    {xtype: 'tbbutton',
                     cls: 'x-btn-icon',
                     icon: 'images/16x16_add.png',
                     handler:function(frm,evt) {
                         addNewNotificationGroup();
                     }, id:'tbTopBtnAdd'
                    },
                    {
                     xtype: 'tbbutton',
                     cls: 'x-btn-icon',
                     icon: 'images/cross-script.png',
                     handler:function(frm,evt) {
                                 selectedNode = grid.getSelectionModel().getSelected();
                                 if (selectedNode != null) {
                                     currentRecord = selectedNode.data;
                                    ñ9
                                    if (currentRecord.ISOWNER == '1') {
                                    ó@
                                     deleteGroup(selectedNode.data.GROUPNAME);
                                    õ
                                    }
                                    ÷•
                                 }
                              }
                    },
                    {xtype: 'tbspacer'},
                    {xtype: 'tbseparator'},
                    {xtype: 'tbspacer'},
                    '<img src=\'images/owners.gif\' border=\'0\' align=\'absbottom\'>',
                    {xtype: 'tbspacer'},
                    {xtype: 'checkbox', id:'cbShowMyGroups',listeners: {
                        'check': function(c) {
                               if ($("#cbShowMyGroups").is(':checked') == true) {
                                  $("#tbGroupOwner").val("ù$class$coldfusion$tagext$io$OutputTagcoldfusion.tagext.io.OutputTagü ûX    þcoldfusion/tagext/io/OutputTag
doStartTag()I 
 doAfterBody 
doEndTag     coldfusion/tagext/QueryLoop
 
doCatch(Ljava/lang/Throwable;)V 
     doFinally 
õ");
                               }
                               else {
                                 $("#tbGroupOwner").val("");
                               }
                               ColdFusion.Grid.refresh('dgGroups');
                            }
                        }
                    },
                    {xtype: 'tbspacer'},
                    'My groups',
                    {xtype: 'tbspacer'},
                    {xtype: 'tbfill'},
                    {xtype: 'tbtext',text:'Total:'},
                    {xtype: 'tbspacer'},
                    {xtype: 'tbtext',text:'0',id:'lblTotalRecords_' + gridName}
                ]
            });
 
        /* Because of pushing the search bar, the grid needs to be reduced a bit */
        grid.setHeight(grid.getHeight() - 50);
 
        ColdFusion.Grid.showTopToolbar(gridName);
 
        grid.getStore().addListener("load", function() {
            $("#lblTotalRecords_" + gridName).html(this.totalLength);
        });
    }
 
    function deleteGroup(groupname) {
        if (currentRecord != null) {
            ACC.MessageBox.showConfirmation({
                title : "Delete Notification Group",
                message : "Are you sure you wish to remove the notification group - " + groupname + "?",
                onBtnClicked :
                    function(btnClicked){
                        if(btnClicked == 'yes'){
                            accAlarm = new ACCAlarm();
 
                            accAlarm.setCallbackHandler(function(resp){
                                if(resp != null && resp["SUCCESS"] == false){
                                    var errm = "";
                                    for(var i =0; i < resp["ERRORS"].length; i++){
                                        errm += resp["ERRORS"][i]["ERROR"] + "<br/>";
                                    }
                                    ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                                        notification_title : "Error",
                                                                        notification_message : "Failed to remove notification group.<br/>Reason : " + errm});
                                }else{
                                    ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                                    notification_title : "Group removed",
                                                                    notification_message : "Succesfully removed the notification group - " + groupname});
 
                                    ColdFusion.Grid.refresh("dgGroups");
                                };
                            });
                            accAlarm.setErrorHandler(function(statusCode, statusMsg){
                                ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                                        notification_title : "Error",
                                                                        notification_message : "Failed to remove notification group.<br/>Reason : " + statusMsg})
                            });
 
                            accAlarm.deleteNotificationGroup(groupname);
                        }
                    }
                }
            );
        }
 
    }
 
    function subscriptionsUpdated() {
        ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                                    notification_title : "Group Subscriptions Updated",
                                                                    notification_message : "Succesfully updated the subscriptions"});
    }
 
    function membersUpdated() {
        ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                                    notification_title : "Group Members Updated",
                                                                    notification_message : "Succesfully updated the membership of the group"});
    }
 
    function ownersUpdated() {
        ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                                    notification_title : "Group Owners Updated",
                                                                    notification_message : "Succesfully updated the ownership of the group"});
    }
 
    function initGroupSubscriptionsGrid() {
 
        grid = ColdFusion.Grid.getGridObject("dgGroupSubscriptions");
 
        grid.view.colMenu.addListener("beforeshow", function(menu){
            
            menu.remove(menu.items["items"][0]); 
            menu.remove(menu.items["items"][0]); 
        });
 
        grid.addListener("rowdblclick", function(grid, rowIndex, e) {
             selectedNode = grid.getSelectionModel().getSelected();
             if (selectedNode != null) {
                 currentRecord = grid.getSelectionModel().getSelected().data;
                 showSubjectNotificationsWindow(currentRecord.SUBJECTID,currentRecord.SUBJECTNAME,currentRecord.ISFILTERNOTIFICATION);
             }
        })
 
        cm = grid.getColumnModel();
        cm.setRenderer(2,filtername_renderer);
        cm.setRenderer(4,emailGroup_renderer);
        cm.setRenderer(5,smsGroup_renderer);
        cm.setRenderer(6,format_renderer);
        cm.setRenderer(7,limit_renderer);
        cm.setRenderer(8,status_renderer);
 
        grid.reconfigure(grid.getStore(),cm);
 
        var tbTop = ColdFusion.Grid.getTopToolbar("dgGroupSubscriptions");
 
        tbTop.add(
            '<strong>Group Subscriptions</strong>',
            {xtype: 'tbspacer'},
            {xtype: 'tbseparator'},
            {xtype: 'tbspacer'},
            'Search',
            {xtype: 'tbspacer'},
            {xtype: 'textfield',id:'tbTopFilterGroup',listeners: {
                'render': function(c) {
                      c.getEl().on('keyup', function() {
                            $('#tbFilterGroup').val(this.getValue());
                            ColdFusion.Grid.refresh('dgGroupSubscriptions');
                      }, c);
                    }
                }
            },
            {xtype: 'tbfill'},
            {xtype: 'tbtext',text:'Total:'},
            {xtype: 'tbspacer'},
            {xtype: 'tbtext',text:'0',id:'lblTotalRecordsGroup'}
        );
 
        ColdFusion.Grid.showTopToolbar('dgGroupSubscriptions');
 
        grid.getStore().addListener("load", function() {
            $("#lblTotalRecordsGroup").html(this.totalLength);
        });
 
        grid.addListener("rowcontextmenu", function(grid, rowIndex, e) {
            var selectedNode = grid.getStore().getAt(rowIndex);
            if (selectedNode != null) {
                var contextMenu = new Ext.menu.Menu();
 
                currentRecord = selectedNode.data;
                contextMenu.add({text:"View Last 50 notifications",handler:showSubjectNotificationsWindow.createDelegate(this, [currentRecord.SUBJECTID,currentRecord.SUBJECTNAME,currentRecord.ISFILTERNOTIFICATION])});                
                if(currentRecord.ISFILTERNOTIFICATION != "1") {
                    contextMenu.add({text:"Test Subject",handler:testSubject.createDelegate(this, [currentRecord.SUBJECTNAME,currentRecord.SUBJECTCONDITION])});
                } else {
                        contextMenu.add({text:"Show Alarms",
                                        handler:gotoFilter.createDelegate(this, [currentRecord.SUBJECTNAME]),
                                        icon:"images/nav/alarm_list.png"
                                        });
                }
                
                ö
                    contextMenu.add({text:"Toggle E-Mail",handler:updateSubjectSubscription.createDelegate(this, [$('#groupName').val(),'GROUP',currentRecord.SUBJECTID,currentRecord.SUBJECTNAME,'email',true,currentRecord.ISFILTERNOTIFICATION]), icon:"images/email.png"});
                    contextMenu.add({text:"Toggle SMS",handler:updateSubjectSubscription.createDelegate(this, [$('#groupName').val(),'GROUP',currentRecord.SUBJECTID,currentRecord.SUBJECTNAME,'sms',true,currentRecord.ISFILTERNOTIFICATION]), icon:"images/phone.png"});
                    contextMenu.add({text:"Notification Occurances Limit",handler:updateGroupSubjectSubscriptionLimit.createDelegate(this, [currentRecord.NAME,currentRecord.SUBJECTID,currentRecord.ISFILTERNOTIFICATION]), icon:"images/hourglass_go.png"});
                “
             }
 
            
            e.stopEvent();
            contextMenu.showAt(e.xy);
        });
    }
    
    var nextRecordId = 0;
    format_renderer = function(data,cellmd,record,row,col,store) {    
        if (record.data.ISFILTERNOTIFICATION == "1" && record.data.SUBJECTID != undefined) {
            var what = record.data.NAME;
            
            var recordId = nextRecordId++;
            allRecords[recordId] = record.data;
            
            var isOwner = false;
            @
                if (record.data.ISOWNER == '1')
                    isOwner = true;
            
                isOwner = true;
            †                    
            
            var outstr = "<span style=\"cursor:pointer\" onClick=\"showChangeSubscriptionFormatWindow('" + what + "','" + record.data.SUBJECTID + "','" + recordId + "'," + isOwner + ");\">";
            outstr += '<img src="images/mail-open-document.png">';            
            outstr += '</span>';
            return outstr;
        }
        return "";
    }
 
    smsGroup_renderer = function(data,cellmd,record,row,col,store) {
        return group_renderer(data,cellmd,record,row,col,store,'sms')
    }
 
    emailGroup_renderer = function(data,cellmd,record,row,col,store) {
        return group_renderer(data,cellmd,record,row,col,store,'email')
    }
 
    group_renderer = function(data,cellmd,record,row,col,store,type) {
        if (record.data.SUBJECTID != undefined) {
            img = "email.png";
            if (type == "sms")
                img = "phone.png";
            str = "<img src=\"images/" + img + "\" border=\"0\" align=\"absbottom\" alt=\"" + type + "\">&nbsp;<input type='checkbox' id='cb_GROUP_" + record.data.SUBJECTID + "_" + type + "'";
 
            if (type == "email") {
                if (record.data.EMAIL == "1")
                    str = str + " checked"
            }
            else {
                if (record.data.SMS == "1")
                    str = str + " checked"
            }
 
            )
            if (record.data.ISOWNER == '1')
            !ê
                str = str + " onClick=\"updateSubjectSubscription('" + $('#groupName').val() + "','GROUP'," + record.data.SUBJECTID + ",'" + record.data.SUBJECTNAME + "','" + type + "',false,'" + record.data.ISFILTERNOTIFICATION + "');\"";
            #,
            else
                str = str + " disabled";
            %Õ
 
            str = str + ">";
            return str;
        }
        return "";
    }
    
    limit_renderer = function(data,cellmd,record,row,col,store) {
            if (record.data.SUBJECTID != undefined) {
 
                var limitStr = "<span ";
                '+
                if (record.data.ISOWNER == '1')
                )÷
                    limitStr += " style=\"cursor:pointer\" onClick=\"updateGroupSubjectSubscriptionLimit('" + record.data.NAME + "', " + record.data.SUBJECTID + ",'" + record.data.ISFILTERNOTIFICATION + "');\"";
                limitStr += ">";
 
                limitStr += "<img src=\"images/hourglass_go.png\" border=\"0\" align=\"absbottom\" alt=\"Limit\">";
                if (record.data.LIMIT_NOTIFICATION_THRESHOLD != null) {                
                    var interval = record.data.LIMIT_NOTIFICATION_INTERVAL;
                    var intstr = interval + "s";
                    
                    +$600,1800,3600,7200,21600,43200,86400-
                    /    StructNew!()Lcoldfusion/util/FastHashtable; 12
36005
10 Minutes7 _structSetAtE(Lcoldfusion/runtime/Variable;[Ljava/lang/Object;Ljava/lang/Object;)V 9:
;1800=
30 Minutes?3600AHourC7200E2 HoursG21600I6 HoursK43200M12 HoursO86400Q24 HoursS_get UÉ
VP(Ljava/lang/String;Lcoldfusion/runtime/LocalScope;)Lcoldfusion/runtime/Variable; X
Yjava/util/StringTokenizer['(Ljava/lang/String;Ljava/lang/String;)V ]
\^    nextToken()Ljava/lang/String; `a
\b
                        d
                        if(interval == 'f ') intstr = "h _arrayGetAtC(Lcoldfusion/runtime/Variable;Ljava/lang/Object;)Ljava/lang/Object; jk
l
";
                        nCFLOOPpcheckRequestTimeout rN
s hasMoreTokens()Z uv
\w±
                
                    limitStr += " " + record.data.LIMIT_NOTIFICATION_THRESHOLD + "/" + intstr;
                } else {
                    limitStr += " no limit";
                }
 
                limitStr += '</span>';
 
                return limitStr;
            }
            return "";
        }
                
    var gotoFilter = function(filterid) {
        var uri = "alarmlistlog_frame.cfm?mode=list&filter=" + encodeURIComponent(filterid);
        window.location = uri;
    }
    
    filtername_renderer = function(data,cellmd,record,row,col,store) {    
        data = data.replace(/&/,"&amp;").replace(/</,"&lt;").replace(/>/,"&gt;");
        if (record.data.ISFILTERNOTIFICATION == "1" && record.data.SUBJECTID != undefined) {
            return '<span class="link" onclick="gotoFilter(\'' + data.replace(/'/,'\\\'') + '\')">' + data + '</span>';
        }
        return data;
    }    
        
    status_renderer = function(data,cellmd,record,row,col,store) {
            if(record.data.ISFILTERNOTIFICATION == "1") {
                var text = "",color="",title="";
                if(record.data.NOTIFICATION_STATUS == "compiled") {
                    text = "OK";
                    color = "#c2ff96";
                    title = "The subscription is active";
                } else if(record.data.NOTIFICATION_STATUS == "error") {
                    text = "Invalid";
                    color= "#ff6464";
                    title = "The filter is too complex for notifications";
                } else {
                    text = "Pending";
                    color = "#b0c2ee";
                    title = "The filter is being processed";
                }
                return '<div style="background-color:'+ color + ';padding:1px 5px;border-radius:3px" title="' + title + '">' + text + "</div>";
            } else {
                return "";
            }
        }
 
    function showSubjectNotificationsWindow(subjectId,subjectName,isFilterNotification) {
        title = "Last 50 notifications";
 
        var height = 485;
        var width = 700;
        var name = "accSubjectNotificationsWindow";
 
        var filePath = "subjectnotification.cfm?subjectname="+encodeURI(subjectName)+"&subjectid="+encodeURI(subjectId) + "&isFilterNotification=" + isFilterNotification;
        ColdFusion.Window.create(name, title, filePath, {width:width, height:height, center:true, modal:true, destroyonclose:true, initShow:true, resizable:true}); 
    }
 
    function addNewNotificationGroup() {
        title = "Add New Notification Group";
 
        var height = 200;
        var width = 600;
        var name = "accNotificationGroupWindow";
 
        var filePath = "notificationgroup_edit.cfm";
        ColdFusion.Window.create(name, title, filePath, {width:width, height:height, center:true, modal:true, destroyonclose:true, initShow:true, resizable:true}); 
    }
 
    function initCheckGroupNameUnique() {
        $('#btnSubmit').attr("disabled", "disabled");
        $('#tbGroupName').bind('keyup',function(event) {
            checkGroupNameUnique($("#tbGroupName").val());
        });
        $('#tbGroupName').bind('focus',function(event) {
            checkGroupNameUnique($("#tbGroupName").val());
        });
    }
 
    function newGroupAdded() {
        ColdFusion.Window.hide("accNotificationGroupWindow");
        ColdFusion.Window.destroy("accNotificationGroupWindow");
 
        ColdFusion.Grid.refresh("dgGroups");
 
        ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                                    notification_title : "Notification Group added",
                                                                    notification_message : "Succesfully added new notification group"});
    }
 
    function isNewGroupValid() {
        if ($("#tbGroupName").val() == "") {
            ACC.MessageBox.showAlert({
                title : "Validation Error",
                message : "Please enter a Notification Group Name"
            });
            return false;
        }
 
        if ($("#tbDescription").val() == "") {
            ACC.MessageBox.showAlert({
                title : "Validation Error",
                message : "Please enter a Description"
            });
            return false;
        }
        return true;
    }
 
    function checkGroupNameUnique(groupname) {
        $('#btnSubmit').attr("disabled", "disabled");
        if (groupname == "") {
            $('#divGroupNameUnique').html('Please specify a unique group name');
        }
        else {
            if (groupname.length >= 3) {
                $('#divGroupNameUnique').html("Checking " + groupname + "...");
                $.ajax({
                  async: true,
                  type: "get",
                  url: 'components/alarm.cfc',
                  data: {
                      method: "checkGroupNameExists",
                      groupname : groupname
                   },
                   dataType: "json",
                   success: function(results,textStatus,XMLHttpRequest) {
                        //alert(JSON.stringify(results));
                        if (results) {
                            $('#divGroupNameUnique').html("<img src='images/cross.png' align='absmiddle' border='0'/>&nbsp;Group name is already in use");
                        }
                        else {
                            $('#divGroupNameUnique').html("<img src='images/accept.png' align='absmiddle' border='0'/>&nbsp;Group name is unique");
                            $('#btnSubmit').removeAttr("disabled");
                        }
                  },
                  error: function (results, strError) {
                     $('#divGroupNameUnique').html('Error checking group name is unique. ' + strError);
                  }
                });
            }
        }
    }
 
    function testSubject(subjectname, subjectcondition) {
        $.ajax({
          async: false,
          type: "post",
          url: "components/alarm.cfc",
          data: {
                method: "getSubjectHitLastHour",
                subjectcondition : subjectcondition
          },
          dataType: "json",
          success: function(results,textStatus,XMLHttpRequest) {
                //alert(JSON.stringify(results));
                try {
                    if (results.SUCCESS==1) {
                        ACC.MessageBox.showAlert({
                            title : "Test Subject",
                            message : "The subject " + subjectname + " of definition " + subjectcondition + " would have received " + results.COUNT + " notifications in the last hour."
                        });
                    }
                    else {
                        ACC.MessageBox.showAlert({
                            title : "Test Subject Error",
                            message : "An error occurred - " + results.ERRORMSG
                        });
                    }
                }
                catch (err) {
                    ACC.MessageBox.showAlert({
                        title : "Test Subject Error",
                        message : "An error occurred. " + err.description
                    });
                }
          },
          error: function(results) {
                ACC.MessageBox.showAlert({
                    title : "Test Subject Error",
                    message : "An error occurred."
                });
          }
        });
    }
 
    function updateSubjectSubscription(name, subscriberType, subjectId,subjectName,type,toggle, isFilterNotification) {
        var notificationType = "";
        
        isFilterNotification = isFilterNotification    || 0;
 
        if (toggle == true) {
            $("#cb_" + subscriberType + "_" + subjectId + "_" + type).attr('checked', !$("#cb_" + subscriberType + "_" + subjectId + "_" + type).is(':checked'));
        }
 
        if ($("#cb_" + subscriberType + "_" + subjectId + "_email").is(':checked')) {
            notificationType = "EMAIL";
        }
        if ($("#cb_" + subscriberType + "_" + subjectId + "_sms").is(':checked')) {
            if (notificationType.length > 0)
                notificationType = notificationType + ",";
            notificationType = notificationType + "SMS";
        }
 
        accAlarm = new ACCAlarm();
 
        accAlarm.setCallbackHandler(function(resp){
            if(resp != null && resp["SUCCESS"] == false){
                var errm = "";
                for(var i =0; i < resp["ERRORS"].length; i++){
                    errm += resp["ERRORS"][i]["ERROR"] + "<br/>";
                }
                ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                    notification_title : "Error",
                                                    notification_message : "Failed to change subject subscription for " + subjectName + " for " + type + ".<br/>Reason : " + errm});
            }else{
                ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                notification_title : "Subscription Updated",
                                                notification_message : "Updated subscription for " + subjectName + " for  " + type + " for " + name});
            };
        });
        accAlarm.setErrorHandler(function(statusCode, statusMsg){
            ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                    notification_title : "Error",
                                                    notification_message : "Failed to change subject subscription for " + subjectName + " for " + type + ".<bry w/>Reason : " + statusMsg})
        });
 
        accAlarm.updateNotificationType(subjectId,name,subscriberType,notificationType, isFilterNotification);
 
    }
 
    function initTabLayout() {
        myTabs = ColdFusion.Layout.getTabLayout("groupInformationTabLayout");
        myTabs.on('tabchange',updateDisplayTabChange);
        loadGroupInfoTab("tabSubscriptions");
    }
 
    updateDisplayTabChange = function(){
        var activeTab = ColdFusion.Layout.getTabLayout("groupInformationTabLayout").getActiveTab();
        var tabId = activeTab.id;
        loadGroupInfoTab(tabId);
    }
 
    function loadGroupInfoTab(tabId) {
 
        var groupname = "";
        selectedNode = ColdFusion.Grid.getGridObject("dgGroups").getSelectionModel().getSelected();
        if (selectedNode != null) {
           currentRecord = selectedNode.data;
           groupname = currentRecord.GROUPNAME
        }
 
        if (groupname != "") {
            if (tabId == "tabSubscriptions") {
                ColdFusion.navigate("notificationgroup_subscriptions_edit.cfm?groupname="+groupname,"tabSubscriptions");
            }
            else if (tabId == "tabNotifications") {
                ColdFusion.navigate("notificationgroup_subscriptions.cfm?groupname="+groupname,"tabNotifications");
            }
            else if (tabId == "tabMembers") {
                ColdFusion.navigate("notificationgroup_members.cfm?groupname="+groupname,"tabMembers");
            }
            else if (tabId == "tabOwners") {
                ColdFusion.navigate("notificationgroup_owners.cfm?groupname="+groupname,"tabOwners");
            }
        }
    }
    
    function updateGroupSubjectSubscriptionLimit(groupName, subjectid, isFilterNotification) {
        title = "Notification Occurances Limit";
 
        var height = 120;
        var width = 400;
        var name = "accNotificationOccurancesWindow";
 
        var filePath = "notification_subscription_limit.cfm?subjectid="+subjectid+'&username=' + encodeURIComponent(groupName) + '&isFilterNotification=' + isFilterNotification;
 
        ColdFusion.Window.create(name, title, filePath, {width:width, height:height, center:true, modal:true, destroyonclose:true, initShow:true, resizable:true}); 
 
        ColdFusion.Window.onHide(name, function(){
            ColdFusion.Grid.refresh('dgGroupSubscriptions');
        });
    }
 
    function closeNotificationOccurancesWindow() {
        ColdFusion.Window.hide("accNotificationOccurancesWindow");
        ColdFusion.Window.destroy("accNotificationOccurancesWindow");
    }
 
    function validateOccurrences() {
        if($("#interval").val() == "") 
            return true;
            
        if (($("#threshold").val() == "")|| isNaN(parseInt($("#threshold").val()))) {
            ACC.MessageBox.showAlert({
                title : "Validation Error",
                message : "Please enter a numeric value for threshold (number of messages)"
            });
            return false;
        }
 
        if (isNaN(parseInt($("#interval").val()))) {
            ACC.MessageBox.showAlert({
                title : "Validation Error",
                message : "Please enter a numeric value for the interval (number of seconds)"
            });
            return false;
        }
        return true;
    }
</script>
</head>
 
<body>
 
{+class$coldfusion$tagext$html$ajax$LayoutTag%coldfusion.tagext.html.ajax.LayoutTag~ }X    €%coldfusion/tagext/html/ajax/LayoutTag‚cflayout„name† borderLayoutˆsetName ŠN
ƒ‹typebordersetType ‘N
ƒ’ fittowindow”yes–(Ljava/lang/String;)Z ̘
²™:(Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Z s›
œsetFitToWindow ž{
ƒŸ
ƒ
 
    ¢/class$coldfusion$tagext$html$ajax$LayoutAreaTag)coldfusion.tagext.html.ajax.LayoutAreaTag¥ ¤X    §)coldfusion/tagext/html/ajax/LayoutAreaTag© cflayoutarea«leftArea­
ª‹closable°true² setClosable ´{
ªµposition·left¹ setPosition »N
ª¼size¾275ÀsetSize ÂN
ªÃ collapsibleÅsetCollapsible Ç{
ªÈtitleÊNotification GroupsÌsetTitle ÎN
ªÏsplitterÑ setSplitter Ó{
ªÔoverflowÖautoØ setOverflow ÚN
ªÛ
ª    _pushBody_(Ljavax/servlet/jsp/tagext/BodyTag;ILjavax/servlet/jsp/JspWriter;)Ljavax/servlet/jsp/JspWriter; Þß
à
 
          â)class$coldfusion$tagext$html$form$FormTag#coldfusion.tagext.html.form.FormTagå äX    ç#coldfusion/tagext/html/form/FormTagécfformëresourceGroupTreeFormí
ê‹styleðpadding-left:5pxòsetStyle ôN
êõmethod÷postù    setMethod ûN
êü
ê:
            <div style="overflow:auto;width:100%">
                ÿ*class$coldfusion$tagext$html$form$InputTag$coldfusion.tagext.html.form.InputTag X    $coldfusion/tagext/html/form/InputTagcfinputtbFilter
 
‹value setValue N
hidden
’&coldfusion/runtime/AttributeCollectionjava/lang/Objectid([Ljava/lang/Object;)V 
setAttributecollection(Ljava/util/Map;)V  !
"
                $ tbGroupOwner&D
                    <div style="padding-top:5px;padding-bottom:10px;"><strong><i>(,class$coldfusion$tagext$html$ajax$TooltipTag&coldfusion.tagext.html.ajax.TooltipTag+ *X    -&coldfusion/tagext/html/ajax/TooltipTag/    cftooltip1tooltip3“, you have the ACC_ADMINISTRATOR and/or ACC_GROUPNOTIF_MANAGER role, so you can administrate all Subscription and Notification functionality in ACC5concat&(Ljava/lang/String;)Ljava/lang/String; 78
§9
setTooltip ;N
0<
0]<img src="/acc/images/exclamation.png" border="0" align="absbottom">&nbsp;Administration Mode?
0_popBody=(ILjavax/servlet/jsp/JspWriter;)Ljavax/servlet/jsp/JspWriter; BC
D
0
 
~
~</i></strong></div>
                I"                
                K)class$coldfusion$tagext$html$form$GridTag#coldfusion.tagext.html.form.GridTagN MX    P#coldfusion/tagext/html/form/GridTagRcfgridTdgGroupsV
S‹formatYhtml[    setFormat ]N
S^bind`œcfc:acc.components.alarm.getNotificationGroups_DataGrid({cfgridpage}, {cfgridpagesize}, {cfgridsortcolumn}, {cfgridsortdirection},{tbFilter},{tbGroupOwner})bsetBind dN
Se
bindonloadg setBindOnLoad i{
Sj    autowidthl setAutoWidth n{
So
selectmodeqsingles setSelectMode uN
Sv
striperowsx setStripeRows z{
S{width}'auto'setWidth N
S‚bgcolor„ APPLICATION†EVENBACKGROUNDCOLORˆ
setBgColor ŠN
S‹striperowcolorODDBACKGROUNDCOLORsetStripeRowColor ‘N
S’pagesize”15–_int(Ljava/lang/String;)I ˜™
²š:(Ljava/lang/String;Ljava/lang/String;ILjava/lang/String;)I sœ
 setPageSize Ÿj
S height¢500¤    setHeight ¦N
S§sort©setSort «{
S¬false®
SÈ selectcolor±DATAGRID_SELECTCOLOR³setSelectColor µN
S¶
S
                    ¹/class$coldfusion$tagext$html$form$GridColumnTag)coldfusion.tagext.html.form.GridColumnTag¼ »X    ¾)coldfusion/tagext/html/form/GridColumnTagÀ cfgridcolumnÂheaderÄ
Group NameÆ    setHeader ÈN
ÁÉ    groupnameË
Á‹displayÎ
setDisplay Ð{
ÁÑisownerÓ10Õ
Á‚
~
S
 
            </div>
        Ú
ê
ê
 
ê
ê
    à
ª
ª
    rightAreaäcenteræpadding:4px 4px 4px 4px;è
ªõ 
        ë(class$coldfusion$tagext$html$ajax$DivTag"coldfusion.tagext.html.ajax.DivTagî íX    ð"coldfusion/tagext/html/ajax/DivTagòcfdivô8url:notificationgroup.cfm?groupname={dgGroups.groupname}ö
óe
ƒ
ƒ
+class$coldfusion$tagext$html$ajax$WindowTag%coldfusion.tagext.html.ajax.WindowTagü ûX    þ%coldfusion/tagext/html/ajax/WindowTagcfwindowchangeSubscriptionFormatWindow
‹initshow setInitshow     {
 
 Filter Notification Subscription
Ï    setCenter {
230 ¦j
 j
    resizable setResizable {
 
µmodalsetModal  {
!
…        
    <form id="subscribeToFilterForm">                           
        <input type="hidden" name="subsc_filterId" id="subsc_filterId">
        <input type="hidden" name="subsc_Name" id="subsc_Name">
        <table class="popup_table" width="100%" bgcolor="#F3F3F3" cellpadding="3" cellspacing="1" align="center">
            <tr><td colspan="2">
                Format of the message:&nbsp;&nbsp;
                <span class="tool-button" id="notifHelpButton"><img src="images/question-button.png"></span>
            </td></tr>
            <tr bgcolor="#FCFADA">
                <td>
                    <strong>Email Subject</strong>
                </td><td>
                    <input id="notifEmailSubject" type="text" class="form" style="width:300px">
                </td>
            </tr>
            <tr bgcolor="#FCFADA">    
                <td>
                    <strong>Email Text</strong>
                </td><td>
                    <textarea name="notifEmailText" id="notifEmailText" class="form" style="width:300px;height:50px"></textarea>
                </td>
            </tr>
            <tr bgcolor="#FCFADA">    
                <td>
                    <strong>SMS Text</strong>
                </td><td>
                    <textarea name="notifSMSText" id="notifSMSText" class="form" style="width:300px;height:50px"></textarea>
                </td>
            </tr>
            <tr>
            <td align="center" align='left' width="50%">
                <input id="btnChangeSubFormatOK" type="button" style="width:100px;padding:3px;" class="form" value="Ok" onclick="changeSubscriptionFormatOk();" />
            </td>
            <td align="center" align='right' width="*">
                <input type="button" style="width:100px;padding:3px;" class="form" value="Cancel" onclick="ColdFusion.Window.hide('changeSubscriptionFormatWindow');"/>
            </td>
            </tr>            
        </table>
    </form>        
    <script>    
    
    var allRecords = {};
    function showChangeSubscriptionFormatWindow(name, subject_id, recordId, isOwner) {
        var data = allRecords[recordId];
                    
        var notifEmailSubject = data.NOTIF_EMAIL_SUBJECT_FORMAT || '';
        var notifEmailText = data.NOTIF_EMAIL_TEXT_FORMAT || '';
        var notifSMSText = data.NOTIF_SMS_TEXT_FORMAT || '';    
            
        $('#notifEmailSubject').val(notifEmailSubject);
        $('#notifEmailText').val(notifEmailText);
        $('#notifSMSText').val(notifSMSText);
            
        $('#subsc_filterId').val(subject_id);
        $('#subsc_Name').val(name);
        
        if (isOwner) {
            $('#notifEmailSubject').removeAttr('disabled');
            $('#notifEmailText').removeAttr('disabled');
            $('#notifSMSText').removeAttr('disabled');
            $('#btnChangeSubFormatOK').removeAttr('disabled');            
        }
        else {
            $('#notifEmailSubject').attr('disabled', 'disabled');
            $('#notifEmailText').attr('disabled', 'disabled');
            $('#notifSMSText').attr('disabled', 'disabled');
            $('#btnChangeSubFormatOK').attr('disabled', 'disabled');
        }        
        
        ColdFusion.Window.show('changeSubscriptionFormatWindow');    
    }
    
    $(document).ready(function(){
        $("#notifHelpButton").click(function(){
            ColdFusion.Window.show('notificationsHelpWindow');
        });    
    });
    
    function changeSubscriptionFormatOk() {
        var subject_id = $('#subsc_filterId').val();
        var name = $('#subsc_Name').val();
        
        var notifEmailSubject = $('#notifEmailSubject').val().trim();
        var notifEmailText = $('#notifEmailText').val().trim();
        var notifSMSText = $('#notifSMSText').val().trim();
        
        var accAlarm = new ACCAlarm();
        
        accAlarm.setCallbackHandler(function(resp){
            if(resp != null && resp["SUCCESS"] == false){
                var errm = "";
                for(var i =0; i < resp["ERRORS"].length; i++){
                    errm += resp["ERRORS"][i]["ERROR"] + "<br/>";
                }
                ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                    notification_title : "Error",
                                                    notification_message : "Failed to change subject subscription.<br/>Reason : " + errm});
            }else{
                ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_INFO,
                                                notification_title : "Subscription Updated",
                                                notification_message : "Updated subscription"});
            };
            ColdFusion.Grid.refresh('dgGroupSubscriptions');
        });
        accAlarm.setErrorHandler(function(statusCode, statusMsg){
            ACC.GrowlNotification.showNotification({severity : ACC.GrowlNotification.SEVERITY_ERROR,
                                                    notification_title : "Error",
                                                    notification_message : "Failed to change subject subscription for.<br/>Reason : " + statusMsg})
        });
        accAlarm.changeNotificationFormat(name, subject_id, notifEmailSubject, notifEmailText, notifSMSText);
        ColdFusion.Window.hide('changeSubscriptionFormatWindow');
    }
    </script>
$
 
 
 
    (notificationsHelpWindow*400,
        <p>
            The Format field allows you to specify how the message sent in the notification should be formatted. 
            The values in {curly braces} are replaced by the appropriate fields from the alarm. The available fields are:
        </p>
        <ul>
            <li> <tt>filtername</tt> - The name of the filter.
            <li> <tt>nwtype</tt> - Network type.
            <li> <tt>ne</tt> - Network element.
            <li> <tt>severity</tt> - Alarm Severity.
            <li> <tt>start_date</tt> - Start date of the alarm.
            <li> <tt>specific_problem</tt> - The specific problem.
            <li> <tt>additional_text</tt> - The alarm's additional text.
            <li> <tt>additional_info</tt> - Additional information from the alarm.
            <li> <tt>third_party_ref</tt> - The alarm's ref.
            <li> <tt>event_time</tt> - The alarm's event time.
            <li> <tt>mo_class</tt> - The MO class.
            <li> <tt>mo_name</tt> - The MO name.
            <li> <tt>mo_obj_inst</tt> - The MO instance.
            <li> <tt>probable_cause</tt> - The probable cause.
        </ul>
        <p>
            The default value for the Message Format (if it is left blank) is 
            to use the Alarm's <em>Additional Text</em>.
        </p><p>
            An example of the format is the following:
        </p>
        <div style="padding:20px">
            <pre>{nwtype} {ne} [{severity}]:
{specific_problem}</pre>
        </div>
    .
 
</body>
</html>
 
0metaDataLjava/lang/Object; 23    4this.Lcfnotificationgroups_overview2ecfm1350013679;LocalVariableTableCode<clinit>varscope"Lcoldfusion/runtime/VariableScope;locscopeLcoldfusion/runtime/LocalScope; getMetadata()Ljava/lang/Object;runPageoutLjavax/servlet/jsp/JspWriter; ajaximport0+Lcoldfusion/tagext/html/ajax/AjaxImportTag;
ajaxproxy1*Lcoldfusion/tagext/html/ajax/AjaxProxyTag;include2#Lcoldfusion/tagext/lang/IncludeTag;output3 Lcoldfusion/tagext/io/OutputTag;mode3It9t10Ljava/lang/Throwable;t11t12t13Ljava/lang/String;t14t15t16Ljava/util/StringTokenizer;output4mode4t19t20t21t22layout15'Lcoldfusion/tagext/html/ajax/LayoutTag;mode15 layoutarea12+Lcoldfusion/tagext/html/ajax/LayoutAreaTag;mode12form11%Lcoldfusion/tagext/html/form/FormTag;mode11input5&Lcoldfusion/tagext/html/form/InputTag;t30input6t32tooltip7(Lcoldfusion/tagext/html/ajax/TooltipTag;mode7t35t36t37t38t39t40grid10%Lcoldfusion/tagext/html/form/GridTag;mode10 gridcolumn8+Lcoldfusion/tagext/html/form/GridColumnTag;t44 gridcolumn9t46t47t48t49t50t51t52t53t54t55t56t57t58t59t60t61t62 layoutarea14mode14div13$Lcoldfusion/tagext/html/ajax/DivTag;t66t67t68t69t70t71t72t73t74t75t76window16'Lcoldfusion/tagext/html/ajax/WindowTag;mode16t79t80t81t82t83t84window17mode17t87t88t89t90t91t92LineNumberTablejava/lang/Throwable¯1"&*.2WX†XÙXûX}X¤XäXX*XMX»XíXûX239#*·
±8 67:9ž€Z¸`³bˆ¸`³ŠÛ¸`³Ýý¸`³ÿ¸`³¦¸`³¨æ¸`³è¸`³,¸`³.O¸`³Q½¸`³¿ï¸`³ñý¸`³ÿ»Y½·³5±8 €67 9˜f*+,·**+,¶µ**+,¶µ**+,¶µ!**#+,¶µ%**'+,¶µ)**++,¶µ-**/+,¶µ1**3+¶7µ9±8 f67f;<f=>?@9"²5°8 67A@9ò    ]„*´@¶FL*´JN*L¶P*+R¶V*²b-¶fÀh:*¶lnpr¸v¶y¶¸ƒ™°*+…¶V*²Š-¶fÀŒ:*¶lސ’¸v¶•Ž—™¸v¶œ¶¸ƒ™°*+…¶V*¶l*ž¶¡*+£¶V*´!*¶l*¥½§Y©S¶­¸³µ·¸»¸¿¶Å*+…¶V*´%*¶l*¥½§Y©S¶­¸³Ç·¸»¸¿¶Å*+£¶V*´**´!¶ËY¸Ïš W**´%¶Ë¶Å*+£¶V*´1*¥½§YÑS¶­¶Å+Ó¶Ø*²Ý-¶fÀß:*#¶láãå¸v¶è¶¸ƒ™°+ê¶Ø**´¶Ë¸Ï‚™    +ì¶Ø+î¶Ø**´¶Ë¸Ï‚™    +ð¶Ø+ò¶Ø**´¶Ë¸Ï‚™    +ô¶Ø+ö¶Ø**´¶Ë¸Ï‚™    +ø¶Ø+ú¶Ø*²ÿ-¶fÀ:*£¶l¶¶Y6™!+*¥½§YÑS¶­¸³¶Ø¶šÿå¶   :    ¨#    °¨§#:
 
¶¨§: ¨ ¿: ¶© +¶Ø**´¶Ë¸Ï‚™    +ì¶Ø+¶Ø**´¶Ë¸Ï‚™    +ð¶Ø+¶Ø**´¶Ë¸Ï‚™ +¶Ø§
+¶Ø+ ¶Ø**´¶Ë¸Ï‚™
+"¶Ø+$¶Ø**´¶Ë¸Ï‚™
+&¶Ø+(¶Ø**´¶Ë¸Ï‚™
+*¶Ø+,¶Ø*´).¶Å*+0¶V*´9¸4¶Å**´9½§Y6S8¶<**´9½§Y>S@¶<**´9½§YBSD¶<**´9½§YFSH¶<**´9½§YJSL¶<**´9½§YNSP¶<**´9½§YRST¶<*´-**´9¶W¶Å*+0¶V**´)¶Ë¸³: ·:*¶Z:»\Y ·_:§Æ¶cM,¶Å*+e¶V*²ÿ-¶fÀ:*¯¶l¶¶Y6™F+g¶Ø+**´¶Ë¸³¶Ø+i¶Ø+**´-**´¶Ë¶m¸³¶Ø+o¶Ø¶šÿÀ¶   :¨#°¨§#:¶¨§:¨¿:¶©*+0¶Vq¸t¶xšÿ8+z¶Ø+|¶Ø*²-¶fÀƒ:*ï¶l…‡‰¸v¶Œ…ސ¸v¶“…•—¸š¸¶ ¶¶¡Y6™B*+£¶V*²¨ ¶fÀª:*ñ¶l¬‡®¸v¶¯¬±³¸š¸¶¶¬¸º¸v¶½¬¿Á¸v¶Ä¬Æ³¸š¸¶É¬Ë͸v¶Ð¬Ò³¸š¸¶Õ¬×Ù¸v¶Ü¶¶ÝY6™ *+¶áL*+ã¶V*²è ¶fÀê:*ó¶lì‡î¸v¶ïìñó¸v¶öìøú¸v¶ý¶¶þY6™1*+¶áL+¶Ø*²¶fÀ:*õ¶l    ‡ ¸v¶     ¸v¶    Ž¸v¶»Y½YSY S·¶#¶¸ƒ™:¨˜¨Ù¨ý¨8¨Ÿ°*+%¶V*²¶fÀ:*ö¶l    ‡'¸v¶     ¸v¶    Ž¸v¶»Y½YSY'S·¶#¶¸ƒ™: ¨¨E¨i¨¤¨  °*+%¶V**´¶Ë¸Ï™Ú+)¶Ø*².¶fÀ0:!*ø¶l!24*¥½§YÑS¶­¸³6¶:¸v¶=!¶!¶>Y6"™6*!"+¶áL+@¶Ø!¶Ašÿô¨§:#¨#¿:$*"+¶EL©$!¶F :%¨2¨D¨…¨©¨ä¨K%°¨§#:&!&¶G¨§:'¨'¿:(!¶H©(+J¶Ø*+L¶V*²Q
¶fÀS:)*ú¶l)U‡W¸v¶X)UZ\¸v¶_)Uac¸v¶f)Uh—¸š¸¶k)Um—¸š¸¶p)Urt¸v¶w)Uy—¸š¸¶|)U~€¸v¶ƒ)U…*‡½§Y‰S¶­¸³¸v¶Œ)UŽ*‡½§YS¶­¸³¸v¶“)U•—¸›¸ž¶¡)U£¥¸v¶¨)Uª—¸š¸¶­)UƯ¸š¸¶°)U²*‡½§Y´S¶­¸³¸v¶·)¶)¶¸Y6*™!*+º¶V*²¿)¶fÀÁ:+*    ¶l+ÃÅǸv¶Ê+Ç̸v¶Í+ÃÏ—¸š¸¶Ò+¶+¸ƒ™:,¨ó¨¨W¨{¨¶¨,°*+º¶V*²¿    )¶fÀÁ:-*
¶l-ßv¶Ê-ÇԸv¶Í-Ã~Ö¸v¶×-ÃÏ—¸š¸¶Ò-¶-¸ƒ™:.¨c¨†¨Ç¨ë¨&¨.°*+%¶V)¶ؚþå)¶Ù :/¨2¨U¨–¨º¨õ¨\/°¨§#:0)0¶G¨§:1¨1¿:2)¶H©2+۶ضܚúù¨§:3¨3¿:4*+¶EL©4¶Ý :5¨,¨P¨‹¨ò5°¨§#:66¶Þ¨§:7¨7¿:8¶ß©8*+á¶V¶âšú¨§:9¨9¿::*+¶EL©:¶ã :;¨&¨;°¨§#:<<¶G¨§:=¨=¿:>¶H©>*+á¶V*²¨¶fÀª:?*¶l?¬‡å¸v¶¯?¬¸ç¸v¶½?¬ñé¸v¶ê?¶?¶ÝY6@™…*?@+¶áL*+ì¶V*²ñ ?¶fÀó:A*¶lAõa÷¸v¶øA¶A¸ƒ™:B¨*¨e¨©B°*+á¶V?¶âšÿ¥¨§:C¨C¿:D*@+¶EL©D?¶ã :E¨&¨jE°¨§#:F?F¶G¨§:G¨G¿:H?¶H©H*+…¶V¶ùš÷Ķú  :I¨#I°¨§#:JJ¶G¨§:K¨K¿:L¶H©L*+£¶V*²ÿ-¶fÀ:M*¶lM‡¸v¶M¯¸š¸¶ MË ¸v¶Mç³¸š¸¶M£¸›¸ž¶M~¥¸›¸ž¶M¯¸š¸¶M±³¸š¸¶M³¸š¸¶"M¶M¶#Y6N™6*MN+¶áL+%¶ØM¶&šÿô¨§:O¨O¿:P*N+¶EL©PM¶'  :Q¨#Q°¨§#:RMR¶G¨§:S¨S¿:TM¶H©T*+)¶V*²ÿ-¶fÀ:U*жlU‡+¸v¶U¯¸š¸¶ UË ¸v¶Uç³¸š¸¶U£-¸›¸ž¶U~-¸›¸ž¶U¯¸š¸¶U±³¸š¸¶U³¸š¸¶"U¶U¶#Y6V™6*UV+¶áL+/¶ØU¶&šÿô¨§:W¨W¿:X*V+¶EL©XU¶'  :Y¨#Y°¨§#:ZUZ¶G¨§:[¨[¿:\U¶H©\+1¶Ø°ŠKW°QTW°Kf°QTf°Wcf°fkf°Y³¿°¹¼¿°Y³Î°¹¼Î°¿ËΰÎÓΰ8TW°W\W°-†’°Œ’°-†¡°Œ¡°’ž¡°¡¦¡°
1
´ °
º D ° J u ° { ~ °
1
´ °
º D ° J u ° { ~ °   °  • °œ2 ¶°8Æ ¶°Ì† ¶°Œ
´ ¶°
º D ¶° J u ¶° { ³ ¶° ¶ » ¶°‘2 ë°8Æ ë°Ì† ë°Œ
´ ë°
º D ë° J u ë° { ß ë° å è ë°‘2 ú°8Æ ú°Ì† ú°Œ
´ ú°
º D ú° J u ú° { ß ú° å è ú° ë ÷ ú° ú ÿ ú°,2 !°8Æ !°Ì† !°Œ
´ !°
º D !° J u !° { ß !° å  !° ! & !°!2 P°8Æ P°Ì† P°Œ
´ P°
º D P° J u P° { ß P° å D P° J M P°!2 _°8Æ _°Ì† _°Œ
´ _°
º D _° J u _° { ß _° å D _° J M _° P \ _° _ d _° Ö ( D° . A D° D I D° Ë ( s° . g s° m p s° Ë ( ‚° . g ‚° m p ‚° s  ‚° ‚ ‡ ‚°X2 º°8Æ º°Ì† º°Œ
´ º°
º D º° J u º° { ß º° å D º° J ( º° . g º° m ® º° ´ · º°X2 ɰ8Æ É°Ì† ɰŒ
´ ɰ
º D ɰ J u ɰ { ß É° å D ɰ J ( ɰ . g ɰ m ® ɰ ´ · ɰ º Æ É° É Î É°¿ÛÞ°ÞãÞ°´þ
°
°´þ°°
°°,/°/4/°O[°UX[°Oj°UXj°[gj°joj°8¤]„67„BC„ 3„GH„DE„FG„HI„JK„LM„N3    „OP
„QP „R3 „ST „UT„V„WX„YK„ZM„[3„\P„]P„^3„_`„aM„bc„dM„ef„gM„hi„j3„ki„l3 „mn!„oM"„pP#„q3$„r3%„sP&„tP'„u3(„vw)„xM*„yz+„{3,„|z-„}3.„~3/„P0„€P1„32„‚P3„ƒ34„„35„…P6„†P7„‡38„ˆP9„‰3:„Š3;„‹P<„ŒP=„3>„Žc?„M@„‘A„’3B„“PC„”3D„•3E„–PF„—PG„˜3H„™3I„šPJ„›PK„œ3L„žM„ŸMN„ PO„¡3P„¢3Q„£PR„¤PS„¥3T„¦žU„§MV„¨PW„©3X„ª3Y„«PZ„¬P[„­3\®bØ4n}T¤£££ººÌκº°°êêüþêêàà$$::66l#R#‹Y‹Y‹Y‹Y§b§b§b§bÑÑÑÑߕߕߕߕ"£"£!£û£~F~F~F~F›L›L›L›L¸`¸`¸`Òc¸`à‡à‡à‡à‡þ‹þ‹þ‹þ‹šššš>§>§:§:§P¨P¨L¨e©e©V¨z©z©k¨ªª€¨¤ª¤ª•¨¹«¹«ª¨Î«Î«¿¨ã¬ã¬Ô¨L¨é¨L¨®®l°l°k°‡°‚°‚°°>¯ò®®!ï3ïEïŠñœñ±ñÃñÕñêñüññ]óoóóËõÝõïõ õ­õ_öqöƒöŸö@öÔ÷øøøøéøÔ÷àúòû    ü    ý    +þ    @ÿ    R    g    y    y    œ    œ    ¿    Ô    æ    û
 
 
c    
u    
‡    
D    
á
 
ó
 
 
 
Â
Áú>ókñ — © »  è xï ÿ&8MbwŒ¡ áPŠbŠwŠ‰ŠžŠ³ŠÈ‹Ý‹ò‹2Š:;