IRC Chat : 2011-05-20 - OpenMRS

00:15:31 *** dmexs has joined #openmrs
00:16:15 *** mandric has quit IRC
00:16:30 *** mandric has joined #openmrs
00:20:55 *** mandric has quit IRC
00:24:52 *** dmexs has quit IRC
00:32:14 *** dmexs has joined #openmrs
00:56:17 *** mandric has joined #openmrs
01:37:25 *** dmexs has quit IRC
02:06:11 *** jriley has joined #openmrs
02:18:16 *** jportela has left #openmrs
03:07:38 *** goutham has joined #openmrs
03:10:56 *** mandric has quit IRC
03:36:22 *** gbastien has quit IRC
03:59:31 *** dlawson has quit IRC
04:00:18 *** dlawson has joined #openmrs
04:00:18 *** ChanServ sets mode: +v dlawson
04:18:59 *** dmexs has joined #openmrs
04:20:41 *** mandric has joined #openmrs
04:22:10 *** mandric has quit IRC
05:02:18 *** jriley has quit IRC
05:11:18 *** surangak has joined #openmrs
05:12:27 *** muthah has joined #openmrs
05:21:30 *** dmexs has quit IRC
05:30:05 *** dlawson has quit IRC
05:31:03 *** dlawson has joined #openmrs
05:31:03 *** ChanServ sets mode: +v dlawson
05:31:53 *** dlawson has left #openmrs
06:04:10 *** robbyoconnor has quit IRC
06:05:33 *** robbyoconnor has joined #openmrs
06:05:33 *** ChanServ sets mode: +v robbyoconnor
06:05:40 *** bryq has joined #openmrs
06:05:40 *** ChanServ sets mode: +v bryq
06:06:25 *** bwolfe has joined #openmrs
06:06:25 *** ChanServ sets mode: +o bwolfe
06:07:50 *** bwolfe has quit IRC
06:08:08 *** bwolfe has joined #openmrs
06:08:08 *** ChanServ sets mode: +o bwolfe
06:32:31 <surangak> howdy everyone
06:33:01 <surangak> ive been trying to test if an concept is complex using a tag class code
06:33:30 <surangak> i am now trying something like this
06:36:14 *** surangak_ has joined #openmrs
06:36:26 <bwolfe> <if test="${concept.complex}"> isn't working?
06:36:34 *** surangak_ has quit IRC
06:37:03 *** surangak_ has joined #openmrs
06:37:17 <surangak_> sorry, half my message got cut off
06:38:00 *** surangak has quit IRC
06:38:34 *** muthah has quit IRC
06:41:32 *** jriley has joined #openmrs
06:41:39 <surangak_> what i ment to say was, any idea why if(concept.complex){ used within a tag class returns false for every single concept i select
06:42:04 <surangak_> do i need to use concept.complex strictly within a <c:if or...
06:46:18 <bwolfe> surangak_: in a tag java class its concept.isComplex(), right?
06:46:26 <bwolfe> or are you in a .tag jsp file?
06:46:56 <surangak_> actually im using the conceptLocation.tag class
06:47:13 <bwolfe> are you editing that? or just using that as a test?
06:47:37 <surangak_> problem is this tag is returning a concept to an javascript
06:47:58 <surangak_> so i need to cast and check for conceptcomplexes either in the tag class or in the javascript
06:48:34 <surangak_> my end goal is, check if the concept is complex, and get the handler value (ex. 'imagehandler') etc. etc.
06:48:58 <surangak_> sorry i meant conceptField.tag
06:49:34 <bwolfe> I see. perhaps hibernate isn't returning ConceptComplex objects? but instead just plain Concept objects?
06:50:24 <surangak_> would i need to call specifically for a conceptcomplex object using the dwrservice ?
06:51:46 <surangak_> would i need to call a method to specifically return a conceptComplex ?
06:57:38 <surangak_> hm... would if(concept.datatype =='ED') a good way to test for complex concepts ?
06:57:58 <surangak_> im asking because, in the obsformJSP i see this is done using two methods,
06:58:30 <surangak_> first var datatype = tmpConcept.hl7Abbreviation;
06:59:00 <surangak_> and then if datatype !=string,
06:59:15 <surangak_> datatype = tmpConcept.datatype.hl7Abbreviation;
07:01:11 *** dkayiwa has joined #openmrs
07:17:48 <bwolfe> surangak_: sorry, just came back here. after you ask me a question you need to put in my username, that way xchat blinks at me
07:17:59 <bwolfe> I only check irc every 5-10 mins, I get distracted with other work. :-)
07:18:33 <bwolfe> surangak_: datatype hl7abbreviation is a good backup
07:18:36 <surangak_> sorry, I be a windows guy...
07:18:46 <bwolfe> even for windows its the same thing. :-)
07:18:54 <bwolfe> !tabcomplete
07:18:54 <OpenMRSBot> bwolfe: "tabcomplete" --- Most IRC clients let you easily write someone's nickname in the channel using tab completion. Just type the first few letters, then <tab>, and voila!
07:19:11 <surangak_> bwolfe
07:19:25 <bwolfe> its an irc standard. if your username is in the text, the irc client shows it to me as "red" and also blinks the taskbar for me
07:19:30 <surangak_> bwolfe: aha
07:19:42 <surangak_> bwolfe: it is working i think
07:19:49 <bwolfe> what is working?
07:19:52 <bwolfe> tabcompletion? :-)
07:19:58 <bwolfe> or the if complex statment?
07:20:08 <surangak_> bwolfe: tab completion im afraid...
07:20:14 <bwolfe> heh
07:20:25 <surangak_> bwolfe: is there a diff between datatype = tmpConcept.datatype.hl7Abbreviation;
07:20:25 <bwolfe> its ok, small victories are still victories!
07:20:45 <surangak_> bwolfe: and tmpConcept.hl7Abbreviation;
07:20:57 <surangak_> bwolfe: really small victories :P
07:21:22 <bwolfe> what kind of object is tmpConcept? if its just a Concept, then it probalby doesn't have a .getHl7Abbreviation() method on it for jsp to call
07:21:39 <surangak_> bwolfe: yes its a concept
07:21:53 <bwolfe> so you have to use the first
07:22:03 <bwolfe> because that calls Concept.getDatatype().getHl7Abbreviation()
07:22:23 <surangak_> bwolfe: so if tmpConcept.datatype.hl7Abbreviation =='ED' this is a complex concept, isnt it ?
07:23:38 <surangak_> bwolfe: im assuming i can do this test and then cast to conceptComplex within the tag itself...
07:27:08 *** bwolfe has quit IRC
08:05:17 *** bwolfe has joined #openmrs
08:05:17 *** ChanServ sets mode: +o bwolfe
09:06:59 *** dkayiwa has quit IRC
09:07:22 *** dkayiwa has joined #openmrs
09:24:45 <surangak_> bwolfe: hi, i just tried that out
09:24:47 <surangak_> apparently
09:25:24 <surangak_> bwolfe: apparently concept.datatype.hl7Abbreviation is equal to null
09:25:43 <surangak_> bwolfe: but concept.datatype != null
09:26:31 <surangak_> bwolfe: so i would need to do a casting to a conceptcomplex object i guess...
10:00:58 *** jriley has quit IRC
10:39:07 *** free__ has joined #openmrs
10:39:18 <free__> hi all
10:39:41 <free__> can anyone help me...
10:40:08 <free__> how to request for a new module as well as access to sub version
10:45:31 <bwolfe> free__: http://wiki.openmrs.org/display/docs/Code+Repository#CodeRepository-RequestingRepositoryAccess
10:45:32 <OpenMRSBot> <http://ln-s.net/8m_A> (at wiki.openmrs.org)
10:46:31 <free__> should i mail to code@openmrs.com?
10:46:50 <free__> *.org
10:53:43 <bwolfe> free__: yep
11:11:10 *** free__ has quit IRC
11:11:11 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Modules: Reporting Compatibility 1.5.4 uploaded to OpenMRS Module Repository <https://dev.openmrs.org/modules/view.jsp?module=reportingcompatibility-parent&version=&1.5.4>
11:29:40 *** james_regen has joined #openmrs
11:29:40 *** ChanServ sets mode: +v james_regen
12:16:23 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Modules: Reporting Compatibility 1.5.4.1 uploaded to OpenMRS Module Repository <https://dev.openmrs.org/modules/view.jsp?module=reportingcompatibility&version=&1.5.4.1>
12:38:59 *** wyclif has quit IRC
13:01:02 *** wyclif has joined #openmrs
13:04:08 *** wyclif has quit IRC
13:04:59 *** wyclif has joined #openmrs
13:05:11 *** dkayiwa has quit IRC
13:05:27 *** dkayiwa has joined #openmrs
13:50:34 *** dkayiwa has quit IRC
13:57:44 *** dkayiwa has joined #openmrs
14:16:42 *** jportela has joined #openmrs
14:16:42 *** ChanServ sets mode: +v jportela
14:17:03 <jportela> hi
14:20:20 *** mandric has joined #openmrs
14:24:48 *** dlawson has joined #openmrs
14:24:48 *** ChanServ sets mode: +v dlawson
14:32:17 *** dkayiwa has quit IRC
14:35:48 *** gbastien has joined #openmrs
14:40:59 *** gbastien has quit IRC
14:45:08 *** dkayiwa has joined #openmrs
14:47:10 *** surangak_ has quit IRC
14:53:09 *** gbastien has joined #openmrs
15:04:01 *** bryq has quit IRC
15:28:51 *** dkayiwa has quit IRC
15:31:23 *** gauravpaliwal has joined #openmrs
15:31:23 *** ChanServ sets mode: +v gauravpaliwal
15:31:28 *** gauravpaliwal has left #openmrs
15:40:18 *** mandric has quit IRC
15:42:00 *** EClaesson has joined #openmrs
15:42:00 *** ChanServ sets mode: +v EClaesson
15:56:19 *** Mkop has joined #openmrs
15:56:19 *** ChanServ sets mode: +v Mkop
16:03:27 *** jportela has quit IRC
16:06:16 *** mandric has joined #openmrs
16:19:46 *** aja has joined #openmrs
16:20:48 *** wyclif has quit IRC
16:21:01 *** wyclif_ has joined #openmrs
16:21:27 *** wyclif_ has quit IRC
16:21:34 *** wyclif has joined #openmrs
16:29:37 *** EClaesson has quit IRC
16:38:40 *** suho has joined #openmrs
16:38:40 *** ChanServ sets mode: +v suho
16:39:59 *** gbastien has quit IRC
16:44:52 *** EClaesson has joined #openmrs
16:59:45 *** EClaesson has quit IRC
17:04:39 *** bryq has joined #openmrs
17:04:39 *** ChanServ sets mode: +v bryq
17:14:39 *** jportela has joined #openmrs
17:14:39 *** ChanServ sets mode: +v jportela
17:23:38 <suho> hi bwolfe do you know anything about NCD module ?
17:25:33 *** dlawson has quit IRC
17:26:23 *** goutham has quit IRC
17:26:38 *** dlawson has joined #openmrs
17:26:38 *** ChanServ sets mode: +v dlawson
17:29:10 <bwolfe> suho: no, you need to bug sgrannis
17:29:26 <bwolfe> or james_regen maybe knows something about ncd, he also works for sgrannis...
17:30:00 <suho> bwolfe, ok thanks
17:31:10 *** aja has quit IRC
17:31:28 <suho> bwolfe, I asked james_regen yesterday he done know NCD :(
17:33:03 <suho> bwolfe, I found out that no one here knows NCD... I'm going to have a hard time with my project !!
17:34:20 <bwolfe> suho: but dlawson wrote the messaging module, so that side of it will be easy. :-)
17:34:34 <bwolfe> suho: once you get the hang of it, it will be easy
17:34:41 <bwolfe> a scheduled call with sgrannis is your best bet
17:34:50 <dlawson> suho: seconding bwolfe. You can dive into the code and figure it out.
17:35:40 <suho> yes I still dont know how NCD works, the module seems very complex (lots of configurations) :(
17:36:15 <dlawson> specifically, which configurations? Are you talking about XML configurations?
17:36:20 <dlawson> feel free to ask about confusing bits on here
17:37:16 <suho> no its NCD specific, setting critics and getting notifications from that
17:38:33 <suho> I need a small help from someone, to run a "hello word" on that :(
17:39:20 <dlawson> I'm not familiar with it at all, but like bwolfe said, I'm sure that the module creators or the people that he mentioned will be able to help you
17:39:46 <suho> no creators exist :)
17:40:31 <bwolfe> most of the devs were hired consultants that have now moved on. and the project coordinator also got a new job at a diff company
17:40:44 <bwolfe> so now its just the project leader, shaun
17:41:18 <suho> all their accounts are deactivated, and the last active person have left regenstrief
17:41:48 <suho> can i get the contact of shaun
17:43:01 <suho> thanks bwolfe I'll try to get some help from shaun
17:43:18 <suho> and thanks dlawson for your help
17:43:26 <dlawson> no problem
17:43:28 <bwolfe> try shaun@openmrs.org
17:47:25 <suho> bwolfe, thanks
18:25:10 *** jportela has quit IRC
18:42:41 *** suho has quit IRC
18:44:24 *** kane77 has joined #openmrs
19:23:21 *** jportela has joined #openmrs
19:23:21 *** ChanServ sets mode: +v jportela
19:35:30 *** gbastien has joined #openmrs
20:11:18 *** james_regen has quit IRC
20:19:23 *** dmexs has joined #openmrs
20:30:15 *** bwolfe has quit IRC
20:45:12 <dmexs> hey everybody
20:49:19 *** EClaesson has joined #openmrs
20:51:18 *** mandric has quit IRC
21:03:25 *** kane77 has quit IRC
21:04:20 *** bryq has quit IRC
21:16:19 *** wyclif has quit IRC
21:34:53 *** mandric has joined #openmrs
21:46:01 *** Mkop has quit IRC
21:46:01 *** EClaesson has quit IRC
21:48:01 *** dmexs has quit IRC
21:49:28 *** dlawson_ has joined #openmrs
21:49:28 *** dlawson has quit IRC
21:49:29 *** dlawson_ is now known as dlawson
21:49:30 *** ChanServ sets mode: +v dlawson
21:57:54 *** gbastien has quit IRC
22:06:43 *** dmexs has joined #openmrs
22:25:11 *** dmexs has quit IRC
22:32:21 *** dmexs has joined #openmrs
22:38:38 *** dmexs has quit IRC
22:40:33 *** dmexs has joined #openmrs
22:49:30 <OpenMRSBot> Recent updates in the world of openmrs: New Changeset: OpenMRS (obs-codes-expanded): Creating obs-codes-expanded for surangak to provide a mechanism for supporting coded observations that point to domain o... <http://feedproxy.google.com/~r/OMRStrunk/~3/lV2n_W1Z-R0/OpenMRS>
23:08:44 *** Jeff_S_ has joined #openmrs
23:08:52 *** Jeff_S has quit IRC
23:27:01 *** mandric has quit IRC
23:34:48 *** dlawson has quit IRC
23:54:45 <dmexs> anybody here?