| 00:01:23 | *** r_friedman has joined #openmrs |
| 00:01:54 | <r_friedman> djazayeri: hey darius |
| 00:03:08 | <r_friedman> hi wyclif |
| 00:04:28 | <r_friedman> whois echidna |
| 00:04:57 | *** opieng has quit IRC |
| 00:06:18 | *** opieng has joined #openmrs |
| 00:07:31 | <wyclif> hi r_friedman |
| 00:07:37 | <r_friedman> hi wyclif |
| 00:07:43 | <r_friedman> got a minute? |
| 00:07:45 | <wyclif> r_friedman, IDK |
| 00:07:49 | <wyclif> r_friedman, sure |
| 00:08:20 | <r_friedman> i have a module creating rest APIs to module tables |
| 00:08:35 | <wyclif> to module tables? |
| 00:08:35 | <r_friedman> i can do a getAll against a particular resource |
| 00:09:12 | <r_friedman> but when i try to get by uuid, i get a JDK error Operation Not Allowed After ResultSet closed |
| 00:09:32 | <r_friedman> this is even though I've made the query into criteria query just like get all |
| 00:09:38 | *** morristic has joined #openmrs |
| 00:09:51 | <wyclif> are u sing hibernate? |
| 00:09:54 | <r_friedman> and i can trace through and see the sql statement being built looks fine and dandy |
| 00:10:04 | <r_friedman> absoloutely, wyclif |
| 00:10:55 | <wyclif> can i see a copy of your query? |
| 00:11:02 | <wyclif> on pastebin |
| 00:11:31 | <r_friedman> Criteria crit = sessionFactory.getCurrentSession().createCriteria(LabOrder.class); |
| 00:11:48 | <r_friedman> crit.add(Restrictions.eq("uuid", uuid)); |
| 00:12:04 | <r_friedman> return (LabOrder) crit.uniqueResult(); |
| 00:12:30 | <wyclif> how about your mapping file |
| 00:13:47 | <r_friedman> http://pastebin.com/jMPWW44R |
| 00:14:39 | <r_friedman> http://pastebin.com/iXXMQXZy |
| 00:18:04 | <wyclif> are you keeping connection open for long? |
| 00:18:36 | <r_friedman> wyclif: don't know, i'm running locally so the 2 versions should run equally rapidly |
| 00:19:01 | <r_friedman> that is, the getAll version and the getByUniqueID version |
| 00:19:40 | <r_friedman> wyclif: but that was my first thought, whether I might need to change a MySQL parameter |
| 00:19:43 | <wyclif> can you try to remove the set |
| 00:20:20 | <r_friedman> wyclif: sure, but it's empty |
| 00:20:54 | <wyclif> or try this first, fetch it as an Order and not LabOrder |
| 00:21:15 | <wyclif> i.e pass in Order.class when creating the query |
| 00:21:51 | <wyclif> i have a feeling there is a problem in the mapping |
| 00:22:28 | <wyclif> r_friedman, are you running a unit test or from web app? |
| 00:24:09 | *** morristic has quit IRC |
| 00:26:25 | <r_friedman> wyclif: haha, api for orders not implemented in webservices.rest |
| 00:26:50 | <r_friedman> i am running from webapp |
| 00:27:18 | <wyclif> r_friedman, write a unit test, it will be faster to debug the problem |
| 00:27:30 | <r_friedman> don't know how |
| 00:27:31 | <wyclif> than having to run the webapp |
| 00:27:58 | <wyclif> i mean a test againt your service method |
| 00:28:08 | <r_friedman> right, i don't know how to write unit tests |
| 00:28:23 | <wyclif> so you have no tests in your module? |
| 00:28:27 | <wyclif> that is dangerous |
| 00:28:41 | <r_friedman> i'm trying to recruit someone to do that for me :-) |
| 00:29:03 | <r_friedman> i'll learn at some point |
| 00:29:11 | <wyclif> it is very simple |
| 00:29:26 | <wyclif> anyways then you are going to it the hard way |
| 00:29:33 | <wyclif> can you change this |
| 00:29:33 | <wyclif> Criteria crit = sessionFactory.getCurrentSession().createCriteria(LabOrder.class); |
| 00:29:38 | <wyclif> to |
| 00:29:43 | <wyclif> Criteria crit = sessionFactory.getCurrentSession().createCriteria(Order.class); |
| 00:29:56 | <r_friedman> sure |
| 00:30:02 | <r_friedman> brb |
| 00:30:06 | <wyclif> if it still fails then remove the set tag in your mapping file |
| 00:36:44 | <r_friedman> wyclif: before i go through this, how come it works when i do getAll? |
| 00:39:26 | <r_friedman> wyclif: http://pastebin.com/YgxR7BV0 |
| 00:40:04 | <wyclif> that i why am asking you to make chose changes |
| 00:40:44 | <wyclif> because it might answer that and if it does i will confirm it is in the mapping file |
| 00:41:43 | <wyclif> hibernate could be trying to load either set or the fields from the joined table of the subclass when the session is closed |
| 00:42:14 | <wyclif> but when you call getAlll it does lazy loading so it is not fetching them |
| 00:42:54 | <wyclif> and this is why i wanted you to try a unit test because this can only happen in the web layer |
| 00:43:33 | <wyclif> when creating the response |
| 00:44:39 | <r_friedman> wyclif: ok, i made both changes with no change in behavior |
| 00:45:52 | <wyclif> write a unit test |
| 00:46:35 | <wyclif> it should be in the */test/* source folder |
| 00:46:50 | <r_friedman> wyclif: how do i get it to use my test date? |
| 00:46:56 | <r_friedman> data? |
| 00:47:23 | <wyclif> should extend BaseModuleContextSensitiveTest |
| 00:47:49 | <wyclif> add a method with a @Test annotation |
| 00:48:09 | <wyclif> do u have skype? |
| 00:48:15 | <r_friedman> yes |
| 00:49:25 | <wyclif> get on skype |
| 00:51:54 | *** anu_GSOC has joined #openmrs |
| 00:52:27 | <r_friedman> wyclif: i'm roxanne.feline |
| 00:53:19 | <nribeka> why use skype wyclif |
| 00:53:22 | <nribeka> here is better |
| 00:53:23 | <nribeka> :D |
| 00:53:35 | <nribeka> logged and others can benefit from it |
| 00:54:26 | <r_friedman> nribeka: so you've been lurking and smirking? :D |
| 00:55:33 | <wyclif> that user name? |
| 00:55:47 | <r_friedman> yes, roxanne.feline |
| 00:56:37 | <wyclif> he he |
| 00:57:39 | <anu_GSOC> hi |
| 00:58:39 | <r_friedman> hi anu |
| 00:59:08 | <r_friedman> wyclif: Any reason I shouldn't copy and munge one of the tests from webservices? seems to have its own set of test classes |
| 01:00:34 | <anu_GSOC> nice to see that this time also OpenMRS got selected to the GSOC. |
| 01:12:57 | <wyclif> https://wiki.openmrs.org/display/docs/Generate+Test+Case+Plugin |
| 01:12:58 | <OpenMRSBot> <http://ln-s.net/8zPd> (at wiki.openmrs.org) |
| 01:42:34 | *** anu_GSOC has quit IRC |
| 01:48:51 | *** r0bby has joined #openmrs |
| 01:48:51 | *** ChanServ sets mode: +v r0bby |
| 01:52:02 | *** anu_GSOC has joined #openmrs |
| 01:52:19 | <nribeka> yes |
| 01:52:26 | <nribeka> lurking for sure :) |
| 02:06:57 | *** morristic has joined #openmrs |
| 02:30:26 | <wyclif> <session-factory> |
| 02:30:26 | <wyclif> <mapping resource="XXX.hbm.xml" /> |
| 02:30:26 | <wyclif> </session-factory> |
| 02:49:19 | <r_friedman> djazayeri: hey darius, you there? |
| 03:12:40 | *** r_friedman has quit IRC |
| 03:15:30 | *** anu_GSOC has quit IRC |
| 03:20:28 | *** djazayeri1 has joined #openmrs |
| 03:22:23 | *** djazayeri has quit IRC |
| 03:24:19 | *** anu_GSOC has joined #openmrs |
| 03:31:15 | *** djazayeri1 has quit IRC |
| 03:42:47 | *** anu_GSOC has quit IRC |
| 03:55:11 | *** morristic has quit IRC |
| 04:45:50 | *** morristic has joined #openmrs |
| 05:34:57 | *** r0bby is now known as robbyoconnor |
| 05:40:19 | *** kmit has joined #openmrs |
| 05:46:59 | <kmit> Hi wyclif |
| 05:47:02 | <kmit> u there |
| 06:02:09 | <kmit> wyclif: r u there |
| 07:15:51 | *** arpitgyl has joined #openmrs |
| 07:16:33 | <arpitgyl> i wanna know how should i write application for gsoc 2012 to apply in openmrs |
| 07:20:15 | <robbyoconnor> arpitgyl: you don't right now |
| 07:20:30 | <robbyoconnor> when applications open -- there will be a template |
| 07:21:14 | <robbyoconnor> arpitgyl: I'm not yelling at you but please don't PM people without first asking them if it's ok |
| 07:21:46 | <arpitgyl> robbyconnor:sorry |
| 07:22:42 | *** arpitgyl has quit IRC |
| 07:36:53 | *** leonjeru has joined #openmrs |
| 07:45:51 | *** leonjeru has quit IRC |
| 07:58:10 | *** snoppy has joined #openmrs |
| 08:01:28 | *** harshadura has joined #openmrs |
| 08:22:22 | *** bryq has joined #openmrs |
| 08:22:22 | *** ChanServ sets mode: +v bryq |
| 08:34:11 | *** kmit has quit IRC |
| 08:39:44 | *** harshadura has quit IRC |
| 08:42:20 | *** rafa has joined #openmrs |
| 08:42:20 | *** ChanServ sets mode: +v rafa |
| 09:01:38 | *** bryq has quit IRC |
| 09:03:39 | *** harshadura has joined #openmrs |
| 09:05:52 | *** rafa has quit IRC |
| 09:10:53 | *** lebek has joined #openmrs |
| 09:17:51 | *** ShellZero has joined #openmrs |
| 09:36:04 | *** harshadura has quit IRC |
| 09:40:54 | *** maurya has joined #openmrs |
| 09:41:39 | *** harshadura has joined #openmrs |
| 09:53:32 | *** pushkar has joined #openmrs |
| 09:57:35 | *** kmit has joined #openmrs |
| 10:08:30 | *** harshadura has quit IRC |
| 10:12:06 | *** kmit has quit IRC |
| 10:12:06 | *** maurya has quit IRC |
| 10:12:31 | *** pushkar has quit IRC |
| 10:12:34 | *** pushkar_ has joined #openmrs |
| 10:13:55 | *** ShellZero has quit IRC |
| 10:27:35 | *** r_friedman has joined #openmrs |
| 10:28:28 | <r_friedman> wyclif: hey wyclif u really there? |
| 10:29:17 | *** ShellZer_ has joined #openmrs |
| 10:29:40 | *** ShellZer_ is now known as ShellZero |
| 10:35:15 | *** pushkar_ has quit IRC |
| 10:35:28 | *** maurya has joined #openmrs |
| 10:35:31 | *** hemanth_ has joined #openmrs |
| 10:35:34 | *** pushkar has joined #openmrs |
| 10:36:38 | <hemanth_> hi r_friedman |
| 10:37:50 | <ShellZero> hi r_friedman |
| 10:38:13 | *** ShellZero has left #openmrs |
| 10:41:33 | <hemanth_> r_friedman: wanted to talk about the lab module . What is the convienent time for you |
| 10:43:39 | <r_friedman> hi hemanth, shellzero |
| 10:43:55 | <r_friedman> hemanth, if it's quick, let's talk now |
| 10:44:07 | <r_friedman> otherwise, i need coffee |
| 10:45:24 | <r_friedman> sorry, left off your tail, hemanth_ |
| 10:45:57 | <hemanth_> i will take 10 min r_friedman is it ok |
| 10:46:20 | <r_friedman> hemanth_: ok, give me 2 mins to start coffee |
| 10:46:29 | <hemanth_> sure :) |
| 10:47:30 | <r_friedman> hemanth_: back |
| 10:47:43 | <hemanth_> I believe the lab module already exists with all its functionality also being exposed as rest services , which Raxa would use for its backe end |
| 10:48:26 | <hemanth_> In the current lab module UI we have to build the UI which follows Raxa Lab workflow |
| 10:48:56 | <r_friedman> hemanth_: that's the idea. but we have to be a little more generic in some places |
| 10:49:17 | <r_friedman> for example, the JSS clinic has one way of numbering its specimens |
| 10:49:37 | <r_friedman> we would want the user to be able to customize the way they number their specimens, sort of like a custom address format |
| 10:49:41 | <hemanth_> as well as utiliza the rolebased home page so that whenever the nurse logs in , she should be having her own dashboard to excercise the workflow defined by the Raxa workflow diagram |
| 10:50:19 | <hemanth_> yes of course , follow their work flow with open mrs flavour |
| 10:50:36 | <r_friedman> hemanth_: again, we need to be a little more flexible. the main workflow tool will be the role based home page module |
| 10:50:39 | <hemanth_> am i right r_fre |
| 10:51:08 | <r_friedman> yes, you are on the right path, hemanth_ |
| 10:51:10 | <hemanth_> ok which can give you the ability to configure the task which appears on the dash board |
| 10:51:18 | <hemanth_> r_friedman: |
| 10:51:30 | <r_friedman> that is the role based home page module |
| 10:52:10 | <r_friedman> https://wiki.openmrs.org/display/docs/Role+Based+Homepage+Module |
| 10:53:17 | <hemanth_> yes , but for home page to work we would have to create the base UI |
| 10:53:19 | <hemanth_> isnt it |
| 10:53:38 | <hemanth_> like collecting the specimen , labelling them , etc |
| 10:54:06 | <r_friedman> hemanth_: yes, that's correct |
| 10:54:26 | <r_friedman> the workflow is fairly common in most places, it may be a matter of fine-tuning permissions |
| 10:54:27 | <hemanth_> i wanted to ask you , are we going to follow their complete workflow or at each step we refine the things the Openmrs way |
| 10:54:45 | *** snoppy1 has joined #openmrs |
| 10:55:09 | <hemanth_> ok so the basic functionality should be working and then we configure it using the role based home page |
| 10:55:15 | *** snoppy1 has joined #openmrs |
| 10:55:35 | <hemanth_> r_friedman: |
| 10:55:44 | <r_friedman> hemanth_: there are certain base processes which will have their own pages |
| 10:56:04 | <r_friedman> hemanth_: i think we may have to be a little more generic than jss |
| 10:56:10 | <hemanth_> which the current LAB module doesnt have ??? |
| 10:56:10 | <r_friedman> but you have the right idea |
| 10:56:29 | <r_friedman> the current lab module is still under development, it is lacking a lot |
| 10:56:47 | <r_friedman> but the data management is sound and flexible |
| 10:56:52 | <hemanth_> but i hope the back end is done ? |
| 10:57:11 | <hemanth_> so the current lab module needs the Ui support |
| 10:57:15 | <hemanth_> r_fre |
| 10:57:31 | *** snoppy has quit IRC |
| 10:57:44 | <r_friedman> jss has not yet started coding the front end, the back end is still encountering too many errors for that to be a constructive task |
| 10:57:54 | <r_friedman> but we are getting there quickly |
| 10:58:19 | <r_friedman> there is still a bunch of work to be done on reporting and module admin |
| 10:58:42 | <r_friedman> but we still have a couple months until gsoc |
| 10:59:27 | <hemanth_> so this project would re use the Lab Module UI ? |
| 10:59:57 | <hemanth_> I thought the purpose of the project is to create the UI to supooort the JSS workflow |
| 11:00:21 | <hemanth_> if some screens are not there but it has the functionality we should be providing the UI too |
| 11:00:22 | <r_friedman> the jss people are using the REST API to access the backend, they are not using the OpenMRS front end |
| 11:00:43 | <hemanth_> yes i understand that |
| 11:00:45 | <r_friedman> we have screen/workflow design that we can implement |
| 11:01:01 | <hemanth_> didnt get you |
| 11:01:12 | <r_friedman> for the most part like jss but with a little more flexibility built in |
| 11:01:12 | <hemanth_> i mean now i am throughtlu confused |
| 11:01:19 | <hemanth_> througly* |
| 11:01:21 | <r_friedman> ok, let me give an example |
| 11:01:49 | <r_friedman> there are two separate functions, collect specimen and register specimen |
| 11:01:55 | <hemanth_> yes |
| 11:02:10 | <r_friedman> in the jss workflow, the specimen collector will do both |
| 11:02:18 | <hemanth_> ok |
| 11:02:30 | <r_friedman> for the openmrs user, perhaps the specimen collector will deliver the specimen to someone else to be registered |
| 11:02:47 | <hemanth_> yes |
| 11:02:49 | <hemanth_> got it |
| 11:02:55 | <hemanth_> now my question is |
| 11:03:09 | <r_friedman> so we will have separate screens for the 2 functions, the user may have to choose each to do each |
| 11:03:24 | <r_friedman> while in jss the specimen collector will move smoothly from one to the next |
| 11:03:24 | <hemanth_> in the current situation what is thr role of my project |
| 11:04:15 | <hemanth_> openmrs would do it manually |
| 11:04:41 | <r_friedman> hemanth_: the project scope is to use the workflow design from jss, modified to be more flexible, to build an openmrs-based front end for lab |
| 11:04:56 | <r_friedman> that would be accessed via role-based homepage |
| 11:05:22 | <r_friedman> so, no dashboartd |
| 11:05:35 | <hemanth_> work flow design of jss , screens of openmrs , fit in together with rolebased home page |
| 11:06:01 | <r_friedman> the crowd goes wild, throwing flowers, babies |
| 11:06:06 | <hemanth_> so that the app works for only lab |
| 11:06:15 | *** snoppy1 has left #openmrs |
| 11:06:30 | <r_friedman> well, there is a secret there |
| 11:06:35 | <hemanth_> didnt get you ?? |
| 11:06:55 | <hemanth_> about crowd going wild or the project |
| 11:07:00 | <r_friedman> ok (1) your work flow design of jss ... line is correct |
| 11:07:04 | <hemanth_> about crowd going wild or the project ;) |
| 11:07:32 | <hemanth_> ok |
| 11:07:37 | <r_friedman> yes, the whole world will love it, we will date movie stars |
| 11:07:47 | <hemanth_> do we have to tweak the UI |
| 11:08:09 | <r_friedman> i am a backend guy, to me the UI is nothing but tweaks |
| 11:08:11 | <hemanth_> wont love to date the movie stars ;) |
| 11:08:45 | <hemanth_> Ok i am lost |
| 11:08:53 | <r_friedman> i should joke less |
| 11:09:00 | <hemanth_> hmmmm |
| 11:09:18 | <r_friedman> i am sure we will have to be creative |
| 11:09:24 | *** selvam1991 has joined #openmrs |
| 11:09:27 | <r_friedman> like i was saying about specimen numbers |
| 11:10:06 | <r_friedman> and about having functions rather than individualized workflow |
| 11:10:16 | *** snoppy has joined #openmrs |
| 11:10:20 | *** ritisha has joined #openmrs |
| 11:10:37 | <hemanth_> ok |
| 11:11:03 | <r_friedman> there are a lot of screens, it's important not to try to do too much in a gsoc project |
| 11:11:42 | <r_friedman> also, the validation needs to be thought about in detail |
| 11:12:17 | <hemanth_> so are you going to define the objective for this module on wiki |
| 11:12:21 | <r_friedman> also, the jss lab is fairly basic, there are additional functions in the design that they are not using |
| 11:12:50 | <r_friedman> it was there, it got deleted, hopefully it is back |
| 11:13:06 | <r_friedman> but it does need to be more detailed to become a workplan |
| 11:13:11 | <hemanth_> https://wiki.openmrs.org/display/projects/Laboratory+Module |
| 11:13:15 | <hemanth_> we have this now |
| 11:13:40 | <r_friedman> however, i like to do that with the gsoc participant, everybody has their own way of learning a new subject |
| 11:14:12 | *** ron__ has joined #openmrs |
| 11:15:56 | <r_friedman> hemanth_: i need to update the page, a lot of it is old, but I had a short deadline to prepare it |
| 11:16:07 | <hemanth_> thats ok |
| 11:16:43 | <hemanth_> so now what he have is a Lab Module with a functioning back end |
| 11:16:49 | <r_friedman> we have a good workflow document that I should put up |
| 11:16:50 | <hemanth_> we* |
| 11:17:41 | <hemanth_> by the time the gsoc starts we would have the UI also for Lab Module |
| 11:18:30 | <r_friedman> hemanth_: the back end is starting to function, but it will be going strong in 2 weeks |
| 11:19:00 | <hemanth_> the project would focus on to develop a lab portal which can be used as a stand alone lab information system |
| 11:19:18 | <r_friedman> everything follows almost the same pattern, so each time we fix something we take a big leap |
| 11:19:20 | <hemanth_> with the help of role based home page module |
| 11:19:41 | <r_friedman> hemanth_: yes, you're on top of it ... but I never got to the secret |
| 11:19:46 | <hemanth_> did i get a clear idea on the project r_friedman |
| 11:19:57 | <hemanth_> which is ...................................??? |
| 11:20:29 | <r_friedman> the module can be run as part of a hospital/clinic EMR and share its patient and user info |
| 11:20:45 | <r_friedman> or it can be run standalone and maintain that information itself |
| 11:20:53 | <hemanth_> ok |
| 11:20:58 | <r_friedman> only one global property makes the difference |
| 11:21:09 | <hemanth_> ok |
| 11:21:25 | <r_friedman> but until we get HL7 going, it works best in combination |
| 11:21:40 | <r_friedman> and that is how most people will want to use it |
| 11:21:47 | <hemanth_> whats the secret r_friedman |
| 11:21:53 | <hemanth_> :) |
| 11:22:22 | <r_friedman> i just told you the secret |
| 11:23:23 | <r_friedman> by using role-based home page, nobody can tell whether they are in the EMR or the LMIS |
| 11:23:30 | <r_friedman> LIS |
| 11:23:41 | <hemanth_> ohhhh |
| 11:23:53 | <hemanth_> yes right god it didnt stuck me |
| 11:24:04 | <r_friedman> you could even run two separate instances on the same server |
| 11:24:26 | *** ritisha has quit IRC |
| 11:24:42 | *** magiclko has joined #openmrs |
| 11:24:43 | <hemanth_> are you going to upload more data on the wiki |
| 11:24:52 | <hemanth_> i have to start with the proposal |
| 11:24:55 | <hemanth_> r_friedman: |
| 11:25:24 | <r_friedman> yes, i am on vacation now so am a little behind |
| 11:25:43 | <hemanth_> oh ok enjoy your vacation ................. |
| 11:25:46 | <hemanth_> r_friedman: |
| 11:26:21 | <r_friedman> hemanth_: darius jazayeri who you will have seen or heard of around here is getting married next week in Colombia and I am here for it |
| 11:26:35 | <hemanth_> wow ............................ |
| 11:26:45 | <r_friedman> trying to improve my spanish |
| 11:26:55 | <hemanth_> congratulations from my side |
| 11:27:06 | <r_friedman> can't spend all my time on english chat if i am going to do that!! |
| 11:27:11 | <hemanth_> well it will help in localization in open mrs |
| 11:27:37 | <r_friedman> also with the spanish movie stars |
| 11:27:59 | <hemanth_> Adiós r_friedman |
| 11:28:07 | <r_friedman> gracias amigo |
| 11:29:07 | <hemanth_> hasta luego r_friedman |
| 11:29:24 | <r_friedman> que dios te bendiga |
| 11:30:15 | <r_friedman> y que tus bichos sean faciles |
| 11:31:12 | <hemanth_> espero |
| 11:40:50 | <maurya> nribeka: |
| 11:40:52 | *** pushkar_ has joined #openmrs |
| 11:40:56 | <maurya> hi |
| 11:44:56 | *** bryq has joined #openmrs |
| 11:44:56 | *** ChanServ sets mode: +v bryq |
| 11:51:16 | *** pushkar has quit IRC |
| 11:54:48 | <hemanth_> hi pushkar_ |
| 11:54:53 | <pushkar_> nick pushkar |
| 11:55:05 | <hemanth_> what nick pushkar |
| 11:55:06 | *** pushkar_ is now known as pushkar |
| 11:55:30 | <hemanth_> how are you pushkar |
| 11:55:50 | <pushkar> fine you hemanth?? |
| 11:57:32 | *** snoppy has quit IRC |
| 11:57:58 | *** snoppy has joined #openmrs |
| 11:58:01 | *** magiclko1 has joined #openmrs |
| 11:58:55 | *** jingx has joined #openmrs |
| 12:00:20 | *** magiclko has quit IRC |
| 12:02:29 | *** magiclko1 is now known as magiclko |
| 12:03:47 | <jingx> I am interested in contribute into this project under google summer of code 2012.Can any one tell me who should I talk to? I have several year Java experiences, solid knowledge of hibernate/spring/dwr and etc. worse come to worst, I can assist translate into simplified chinese. :D |
| 12:07:25 | *** magiclko1 has joined #openmrs |
| 12:08:54 | *** magiclko has quit IRC |
| 12:09:24 | *** magiclko1 is now known as magiclko |
| 12:14:02 | *** jingx has left #openmrs |
| 12:14:05 | *** jingx has joined #openmrs |
| 12:17:23 | *** magiclko has quit IRC |
| 12:25:07 | <r_friedman> robbyoconnor: robby, you actually there? |
| 12:45:52 | <maurya> wyclif: hi |
| 13:04:54 | *** selvam1991 has quit IRC |
| 13:08:46 | *** hemanth_ has quit IRC |
| 13:12:56 | *** maurya has quit IRC |
| 13:15:20 | *** kernelhunter92 has joined #openmrs |
| 13:15:26 | *** pushkar has quit IRC |
| 13:21:48 | *** magiclko has joined #openmrs |
| 13:34:40 | *** pulasthi7 has joined #openmrs |
| 13:49:02 | *** cloud|windoze has joined #openmrs |
| 14:05:01 | *** cloud|windoze has quit IRC |
| 14:06:57 | *** pushkar has joined #openmrs |
| 14:20:59 | *** pushkar has left #openmrs |
| 14:36:02 | *** magiclko has quit IRC |
| 14:56:36 | *** magiclko has joined #openmrs |
| 15:20:48 | *** anu_GSOC has joined #openmrs |
| 15:49:19 | *** anu_GSOC has quit IRC |
| 15:57:36 | *** mvorobey has joined #openmrs |
| 15:57:43 | <mvorobey> hi all |
| 15:58:37 | <snoppy> hola) |
| 16:01:59 | <snoppy> Ð ÑÑÑкий, Ðиколай?) |
| 16:02:53 | <mvorobey> snoppy, yep |
| 16:03:59 | <snoppy> thumbs up!) |
| 16:04:38 | <snoppy> c OpenMRS давног знаком? |
| 16:05:14 | <r_friedman> wyclif: u there? |
| 16:07:36 | *** r_friedman is now known as magicalasiancarp |
| 16:08:17 | *** magicalasiancarp is now known as magicalsturgeon |
| 16:10:01 | *** magicalsturgeon is now known as magicalflounder |
| 16:14:19 | *** mvorobey_ has joined #openmrs |
| 16:14:34 | *** mvorobey has quit IRC |
| 16:15:05 | *** anu_GSOC has joined #openmrs |
| 16:15:14 | *** magicalflounder is now known as magicalmyxosoma |
| 16:17:12 | *** mvorobey_ is now known as mvorobey |
| 16:43:40 | *** bryq has quit IRC |
| 16:52:03 | <magicalmyxosoma> jingx: has anyone helped you with your questions? |
| 17:01:22 | *** kernelhunter92 has quit IRC |
| 17:07:33 | *** bryq has joined #openmrs |
| 17:07:40 | *** ChanServ sets mode: +v bryq |
| 17:12:44 | *** selvam1991 has joined #openmrs |
| 17:18:32 | *** nribeka has quit IRC |
| 17:26:05 | * magicalmyxosoma is checking his connection |
| 17:40:51 | *** magicalmyxosoma has quit IRC |
| 17:54:48 | *** Anuruddha_ has joined #openmrs |
| 17:58:21 | *** anu_GSOC has quit IRC |
| 17:59:05 | *** maurya has joined #openmrs |
| 18:07:06 | *** pushkar has joined #openmrs |
| 18:16:00 | *** bwolfe has joined #openmrs |
| 18:16:00 | *** ChanServ sets mode: +o bwolfe |
| 18:18:22 | *** miv has joined #openmrs |
| 18:20:39 | *** bwolfe has quit IRC |
| 18:26:16 | *** maurya has quit IRC |
| 18:26:41 | *** miv has quit IRC |
| 18:29:19 | *** maurya has joined #openmrs |
| 18:33:23 | *** pushkar has quit IRC |
| 18:33:43 | *** pushkar has joined #openmrs |
| 18:37:56 | *** pushkar has quit IRC |
| 18:41:16 | *** rafa_ has joined #openmrs |
| 18:41:16 | *** ChanServ sets mode: +v rafa_ |
| 18:55:24 | *** Anuruddha_ has quit IRC |
| 18:55:52 | *** anu_GSOC has joined #openmrs |
| 19:07:19 | *** rafa_ has quit IRC |
| 19:11:57 | *** morristic has quit IRC |
| 19:18:07 | *** lebek has quit IRC |
| 19:20:41 | *** ritisha has joined #openmrs |
| 19:26:07 | *** ritisha has quit IRC |
| 19:28:21 | *** maurya has quit IRC |
| 20:04:20 | *** dkayiwa has joined #openmrs |
| 20:08:10 | *** manash_ has joined #openmrs |
| 20:09:14 | *** robbyoconnor has left #openmrs |
| 20:23:27 | *** anu_GSOC has quit IRC |
| 20:32:29 | *** selvam1991 has quit IRC |
| 20:34:46 | *** pulasthi7 has quit IRC |
| 20:35:13 | *** pulasthi7 has joined #openmrs |
| 20:35:47 | *** pulasthi7 has quit IRC |
| 20:36:13 | *** selvam1991 has joined #openmrs |
| 20:47:00 | *** dkayiwa has left #openmrs |
| 21:00:47 | *** snoppy has left #openmrs |
| 21:05:31 | *** snoppy has joined #openmrs |
| 21:52:08 | *** manash_ has quit IRC |
| 21:53:23 | *** selvam1991 has quit IRC |
| 22:19:32 | *** bryq has quit IRC |
| 22:28:57 | *** snoppy has quit IRC |
| 22:34:55 | *** magiclko has quit IRC |