[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4567: Fixed in showing the feedback message when exporting PDF in list page.

2011-09-12 Thread noreply
revno: 4567 committer: Hieu hieu.hispviet...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 13:19:59 +0700 message: Fixed in showing the feedback message when exporting PDF in list page. modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4568: Codestyle

2011-09-12 Thread noreply
revno: 4568 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 10:29:53 +0200 message: Codestyle modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4569: Codestyle

2011-09-12 Thread noreply
revno: 4569 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 11:13:33 +0200 message: Codestyle modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4570: Export to PDF - Fixed NPE.

2011-09-12 Thread noreply
revno: 4570 committer: Hieu hieu.hispviet...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 16:15:08 +0700 message: Export to PDF - Fixed NPE. modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4571: tostring

2011-09-12 Thread noreply
Merge authors: Lars Helge Øverland (larshelge) revno: 4571 [merge] committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 11:32:43 +0200 message: tostring modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4572: Reverted r 4566

2011-09-12 Thread noreply
revno: 4572 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 12:48:50 +0200 message: Reverted r 4566 modified:

[Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Muhire Andrew
Dear all, how can i delete a data element with data inside? On Thu Sep 8th, 2011 1:03 AM PDT Lars Helge Øverland wrote: Hi all, since DHIS 2.4 was released on Aug 28. it has been used in production in Kenya and Ghana. In that regard we have received lots of feedback and done a range of

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 384: 1) Alterations to XSL stylesheet to produce PDFs with blue/underlined links 2) Altered links in G...

2011-09-12 Thread noreply
revno: 384 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 14:04:23 +0200 message: 1) Alterations to XSL stylesheet to produce PDFs with blue/underlined links 2)

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Lars Helge Øverland
Hi Andrew, you need to remove the data with SQL in the database. Run: delete from datavalue_audit where dataelementid=id; delete from datavalue where dataelementid=id; and replace id with the dataelementid of the one you want to remove. You can then go ahead and delete the data element in the

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Knut Staring
As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need. In this case: select * from datavalue_audit where dataelementid=id; select * from datavalue where dataelementid=id; Knut 2011/9/12 Lars Helge Øverland

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Muhire Andrew
Thanx Lars for the quick help.   Muhire Andrew HMIS/Ministry of Health andrew.muh...@moh.gov.rw God is my provider. From: Lars Helge Øverland larshe...@gmail.com To: Muhire Andrew muhireand...@yahoo.com Cc:

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Muhire Andrew
Thank you all, Great Knut its rilly good to select first and then delete because it can cause problems in case i delete  the needed data.   Muhire Andrew HMIS/Ministry of Health andrew.muh...@moh.gov.rw God is my provider.

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Jason Pickering
It is best practice in all cases to ensure to you make a backup of your database. Even with SELECT and DELETE, you may unknowingly make a typing mistake. Anytime you start messing around with the database directly, ensure you first make a backup, so that you can easily restore the database in case

Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

2011-09-12 Thread Muhire Andrew
Thanks for the quick help, i have successfully used the select and delete steps(in datavalues and datavalue_audit) but using replace id is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 4573: Replaced deprecated method

2011-09-12 Thread noreply
revno: 4573 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Mon 2011-09-12 16:39:31 +0200 message: Replaced deprecated method modified:

[Dhis2-devs] help me on how to use replaceid syntax

2011-09-12 Thread Muhire Andrew
Thanks for the quick help, i have successfully used the select and delete steps(in datavalues and datavalue_audit) but using replace id is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step

Re: [Dhis2-devs] help me on how to use replaceid syntax

2011-09-12 Thread Jason Pickering
Can you paste the exact query which you are using? On Mon, Sep 12, 2011 at 5:04 PM, Muhire Andrew muhireand...@yahoo.comwrote: Thanks for the quick help, i have successfully used the select and delete steps (in datavalues and datavalue_audit) but using replace id is not working on my side

Re: [Dhis2-devs] help me on how to use replaceid syntax

2011-09-12 Thread Knut Staring
Hi Andrew, There seems to be some confusion: You need to replace in the SQL statement before you run it. In order to find the right ID that should form part of the DELETE statement, you need to look at the dataelement table in your database, and e.g. run something like SELECT dataelementid FROM

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 386: Fixed issue with admonition graphics not appearing correctly in the documentation.

2011-09-12 Thread noreply
revno: 386 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 17:09:55 +0200 message: Fixed issue with admonition graphics not appearing correctly in the documentation.

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Friedman, Roger (CDC/CGH/DGHA) (CTR)
Answers interleaved. Is there some chance that there is a machine-specific feature, e.g. something that uses the CPUID or IP address as a seed for encryption, that might make dump and restore not work? -Original Message- From: Morten Olav Hansen [mailto:morte...@gmail.com] Sent:

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Olav Poppe
Hi, have you tried with the latest DHIS 2.4? Den 12. sep. 2011 kl. 15:27 skrev Friedman, Roger (CDC/CGH/DGHA) (CTR): Answers interleaved. Is there some chance that there is a machine-specific feature, e.g. something that uses the CPUID or IP address as a seed for encryption, that might make

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Lars Helge Øverland
Also can you confirm Morten's point about having multiple WARs in your tomcat webapp folder? ___ Mailing list: https://launchpad.net/~dhis2-devs Post to : dhis2-devs@lists.launchpad.net Unsubscribe : https://launchpad.net/~dhis2-devs More help :

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Friedman, Roger (CDC/CGH/DGHA) (CTR)
Only one war, only one corresponding directory -Original Message- From: Lars Helge Øverland [mailto:larshe...@gmail.com] Sent: Monday, September 12, 2011 11:56 AM To: Olav Poppe Cc: Friedman, Roger (CDC/CGH/DGHA) (CTR); dhis2-devs@lists.launchpad.net Subject: Re: [Dhis2-devs] DHIS2

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Olav Poppe
2.3 or 2.4? Den 12. sep. 2011 kl. 16:11 skrev Friedman, Roger (CDC/CGH/DGHA) (CTR): Only one war, only one corresponding directory -Original Message- From: Lars Helge Øverland [mailto:larshe...@gmail.com] Sent: Monday, September 12, 2011 11:56 AM To: Olav Poppe Cc: Friedman,

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Morten Olav Hansen
Only one war, only one corresponding directory Ok, tomcat seems to think that there should be jars/resource in the webapps/dhis2 directory, and you seem to be deploying as dhis.war, correct? and so, you have only a dhis directory. You should try and find the reference to webapps/dhis2 in your

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Knut Staring
Maybe just try renaming both the dhis folder and the war file to dhis2? On Mon, Sep 12, 2011 at 7:41 PM, Morten Olav Hansen morte...@gmail.comwrote: Only one war, only one corresponding directory Ok, tomcat seems to think that there should be jars/resource in the webapps/dhis2 directory,

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 387: Putting some alternate code for admonitions which is commented out, but want to put it here other...

2011-09-12 Thread noreply
revno: 387 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 19:57:27 +0200 message: Putting some alternate code for admonitions which is commented out, but want to put

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 388: Added a bit of info on data element number types.

2011-09-12 Thread noreply
revno: 388 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 20:11:43 +0200 message: Added a bit of info on data element number types. modified:

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 389: Fixed a bunch of images whose width had not been specified.

2011-09-12 Thread noreply
revno: 389 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 20:35:42 +0200 message: Fixed a bunch of images whose width had not been specified. modified:

Re: [Dhis2-devs] [Dhis2-users] Dear Dhis2 users how can i delete?

2011-09-12 Thread Ola Hodne Titlestad
Hi, The only two commands you should run on your database are the two delete statements; delete from datavalue_audit where dataelementid=id; delete from datavalue where dataelementid=id; Replace is not a command, just Lars telling you to change the id in the two commands above with the real IDs

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 390: Fixed some images which were not referenced properly.

2011-09-12 Thread noreply
revno: 390 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 20:51:13 +0200 message: Fixed some images which were not referenced properly. renamed:

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 391: Quickly fixed.

2011-09-12 Thread noreply
revno: 391 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Mon 2011-09-12 21:01:25 +0200 message: Quickly fixed. modified: src/docbkx/en/dhis2_user_man_data_entry.xml --

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Bob Jolliffe
On 12 September 2011 18:41, Morten Olav Hansen morte...@gmail.com wrote: Only one war, only one corresponding directory Ok, tomcat seems to think that there should be jars/resource in the webapps/dhis2 directory, and you seem to be deploying as dhis.war, correct? and so, you have only a dhis

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Jo Størset
Hi, I might have missed something here, but it does look fairly obvious that you are running openmrs in this tomcat instance? If it is actually the case that you are running with pergen space of 1024m, that shouldn't be enough to fill up perm gen, but I see things like The duplicate

Re: [Dhis2-devs] DHIS2 continues to bomb

2011-09-12 Thread Bob Jolliffe
On 12 September 2011 20:45, r.fried...@mindspring.com wrote: OK, the list of files under Tomcat 6.0 containing the text DHIS2 is attached.  I cleared out DHIS directories from Tomcat 6.0\ in -- conf\Catalina\localhost -- work\Catalina\localhost -- webapps (+dhis.war) I started Tomcat

Re: [Dhis2-devs] [Dhis2-users] Dear Dhis2 users how can i delete?

2011-09-12 Thread Muhire Andrew
Great, thanks Ola for the clarification. On Mon Sep 12th, 2011 11:58 AM PDT Ola Hodne Titlestad wrote: Hi, The only two commands you should run on your database are the two delete statements; delete from datavalue_audit where dataelementid=id; delete from datavalue where dataelementid=id;

[Dhis2-devs] [Branch ~dhis2-documenters/dhis2/dhis2-docbook-docs] Rev 392: Minor cleanups in XSL, mydatamart and gis doc.

2011-09-12 Thread noreply
revno: 392 committer: Jason P. Pickering jason.p.picker...@gmail.com branch nick: dhis2-docbook-docs timestamp: Tue 2011-09-13 07:24:36 +0200 message: Minor cleanups in XSL, mydatamart and gis doc. modified: