| 00:18:12 | *** wyclif_ has joined #openmrs |
| 01:07:13 | *** Mkop1 has joined #openmrs |
| 01:07:13 | *** ChanServ sets mode: +v Mkop1 |
| 01:07:51 | *** Mkop has quit IRC |
| 01:33:22 | *** wyclif has joined #openmrs |
| 01:33:22 | *** wyclif_ has quit IRC |
| 01:41:04 | *** wyclif_ has joined #openmrs |
| 01:41:04 | *** wyclif has quit IRC |
| 01:45:49 | *** mseaton has joined #openmrs |
| 01:45:49 | *** ChanServ sets mode: +v mseaton |
| 02:13:27 | <wyclif_> hi djazayeri |
| 02:13:44 | <djazayeri> wyclif_: hi |
| 02:14:12 | <djazayeri> what's up? |
| 02:14:22 | <wyclif_> djazayeri, am a little confused about the owning entity between report design and the report definition |
| 02:15:05 | <wyclif_> djazayeri, i see some logic that purges all report designs associated to a definition is purged |
| 02:15:32 | <djazayeri> wyclif_: I believe that a report design belongs to a report definition |
| 02:15:40 | <wyclif_> djazayeri, if s report design, i believe the defition should stay , right? |
| 02:16:06 | <djazayeri> wyclif_: if you purge a *design*, then the definition should stay, yes. |
| 02:16:32 | <wyclif_> djazayeri, i was looking at the description of REPORT-237 and it was suggesting otherwise |
| 02:17:14 | <wyclif_> djazayeri, okay, i thought so, thanks |
| 02:17:20 | <djazayeri> wyclif_: which part makes you think that? |
| 02:18:43 | <djazayeri> wyclif_: the point is that if you purge a parent, it shouldn't leave orphan children. I.e. if you purge a ReportDefinition (that's actually a row in the serialized_object table) then this needs to purge its ReportDesigns also (or fail), rather than leaving around orphaned ReportDesigns. |
| 02:19:32 | <wyclif_> djazayeri, right |
| 02:20:42 | <wyclif_> djazayeri, i hadn't yet figured out the relationship between, from the hbm files it is not straight forward since it is done differently |
| 02:21:23 | <wyclif_> djazayeri, but i had see the logic in definitionServiceImpl.purgeDefinition doing waht you just said, thanks alot |
| 02:21:30 | <djazayeri> wyclif_: np |
| 02:21:55 | <wyclif_> djazayeri, one more question |
| 02:22:28 | <djazayeri> sure |
| 02:23:18 | <wyclif_> djazayeri, mike mentioned of tests that use logic that store and retrieve report definitions in memory, any you know of off the top of your head |
| 02:24:37 | <djazayeri> wyclif_: off the top of my head, no. |
| 02:25:21 | <wyclif_> djazayeri, ok, i will keep looking at the tests |
| 02:25:46 | <djazayeri> wyclif_: are you looking for how to do it with logic, or how to use a report definition in memory? |
| 02:26:16 | <wyclif_> how to use a report definition in memory |
| 02:26:33 | <wyclif_> djazayeri, or it is already supported |
| 02:27:21 | <djazayeri> wyclif_: I *think* it just works |
| 02:27:37 | <wyclif_> djazayeri, mike said "the point is that if i want to build a report in memory, run it, and render it to a renderer that requires a report design file, and never save these objects to the database, i currently can't do this successfully... so this change will enable this to work." |
| 02:27:59 | <djazayeri> wyclif_: ah, you didnt' mention the report design. :-) |
| 02:28:05 | <djazayeri> wyclif_: for example see this |
| 02:28:06 | <djazayeri> https://github.com/I-TECH/openmrs-module-kenyaemr/blob/master/omod/src/main/java/org/openmrs/module/kenyaemr/page/controller/ReportsRunMonthlyIndicatorReportPageController.java |
| 02:28:11 | <OpenMRSBot> <http://ln-s.net/+W0p> (at github.com) |
| 02:28:12 | <wyclif_> djazayeri, i guess he meant that my changes will make it possible not that i have to implement it |
| 02:28:24 | <djazayeri> wyclif_: here we create a report definition in-memory, and run it. But it doesn't have a report design |
| 02:28:31 | <wyclif_> djazayeri, ok |
| 02:28:51 | <djazayeri> wyclif_: yeah, I agree, it should enable that. It would be neat if you could write a test to prove this... |
| 02:29:04 | <djazayeri> wyclif_: but ask Mike if he really needs that. |
| 02:29:13 | <wyclif_> djazayeri, ok |
| 02:32:06 | <wyclif_> thanks |
| 02:57:41 | <mseaton> wyclif_: i'm just seeing this. let me know if you have questions |
| 02:57:51 | <mseaton> djazayeri: thanks |
| 02:58:51 | <wyclif_> mseaton, did i have to write the code for inmemory report definitions or you just said the changes i amde would support it? |
| 02:59:26 | <mseaton> wyclif_: let me try to explain a little more... |
| 03:01:17 | <mseaton> currently there is no way to directly access ReportDesigns from a ReportDefinition. i can't really remember why we implemented things this way. there is probably a historical reason that is no longer appropriate. djazayeri may remember more |
| 03:01:51 | <mseaton> so there is a service method which retrieves the report designs for a given report definition |
| 03:01:58 | <wyclif_> mseaton, i guess my question is was i supposed to write code to support that? |
| 03:02:49 | <mseaton> wyclif_: no, but that's an interesting idea that we might want in another ticket. |
| 03:04:00 | <wyclif_> mseaton, ok |
| 03:04:43 | <mseaton> wyclif_: have a look at this unit test: |
| 03:05:59 | <wyclif_> mseaton, sure |
| 03:08:04 | <mseaton> wyclif_: hang on. i'm looking |
| 03:11:27 | <mseaton> wyclif_: how far have you gotten on this ticket, codewise? |
| 03:11:45 | <wyclif_> mseaton, am done with the rest |
| 03:12:07 | <mseaton> wyclif_: rest? |
| 03:12:37 | <wyclif_> i updated the ReportDefinitionType, the migration script and fixed the test data\ |
| 03:12:47 | <wyclif_> mseaton, all tests are passing |
| 03:12:59 | <mseaton> wyclif_: so what is missing? |
| 03:13:06 | <wyclif_> mseaton, nothing |
| 03:13:13 | <mseaton> wyclif_: great! |
| 03:13:45 | <wyclif_> mseaton, i was just wondering if i had to write code to do with inmemory definitions, but you answered that already |
| 03:15:17 | <mseaton> wyclif_: i think the issue i have been thinking of, but which i agree this might not be the right place to solve, is that our service method that looks up a ReportDesign by uuid always only looks in the database. it doesn't allow you to have an in-memory ReportDesign associated with the ReportDefinition. it looks like we were trying to get that to work in this ticket. djazayeri, do you remember? this was from a skype conversation |
| 03:16:22 | <mseaton> wyclif_: for now, I would just submit your changes, we can do a code review for then and hopefully close out this ticket, and if the other issue comes up again, we can address it separately. |
| 03:16:57 | <wyclif_> mseaton, didnt implement ssupport for in memory |
| 03:17:27 | <wyclif_> mseaton, just made changes to reference report design by uuid |
| 03:17:30 | <mseaton> wyclif_: fine, let's take advantage of what you've done and try to get it closed out before this sprint ends. |
| 03:17:37 | <wyclif_> mseaton, ok |
| 03:17:39 | <mseaton> wyclif_: i think that's great |
| 03:17:57 | <wyclif_> mseaton, give me a coupke of minutes |
| 03:18:23 | <mseaton> wyclif_: sure |
| 03:33:33 | <djazayeri> mseaton, wyclif_: you all still there? |
| 03:33:49 | <wyclif_> djazayeri, do you know who was djazayeri yes |
| 03:33:55 | <wyclif_> djazayeri, yes |
| 03:34:02 | <djazayeri> or rather, mseaton: I don't recall the specifics of this, no |
| 05:11:22 | *** kishoreyekkanti has joined #openmrs |
| 05:21:24 | *** kishoreyekkanti_ has joined #openmrs |
| 05:21:24 | *** kishoreyekkanti has quit IRC |
| 05:21:24 | *** kishoreyekkanti_ is now known as kishoreyekkanti |
| 05:43:10 | *** travis-ci has joined #openmrs |
| 05:43:10 | <travis-ci> [travis-ci] [openmrs/openmrs-core] [523fc60] [k-joseph] The build passed. - http://travis-ci.org/openmrs/openmrs-core/builds/4348841 |
| 05:43:10 | *** travis-ci has left #openmrs |
| 05:43:15 | <OpenMRSBot> <http://ln-s.net/+W3r> (at travis-ci.org) |
| 06:25:56 | *** dkayiwa has joined #openmrs |
| 06:35:06 | *** k-joseph has joined #openmrs |
| 06:54:59 | *** k-joseph_ has joined #openmrs |
| 06:56:38 | *** k-joseph has quit IRC |
| 06:58:07 | *** ibewes has joined #openmrs |
| 06:59:17 | *** shangxiao has joined #openmrs |
| 07:02:44 | <shangxiao> hi |
| 07:05:25 | <ibewes> shangxiao: hello! |
| 07:38:45 | *** dkayiwa has quit IRC |
| 07:58:42 | *** ibewes has quit IRC |
| 08:13:08 | *** k-joseph_ has quit IRC |
| 08:14:03 | *** k-joseph_ has joined #openmrs |
| 08:14:11 | *** ibewes has joined #openmrs |
| 08:41:23 | *** dkayiwa has joined #openmrs |
| 08:52:06 | <dkayiwa> hi k-joseph_ |
| 08:54:20 | <k-joseph_> dkayiwa: hi |
| 08:54:31 | <dkayiwa> k-joseph_: you will tell me when ready |
| 08:54:43 | <k-joseph_> dkayiwa: ok |
| 08:55:14 | *** k-joseph_ is now known as k-joseph |
| 09:22:33 | *** djazayeri1 has joined #openmrs |
| 09:24:06 | *** djazayeri has quit IRC |
| 09:47:44 | <k-joseph> dkayiwa: hi |
| 09:47:55 | <dkayiwa> k-joseph: hi |
| 09:48:04 | <k-joseph> dkayiwa: ready, now |
| 09:48:39 | <dkayiwa> k-joseph: can you start by pasting here the other code comment we were trying to convert into code? |
| 09:49:48 | <k-joseph> dkayiwa: //only go ahead if it has actually changed OR if wasn't set before |
| 09:54:45 | *** djadmin has joined #openmrs |
| 10:04:18 | *** djadmin has quit IRC |
| 10:04:37 | *** rafa has joined #openmrs |
| 10:04:37 | *** ChanServ sets mode: +v rafa |
| 10:25:30 | <dkayiwa> hi rafa |
| 10:25:38 | <rafa> dkayiwa: hey! |
| 10:25:54 | <dkayiwa> rafa: has new sprint started |
| 10:26:16 | <rafa> dkayiwa: I think yes |
| 10:27:07 | <rafa> dkayiwa: though I still need to wrap up the other one |
| 10:27:14 | <dkayiwa> rafa: ok |
| 11:07:40 | *** shangxiao has quit IRC |
| 11:08:27 | *** suranga has joined #openmrs |
| 11:08:27 | *** ChanServ sets mode: +v suranga |
| 11:28:05 | *** k-joseph has quit IRC |
| 11:41:58 | *** k-joseph has joined #openmrs |
| 11:47:20 | *** k-joseph_ has joined #openmrs |
| 11:48:23 | *** k-joseph has quit IRC |
| 12:08:35 | *** jkeiper has quit IRC |
| 12:26:22 | *** HP_ has joined #openmrs |
| 12:28:47 | *** suranga has quit IRC |
| 12:34:03 | *** mseaton has quit IRC |
| 13:06:47 | <HP_> hi guys |
| 13:06:49 | <HP_> hi guys, mm.. lets say that I have two openmrs modules, module A and Module B. Now assume that Module B has some custom changes. I want to use module B in module A. what would be the best way to enforce that module A uses my custom changes, without downloading the default module it can get from the repo ? |
| 13:06:54 | *** jkeiper has joined #openmrs |
| 13:06:54 | *** ChanServ sets mode: +v jkeiper |
| 13:07:03 | <HP_> um... how did I become HP :P |
| 13:07:08 | <HP_> HP == Suranga |
| 13:10:06 | <jkeiper> hi HP_ |
| 13:10:23 | <HP_> HP == suranga :D |
| 13:10:31 | <jkeiper> heh |
| 13:10:45 | <HP_> umm.. jkeiper hi guys, mm.. lets say that I have two openmrs modules, module A and Module B. Now assume that Module B has some custom changes. I want to use module B in module A. what would be the best way to enforce that module A uses my custom changes, without downloading the default module it can get from the repo |
| 13:12:22 | <jkeiper> HP_, change the version of B and install it to your local repo ... i had to do this with calculation |
| 13:14:44 | <HP_> jkeiper, aha, so I rename it, and do a manual install of the jar file, and then refer to that, correct ? :-) |
| 13:15:14 | <jkeiper> sure, like ... set version to 1.0-SNAPSHOT-HP_ |
| 13:15:28 | <jkeiper> don't even really have to do a manual install |
| 13:15:33 | <jkeiper> just compile it |
| 13:15:39 | <jkeiper> mvn clean install |
| 13:15:42 | <jkeiper> into your local repo |
| 13:16:15 | <HP_> jkeiper, and in the second module, I refer to this, with scope = provided ? :) |
| 13:16:23 | <jkeiper> yup |
| 13:16:30 | <jkeiper> unless you won't be providing it |
| 13:16:31 | <jkeiper> ;-) |
| 13:16:38 | *** k-joseph_ has quit IRC |
| 13:16:44 | <HP_> jkeiper, yayy !! thanks :) |
| 13:16:50 | * HP_ goes to try it |
| 13:16:51 | <jkeiper> good luck! |
| 13:21:59 | *** HP_ has quit IRC |
| 13:37:25 | *** wyclif_ has quit IRC |
| 14:00:03 | *** hybridivy has joined #openmrs |
| 14:00:39 | *** mseaton has joined #openmrs |
| 14:00:39 | *** ChanServ sets mode: +v mseaton |
| 14:06:44 | *** hybridivy has quit IRC |
| 14:14:58 | *** kishoreyekkanti has quit IRC |
| 14:25:42 | *** k-joseph has joined #openmrs |
| 14:29:53 | *** k-joseph has quit IRC |
| 14:33:48 | *** wyclif_ has joined #openmrs |
| 14:44:54 | *** mseaton has quit IRC |
| 14:53:05 | *** ibewes has quit IRC |
| 14:59:34 | *** mseaton has joined #openmrs |
| 14:59:34 | *** ChanServ sets mode: +v mseaton |
| 14:59:50 | *** dkayiwa has quit IRC |
| 15:00:38 | *** k-joseph has joined #openmrs |
| 15:01:09 | *** dkayiwa has joined #openmrs |
| 15:04:24 | *** wyclif_ has quit IRC |
| 15:07:45 | *** downey has joined #openmrs |
| 15:07:45 | *** ChanServ sets mode: +o downey |
| 15:07:45 | *** OpenMRSBot sets mode: +o downey |
| 15:12:09 | *** yasintha has joined #openmrs |
| 15:19:31 | *** wyclif_ has joined #openmrs |
| 15:23:50 | *** yasintha has quit IRC |
| 15:55:30 | *** djadmin has joined #openmrs |
| 16:16:23 | *** edc_ has joined #openmrs |
| 16:23:41 | *** downey has quit IRC |
| 16:25:17 | *** k-joseph has quit IRC |
| 16:26:20 | *** wyclif_ has quit IRC |
| 16:38:32 | *** wyclif_ has joined #openmrs |
| 16:41:56 | *** k-joseph has joined #openmrs |
| 16:49:35 | <k-joseph> dkayiwa: hi |
| 16:49:44 | <dkayiwa> k-joseph: hi |
| 16:50:34 | <dkayiwa> hi rafa |
| 16:50:39 | <rafa> dkayiwa: hi |
| 16:50:58 | <dkayiwa> rafa: do you know when the sprint kick off meeting is? |
| 16:51:22 | <rafa> dkayiwa: during the scrum |
| 16:51:28 | <dkayiwa> rafa: ok |
| 16:51:50 | <dkayiwa> rafa: in hours many hours from now is the other meeting? :) |
| 16:52:12 | <rafa> dkayiwa: in 1h |
| 16:52:20 | <dkayiwa> rafa: ok thanks |
| 17:03:06 | *** djadmin2 has joined #openmrs |
| 17:06:15 | *** djadmin has quit IRC |
| 17:06:38 | <k-joseph> dkayiwa: did you see that, and what do you say about it? |
| 17:10:11 | <dkayiwa> k-joseph: looking at it now |
| 17:10:47 | <dkayiwa> k-joseph: did you change the signature of the setLocation method? |
| 17:24:06 | *** rafa has quit IRC |
| 17:25:45 | *** k-joseph_ has joined #openmrs |
| 17:25:53 | *** k-joseph has quit IRC |
| 17:30:52 | <mseaton> djazayeri1: (are you also djadmin2?) can we no longer attach balsalmiq mockups to jira? |
| 17:31:03 | <djazayeri1> I'm not djadmin2 |
| 17:31:03 | *** k-joseph has joined #openmrs |
| 17:31:13 | <djazayeri1> mseaton: I haven't tried in a while, but I don't know why we can't |
| 17:31:23 | <djazayeri1> mseaton: it happened once before and I emailed downey and he fixed it in 5 minutes |
| 17:31:29 | *** djazayeri1 is now known as djazayeri |
| 17:31:42 | <mseaton> djazayeri: i'm not seeing a link. is downey on this chat |
| 17:31:56 | <djazayeri> mseaton: I don't see him. I think he has class on Thursdays. |
| 17:32:06 | <mseaton> ok, thx |
| 17:34:18 | *** k-joseph_ has quit IRC |
| 17:37:10 | *** jblaya has joined #openmrs |
| 17:37:47 | *** k-joseph_ has joined #openmrs |
| 17:39:42 | *** k-joseph has quit IRC |
| 17:41:45 | *** k-joseph has joined #openmrs |
| 17:44:23 | *** kishoreyekkanti has joined #openmrs |
| 17:44:30 | *** k-joseph_ has quit IRC |
| 17:48:34 | *** k-joseph_ has joined #openmrs |
| 17:49:54 | *** k-joseph has quit IRC |
| 17:53:36 | *** dkayiwa has quit IRC |
| 17:55:16 | *** k-joseph_ has quit IRC |
| 17:57:30 | *** k-joseph_ has joined #openmrs |
| 17:58:28 | *** rkorytkowski has joined #openmrs |
| 17:58:28 | *** ChanServ sets mode: +v rkorytkowski |
| 17:58:57 | *** rkorytkowski is now known as rafa |
| 18:02:08 | *** k-joseph_ has quit IRC |
| 18:02:43 | *** apb156 has joined #openmrs |
| 18:03:17 | *** k-joseph_ has joined #openmrs |
| 18:08:42 | <rafa> wyclif_: hey, join hangout :) |
| 18:08:48 | *** burke has joined #openmrs |
| 18:08:48 | *** ChanServ sets mode: +o burke |
| 18:09:31 | <wyclif_> rafa, what is the hangout link, lost the email |
| 18:09:49 | <rafa> wyclif_: try this https://plus.google.com/hangouts/_/76ffb02bacaf53a0cd66264e43b48e0a56eb8dd7?hl=en |
| 18:09:51 | <OpenMRSBot> <http://ln-s.net/+WD3> (at plus.google.com) |
| 18:10:05 | <wyclif_> rafa, thanks |
| 18:10:08 | *** k-joseph_ has quit IRC |
| 18:12:27 | *** k-joseph_ has joined #openmrs |
| 18:13:44 | <cpower> anyone here have Daniel's cell phone number? |
| 18:13:53 | <cpower> if so email it to me |
| 18:13:55 | <cpower> :-) |
| 18:16:54 | *** k-joseph_ has quit IRC |
| 18:17:40 | *** k-joseph_ has joined #openmrs |
| 18:21:38 | *** k-joseph has joined #openmrs |
| 18:22:05 | *** k-joseph_ has quit IRC |
| 18:26:12 | *** djadmin has joined #openmrs |
| 18:26:13 | *** k-joseph has quit IRC |
| 18:26:24 | *** downey has joined #openmrs |
| 18:26:24 | *** ChanServ sets mode: +o downey |
| 18:26:24 | *** OpenMRSBot sets mode: +o downey |
| 18:27:13 | *** djadmin2 has quit IRC |
| 18:29:49 | *** apb156 has quit IRC |
| 18:30:58 | *** k-joseph has joined #openmrs |
| 18:33:23 | *** djadmin has quit IRC |
| 18:35:24 | *** k-joseph_ has joined #openmrs |
| 18:37:16 | *** andrea has joined #openmrs |
| 18:37:36 | <andrea> cpower, u around? |
| 18:37:37 | *** andrea is now known as Guest76878 |
| 18:37:50 | *** Guest76878 is now known as andreap_ |
| 18:37:57 | *** k-joseph_ is now known as guest2013 |
| 18:38:20 | *** k-joseph has quit IRC |
| 18:38:28 | *** guest2013 is now known as k-joseph |
| 18:39:01 | *** k-joseph is now known as guest00 |
| 18:39:06 | <andreap_> how about downey, u there? |
| 18:39:13 | <downey> andreap_: Maybe. :) |
| 18:39:27 | *** apb156 has joined #openmrs |
| 18:39:49 | <andreap_> hi downey, haven't received the Google Hangout invite yet |
| 18:40:51 | <downey> andreap_: I will probably start inviting people in about 70 minutes or so. See also: https://plus.google.com/events/cj2s3jfchgto8n0qq2ukp6ujh58 |
| 18:40:54 | <OpenMRSBot> <http://ln-s.net/+WDf> (at plus.google.com) |
| 18:41:22 | <andreap_> ok, will it come to my gmail? |
| 18:41:29 | *** k-joseph has joined #openmrs |
| 18:41:46 | *** apb156 has quit IRC |
| 18:43:20 | *** guest00 has quit IRC |
| 18:45:48 | <downey> andreap_: Yes, or your Google Talk if you have it up |
| 18:45:51 | <jkeiper> oh geez |
| 18:46:02 | <jkeiper> i just made an xforms ticket and now cannot add subtasks |
| 18:46:07 | <jkeiper> because i'm not an admin of xforms |
| 18:46:09 | <jkeiper> blargh |
| 18:53:53 | *** kishoreyekkanti has quit IRC |
| 18:54:07 | *** jblaya has quit IRC |
| 18:55:18 | *** dkayiwa has joined #openmrs |
| 18:55:31 | <rafa> dkayiwa: hey |
| 18:55:40 | <rafa> dkayiwa: join us https://plus.google.com/hangouts/_/76ffb02bacaf53a0cd66264e43b48e0a56eb8dd7?hl=en :) |
| 18:55:40 | <OpenMRSBot> <http://ln-s.net/+WD3> (at plus.google.com) |
| 18:56:03 | <andreap_> downey, thanks! Just installed Google Talk - talk to you soon |
| 18:56:07 | <dkayiwa> rafa: my internet got problems. just put in another sim card :) |
| 18:56:12 | <downey> andreap_: ok cool :) |
| 18:56:31 | <rafa> dkayiwa: cool, we haven't finished yet so join :) |
| 18:56:50 | <dkayiwa> rafa: ok :) |
| 18:56:58 | <djazayeri> dkayiwa: I'm recording this for you, btw. |
| 18:57:08 | <dkayiwa> djazayeri: oh thanks :) |
| 18:59:37 | *** k-joseph has quit IRC |
| 19:01:36 | *** jkeiper has quit IRC |
| 19:04:30 | *** guest00 has joined #openmrs |
| 19:09:25 | <djazayeri> dkayiwa: how is the easiest way for me to share a video with you? |
| 19:09:46 | <dkayiwa> djazayeri: what options have you got? :) |
| 19:10:03 | <djazayeri> dkayiwa: I can try to send you the mp4 file somehow, or I can upload to youtube. |
| 19:10:28 | <dkayiwa> djazayeri: utube is excellent |
| 19:11:02 | <djazayeri> dkayiwa: hmm, it's longer than 15m, so I can't upload to youtube |
| 19:11:24 | *** guest00 is now known as k-joseph |
| 19:11:37 | <dkayiwa> djazayeri: ok send me mp4 |
| 19:15:19 | <downey> slashtmp.iu.edu ? |
| 19:15:37 | <djazayeri> downey: that seems like the way |
| 19:15:41 | *** k-joseph_ has joined #openmrs |
| 19:17:02 | *** dkayiwa has quit IRC |
| 19:17:08 | *** dkayiwa_ has joined #openmrs |
| 19:17:22 | *** k-joseph has quit IRC |
| 19:19:40 | <djazayeri> dkayiwa_: I'm going to go for "smaller file size" rather than "higher quality" since I don't think the video is that important, and you can find the wiki pages, cool? |
| 19:20:02 | <dkayiwa_> djazayeri: hot :) |
| 19:24:05 | *** k-joseph_ has quit IRC |
| 19:27:01 | <rafa> djazayeri: don't forget about gdrive or dropbox ;) |
| 20:03:43 | <cpower> Instead of the daily scrum please join us in a Google Hangout for the Kick off of the Patient Summary Sprint. If you need a link please let me know |
| 20:04:33 | <mseaton> cpower: djazayeri: downey: how can i get into the hangout? |
| 20:04:47 | <downey> mseaton - check for an invitation or just look at https://plus.google.com/hangouts |
| 20:05:47 | <djazayeri> mseaton, downey: I'll be late, due to prior call running long. |
| 20:06:07 | <rafa> downey: has it started already? |
| 20:06:30 | <rafa> downey: did we all get invitations to join or some are just to watch? |
| 20:07:03 | <downey> rafa: i can invite you |
| 20:07:21 | <rafa> downey: thx |
| 20:07:30 | <downey> rafa: come on in :) |
| 20:07:38 | <downey> Video at: http://www.youtube.com/watch?v=1Dj8x_GUwIE |
| 20:08:45 | <rafa> downey: have you sent me something? |
| 20:08:54 | <downey> rafa: you should have received the invitation |
| 20:09:01 | <downey> or just try https://plus.google.com/hangouts |
| 20:09:03 | <rafa> downey: I think I'm invited, but I don't see a way to join |
| 20:09:09 | <rafa> downey: just watch |
| 20:09:48 | <rafa> downey: have we reached participants limit? |
| 20:09:55 | <wyclif_> hello |
| 20:09:56 | <downey> rafa: no |
| 20:10:10 | <rafa> downey: hmm then I don't get it |
| 20:10:59 | *** jkeiper has joined #openmrs |
| 20:10:59 | *** ChanServ sets mode: +v jkeiper |
| 20:11:13 | <djazayeri> dkayiwa_: you joining hangout? |
| 20:11:19 | <dkayiwa_> djazayeri: url? |
| 20:11:35 | <djazayeri> try https://plus.google.com/hangouts/_/00137ebeb5251654700beb4d687484b95f804dba?authuser=0&hl=en |
| 20:11:38 | <OpenMRSBot> <http://ln-s.net/+WG8> (at plus.google.com) |
| 20:11:43 | <dkayiwa_> djazayeri: ok thanks |
| 20:12:00 | <djazayeri> or try https://plus.google.com/hangouts and see if it's listed there |
| 20:12:33 | <dkayiwa_> djazayeri: Your Google+ page can't join this hangout because the owner doesn't follow your page. |
| 20:12:59 | <djazayeri> downey: can you invite daniel? |
| 20:13:08 | <djazayeri> dkayiwa_: then just watch on youtube for now |
| 20:13:10 | <downey> already did |
| 20:13:15 | <dkayiwa_> djazayeri: ok |
| 20:13:16 | <djazayeri> dkayiwa_: http://www.youtube.com/watch?v=1Dj8x_GUwIE |
| 20:14:26 | <wyclif_> djazayeri, am told the hangout is full |
| 20:14:38 | <dkayiwa_> wyclif_: :D |
| 20:14:58 | <djazayeri> wyclif_: okay, I exited, you take my place. :-) |
| 20:15:07 | <djazayeri> I'll watch on youtube |
| 20:15:23 | <wyclif_> djazayeri, ok thanks |
| 20:17:39 | *** ningosi has joined #openmrs |
| 20:22:45 | <djazayeri> mseaton, downey: I'm commenting on the youtube page... |
| 20:23:01 | <djazayeri> mseaton: for you: Is there anything out of the ordinary for development purposes? Is there a sprint-specific branch? Or are we doing pull requests on trunk? |
| 20:23:22 | *** dkayiwa_ has quit IRC |
| 20:23:22 | <djazayeri> downey: and for joaquin: Joaquin, will you have time to play with this code as it is written during the sprint? |
| 20:23:47 | <djazayeri> burke: ^^ |
| 20:32:31 | *** ningosi has quit IRC |
| 20:37:26 | *** apb156 has joined #openmrs |
| 20:40:22 | <apb156> hey guys, I'm setting up drug regimens and having problems searching for concepts when adding a new Concept Drug |
| 20:40:55 | <apb156> if I type the ID of a generic medication, it doesn't appear in the list |
| 20:41:36 | <apb156> This seems to be the case in the OpenMRS demo online as well |
| 20:41:49 | *** ningosi has joined #openmrs |
| 20:43:25 | <djazayeri> mseaton: I'd vote for allowing direct commits |
| 20:43:47 | <djazayeri> mseaton: at least for everyone on this call... |
| 20:44:08 | <djazayeri> (that's what we do in Mirebalais) |
| 20:44:19 | <mseaton> djazayeri: fine w/ me |
| 20:45:47 | <cpower> and that concludes our scrum/kickoff |
| 20:46:02 | <cpower> go back to doing whatever you were doing before |
| 20:46:06 | <djazayeri> cpower: as a note (to tell to others) I think we should aim to make the kickoffs much shorter |
| 20:46:06 | <cpower> ;-) |
| 20:47:01 | <cpower> 45 minutes wasn't bad |
| 20:47:04 | <djazayeri> cpower: i.e. try to finish the official kickoff within 20 minutes, then perhaps have the tech lead and product owner stick around for a bit while devs look at the rapid board and choose their tickets |
| 20:47:43 | <cpower> ok I see a good point in that. |
| 20:47:47 | <jkeiper> mseaton, should I be trying to use the CalculationRegistration (from Calculation module) to see what calculations have been registered, for the pick widget?\ |
| 20:47:59 | <jkeiper> mseaton, because i'm not sure how to access a calculation from that regustration object |
| 20:48:04 | <jkeiper> a bit confusing |
| 20:48:04 | <jkeiper> heh |
| 20:48:27 | <cpower> wyclif_ do you have everything you need for Trunk-3841,3842 and Reg-8? |
| 20:48:38 | <cpower> What do you need from others? |
| 20:49:09 | <jkeiper> cpower, those are changing |
| 20:49:15 | <jkeiper> cpower, wyclif_ and I are on it |
| 20:49:18 | *** rafa has quit IRC |
| 20:49:25 | <wyclif_> cpower, TRUNK-3841 and TRUNK-3842 seem to be still going through rigorous design |
| 20:49:26 | <jkeiper> cpower, i'm making 8 or 9 other tickets for those issues |
| 20:49:28 | <cpower> ok keep me in the loop |
| 20:49:51 | <wyclif_> cpower, once we'have agreed on the design, i will be on it |
| 20:50:20 | <jkeiper> burke, coming to the wedge or will we see you tomorrow? |
| 20:50:22 | <cpower> great, get me a list of them once they are done. What I really need to know is time estimates to figure out if Wyclif has a chance of completing them or if he needs help |
| 20:50:43 | <cpower> or if we need to pair down and get the most important ones done this sprint |
| 20:52:25 | <wyclif_> cpower, once the tickets are done, i will guage how much time i need, but i will certainly need help |
| 20:52:47 | <wyclif_> cpower, given that they might be ready for work after we have gone a couple of days into the sprint |
| 20:53:27 | <wyclif_> cpower, i really wanted to have some ampath devs to get involved since they might have to maintain most of the code additions outside core |
| 20:54:06 | <mseaton> jkeiper: hmm. yeah, maybe that property should be CalculationRegistration, not Calculation |
| 20:54:17 | <cpower> jkeiper, how do we get some ampath help? |
| 20:54:29 | <jkeiper> cpower, you're looking at it |
| 20:54:52 | <jkeiper> cpower, it would require less pressure at AMPATH |
| 20:55:02 | <jkeiper> cpower, so you get me and burke |
| 20:55:18 | <burke> i can come up. |
| 20:55:23 | <jkeiper> ok |
| 20:58:01 | *** ningosi has quit IRC |
| 21:06:03 | *** apb156 has left #openmrs |
| 21:06:43 | *** burke has quit IRC |
| 21:19:20 | <cpower> djazayeri, you Boston meeting is on 2/5? |
| 21:29:25 | *** wyclif_ has quit IRC |
| 21:32:14 | <djazayeri> cpower: 2/5 and 2/6, yeah. (tues and wed) |
| 21:41:29 | *** rafa has joined #openmrs |
| 21:41:29 | *** ChanServ sets mode: +v rafa |
| 21:44:51 | *** wyclif_ has joined #openmrs |
| 21:46:41 | *** rafa has quit IRC |
| 21:54:15 | *** mseaton has left #openmrs |
| 21:58:01 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Modules: Dashboard Frame Website Module 1.0-SNAPSHOT uploaded to OpenMRS Module Repository <https://modules.openmrs.org/modules/view.jsp?module=dashboardframe&version=&1.0-SNAPSHOT> |
| 22:07:21 | *** jkeiper has quit IRC |
| 22:08:16 | *** upul has joined #openmrs |
| 22:08:41 | *** upul has joined #openmrs |
| 22:08:41 | *** ChanServ sets mode: +v upul |
| 22:35:11 | *** wyclif_ has quit IRC |
| 23:34:35 | *** downey has quit IRC |
| 23:38:19 | *** mseaton has joined #openmrs |
| 23:38:19 | *** ChanServ sets mode: +v mseaton |