Branch: refs/heads/8.6.x
Home:
https://github.com/Teiid-Designer/teiid-designer
Commit: 9d9e59d1f1f48a8ab185602d8aa737e1079f9761
https://github.com/Teiid-Designer/teiid-designer/commit/9d9e59d1f1f48a8ab...
Author: Paul Richardson <p.g.richardson(a)redhat.com>
Date: 2015-03-30 (Mon, 30 Mar 2015)
Changed paths:
M
plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/version/spi/TeiidServerVersion.java
Log Message:
-----------
Fixes teiid server version testing
* Comparisons have been historically lexographical and this fails when
testing, for example 8.2 against 8.10, as "2" is bigger than "10".
* Need to try and parse numerically first and compare and fallback to
lexographical comparison if parsing fails
Commit: 23b0ede597744185a15bac0b4533a76098b86698
https://github.com/Teiid-Designer/teiid-designer/commit/23b0ede597744185a...
Author: blafond <blafond(a)redhat.com>
Date: 2015-03-30 (Mon, 30 Mar 2015)
Changed paths:
M
plugins/org.teiid.designer.modelgenerator.wsdl.ui/src/org/teiid/designer/modelgenerator/wsdl/ui/Messages.java
M
plugins/org.teiid.designer.modelgenerator.wsdl.ui/src/org/teiid/designer/modelgenerator/wsdl/ui/messages.properties
M
plugins/org.teiid.designer.modelgenerator.wsdl.ui/src/org/teiid/designer/modelgenerator/wsdl/ui/wizards/soap/WsdlDefinitionPage.java
Log Message:
-----------
TEIIDDES-2452 added message dialog to show successful wsdl validation.
Commit: 8f56a3b7555c151ee9273ccd7f857ee365063de3
https://github.com/Teiid-Designer/teiid-designer/commit/8f56a3b7555c151ee...
Author: Paul Richardson <p.g.richardson(a)redhat.com>
Date: 2015-03-30 (Mon, 30 Mar 2015)
Changed paths:
M plugins/org.teiid.designer.core/src/org/teiid/designer/core/ModelerCore.java
M plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/i18n.properties
M
plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/SetDefaultServerAction.java
M
plugins/org.teiid.designer.dqp.ui/src/org/teiid/designer/runtime/ui/server/editor/TeiidServerEditor.java
M plugins/org.teiid.designer.spi/schema/teiidRuntimeClient.exsd
M plugins/org.teiid.designer.spi/src/org/teiid/designer/messages.properties
M
plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/registry/TeiidRuntimeRegistry.java
M
plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/spi/IExecutionAdminFactory.java
M
plugins/org.teiid.designer.spi/src/org/teiid/designer/runtime/version/spi/TeiidServerVersion.java
M plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/i18n.properties
M
plugins/org.teiid.designer.ui/src/org/teiid/designer/ui/preferences/DefaultTeiidServerPreferenceContributor.java
M plugins/teiid/org.teiid.runtime.client/plugin.xml
M
plugins/teiid/org.teiid.runtime.client/src/org/teiid/runtime/client/admin/ExecutionAdminFactory.java
M
tests/org.teiid.designer.query.ui.test/src/org/teiid/query/ui/sqleditor/component/TestDisplayNodeFactory.java
M
tests/org.teiid.designer.schema.tools.test/src/org/teiid/designer/schema/tools/NameUtilTest.java
M
tests/org.teiid.designer.transformation.test/src/org/teiid/designer/transformation/aspects/validation/rules/TestMappingClassTransformationValidationHelper.java
Log Message:
-----------
TEIIDDES-2459: Minimal support for unsupported Teiid versions
* Allows connection to later versions of teiid instance than that
explicitly supported and tested by Designer.
* teiidRuntimeClient.exsd
* plugin.xml
* Since there is only 1 teiid plugin that covers multiple teiid versions,
makes little sense to mandate the versions in the plugin extension point
* TeiidRuntimeRegistry
* Registers the admin factory without mapping to teiid versions
* Search method attempts to find a factory with FULL support for the given
version then falls back to finding a factory with only WORKS support
* getSupportedVersions simply returns a list of values from the
ITeiidServerVersion.Version enum, which illustrates the supported and
tested versions
* SetDefaultServerAction
* Checks the level of support of the server and asks the user if they
wish to continue to set the server as default if not supported.
Compare:
https://github.com/Teiid-Designer/teiid-designer/compare/a0e27a8f30cb...8...