IRC Chat : 2009-03-06 - OpenMRS

00:23:30 * r0bby looks around
00:34:42 *** nribeka has quit IRC
01:35:59 *** nribeka has joined #openmrs
01:38:44 *** nribeka1 has joined #openmrs
01:43:18 *** nribeka2 has joined #openmrs
01:57:03 *** nribeka has quit IRC
02:01:41 *** nribeka1 has quit IRC
02:02:40 *** jmiranda has joined #openmrs
02:02:40 *** ChanServ sets mode: +o jmiranda
02:25:50 * jmiranda is away: I'm busy
02:42:48 *** bwolfe has joined #openmrs
02:42:48 *** ChanServ sets mode: +o bwolfe
02:42:51 *** isurundt has joined #openmrs
02:43:09 <r0bby> bwolfe: o/
02:49:28 <Keelhaul> bwolfe: i noticed if you have a user with very few privs (e.g. a patient) and hit some part of code where a priv is expected, it sometimes just stops executing w/o any error message in the logs or elsewhere
02:51:53 <nribeka2> bwolfe ...
02:53:00 * r0bby sighs
02:54:17 <nribeka2> i don't think bwolfe is here
03:08:47 <bwolfe> sorry guys, I'm back
03:09:28 <bwolfe> Keelhaul: it should be throwing an APIException
03:09:57 <Keelhaul> bwolfe: nope, nothing
03:12:57 <Keelhaul> bwolfe: http://rafb.net/p/PWnyq663.html
03:13:12 <Keelhaul> it would just stop somewhere in saveProblem and not do or show anything
03:13:35 <Keelhaul> also, see where i'm comparing the IDs on like 7
03:13:53 <Keelhaul> w/o the .intVal, that check is always false for some reason
03:14:16 <bwolfe> Keelhaul: thats because you're comparing Integer objects. you have to use .equals for all non primitive comparisons
03:14:39 <bwolfe> any add/removeProxyPrivilege should be in a try/finally block
03:14:54 <bwolfe> and I'm confused as to why it fails silently
03:14:54 <Keelhaul> yea, that's more orderly
03:14:56 <Keelhaul> but
03:15:04 <Keelhaul> Integer is non primitive?
03:15:09 <Keelhaul> is it different from int?
03:15:30 <bwolfe> yes
03:15:35 <bwolfe> and so is Boolean
03:15:37 <bwolfe> and Double
03:15:40 <bwolfe> etc
03:15:46 <Keelhaul> oh i see
03:15:54 <Keelhaul> didnt know that
03:16:05 <Keelhaul> never really saw anyone use the full objects until openmrs
03:18:07 <bwolfe> :-)
03:21:59 <Keelhaul> bwolfe: does it matter where in the try block i add proxy privs, as long as i remove them in finally?
03:22:08 <Keelhaul> or are there conventions for tha ttoo
03:22:20 <bwolfe> probably want the add as the first thing
03:32:39 <Keelhaul> whether or not the patient panel displays for patients seems to be completely random now
03:32:49 <Keelhaul> one compilation will work, next one wont
03:33:32 <bwolfe> Keelhaul: patient panel ?
03:33:33 <Keelhaul> also, the advice classes throw lazyinitiationexceptions when a patient is logged in
03:33:47 <Keelhaul> bwolfe: that page i have for patients to enter obs for themselves
03:34:19 <Keelhaul> bwolfe: were there any significant changes to hibernate before win's fix lately?
03:34:47 <bwolfe> there was one by darius a few months ago, but it had to do with creating concepts without conceptIds
03:35:51 *** isurundt has quit IRC
03:35:52 <Keelhaul> what are those for =o
03:36:14 <bwolfe> ?
03:36:23 <Keelhaul> concepts w/o ids
03:36:36 <bwolfe> or concepts with ids
03:36:44 <bwolfe> normally its without and the db auto increments it
03:36:49 <Keelhaul> yes
03:36:52 <bwolfe> but darius wanted to be able to provide the id
03:37:00 <Keelhaul> i read something about that on the mailing list i think
03:37:05 <Keelhaul> though i'm nto sure what they need it for
03:38:13 <nribeka2> bwolfe
03:38:21 <nribeka2> for ticket #725
03:38:32 <nribeka2> do you have the xml file for the new test?
03:38:36 <nribeka2> can i have it :)
03:38:46 <bwolfe> hmm
03:38:58 <bwolfe> I don't think I have it anymore
03:39:06 <nribeka2> ups ...
03:39:28 <bwolfe> doesn't look like its using any
03:39:33 <bwolfe> its just doing the standard thing
03:40:43 <nribeka2> getConcept(5089) --> xml dataset for 5089 bwolfe
03:41:38 <bwolfe> its in the /test/api/org/openmrs/include/standardDataSet.xml that gets loaded for all tests (that don't have @SkipBaseDataSet)
03:41:56 <nribeka2> ah ok ok bwolfe
03:42:09 <nribeka2> i'll have a look at it :)
03:55:04 <Keelhaul> bwolfe: i noticed tomcat keeps logging an exception about not being able to find a message properties file
03:55:14 <Keelhaul> because it looks for en_gb and the filename is en_GB
03:55:48 <bwolfe> interesting
03:56:16 <Keelhaul> http://rafb.net/p/0SLi7z68.html
03:57:53 <nribeka2> what is en_gb?
03:58:01 <nribeka2> english ... ?
03:58:27 <bwolfe> uk
03:58:33 <bwolfe> great britian
03:58:39 <nribeka2> ah ic ic
03:58:40 <Keelhaul> yea
03:58:45 <bwolfe> Keelhaul: I'll bet its because of the recent thing I put in about default locale
03:58:47 <Keelhaul> the only locale in openmrs nowadays =/
03:58:51 <bwolfe> it might not be parsing correctly
03:59:11 <bwolfe> Keelhaul: theres a global property that restricts them
03:59:23 <bwolfe> go add the other locales to the allowed_locales gp
03:59:50 <Keelhaul> ok
04:00:25 <Keelhaul> bwolfe: the message language seems to always be the same as the OS language though, nm the locale
04:00:51 <bwolfe> hmm
04:00:58 <bwolfe> you can't switch to english ?
04:01:10 <bwolfe> or to spanish ?
04:01:21 <Keelhaul> i can now that i added more locales
04:01:45 <Keelhaul> but back when there was only english and i added a german message file to a module for fun, all module text was german
04:01:46 <Keelhaul> couldnt change it
04:04:34 <Keelhaul> bwolfe: where does it get the locales from?
04:04:39 <Keelhaul> i have a de and a de_DE now
04:04:44 <Keelhaul> cant get rid of one
04:06:22 <bwolfe> what messages.properties files do you have ?
04:07:08 <Keelhaul> en_gb, fr, es, pt, it
04:07:32 <bwolfe> no de ?
04:07:42 <Keelhaul> no
04:07:46 <bwolfe> whats in your allowed locales ?
04:07:46 <Keelhaul> there's no de in openmrs
04:07:50 <Keelhaul> unless you want me to add one
04:07:51 <Keelhaul> heh
04:08:12 <bwolfe> we'll take one if you want to write it. :-)
04:08:15 <Keelhaul> so en_uk is only there because of "programme"? lol
04:08:21 <Keelhaul> gb*
04:09:54 <r0bby> Keelhaul: yeh
04:09:59 <r0bby> different dialect of english \
04:10:07 <r0bby> there is also en_AU
04:10:33 <r0bby> (Australians have a different dialect, then of course we have the deep south, but that's just a bad stereotype
04:10:48 <Keelhaul> yea, but considering the size of en_gb, it doesnt really have a purpose atm
04:10:58 <r0bby> it does too :)
04:11:03 <Keelhaul> r0bby: git oaf mah laid!
04:11:07 <Keelhaul> laind*
04:11:48 <r0bby> that's deep south
04:11:53 <Keelhaul> written en_gb really only has some different spelling, at least in professional software like this
04:11:58 <Keelhaul> there's no local slang or anything
04:12:02 <Keelhaul> so why have an extra gb file
04:12:08 <r0bby> labour, colour, etc
04:12:20 <r0bby> it may be different
04:14:28 <Keelhaul> yes, but is there risk that brits wont understand "color"? i think not
04:24:30 <r0bby> yes
04:24:56 <Keelhaul> <font color='red'>
04:25:00 <Keelhaul> that tag is deprecated i think
04:25:59 <r0bby> it is.
04:26:25 <r0bby> <span style="color: red">this will be red.</span>
04:26:29 <r0bby> what is recommended.
04:26:37 <r0bby> <span style="color: red;">this will be red.</span>
04:38:59 *** atomicturtle has joined #openmrs
04:53:20 <Keelhaul> gn
04:53:21 *** Keelhaul has quit IRC
04:55:40 *** isurundt has joined #openmrs
05:36:06 *** jmiranda has quit IRC
05:59:50 *** isurundt has quit IRC
06:03:19 *** bwolfe has quit IRC
10:14:56 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7061]: xforms module: improving form designer and sending better failure … <http://dev.openmrs.org/changeset/7061>
10:46:58 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Modules: XForms 2.4 uploaded to OpenMRS Module Repository <https://dev.openmrs.org/modules/view.jsp?module=xforms&version=&2.4>
11:04:16 *** vindyani has joined #openmrs
11:05:59 *** vindyani has quit IRC
11:19:02 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Forum: Is online demo working? <http://forum.openmrs.org/viewtopic.php?f=11&t=423#p1482>
12:00:25 *** james_regen has joined #openmrs
12:00:25 *** ChanServ sets mode: +v james_regen
12:37:17 *** Keelhaul has joined #openmrs
12:37:19 *** ChanServ sets mode: +v Keelhaul
12:56:17 *** bwolfe_ has joined #openmrs
12:56:17 *** ChanServ sets mode: +o bwolfe_
12:56:33 *** bwolfe_ is now known as bwolfe
13:03:20 <Keelhaul> hi bwolfe =P
13:04:15 <bwolfe> yessir
13:05:03 <Keelhaul> lol
13:05:09 <Keelhaul> working too early =/
13:06:04 <bwolfe> I am? or you are ?
13:06:26 <Keelhaul> you
13:06:36 <Keelhaul> well me too, considering i went to bed at almost 6am
13:06:47 <Keelhaul> there's a problem with concept search =(
13:06:52 <Keelhaul> no results whatsoever
13:07:20 <bwolfe> is it a concept word problem ?
13:08:26 <bwolfe> how did you arrive at your current database? upgrade from 1.4? create a 1.4 from scratch? create a 1.5 from scratch ?
13:08:34 <Keelhaul> from 1.4
13:08:57 <Keelhaul> my home one has been around since 1.2 or so
13:09:09 <Keelhaul> the one at the university was a clean 1.4 install
13:09:12 <Keelhaul> both are 1.5 now
13:09:15 <Keelhaul> and both have problems
13:09:35 <Keelhaul> i tried updating concept words again, didnt help
13:09:41 <Keelhaul> dictionary.upToDate=UpToDate <-- is this a proper name?=
13:09:53 <bwolfe> is it a locale thing ?
13:09:56 <bwolfe> yeah, its a website
13:11:20 <Keelhaul> locale? maybe
13:11:28 <Keelhaul> i added additional locales to both
13:11:30 <Keelhaul> last night
13:11:38 <Keelhaul> dictionary.testsOnline=Lab Tests Online
13:11:38 <Keelhaul> dictionary.containedInSets=Contained in Sets
13:11:42 <Keelhaul> are those proper names?
13:13:05 <bwolfe> lab tests is
13:13:18 <bwolfe> Contained in Sets is a label for the list of sets that a concept is in
13:14:29 <Keelhaul> ok
13:15:14 <bwolfe> Keelhaul: when you get a chance, update to 7062 and see if that messages_gb.properties not found error goes away
13:16:38 <Keelhaul> ok
13:17:49 <Keelhaul> the message file is so damn long =/
13:18:37 <bwolfe> Keelhaul: openmrs is a big program. :-p
13:23:22 <Keelhaul> maybe i could do a russian translation too, but i'm not sure how to use cyrillic in text files
13:24:21 <bwolfe> Keelhaul: me either
13:24:36 <bwolfe> Keelhaul: and utf8 characters aren't printing for us anyway :-/
13:24:41 <Keelhaul> =o
13:24:42 <Keelhaul> why not
13:24:59 <bwolfe> !ticket 365
13:24:59 <OpenMRSBot> bwolfe: Ticket #365: http://dev.openmrs.org/ticket/365
13:25:01 <bwolfe> I don't know
13:25:12 <bwolfe> would be great to find out though
13:26:08 <Keelhaul> Who retired this and why?
13:26:09 <Keelhaul> lol
13:27:23 <Keelhaul> that's a bad question
13:27:37 <Keelhaul> the word i use for "retire" can also mean "to excrete" in the medical area
13:28:24 <bwolfe> nice
13:36:18 <Keelhaul> provider.missing=Matata!
13:36:19 <Keelhaul> lol
13:36:38 <Keelhaul> what's an Accompagnateur
13:37:20 <Keelhaul> someone who accompanies?
13:41:40 <bwolfe> yes
13:42:00 <bwolfe> matata means "problem" in swahili
13:42:14 <Keelhaul> o
13:42:48 <Keelhaul> bwolfe: hmm i've been meaning to ask this for a while. is it better to use existing messages from the core in the module, or define new ones for everything?
13:42:53 <Keelhaul> like general.save
13:43:01 <Keelhaul> or Encounter.datetime
13:43:02 <Keelhaul> etc
13:43:23 <bwolfe> Keelhaul: probably better to reuse
13:43:38 <bwolfe> as the ones in core might have been translated for you already
13:43:39 <Keelhaul> using own messages for everything could mean faster translation into a new language
13:43:52 <Keelhaul> then again, whats thepoint of the rest of the application isnt translated
13:43:59 <Keelhaul> if*
13:44:06 <bwolfe> you could always provide those other translations
13:57:15 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7062]: Updated default locale to parse the global property locale string before … <http://dev.openmrs.org/changeset/7062>
14:26:30 *** vindyani has joined #openmrs
14:28:31 <bwolfe> welcome vindyani
14:29:07 <vindyani> welcome bwolfe
14:29:22 <vindyani> thanks
14:29:50 <vindyani> i just registered here
14:29:56 <bwolfe> vindyani: your ip shows you're in sri lanka :-) (sorry, I'm nosy)
14:30:18 <bwolfe> we've had a few other new sri lankans on this list in the last few weeks. was there an openmrs announcement there? :-)
14:33:04 <Keelhaul> bwolfe: how en_GB is completely gone
14:33:07 <Keelhaul> is it supposed to be?
14:33:57 <bwolfe> what is gone ?
14:33:59 <bwolfe> what do you mean ?
14:34:19 <Keelhaul> the msg file
14:34:32 <Keelhaul> it's no longer in my trunk after the update
14:34:53 <bwolfe> ha
14:34:56 <bwolfe> it should be
14:35:06 <bwolfe> its in mine :-)
14:35:11 <Keelhaul> great
14:38:44 <Keelhaul> org.tigris.subversion.javahl.ClientException: No such file or directory
14:38:45 <Keelhaul> svn: Error restoring text for 'E:\Users\Keelhaul\My Documents\Workspace\openmrs-trunk\web\WEB-INF\messages_en_GB.properties'
14:38:45 <Keelhaul> org.tigris.subversion.javahl.ClientException: No such file or directory
14:38:45 <Keelhaul> svn: Error restoring text for 'E:\Users\Keelhaul\My Documents\Workspace\openmrs-trunk\web\WEB-INF\messages_en_GB.properties'
14:39:13 <bwolfe> heh
14:39:22 <bwolfe> did you try "svn cleanup"
14:39:33 <bwolfe> or eclipse's "replace with --> base revision" ?
14:41:21 <Keelhaul> cant replace, same error
14:41:24 <Keelhaul> where is cleanup?
14:41:47 <Keelhaul> nm found it
14:41:51 <Keelhaul> but didnt help
14:42:05 <bwolfe> no other error text?
14:42:07 <bwolfe> thats odd
14:45:22 <Keelhaul> what i did last night is rename it to en_gb (lowercase)
14:45:27 <Keelhaul> manually
14:45:35 <Keelhaul> now svn just deletes it
14:45:50 <Keelhaul> if i copy it over from an older trunk, it deletes it too
14:49:33 <bwolfe> ah
14:49:39 <bwolfe> so svn thinks you want to delete it
14:49:47 <Keelhaul> prolly
14:49:48 <bwolfe> do a team --> synchronize on the parent folder
14:49:49 <Keelhaul> how can i fix that
14:49:53 <Keelhaul> oh i tried that too
14:49:54 <bwolfe> and delete the delete :-)
14:49:54 <Keelhaul> no hlep
14:53:26 <bwolfe> Keelhaul: there should be a way for you to see pending changes
14:53:32 <bwolfe> and you can delete those pending changes
14:53:35 <bwolfe> or
14:53:45 <bwolfe> if you have no changes, you can do an svn revert on the parent folder
14:53:58 <Keelhaul> yes, thats when it gives me that file not found error
14:54:30 <bwolfe> create an empty file with that name and then try a revert
14:54:35 <bwolfe> or a synchronize
15:10:30 <Keelhaul> ok, i'm checking a new one out =/
15:10:36 <Keelhaul> new trunk that is
15:20:05 *** vindyani has quit IRC
15:31:24 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Tickets: Ticket #1318 (enhancement created): HTML Form Entry module needs to support Problem Added / Problem Removed functionality <http://dev.openmrs.org/ticket/1318> || OpenMRS Tickets: Ticket #1303 (task closed): Html Form Entry module doesn't warn you if you leave out a required encounter metadata component <http://dev.openmrs.org/ticket/1303#comment:2> || OpenMRS Tickets: Ticket #1284 (task closed): Don't give the admin user change password option in wizard <http://dev.openmrs.org/ticket/1284#comment:3> || OpenMRS Tickets: Ticket #1252 (enhancement closed): Allow User to Choose an "Implementation Id" in the initial setup wizard <http://dev.openmrs.org/ticket/1252#comment:4> || OpenMRS Changesets: Changeset [7063]: Added implementation id setup to the initialization wizard - #1252 Made … <http://dev.openmrs.org/changeset/7063>
15:32:22 <Keelhaul> bwolfe: http://77.20.58.117/misc/graph.jpg
15:32:29 <Keelhaul> does this address take awfully long for you to respond as well?
15:33:12 <bwolfe> the link ? no, it came up pretty quickly
15:34:34 <Keelhaul> weird
15:34:37 <Keelhaul> awfully slow for me
15:34:40 <Keelhaul> and it's my own ip lol
15:34:55 <Keelhaul> see that graph?
15:35:00 <Keelhaul> that's the same page but with my servlet
15:35:41 <Keelhaul> could you use that in trunk?
15:35:52 <Keelhaul> it takes the same parameters are the original one, and a few more
15:36:08 <Keelhaul> reads normal and critical ranges from concepts and colors the areas accordingly
15:36:15 <Keelhaul> and you can define the date range
15:36:27 <Keelhaul> so you can hvae one day, or a year
15:36:30 <Keelhaul> for example
15:36:42 <Keelhaul> the current servlet makes it always 1 value per month
15:37:22 <bwolfe> Keelhaul: definitely
15:40:19 <Keelhaul> bwolfe: shall i create a patch or smt?
15:40:39 <bwolfe> Keelhaul: see if there is a ticket out there to improve it
15:40:46 <bwolfe> if not, create a ticket and attach a patch
15:51:09 <Keelhaul> !ticket 1319
15:51:09 <OpenMRSBot> Keelhaul: Ticket #1319: http://dev.openmrs.org/ticket/1319
15:58:07 *** atomicturtle has left #openmrs
16:02:39 *** Echidna_ has quit IRC
16:02:47 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Tickets: Ticket #1319 (enhancement created): Improve observation graph servlet <http://dev.openmrs.org/ticket/1319>
16:03:18 *** jmiranda has joined #openmrs
16:03:18 *** ChanServ sets mode: +o jmiranda
16:03:55 <Keelhaul> hi jmiranda
16:04:01 <Keelhaul> bwolfe: hmm concept search works again..
16:04:03 <Keelhaul> i didnt change anything
16:04:14 <bwolfe> you checked out trunk again
16:04:17 <jmiranda> hey Keelhaul
16:04:18 <bwolfe> or you changed your locale
16:04:38 <Keelhaul> no, the new trunk wasnt uploaded to the dept server, which now works too
16:04:48 <Keelhaul> my locale was english uk as before
16:05:02 <Keelhaul> i hate it when stuff magically fixes itself =/
16:05:35 <bwolfe> its because jmiranda showed up
16:05:54 <Keelhaul> lol
16:06:00 <jmiranda> did somebody say my name?
16:06:18 <Keelhaul> bwolfe: check out the patch, i think i threw out that non-working tooltip code
16:06:22 <Keelhaul> can you put it back in?
16:06:29 <Keelhaul> http://dev.openmrs.org/attachment/ticket/1319/showGraphServletExtended.patch#preview
16:06:33 <OpenMRSBot> <http://ln-s.net/2y+-> (at dev.openmrs.org)
16:06:50 <Keelhaul> line 145+
16:09:23 <bwolfe> Keelhaul: why put in something that doesn't work and is commented out? :-p
16:10:24 <jmiranda> and why do you guys always remove {} !?!?!?!?
16:11:55 <bwolfe> it takes up so much space
16:11:58 <Keelhaul> yea
16:12:02 <bwolfe> those 16 bytes can be used elsewhere
16:12:02 <Keelhaul> 1 line = no need
16:12:18 *** Echidna has joined #openmrs
16:33:13 <Keelhaul> http://angryhosting.mirror.waffleimages.com/files/a8/a8c64ab5c9a61988d541121c686d9b54e6765b1b.jpg
16:33:17 <OpenMRSBot> <http://ln-s.net/2y+l> (at angryhosting.mirror.waffleimages.com)
16:33:19 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7064]: 1.4.x: Added concept_word rows back into the sql create statements <http://dev.openmrs.org/changeset/7064>
16:41:48 *** nribeka2 has quit IRC
16:43:53 *** jops87_ has quit IRC
16:45:03 *** jops87 has joined #openmrs
16:45:52 *** jops87_ has joined #openmrs
16:57:39 *** Echidna has quit IRC
16:58:56 *** jops87_ has quit IRC
17:00:43 *** Echidna has joined #openmrs
17:11:36 *** Keelhaul|afk has joined #openmrs
17:11:57 *** Echidna_ has joined #openmrs
17:13:49 *** Keelhaul has quit IRC
17:31:23 *** Echidna has quit IRC
17:57:48 *** Keelhaul|afk has quit IRC
18:07:35 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Tickets: Ticket #1283 (task closed): Change generate database user in wizard to match database name <http://dev.openmrs.org/ticket/1283#comment:4> || OpenMRS Changesets: Changeset [7065]: Made database user created by the initialization wizard custom to the … <http://dev.openmrs.org/changeset/7065>
18:11:54 *** vindyani has joined #openmrs
18:15:18 <vindyani> i want to deploy the latest trunk in my local machine
18:15:38 <vindyani> can anyone please give me a reference
18:16:08 <vindyani> I m wondering how to set up the data model
18:16:34 <bwolfe> vindyani: did you use the "step by step install for developers" ?
18:16:49 <vindyani> yes, I read it
18:16:56 <vindyani> i use, ant install target
18:17:11 <vindyani> is it right?
18:17:33 <bwolfe> vindyani: yeah, thats one way
18:17:38 <bwolfe> did that not work ?
18:17:47 <vindyani> it gave me
18:17:52 <vindyani> java.io.IOException: Server returned HTTP response code: 401 for URL: http://localhost:8081/manager/deploy?path=%2Fopenmrs
18:18:35 <vindyani> I set roles
18:18:50 <vindyani> in tomcat
18:21:02 <bwolfe> did you restart tomcat ?
18:21:13 <vindyani> yes
18:21:39 <bwolfe> and did you set up your openmrs build properties ?
18:22:34 <vindyani> yes, let me check it again
18:25:46 <bwolfe> vindyani: it should say if it finds the build properties when you first run ant ___
18:26:39 <r0bby> bwolfe: pm
18:29:30 <vindyani> bwolfe: it worked now, I hd done a mistake in OPENMRS_BUILD_PROPERTIES_FILE
18:31:23 <bwolfe> ah
18:31:32 <bwolfe> good find :-)
18:37:26 *** nribeka has joined #openmrs
18:42:22 <vindyani> if ant install target ran successfully, will I be able to go to http://localhost:8081/openmrs/?
18:42:48 <vindyani> without runtime properties file
18:47:27 <bwolfe> yeah
18:47:36 <bwolfe> (@vindyani)
18:48:37 <vindyani> ok
19:06:27 *** vindyani has quit IRC
19:09:46 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7067]: --chica *Add capability to view all encounters for a patient *Add … <http://dev.openmrs.org/changeset/7067> || OpenMRS Tickets: Ticket #1218 (enhancement closed): Switch Security to use SHA-2 <http://dev.openmrs.org/ticket/1218#comment:7> || OpenMRS Changesets: Changeset [7066]: Updated hashing algorithm to use sha512 - #1218 Author: nribeka <http://dev.openmrs.org/changeset/7066>
19:41:47 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7068]: birtmodule: Updated version to reflect inner quote fix made a few weeks … <http://dev.openmrs.org/changeset/7068>
20:13:48 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7069]: in patientmatching module, added class to represent a group of Records … <http://dev.openmrs.org/changeset/7069> || OpenMRS Modules: BirtReportModule 1.8.3 uploaded to OpenMRS Module Repository <https://dev.openmrs.org/modules/view.jsp?module=birt&version=&1.8.3>
20:35:18 *** nribeka1 has joined #openmrs
20:53:43 *** nribeka has quit IRC
20:56:37 *** james_regen has quit IRC
21:17:50 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7072]: chica: changed the require tag to use allPrivileges <http://dev.openmrs.org/changeset/7072> || OpenMRS Tickets: Ticket #415 (task closed): when displaying states in cohort builder, sorting is not intelligent <http://dev.openmrs.org/ticket/415#comment:3> || OpenMRS Changesets: Changeset [7071]: Added natural string sort for program names - #415 Author: wchoi <http://dev.openmrs.org/changeset/7071> || OpenMRS Changesets: Changeset [7070]: Followup fix for openmrs:require tld updates in [7036] and #1222 <http://dev.openmrs.org/changeset/7070>
21:49:54 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Changesets: Changeset [7073]: Fixed concept.getDescription to return locale compatible matches <http://dev.openmrs.org/changeset/7073>
22:25:44 *** bwolfe has quit IRC
22:53:56 <OpenMRSBot> Recent updates in the world of openmrs: OpenMRS Tickets: Ticket #1317 (task closed): Prepare the DevStudio 0.3.1 release <http://dev.openmrs.org/ticket/1317> || OpenMRS Changesets: Changeset [7075]: eclipse tools: update version numbers for the 0.3.1 release - #1317 <http://dev.openmrs.org/changeset/7075> || OpenMRS Changesets: Changeset [7074]: eclipse tools: update version numbers for the 0.3.1 release - #1317 <http://dev.openmrs.org/changeset/7074>