Mercurial > dive4elements > river
changeset 2903:f05f5586f5fd
Added chart and export titles for sq relation in MINFO
flys-client/trunk@4662 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Thu, 14 Jun 2012 13:38:35 +0000 |
parents | 82043c09a659 |
children | e740c43e6f5b |
files | flys-client/ChangeLog flys-client/pom.xml flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.java flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.properties flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_de.properties flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_en.properties flys-client/src/main/java/de/intevation/flys/client/client/config.xml flys-client/src/main/webapp/WEB-INF/web.xml |
diffstat | 8 files changed, 48 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/flys-client/ChangeLog Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/ChangeLog Thu Jun 14 13:38:35 2012 +0000 @@ -1,3 +1,11 @@ +2012-06-14 Ingo Weinzierl <ingo@intevation.de> + + * src/main/java/de/intevation/flys/client/client/FLYSConstants_en.properties, + src/main/java/de/intevation/flys/client/client/FLYSConstants.properties, + src/main/java/de/intevation/flys/client/client/FLYSConstants_de.properties, + src/main/java/de/intevation/flys/client/client/FLYSConstants.java: Added + chart and export titles for sq relation calculation in MINFO. + 2012-06-14 Raimund Renkert <raimund.renkert@intevation.de> * src/main/java/de/intevation/flys/client/client/ui/fixation/FixEventSelect.java:
--- a/flys-client/pom.xml Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/pom.xml Thu Jun 14 13:38:35 2012 +0000 @@ -129,6 +129,9 @@ <hostedWebapp>target/www</hostedWebapp> <!-- Ask GWT to create the Story of Your Compile (SOYC) (gwt:compile) --> <soyc>true</soyc> + <port>8881</port> + <codeServerPort>9991</codeServerPort> + <logLevel>INFO' -bindAddress 0.0.0.0 -codeServerPort 9991 -logLevel 'INFO</logLevel> </configuration> </plugin>
--- a/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.java Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.java Thu Jun 14 13:38:35 2012 +0000 @@ -495,6 +495,20 @@ String bedheight_middle_export(); + String sq_relation_a(); + + String sq_relation_b(); + + String sq_relation_c(); + + String sq_relation_d(); + + String sq_relation_e(); + + String sq_relation_f(); + + String sq_relation_export(); + // ERRORS String error_read_minmax_values();
--- a/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.properties Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants.properties Thu Jun 14 13:38:35 2012 +0000 @@ -198,6 +198,13 @@ flow_velocity_export = Flow Velocity Export bedheight_middle = Middle Bed Height bedheight_middle_export = Middle Bed Height Export +sq_relation_a = A Feinkornanteil +sq_relation_b = B Sand (Suspensionstransport) +sq_relation_c = C Sand (Geschiebetransport) +sq_relation_d = D Fein- und Mittelkies +sq_relation_e = E Grobkornanteil (> Mittelkies) +sq_relation_f = F Geschiebetransport Gesamt +sq_relation_export = SQ Export cross_section = Cross Section cross_sections = Cross Sections w_differences = Differences
--- a/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_de.properties Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_de.properties Thu Jun 14 13:38:35 2012 +0000 @@ -198,6 +198,13 @@ flow_velocity_export = Flie\u00dfgeschwindigkeiten Export bedheight_middle = Mittlere Sohlh\u00f6he bedheight_middle_export = Mittlere Sohlh\u00f6he Export +sq_relation_a = A Feinkornanteil +sq_relation_b = B Sand (Suspensionstransport) +sq_relation_c = C Sand (Geschiebetransport) +sq_relation_d = D Fein- und Mittelkies +sq_relation_e = E Grobkornanteil (> Mittelkies) +sq_relation_f = F Geschiebetransport Gesamt +sq_relation_export = SQ Export cross_section = Querprofil cross_sections = Querprofile w_differences = Differenzen
--- a/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_en.properties Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/FLYSConstants_en.properties Thu Jun 14 13:38:35 2012 +0000 @@ -199,6 +199,13 @@ flow_velocity_export = Flow Velocity Export bedheight_middle = Middle Bed Height bedheight_middle_export = Middle Bed Height Export +sq_relation_a = A Feinkornanteil +sq_relation_b = B Sand (Suspensionstransport) +sq_relation_c = C Sand (Geschiebetransport) +sq_relation_d = D Fein- und Mittelkies +sq_relation_e = E Grobkornanteil (> Mittelkies) +sq_relation_f = F Geschiebetransport Gesamt +sq_relation_export = SQ Export cross_section = Cross Section cross_sections = Cross Sections w_differences = Differences
--- a/flys-client/src/main/java/de/intevation/flys/client/client/config.xml Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/java/de/intevation/flys/client/client/config.xml Thu Jun 14 13:38:35 2012 +0000 @@ -1,5 +1,5 @@ <config> - <server>http://localhost:8181</server> + <server>http://localhost:1610</server> <projectlist> <!-- The interval to update the user's projects (in ms) -->
--- a/flys-client/src/main/webapp/WEB-INF/web.xml Thu Jun 14 10:51:08 2012 +0000 +++ b/flys-client/src/main/webapp/WEB-INF/web.xml Thu Jun 14 13:38:35 2012 +0000 @@ -7,7 +7,7 @@ <context-param> <param-name>server-url</param-name> - <param-value>http://localhost:8181</param-value> + <param-value>http://localhost:1610</param-value> </context-param> <!-- Servlets -->