diff --git a/cave/com.raytheon.viz.feature.awips.developer/feature.xml b/cave/com.raytheon.viz.feature.awips.developer/feature.xml index 69ce4da077..eff709858a 100644 --- a/cave/com.raytheon.viz.feature.awips.developer/feature.xml +++ b/cave/com.raytheon.viz.feature.awips.developer/feature.xml @@ -209,6 +209,14 @@ id="com.raytheon.uf.viz.aviation.advisory.feature" version="0.0.0"/> + + + + diff --git a/cave/com.raytheon.viz.gfe/localization/gfe/userPython/gfeConfig/gfeConfig.py b/cave/com.raytheon.viz.gfe/localization/gfe/userPython/gfeConfig/gfeConfig.py index 02e6474151..189838d0db 100644 --- a/cave/com.raytheon.viz.gfe/localization/gfe/userPython/gfeConfig/gfeConfig.py +++ b/cave/com.raytheon.viz.gfe/localization/gfe/userPython/gfeConfig/gfeConfig.py @@ -222,7 +222,7 @@ PublishTimes = ['Today', 'Tonight', 'Tomorrow', 'Tomorrow Night', 'Day 3', # Defines the initial loaded set of map backgrounds. The name of each # background should match the name (without ".xml") of a map file in the # CAVE/Bundles/maps directory under the Localization perspective. -MapBackgrounds_default = ['States','CWA'] +MapBackgrounds_default = ['statesCounties','CWA'] # Specific Colors for a map background # The user may specify a specific color to be used for a map background, diff --git a/cave/com.raytheon.viz.gfe/plugin.xml b/cave/com.raytheon.viz.gfe/plugin.xml index 97ff77e032..6571126559 100644 --- a/cave/com.raytheon.viz.gfe/plugin.xml +++ b/cave/com.raytheon.viz.gfe/plugin.xml @@ -1039,7 +1039,7 @@ name="Grid Manager" /> - + diff --git a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/GfeClient.java b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/GfeClient.java index 109f0d690d..90d2ebbfbb 100644 --- a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/GfeClient.java +++ b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/GfeClient.java @@ -72,6 +72,7 @@ import com.raytheon.viz.ui.personalities.awips.AbstractAWIPSComponent; * Apr 26, 2015 4259 njensen Updated for new JEP API * May 20, 2015 4509 njensen Added time and dataaccess to include path * Apr 28, 2016 5236 njensen Use Jep redirectOutput for python prints + * Jul 19, 2017 ---- mjames@ucar Add common python include path. * * * @@ -119,6 +120,7 @@ public class GfeClient extends AbstractAWIPSComponent { boolean includeUser = (!VizApp.getWsId().getUserName().equals("SITE")); String includePath = PyUtil.buildJepIncludePath(true, utilityDir, + PythonIncludePathUtil.getCommonPythonIncludePath(), PythonIncludePathUtil.getCommonPythonIncludePath("time", "dataaccess"), GfePyIncludeUtil .getCommonGfeIncludePath(), GfePyIncludeUtil diff --git a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/smarttool/script/SmartToolFactory.java b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/smarttool/script/SmartToolFactory.java index 572a04d7c0..168212334a 100644 --- a/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/smarttool/script/SmartToolFactory.java +++ b/cave/com.raytheon.viz.gfe/src/com/raytheon/viz/gfe/smarttool/script/SmartToolFactory.java @@ -38,10 +38,11 @@ import com.raytheon.viz.gfe.core.DataManager; * Date Ticket# Engineer Description * ------------ ---------- ----------- -------------------------- * Mar 21, 2008 njensen Initial creation - * Jul 9, 2009 2454 ryu Put user and site's python scripts on path for import + * Jul 09, 2009 2454 ryu Put user and site's python scripts on path for import * May 20, 2015 4509 njensen Added time and dataaccess to include path * Jul 23, 2015 4263 dgilling Refactored to support changes to SmartToolController. * Dec 14, 2015 4816 dgilling Support refactored PythonJobCoordinator API. + * Jul 19, 2017 ---- mjames@ucar Add common python include path. * * * @@ -69,6 +70,7 @@ public abstract class SmartToolFactory protected static String getIncludePath() { return PyUtil.buildJepIncludePath(PythonIncludePathUtil + .getCommonPythonIncludePath(), PythonIncludePathUtil .getCommonPythonIncludePath("time", "dataaccess"), GfePyIncludeUtil.getVtecIncludePath(), GfePyIncludeUtil .getCommonGfeIncludePath(), GfePyIncludeUtil