# HG changeset patch # User Tim Englich # Date 1260280362 0 # Node ID c94936b1f4ba1e976c9c979fe05ba9212715c46a # Parent a887074460b60cf202ba382eabde14ec30734cd0 Added the Unit of the Parameter to the Query for Parameters in TimeSeries. Now the Unit will be displaied in the Combobox and in the Diagramm-Axis-Description. gnv-artifacts/trunk@404 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r a887074460b6 -r c94936b1f4ba gnv-artifacts/ChangeLog --- a/gnv-artifacts/ChangeLog Tue Dec 08 13:38:21 2009 +0000 +++ b/gnv-artifacts/ChangeLog Tue Dec 08 13:52:42 2009 +0000 @@ -1,5 +1,11 @@ 2009-12-08 Tim Englich + * doc/conf/queries.properties: + Added the Unit of the Parameter to the Query for Parameters in + TimeSeries. Now teh Unit will be displaied in the Combobox and + in the Diagramm-Axis-Description. + +2009-12-08 Tim Englich * src/main/java/de/intevation/gnv/transition/profile: Removed empty needless package. * src/main/java/de/intevation/gnv/transition/TransitionFactory.java: diff -r a887074460b6 -r c94936b1f4ba gnv-artifacts/doc/conf/queries.properties --- a/gnv-artifacts/doc/conf/queries.properties Tue Dec 08 13:38:21 2009 +0000 +++ b/gnv-artifacts/doc/conf/queries.properties Tue Dec 08 13:52:42 2009 +0000 @@ -30,7 +30,8 @@ timeseries_parameter=SELECT DISTINCT \ p.PARAMETERID KEY, \ - p.GERMANNAME VALUE \ + p.GERMANNAME || ' ['|| p.UNIT ||']' VALUE, \ + p.GERMANNAME \ FROM MEDIAN.PARAMETER P, \ MEDIAN.TIMESERIES TS, \ MEDIAN.TIMESERIESVALUE TSV, \