Re: [Dhis2-devs] Error on DHIS startup

2015-02-10 Thread Lars Helge Øverland
Hi Sandesh, I have never seen this error and cannot reproduce locally with latest trunk. Anyone seen this? Could it be an accident on your side? Try to add the uid column manually with ALTER TABLE dashboard ADD COLUMN uid character varying(11); then restart dhis - should populate the uids.

Re: [Dhis2-devs] Dhis2 2.16 last revision Single event without registration event page list prob

2015-02-10 Thread Abyot Gizaw
Hello Fatema, The feature to sort events is now implemented - the latest ones come on-top. Please update to latest 2.16 (revision: 16593) --- Thank you, Abyot. On Tue, Feb 10, 2015 at 12:14 PM, Uddin Fatema fatema...@gmail.com wrote: Dear All, We are using dhis2 2.16 revision:16592, In

Re: [Dhis2-devs] DHIS2 - Error message when saving event report as favorite

2015-02-10 Thread Lars Helge Øverland
Hi Robin, the problem is that you have boolean fields in the eventreport table with null values, which crashes when dhis tries to convert it into a java primitive. Try running this SQL on your db: update eventreport set rowsubtotals = false where rowsubtotals is null; If it still fails, try

Re: [Dhis2-devs] Error on DHIS startup

2015-02-10 Thread Dan Cocos
Could it be that in hibernate.properties hibernate.hbm2ddl.auto = update is set to something else? On Feb 10, 2015, at 10:54 AM, Lars Helge Øverland larshe...@gmail.com wrote: Hi Sandesh, I have never seen this error and cannot reproduce locally with latest trunk. Anyone seen this?

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18215: ER EV GIS support for booleans, work in progress.

2015-02-10 Thread noreply
Merge authors: Jan Henrik Øverland (janhenrik-overland) revno: 18215 [merge] committer: Jan Henrik Overland janhenrik.overl...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 17:13:15 +0100 message: ER EV GIS support for

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18216: Reimplement setting of read property for single message conversation through POST to uid/read a...

2015-02-10 Thread noreply
revno: 18216 committer: Halvdan Hoem Grelland halvda...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 17:46:23 +0100 message: Reimplement setting of read property for single message conversation through POST to uid/read and

Re: [Dhis2-devs] how to translate the new version of DHIS2?

2015-02-10 Thread easy
I just add this in findProjects(ModuleNode node, File path) in ResourceManager, can get all module's properties file. else if (files[i].getName().equals(manifest.webapp)) { ModuleNode newNode = new ModuleNode();

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18217: TrackedEntityAttribute, consistent variable naming

2015-02-10 Thread noreply
revno: 18217 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 19:09:22 +0100 message: TrackedEntityAttribute, consistent variable naming modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18219: CSV import, added support for option set for data elements

2015-02-10 Thread noreply
revno: 18219 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 19:54:50 +0100 message: CSV import, added support for option set for data elements modified:

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18220: Import, minor

2015-02-10 Thread noreply
revno: 18220 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 19:59:20 +0100 message: Import, minor modified:

Re: [Dhis2-devs] Is it possible to change the passwd of the users using the API??

2015-02-10 Thread Jose Garcia Muñoz
Thanks for the clarification. Unfortunately it is still not working (likely because I am doing something wrong). So the call to the API that I tried is: api/users/zNdlm77vil8/userCredentials and the payload: { password: the_new_passwd, id: AMuabF1Lrct, (the id of the user credentials)

[Dhis2-devs] [Branch ~dhis2-devs-core/dhis2/trunk] Rev 18218: Event analytics, impl better dimension value type info in response

2015-02-10 Thread noreply
revno: 18218 committer: Lars Helge Overland larshe...@gmail.com branch nick: dhis2 timestamp: Tue 2015-02-10 19:40:27 +0100 message: Event analytics, impl better dimension value type info in response added:

Re: [Dhis2-devs] Unable to create dashboards on latest revision of trunk.

2015-02-10 Thread Morten Olav Hansen
This is probably related to the other TW bug reported on this list? If dashboards don't have UIDs, it will fail. If its not, can you at least confirm that dashboard table contains the UID column? -- Morten On Wed, Feb 11, 2015 at 1:27 PM, Mansi Singhal msing...@thoughtworks.com wrote: Hello,

[Dhis2-devs] [Bug 1420646] Re: tracker capture - optionsets at the end of sections getting clipped

2015-02-10 Thread Markus Bekken
** Description changed: Tested with tracker capture and a program using sections to divide the input fields. When placing a field with an option set in the form, the option set itself is getting displayed as a drop down with the eligable values when cliking into the field. If the option

[Dhis2-devs] [Bug 1420646] [NEW] tracker capture - optionsets at the end of sections getting clipped

2015-02-10 Thread Markus Bekken
Public bug reported: Tested with tracker capture and a program using sections to divide the input fields. When placing a field with an option set in the form, the option set itself is getting displayed as a drop down with the eligable values when cliking into the field. If the option set field is

[Dhis2-devs] Unable to create dashboards on latest revision of trunk.

2015-02-10 Thread Mansi Singhal
Hello, We are on the latest revision(18220) of dhis-trunk. We are facing issues creating dashboard. We tried debugging the code and had seen that method with signature: *ListT getByUid( CollectionString uids ) [Line no: 436]* is throwing an exception while returning a list. *That is, return

Re: [Dhis2-devs] Is it possible to change the passwd of the users using the API??

2015-02-10 Thread Morten Olav Hansen
Hi No, this will not work.. as listed in the docs you need to also use the same property name in your JSON, so it should be: { userCredentials: { ... same as before } } -- Morten On Wed, Feb 11, 2015 at 2:12 AM, Jose Garcia Muñoz josem...@gmail.com wrote: Thanks for the clarification.

Re: [Dhis2-devs] [Dhis2-users] DHIS name change

2015-02-10 Thread wanjala pepela
Thanks Simon, I support the idea of dropping D to remain HIS which is applicable a cross as well as Health information resources from different information sources which the current system can do PEPELA WANJALAMINISTRY OF HEALTH HEADQUARTERSHEALTH SECTOR MONITORING EVALUATION - AMRO- KENYA