Saturday, April 24, 2010
Back and Forth, but Almost Done
Sunday, April 18, 2010
Done. (?)
Sunday, April 11, 2010
Image handling
Saturday, April 3, 2010
Inching closer
The other thing left to do was deal with generating a thumbnail version of an image. We thought we actually had some code to make this happen, but it hasn't quite worked yet. I think we are close because we finally have a handle on how things are saved and somewhat of an idea of how to scale an image. Bottom line: we are getting closer.
Monday, March 15, 2010
Custom Tag
We are planning on generating a thumbnail version of a given image on the fly in this tag's class. Getting the image data from the obs and generating a thumbnail isn't actually that hard, but the issue we are having is how to save it to the file system and how to access it later. We figured out that the thumbnail should be able to be accessed using the obsId parameter and the view parameter when calling the get obs method in the servlet.
Sunday, March 7, 2010
The MVC Architecture Confuses Me.
Elisee was able to edit some Java code and it changed what was displayed on the webpage when that method was called. We still aren't sure how to apply that to what we need.
I found the controller that handles the requests for an image in a complex observation. It is the WebImageHandler class (extends ImageHandler). When getObs() is called it sets a new instance of ComplexData to the name of the obs passed in and gives it a String value of either the HTML view (an img tag) or the Hyperlink view. The view returned is decided by a parameter passed into the method. This seems like it would be the spot we would want to place a third htmlpreview option, but I'm not sure. It seems like this would make sense for images, but does not help us for complex obs that aren't images. I'm still not sure exactly how to access this. In the obsForm.jsp page they use ${htmlView} or ${hyperlinkView} to get the view that they need. This same thing cannot be used on the encounterDisplay.jsp page because ${htmlView} returns the html view for that encounter page. I don't know how to tell it we are wanting the html view of the current observation.
After what we thought was a lot of progress, these past 2 weeks have been spent digging through code and reading tons. We are still trying to determine the right way to complete this "introductory" project.
Sunday, February 28, 2010
"This probably makes the ticket considerably more complex."
So now we have to go back and figure out how to add an AbstractHandler class and the ComplexObsHandler interface. The problem we are having right now is trying to figure out how to get to the methods from the jsp pages. We really don't know how they access methods from the jsp. The other problem is trying to figure out how the html is actually generated. Hopefully, Josh will figure this out for all of us ha...
Saturday, February 20, 2010
Finally getting somewhere...
I feel like we are finally getting somewhere. Now that we figured out what files we were working with, we are actually getting somewhere with the ticket. After spending some time trying to figure out jsp syntax, I finally got the conditional statement to work.
We were just trying to figure out how to test the obs as the page was looping through them to see if they were of the complex datatype.The first issue with that was that we didn't know how to write a conditional statement in jsp. We found out that an if/else statement is actually written as a when/otherwise statement.
So after we figured out the syntax, we had to figure out how to test for a complex datatype. I found out that each concept has an integer variable called conceptDatatypeId, and that (as far as I can tell) complex datatypes hold the integer value 13. I have been trying to get on IRC to make sure that my assumptions are correct, but I haven't been able to get anyone on there yet.
The issue that I think I have now is that this value (13) is the same regardless of what type of complex datatype (image or text). So I think that I'm going to have to find another way to test the obs.
I also found some good code for a popup preview image. I got it implemented (after fighting with it for a while!), but I'm not even sure that it's exactly what we want. I have it set to popup the image when you hover over the small note (note icon now, we need a small pic icon or something) icon. Also, the value is a link to the data the observation holds. This is what they basically wanted; now we just need to iron out a few of these issues.
The other issue that we have is how to handle thumbnails/preview images. The ticket mentions that they wanted a preview/thumbnail to popup (right now the popup shows the picture (original size)). So I know Dr. Matocha mentioned that we might have to figure out how to generate a re-sized thumbnail version as the image is uploaded. Honestly, I haven't the first clue on how to do this. I spent some time reading through the image handler class, and I kind of understand what is going on but not completely.
To do:
1. Figure out how to test for which handler the complex datatype uses
2. Figure out how to generate a thumbnail when an image is uploaded
3. Make a small icon to replace the note icon
Monday, February 15, 2010
So I guess I'm a little slow...
I also spent some time messing around with XForms because I thought that I had to make a form in there that could handle complex datatypes. I was able to figure the complex obs in there also, but I went back and looked at our ticket and I don't think it is referring to XForms at all anyways.
Now, I'm trying to figure out where in the actual code we need to be working for our project. If it were just editing the HTML and JavaScript of a website, it would be super easy to do. I'm just a little confused about where to find the part we need to be working on (and a little confused about jsp).
Friday, February 5, 2010
Why is this not working???
We also can't seem to add a patient at all. Attempting to add someone just takes us to a blank page and doesn't actually do anything. We haven't really been able to move forward with our project because we can't get into the program and actually see how to add a complex obs. Hopefully by Monday they will have this bug fixed and we will be able to start digging into adding an x-ray or whatever for a patient.
Sunday, January 31, 2010
Project 1
We are now just trying to figure out how to jump into a project that is as big as OpenMRS. I feel a little lost looking at the size of the project and the number of documents and modules you have to go through to find what you need. I'm excited about this project; it'll be fun to really get started.
Saturday, January 23, 2010
All Software Should Be Free...
The documentary Revolution OS seemed to have some interesting characters with some far out ideas, but it is an interesting history on the origin and development of open source software. One of these "characters" was Richard Stallman. He believes that all software should be free. He does not thing that there is a place for proprietary software at all. Personally, this is a little far-fetched. While it would be nice if everyone was willing to share their work; it is unrealistic. Free/open source software definitely has its place, but I think that proprietary software is a good thing too.
I thought that it was also interesting that the guys in the software engineer industry were shocked that this collaborative development style worked at all. They said that everything up to that point indicated that developing software this way would not work. The concept is intriguing; people from all over working together.
OpenMRS…
Elisee and I are looking into working on the complex observation list in OpenMRS. This ticket involves displaying links to the appropriate data held in the list. We found out complex obs are any observations that do not fit in the normal obs table. This might include narrative reports, images, or sounds. Part of this will be to make a popup div that shows a preview of the picture.