IRC Chat : 2010-11-14 - OpenMRS

00:37:02 *** misha680 has joined #openmrs
01:32:26 <OpenMRSBot> Recent updates in the world of openmrs: New Changeset: OpenMRS trunk #16497: [Wyclif Luyima] Stop cursor in the search textbox from moving when home/end/PageDown/PageUp/up/down keys are pressed - TRUNK-1652 <http://feedproxy.google.com/~r/OMRStrunk/~3/JvHOfWVNCWY/>
02:09:20 *** fixl has joined #openmrs
03:09:27 <misha680> is there a way to somehow to disable MutableResourceBundleMessageSource for testing or to substitute org.springframework.context.support.ReloadableResourceBundleMessageSource? Something simple... I'm trying to figure out if this is somehow related to the login _form_ itself (the part that says Username: Password:) not appearing under my HTTP Service OSGi implementation... Thx :)
03:34:13 <bwolfe> misha680: can you change it in the applicationContext-service.xml file?
03:34:22 <bwolfe> then make sure the MessageSourceService isn't needing it
03:35:56 <misha680> bwolfe: thx ben, will check tomorrow
03:49:41 *** bwolfe has quit IRC
04:45:02 <OpenMRSBot> Recent updates in the world of openmrs: New Changeset: OpenMRS trunk #16498: [Wyclif Luyima] Added row highlight update when paging buttons are clicked and converted the '$' to '$j' - TRUNK-1652 <http://feedproxy.google.com/~r/OMRStrunk/~3/-N63duh7EKE/>
16:26:37 *** fixl has quit IRC
16:39:08 *** quest88 has joined #openmrs
16:53:35 *** quest88 has quit IRC
17:30:45 *** misha680 has quit IRC
18:34:02 *** quest88 has joined #openmrs
18:38:27 *** misha680 has joined #openmrs
18:44:10 <quest88> importing sure takes a while huh? I tried importing 5 minutes ago and it's only up to 11%
19:03:26 *** bwolfe has joined #openmrs
19:03:26 *** ChanServ sets mode: +o bwolfe
19:12:47 <OpenMRSBot> Recent updates in the world of openmrs: New Changeset: OpenMRS trunk #16500: [Wyclif Luyima] Fixing loss of row highlight when up key is pressed before all data is fetched - TRUNK-1652 <http://feedproxy.google.com/~r/OMRStrunk/~3/_CbB62HyDbY/>
23:35:55 <misha680> bwolfe: so its not the MutableResourceBundleMessageSource apparently... any other ideas why the login.htm page might load _without_ the login form? Any dependencies I should know about of the login form...? I'm a bit stumped
23:41:07 <misha680> bwolfe: also, to get rid of the Mutable... errors without a lot of changes for OSGi, I'd like to somehow pass in the File associated with our extracted bundle (has to be extracted for our current module implementation to work under OSGi anyway) to Mutable... For testing purposes, I used a static File field in that class, but that is clearly a hack. Any good way you can think of without adding either a (i) static field or an (
23:41:07 <misha680> ii) import into the api that depends on web or webapp (and thus a new maven dependency which is clearly not correct)? Thx