This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
2008-04-10---OpenMRS_2424918.html
4927 lines (4914 loc) · 230 KB
/
2008-04-10---OpenMRS_2424918.html
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
<!DOCTYPE html>
<html>
<head>
<title>IRC Chat : 2008-04-10 - OpenMRS</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body class="theme-default aui-theme-default">
<div id="page">
<div id="main" class="aui-page-panel">
<div id="main-header">
<div id="breadcrumb-section">
<ol id="breadcrumbs">
<li class="first">
<span><a href="index.html">IRC Chat</a></span>
</li>
<li>
<span><a href="Logs---OpenMRS_2424835.html">Logs - OpenMRS</a></span>
</li>
<li>
<span><a href="2008---OpenMRS_2424837.html">2008 - OpenMRS</a></span>
</li>
<li>
<span><a href="2008-04---OpenMRS_2424908.html">2008-04 - OpenMRS</a></span>
</li>
</ol>
</div>
<h1 id="title-heading" class="pagetitle">
<span id="title-text">
IRC Chat : 2008-04-10 - OpenMRS
</span>
</h1>
</div>
<div id="content" class="view">
<div class="page-metadata">
Created by <span class='author'> Unknown User (openmrsbot)</span>, last modified on 2013-06-28
</div>
<div id="main-content" class="wiki-content group">
<div class="table-wrap"><table class="confluenceTable"><tbody><tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#000754" name="000754" rel="nofollow">00:07:54</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** njero has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#000834" name="000834" rel="nofollow">00:08:34</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** njero has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#000835" name="000835" rel="nofollow">00:08:35</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +v njero
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#001825" name="001825" rel="nofollow">00:18:25</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** docpaul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#004020" name="004020" rel="nofollow">00:40:20</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** njero has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#004222" name="004222" rel="nofollow">00:42:22</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** njero has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#004223" name="004223" rel="nofollow">00:42:23</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +v njero
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#010555" name="010555" rel="nofollow">01:05:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** [OmegentooX] has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#010606" name="010606" rel="nofollow">01:06:06</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +v [OmegentooX]
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#014850" name="014850" rel="nofollow">01:48:50</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** TorLye has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#020126" name="020126" rel="nofollow">02:01:26</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** [0megentooX] has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#020136" name="020136" rel="nofollow">02:01:36</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** [OmegentooX] has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#020303" name="020303" rel="nofollow">02:03:03</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#020447" name="020447" rel="nofollow">02:04:47</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** nribeka has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#020455" name="020455" rel="nofollow">02:04:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#025916" name="025916" rel="nofollow">02:59:16</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#030209" name="030209" rel="nofollow">03:02:09</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#043410" name="043410" rel="nofollow">04:34:10</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** TorLye has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#044202" name="044202" rel="nofollow">04:42:02</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#050313" name="050313" rel="nofollow">05:03:13</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** Keelhaul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#050827" name="050827" rel="nofollow">05:08:27</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** elad has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#051519" name="051519" rel="nofollow">05:15:19</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** sunbiz has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#051527" name="051527" rel="nofollow">05:15:27</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> hi guys!!
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#051559" name="051559" rel="nofollow">05:15:59</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> not many people on the channel today ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#051725" name="051725" rel="nofollow">05:17:25</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> just finished my theory exams... so I thought I'd do something interesting on OpenMRS ??...
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#052353" name="052353" rel="nofollow">05:23:53</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> I guess I'll come back when everyonez awake!!
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#052355" name="052355" rel="nofollow">05:23:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** sunbiz has left #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#062715" name="062715" rel="nofollow">06:27:15</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** bwolfe has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#062715" name="062715" rel="nofollow">06:27:15</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +o bwolfe
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#064442" name="064442" rel="nofollow">06:44:42</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> shadowdoc: Marc!
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#064455" name="064455" rel="nofollow">06:44:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** bwolfe sets mode: +v shadowdoc
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#064514" name="064514" rel="nofollow">06:45:14</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> how goes things? What brings you to irc?
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071141" name="071141" rel="nofollow">07:11:41</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** nribeka has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071146" name="071146" rel="nofollow">07:11:46</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** bmckown has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071146" name="071146" rel="nofollow">07:11:46</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +o bmckown
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071154" name="071154" rel="nofollow">07:11:54</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** masonf_ has left #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071720" name="071720" rel="nofollow">07:17:20</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** TorLye has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071933" name="071933" rel="nofollow">07:19:33</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** Keelhaul has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#071933" name="071933" rel="nofollow">07:19:33</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +v Keelhaul
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#072141" name="072141" rel="nofollow">07:21:41</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** Keelhaul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#073604" name="073604" rel="nofollow">07:36:04</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** [0megentooX] is now known as [OmegentooX]
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#073608" name="073608" rel="nofollow">07:36:08</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +v [OmegentooX]
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#074738" name="074738" rel="nofollow">07:47:38</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** docpaul has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#074738" name="074738" rel="nofollow">07:47:38</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +o docpaul
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#074832" name="074832" rel="nofollow">07:48:32</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** docpaul has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#075510" name="075510" rel="nofollow">07:55:10</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** udai has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#080021" name="080021" rel="nofollow">08:00:21</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** atomicturtle has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#080624" name="080624" rel="nofollow">08:06:24</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** burke_away has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#080624" name="080624" rel="nofollow">08:06:24</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +o burke_away
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#081029" name="081029" rel="nofollow">08:10:29</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** bhanu has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082218" name="082218" rel="nofollow">08:22:18</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** bhanu has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082529" name="082529" rel="nofollow">08:25:29</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082719" name="082719" rel="nofollow">08:27:19</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082723" name="082723" rel="nofollow">08:27:23</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082907" name="082907" rel="nofollow">08:29:07</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has left #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082909" name="082909" rel="nofollow">08:29:09</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#082923" name="082923" rel="nofollow">08:29:23</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#083149" name="083149" rel="nofollow">08:31:49</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** mseaton has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#083506" name="083506" rel="nofollow">08:35:06</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> mseaton: having connection issues? :-p
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#083645" name="083645" rel="nofollow">08:36:45</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** jmiranda has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#083715" name="083715" rel="nofollow">08:37:15</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** ChanServ sets mode: +o jmiranda
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#084556" name="084556" rel="nofollow">08:45:56</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<mseaton> :), just trying out mibbit
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#084703" name="084703" rel="nofollow">08:47:03</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** atomicturtle has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#084934" name="084934" rel="nofollow">08:49:34</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** napi has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#090044" name="090044" rel="nofollow">09:00:44</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** TorLye has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#090317" name="090317" rel="nofollow">09:03:17</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** jmiranda has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#090402" name="090402" rel="nofollow">09:04:02</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** HongJun has joined #OpenMRS
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#090411" name="090411" rel="nofollow">09:04:11</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [3890]: report-api-refactoring: adding birthdates to sample data <<a href="http://dev.openmrs.org/changeset/3890" class="external-link" rel="nofollow">http://dev.openmrs.org/changeset/3890</a>> || OpenMRS Changesets: Changeset [3889]: xformsorbeon module: Persisting an encounter properly! HIPHIPHORRAY! <<a href="http://dev.openmrs.org/changeset/3889" class="external-link" rel="nofollow">http://dev.openmrs.org/changeset/3889</a>>
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#090457" name="090457" rel="nofollow">09:04:57</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** HongJun has left #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#091002" name="091002" rel="nofollow">09:10:02</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** upul has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#091332" name="091332" rel="nofollow">09:13:32</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** TorLye has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#092558" name="092558" rel="nofollow">09:25:58</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** sunbiz has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#092820" name="092820" rel="nofollow">09:28:20</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> is anyone awake ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093450" name="093450" rel="nofollow">09:34:50</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> nope
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093453" name="093453" rel="nofollow">09:34:53</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> everyone is sleeping
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093457" name="093457" rel="nofollow">09:34:57</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> I am sleep typing
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093506" name="093506" rel="nofollow">09:35:06</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sleep lurking, if you will
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093508" name="093508" rel="nofollow">09:35:08</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<OpenMRSBot> Recent updates in the world of openmrs: News Blog: OpenMRS 1.2.02 Released <<a href="http://blog.openmrs.org/?p=67" class="external-link" rel="nofollow">http://blog.openmrs.org/?p=67</a>>
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093521" name="093521" rel="nofollow">09:35:21</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> :)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093543" name="093543" rel="nofollow">09:35:43</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: how did you run your java program for #188
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093602" name="093602" rel="nofollow">09:36:02</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> svn has trouble with class comments
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093616" name="093616" rel="nofollow">09:36:16</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> so I want to run it on one of the other branches before I do a merge from trunk
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093817" name="093817" rel="nofollow">09:38:17</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> just like the normal way to run java programs, compile and run... I hard coded the location as Windows specific... mayb u'll need to change that
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093831" name="093831" rel="nofollow">09:38:31</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: did you run your AddLicense.java from eclipse, or from command line?
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093840" name="093840" rel="nofollow">09:38:40</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> ah, I was hoping for everything within eclipse ;-)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#093854" name="093854" rel="nofollow">09:38:54</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> and the FileNameExtensionFilter is part of JDK6 only
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094009" name="094009" rel="nofollow">09:40:09</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> hmm, yeah, I have java6
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094043" name="094043" rel="nofollow">09:40:43</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> yeah... I was talking about the firefox plugin
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094047" name="094047" rel="nofollow">09:40:47</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> !ticket 175
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094047" name="094047" rel="nofollow">09:40:47</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<OpenMRSBot> sunbiz: Ticket #175: <a href="http://dev.openmrs.org/ticket/175" class="external-link" rel="nofollow">http://dev.openmrs.org/ticket/175</a>
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094115" name="094115" rel="nofollow">09:41:15</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> grr javac AddLicence.java ..... java AddLicense .... gives me an "open file" dialog and then a java swing window and nothing happens
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094117" name="094117" rel="nofollow">09:41:17</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> I was half-way working on the plugin when I realized the plugin isn't needed
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094134" name="094134" rel="nofollow">09:41:34</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> yea... u select the files and then it adds license to the selected files
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094159" name="094159" rel="nofollow">09:41:59</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> ah. can I just select the main folder?
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094319" name="094319" rel="nofollow">09:43:19</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> no... I had actually initially made it recursive where it can search folders and Java files inside that
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094336" name="094336" rel="nofollow">09:43:36</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> but it was talking too long on some files... and hence I made it single file based
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094415" name="094415" rel="nofollow">09:44:15</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> actually... it was just quick one-time thing... not a well written code for all purposes :(
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094430" name="094430" rel="nofollow">09:44:30</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> yeah, thats fine
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094500" name="094500" rel="nofollow">09:45:00</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> did u try to check the checkmark when it asks in Firefox ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094506" name="094506" rel="nofollow">09:45:06</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> the firefox plugin is needed because that "always do this" preference in firefox doesn't seem to work.
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094536" name="094536" rel="nofollow">09:45:36</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> it seems to be working with Firefox 2 and Firefox 3 for me !??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094538" name="094538" rel="nofollow">09:45:38</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> I think there is a second check that firefox does and since we're selecting "open" on an extension that firefox doesn't know or like, it still gives that popup
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094544" name="094544" rel="nofollow">09:45:44</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> wait... lemme tell you the steps...
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094556" name="094556" rel="nofollow">09:45:56</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: are you choosing "open" automatically, or "save" automatically ?
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094606" name="094606" rel="nofollow">09:46:06</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> ...and it has to be on the forms that users download
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094614" name="094614" rel="nofollow">09:46:14</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> save automatically
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094619" name="094619" rel="nofollow">09:46:19</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> (patient dashboard --> forms tab --> choose a form and open it with infopath)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094623" name="094623" rel="nofollow">09:46:23</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: yeah, works for save
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094633" name="094633" rel="nofollow">09:46:33</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: we want it to work for open :-)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094637" name="094637" rel="nofollow">09:46:37</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> (hence the plugin)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094647" name="094647" rel="nofollow">09:46:47</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> I haven't tried ff3...maybe they fixed it ?
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#094725" name="094725" rel="nofollow">09:47:25</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> ok... so we want to open it directly with InfoPath right ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095055" name="095055" rel="nofollow">09:50:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> bwolfe: arent we doing this: <a href="http://demo.openmrs.org/openmrs/admin/forms/formEdit.form?formId=16" class="external-link" rel="nofollow">http://demo.openmrs.org/openmrs/admin/forms/formEdit.form?formId=16</a> and then clicking "Download XSN" ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095056" name="095056" rel="nofollow">09:50:56</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<OpenMRSBot> <<a href="http://ln-s.net/1ni9" class="external-link" rel="nofollow">http://ln-s.net/1ni9</a>> (at <a href="http://demo.openmrs.org/" class="external-link" rel="nofollow">demo.openmrs.org</a>)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095154" name="095154" rel="nofollow">09:51:54</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: no, thats a different action. the "download xsn" should /always/ be saved. because you never want to open that file directly. that file you always want to right click on (after saved) and choose "design in infopath".
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095224" name="095224" rel="nofollow">09:52:24</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> we want to give our data enterers one less click...that means not having to click "open" after clicking on a form
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095251" name="095251" rel="nofollow">09:52:51</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> bwolfe: yea... so this one should save (to Firefox's default location) without showing the dialog right ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095257" name="095257" rel="nofollow">09:52:57</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> the data enterers only see the patient dashboard (the screen after searching/finding/choosing a patient)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095345" name="095345" rel="nofollow">09:53:45</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: no, that would should probably just stay as is. because some admins will want to save to the same place, some will want to save to different, etc....ff handles that properly now
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095550" name="095550" rel="nofollow">09:55:50</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> ok...
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095658" name="095658" rel="nofollow">09:56:58</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> bwolfe: is this the place ?? ==> <a href="http://demo.openmrs.org/openmrs/patientDashboard.form?patientId=5689&phrase=and" class="external-link" rel="nofollow">http://demo.openmrs.org/openmrs/patientDashboard.form?patientId=5689&phrase=and</a>
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095659" name="095659" rel="nofollow">09:56:59</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<OpenMRSBot> <<a href="http://ln-s.net/1niH" class="external-link" rel="nofollow">http://ln-s.net/1niH</a>> (at <a href="http://demo.openmrs.org/" class="external-link" rel="nofollow">demo.openmrs.org</a>)
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095725" name="095725" rel="nofollow">09:57:25</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> yeah
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#095952" name="095952" rel="nofollow">09:59:52</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> So when I click on a form from the ones below... the dialog that comes up, should actually no come... and instead it should open InfoPath ?? is that correct ???
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100003" name="100003" rel="nofollow">10:00:03</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> *not
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100200" name="100200" rel="nofollow">10:02:00</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> bwolfe: those files have an extension "infopathxml" ... is that correct ??
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100222" name="100222" rel="nofollow">10:02:22</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: right
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100228" name="100228" rel="nofollow">10:02:28</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: and right
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100356" name="100356" rel="nofollow">10:03:56</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** rmalla has joined #openmrs
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100422" name="100422" rel="nofollow">10:04:22</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<rmalla> bwolfe: good morning ben
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100445" name="100445" rel="nofollow">10:04:45</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> hey ratnakar
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100527" name="100527" rel="nofollow">10:05:27</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: fyi, I can run that AddLicense.java from eclipse. I had forgotten to create the project as a "java" project
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100555" name="100555" rel="nofollow">10:05:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: grey;" class="confluenceTd">
*** njero has quit IRC
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100623" name="100623" rel="nofollow">10:06:23</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> :P
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100705" name="100705" rel="nofollow">10:07:05</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<sunbiz> bwolfe: why do we have to register separately for the wiki and the trac ???
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">
<a href="#100755" name="100755" rel="nofollow">10:07:55</a>
</td>
<td style="font-family: monospace;font-size: 9.0pt;color: black;" class="confluenceTd">
<bwolfe> sunbiz: because we haven't linked mediawiki and trac to the same authentication scheme yet
</td>
</tr>
<tr><td style="font-family: monospace;font-size: 9.0pt;color: black;white-space: nowrap;" class="confluenceTd">