This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/sis.git.
from 39d1bd9 Ignore a test that depends on a shapefile removed from
history. See https://issues.apache.org/jira/browse/SIS-422
new 94afe6c Copy the sis-javafx module from geoapi-3.1 branch. That
module was excluded from master when we were targeting JDK7 (which is no longer
the case).
add 4bf37fd Replace the "1.0-jdk8-SNAPSHOT" version number by
"dev-1.0-SNAPSHOT". This version renaming is a consequence of the branch
renaming, from "JDK8" to "geoapi-4.0".
add dae7e95 Renamed the NetBeans project from "Apache SIS on JDK8" to
"Apache SIS on GeoAPI 4.0".
add 4b40f64 Tuning: netbeans project configuration, serialVersionUID of
objects that are different between branches.
add 3e7278c Replace reference to trunk by reference to master, and avoid
reference to JDK8 branch.
add 6937949 Ignore a test that depends on a shapefile removed from
history. See https://issues.apache.org/jira/browse/SIS-422
add fcd6c5d Create a new branch compatible with GeoAPI 3.1. The content
of this branch is an intermediate between GeoAPI 3.0 (master) and GeoAPI 4.0
(was named "JDK8" branch on Subversion repository). The content is actually
more similar to the GeoAPI 4.0 branch, except where GeoAPI has an incompatible
changes. In those cases, GeoAPI 3.1 is same as GeoAPI 3.0.
new 2063b69 Merge branch 'geoapi-3.1'.
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
application/pom.xml | 1 +
.../java/org/apache/sis/console/package-info.java | 2 +-
.../sis-raster => application/sis-javafx}/pom.xml | 41 +-
.../main/java/org/apache/sis/gui}/Resources.java | 77 +-
.../java/org/apache/sis/gui}/Resources.properties | 12 +-
.../org/apache/sis/gui/Resources_fr.properties | 17 +-
.../java/org/apache/sis/gui/crs/CRSButton.java | 79 ++
.../java/org/apache/sis/gui/crs/CRSChooser.java | 155 ++++
.../main/java/org/apache/sis/gui/crs/CRSTable.java | 340 +++++++++
.../src/main/java/org/apache/sis/gui/crs/Code.java | 105 +++
.../apache/sis/gui/crs/FormattableObjectPane.java | 68 ++
.../org/apache/sis/gui/dataset/ResourceTree.java | 246 ++++++
.../org/apache/sis/internal/gui/FontGlyphs.java | 142 ++++
.../apache/sis/internal/gui/JavaFxUtilities.java | 98 +++
.../org/apache/sis/gui/crs/CRSChooser.fxml | 36 +
.../org/apache/sis/gui/crs/proj_conic.png | Bin 0 -> 591 bytes
.../resources/org/apache/sis/gui/crs/proj_geo.png | Bin 0 -> 834 bytes
.../org/apache/sis/gui/crs/proj_square.png | Bin 0 -> 519 bytes
.../org/apache/sis/gui/crs/proj_stereo.png | Bin 0 -> 959 bytes
.../resources/org/apache/sis/gui/crs/proj_utm.png | Bin 0 -> 681 bytes
.../java/org/apache/sis/feature/Validator.java | 2 +-
.../apache/sis/internal/simple/SimpleCitation.java | 2 +-
.../sis/metadata/iso/citation/DefaultAddress.java | 2 +-
.../java/org/apache/sis/metadata/TreeNodeTest.java | 2 +-
.../org/apache/sis/metadata/iso/APIVerifier.java | 4 +-
.../apache/sis/metadata/iso/api-changes.properties | 2 +-
.../org/apache/sis/internal/system/Supervisor.java | 2 +-
.../sis/internal/util/StandardDateFormat.java | 8 -
.../sis/internal/util/TemporalUtilities.java | 2 +-
.../java/org/apache/sis/util/CharSequences.java | 2 +-
.../sis/util/collection/BackingStoreException.java | 5 +-
.../sis/internal/util/StandardDateFormatTest.java | 2 -
ide-project/NetBeans/nbproject/build-impl.xml | 839 +++++++--------------
ide-project/NetBeans/nbproject/genfiles.properties | 6 +-
ide-project/NetBeans/nbproject/project.properties | 15 +-
ide-project/NetBeans/nbproject/project.xml | 3 +
pom.xml | 6 +-
37 files changed, 1666 insertions(+), 657 deletions(-)
copy {core/sis-raster => application/sis-javafx}/pom.xml (75%)
copy {storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf =>
application/sis-javafx/src/main/java/org/apache/sis/gui}/Resources.java (72%)
copy {storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf =>
application/sis-javafx/src/main/java/org/apache/sis/gui}/Resources.properties
(61%)
copy
storage/sis-netcdf/src/main/java/org/apache/sis/internal/netcdf/Resources.properties
=>
application/sis-javafx/src/main/java/org/apache/sis/gui/Resources_fr.properties
(61%)
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/crs/CRSButton.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/crs/CRSChooser.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/crs/CRSTable.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/crs/Code.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/crs/FormattableObjectPane.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/gui/dataset/ResourceTree.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/internal/gui/FontGlyphs.java
create mode 100644
application/sis-javafx/src/main/java/org/apache/sis/internal/gui/JavaFxUtilities.java
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/CRSChooser.fxml
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/proj_conic.png
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/proj_geo.png
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/proj_square.png
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/proj_stereo.png
create mode 100644
application/sis-javafx/src/main/resources/org/apache/sis/gui/crs/proj_utm.png