| 01:10:34 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15020]: added some more tests, and extended the testing framework to handle obs ⦠<http://dev.openmrs.org/changeset/15020> |
| 01:15:04 | *** bwolfe has joined #openmrs |
| 01:15:04 | *** ChanServ sets mode: +o bwolfe |
| 01:40:00 | *** mccallumg has joined #openmrs |
| 02:14:40 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: Cannot add concepts to Concept Dictionary <http://forum.openmrs.org/viewtopic.php?f=23&t=644#p2466> || OpenMRS Forum: Re: Cannot add concepts to Concept Dictionary <http://forum.openmrs.org/viewtopic.php?f=23&t=644#p2465> |
| 02:24:24 | *** mblanchette has joined #openmrs |
| 02:26:29 | *** brylie has quit IRC |
| 02:26:54 | *** brylie has joined #openmrs |
| 02:28:12 | *** Shazin has joined #openmrs |
| 02:34:14 | *** Mathias has joined #openmrs |
| 02:34:26 | *** Mathias is now known as mathiaslin |
| 02:46:44 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: Cannot add concepts to Concept Dictionary <http://forum.openmrs.org/viewtopic.php?f=23&t=644#p2468> || OpenMRS Forum: Re: Cannot add concepts to Concept Dictionary <http://forum.openmrs.org/viewtopic.php?f=23&t=644#p2467> |
| 02:47:10 | *** bwolfe has quit IRC |
| 03:18:53 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Re: Cannot add concepts to Concept Dictionary <http://forum.openmrs.org/viewtopic.php?f=23&t=644#p2469> |
| 03:23:27 | *** mathiaslin has quit IRC |
| 03:24:08 | *** fixl has joined #openmrs |
| 03:46:37 | *** mblanchette has left #openmrs |
| 04:03:02 | *** mccallumg has quit IRC |
| 04:41:35 | *** mathiaslin has joined #openmrs |
| 05:27:11 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15022]: moduleadmin branch: JavaDoc Commenting Changing Threshold to ⦠<http://dev.openmrs.org/changeset/15022> || OpenMRS Changesets: Changeset [15021]: metadata-localization branch: Some modification according to the comments ⦠<http://dev.openmrs.org/changeset/15021> |
| 05:46:32 | *** brylie has quit IRC |
| 05:47:10 | *** brylie has joined #openmrs |
| 05:47:49 | *** brylie has left #openmrs |
| 05:59:14 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15023]: Merging trunk into branch moduleadmin [14888]:[15022] <http://dev.openmrs.org/changeset/15023> |
| 06:33:13 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15024]: billing: minor fix <http://dev.openmrs.org/changeset/15024> |
| 08:00:48 | *** robbyoconnor has quit IRC |
| 08:00:55 | *** Shazin has quit IRC |
| 08:01:03 | *** Shazin has joined #openmrs |
| 08:01:14 | *** robbyoconnor has joined #openmrs |
| 08:01:14 | *** ChanServ sets mode: +v robbyoconnor |
| 10:31:30 | *** MalteF has joined #openmrs |
| 10:31:30 | *** ChanServ sets mode: +v MalteF |
| 10:49:55 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15026]: Added method wsGetConceptsByClassNameAndCharsForDrugs() <http://dev.openmrs.org/changeset/15026> || OpenMRS Changesets: Changeset [15025]: billing: minor fix in config.xml <http://dev.openmrs.org/changeset/15025> |
| 11:20:36 | *** kennymac has joined #openmrs |
| 11:20:36 | *** ChanServ sets mode: +v kennymac |
| 11:20:46 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Regarding Alert in OpenMRS <http://forum.openmrs.org/viewtopic.php?f=23&t=645#p2470> |
| 11:32:58 | *** bwolfe has joined #openmrs |
| 11:32:58 | *** ChanServ sets mode: +o bwolfe |
| 12:24:50 | <kennymac> anybody had any experience lazy loading properties in hibernate using buildtime bytecode instrumentation, or can suggest a better way? |
| 12:27:30 | *** fixl has quit IRC |
| 12:49:15 | <bwolfe> kennymac: huh? |
| 12:49:19 | <bwolfe> what are you trying to do? |
| 12:50:23 | <kennymac> lazy load a blob property within a hibrnate entity... i got it working with some ant file manipulation: http://docs.jboss.org/hibernate/stable/core/reference/en/html/performance.html#performance-fetching-lazyproperties |
| 12:50:25 | <OpenMRSBot> <http://ln-s.net/7TA$> (at docs.jboss.org) |
| 12:50:54 | <kennymac> it's just quite a full on way to do something that I thought would be more native to hibernate |
| 12:51:06 | <kennymac> and also requires the javassist library |
| 12:51:35 | <bwolfe> hmm |
| 12:51:44 | <bwolfe> why not just make it not lazy load? :-) |
| 12:53:07 | <kennymac> because those blobs are huge in RFE i started to get OOM erros when i was viewing the transfers table in RDT |
| 12:53:29 | <kennymac> it was loading each blob into memeory just to view the other properties |
| 12:53:56 | <kennymac> it seems to work good now with that method i linked |
| 12:54:15 | <kennymac> but bytecode processing seems a bit scary |
| 12:55:38 | *** fixl has joined #openmrs |
| 12:55:50 | <bwolfe> hmm |
| 12:56:01 | <bwolfe> well I have zero experience with it, so I can't really help :-/ |
| 12:56:25 | <kennymac> i was a bit stuck editing the ant file when i asked for help but i fixed that now :) |
| 12:57:09 | <kennymac> got stressed last night when i was experimenting with transferring the DB dumps from RFE and the view transfers table wouldn't even load |
| 13:18:20 | <kennymac> ben, remember when you showed me how to open a session in a new thread? Well how do you give that session admin privileges? |
| 13:18:55 | <kennymac> bwolfe * |
| 13:26:18 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15028]: openmrs1.7 branch. added 2 lines to Patient(Person person) constructor to ⦠<http://dev.openmrs.org/changeset/15028> || OpenMRS Changesets: Changeset [15027]: openmrs1.6. added 2 lines to Patient(Person person) to explicitly set ⦠<http://dev.openmrs.org/changeset/15027> |
| 13:58:20 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15029]: openmrs trunk. Added 2 lines to Patient(Person person) to explicitly set ⦠<http://dev.openmrs.org/changeset/15029> |
| 14:43:51 | *** Shazin has quit IRC |
| 14:44:39 | *** Shazin has joined #openmrs |
| 15:05:23 | <kennymac> well only way I have found to authenticate in a new thread is to use scheduler username/password... don't want to rely on those GPs being correct though... |
| 16:06:51 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15030]: conceptmanagement: improved autocomplete, added autocomplete to ⦠<http://dev.openmrs.org/changeset/15030> |
| 16:16:19 | *** fixl has quit IRC |
| 16:39:00 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15033]: remotedatatransfer: lazy loading of properties in receive and queue items: ⦠<http://dev.openmrs.org/changeset/15033> || OpenMRS Changesets: Changeset [15032]: remotedatatransfer: fixing svn problem <http://dev.openmrs.org/changeset/15032> || OpenMRS Changesets: Changeset [15031]: spreadsheetupload module: allow null return from ⦠<http://dev.openmrs.org/changeset/15031> |
| 16:43:46 | *** Shazin has quit IRC |
| 16:48:15 | *** fixl has joined #openmrs |
| 16:49:25 | *** kane77 has quit IRC |
| 17:11:04 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15034]: spreadsheetimport module: basic XLS input functionality with debugging ⦠<http://dev.openmrs.org/changeset/15034> |
| 17:52:46 | *** mccallumg has joined #openmrs |
| 18:01:46 | <robbyoconnor> MalteF: not to nitpick but you say |
| 18:01:50 | <robbyoconnor> 'show 5 per page" |
| 18:01:53 | <robbyoconnor> but you show 3! |
| 18:02:04 | <robbyoconnor> http://openmrs.org/wiki/Advanced_Concept_Search_Manual |
| 18:02:07 | <OpenMRSBot> <http://ln-s.net/7TF7> (at openmrs.org) |
| 18:02:39 | <MalteF> robbyoconnor : yeah, there are some errors in that mockup :D |
| 18:03:47 | <MalteF> but i think i can fix that |
| 18:05:04 | <robbyoconnor> you better |
| 18:05:07 | <robbyoconnor> :D |
| 18:05:15 | <robbyoconnor> I already nitpicked kennymac's code :D |
| 18:05:26 | <robbyoconnor> I'm critical of myself too so it's ok |
| 18:07:01 | <MalteF> have you finished your gsoc project yet? |
| 18:15:14 | <OpenMRSBot> Recent updates in the world of openmrs: On Twitter: OpenMRS: Get a job! @PIH_org is looking for an #OpenMRS developer to work on Haiti projects: http://go.openmrs.org/jobs #ICT4D #eHealth <http://twitter.com/OpenMRS/statuses/21167683428> || OpenMRS Changesets: Changeset [15035]: remoteformentry: transfers from central to remote is now supported via RDT <http://dev.openmrs.org/changeset/15035> |
| 18:16:05 | *** mccallumg has quit IRC |
| 18:19:43 | <robbyoconnor> 80-90% |
| 18:29:38 | *** fixl has quit IRC |
| 18:30:43 | *** firzhan has joined #openmrs |
| 18:31:51 | *** firzhan has quit IRC |
| 18:56:12 | *** mathiaslin has quit IRC |
| 19:51:25 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15037]: xforms module: deleting form runner old resource files. <http://dev.openmrs.org/changeset/15037> || OpenMRS Changesets: Changeset [15036]: xforms module: deleting form designer old resource files. <http://dev.openmrs.org/changeset/15036> |
| 20:23:44 | *** ratpik has joined #openmrs |
| 20:23:46 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15038]: xforms module: fixed skip logic bug and removed page tabs from forms that ⦠<http://dev.openmrs.org/changeset/15038> || OpenMRS Modules: XForms 3.9.2 uploaded to OpenMRS Module Repository <https://dev.openmrs.org/modules/view.jsp?module=xforms&version=&3.9.2> |
| 20:37:04 | <ratpik> Hi, I just wanted to know something grouping obs: I have two concepts say X and Y, I need an Obs of type X to have children of type Y. I can do a setGroupMembers for an Obs of type X. I have set the concept.isSet to true for Y. Is this the correct way? |
| 21:00:53 | *** Echidna_ has quit IRC |
| 21:08:15 | *** Echidna has joined #openmrs |
| 21:08:15 | *** ChanServ sets mode: +v Echidna |
| 21:37:50 | *** bwolfe has quit IRC |
| 22:06:53 | *** MalteF has quit IRC |
| 22:15:32 | *** ratpik has left #openmrs |
| 22:57:21 | *** kennymac has quit IRC |
| 23:03:50 | <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [15040]: spreadsheetimport: add simple spreadsheet import list, spreadsheet imports ⦠<http://dev.openmrs.org/changeset/15040> || OpenMRS Changesets: Changeset [15039]: groovy module: fix GroovyScript.hashCode() generation when modified == ⦠<http://dev.openmrs.org/changeset/15039> |
| 23:42:51 | *** bwolfe has joined #openmrs |
| 23:42:51 | *** ChanServ sets mode: +o bwolfe |