You are viewing a plain text version of this content. The canonical link for it is here.
- [sis] branch geoapi-4.0 updated (efb5039 -> 7d277eb) - posted by de...@apache.org on 2019/08/01 16:41:27 UTC, 0 replies.
- [sis] 01/02: Rename dφ as mcosα and dλ as msinα. The previous name were misleading since they were not displacements in degrees, but displacements in some conformal projection. The difference is a cos(φ) factor on northing values. - posted by de...@apache.org on 2019/08/01 16:41:28 UTC, 0 replies.
- [sis] 02/02: Take flattening in account when computing (∂y/∂φ)⁻¹. - posted by de...@apache.org on 2019/08/01 16:41:29 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (7d277eb -> aacd07f) - posted by de...@apache.org on 2019/08/02 17:55:03 UTC, 0 replies.
- [sis] 01/03: Omit redundant sinα0 field. - posted by de...@apache.org on 2019/08/02 17:55:04 UTC, 0 replies.
- [sis] 02/03: Convenience method for repeating a character at the end of a StringBuilder. - posted by de...@apache.org on 2019/08/02 17:55:05 UTC, 0 replies.
- [sis] 03/03: Create a ClenshawSummation helper class for applying the Clenshaw summation technic (recommended by Karney) on Karney equation 25. This technic has been applied in other places in Apache SIS since it happen often in map projections. Before this class, we used an OpenOffice spreadsheet for performing this summation. But Karney equation 25 is more difficult because of its dependency to another term, the third flattening factor. Using an OpenOffice spreadsheet was no longer practical. - posted by de...@apache.org on 2019/08/02 17:55:06 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (aacd07f -> 919c2f2) - posted by de...@apache.org on 2019/08/03 08:19:36 UTC, 0 replies.
- [sis] 01/04: Apply Clenshaw summation on Karney equation 25. - posted by de...@apache.org on 2019/08/03 08:19:37 UTC, 0 replies.
- [sis] 02/04: Now that the development of geodesic distance is completed, set STORE_LOCAL_VARIABLES debug flag to false. - posted by de...@apache.org on 2019/08/03 08:19:38 UTC, 0 replies.
- [sis] 03/04: Adjustment in the way iteration tolerance is determined. - posted by de...@apache.org on 2019/08/03 08:19:39 UTC, 0 replies.
- [sis] 04/04: Use the same latitude difference threshold for geodesic and rhumb line distances. - posted by de...@apache.org on 2019/08/03 08:19:40 UTC, 0 replies.
- svn commit: r1864324 - /sis/analysis/Map projection formulas.ods - posted by de...@apache.org on 2019/08/03 08:24:32 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (919c2f2 -> 26efb3d) - posted by am...@apache.org on 2019/08/05 11:59:34 UTC, 0 replies.
- [sis] 01/02: fix(NetCDF): Remove subsampling doublon when preparing grid geometry for reading. - posted by am...@apache.org on 2019/08/05 11:59:35 UTC, 0 replies.
- [sis] 02/02: chore(Feature): minor fix on a javadoc sentence. - posted by am...@apache.org on 2019/08/05 11:59:36 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (26efb3d -> e3d94ef) - posted by de...@apache.org on 2019/08/05 15:32:40 UTC, 0 replies.
- [sis] 01/02: Reduce the number of distinct constants by replacing some additions by subtractions. - posted by de...@apache.org on 2019/08/05 15:32:41 UTC, 0 replies.
- [sis] 02/02: Initial draft of Rhumb Line distance calculated using formulas published by: G.G. Bennett, 1996. Practical Rhumb Line Calculations on the Spheroid. J. Navigation 49(1), 112--119. https://doi.org/10.1017/S0373463300013151 - posted by de...@apache.org on 2019/08/05 15:32:42 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (e3d94ef -> ad6c9d8) - posted by de...@apache.org on 2019/08/07 15:52:21 UTC, 0 replies.
- [sis] 01/02: Add tests for the rhumb line equatorial case. - posted by de...@apache.org on 2019/08/07 15:52:22 UTC, 0 replies.
- [sis] 02/02: Rewrite Bennett equation 1 by merging ΔΨ = Ψ(φ₂) - Ψ(φ₁) in a single step. It reduces the number of calls to Math.log and Math.pow. - posted by de...@apache.org on 2019/08/07 15:52:23 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Apply Clenshaw summation on Bennett (1996) equation 2. - posted by de...@apache.org on 2019/08/08 06:59:59 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (dc53abf -> 101aa25) - posted by de...@apache.org on 2019/08/09 10:37:04 UTC, 0 replies.
- [sis] 01/05: Replace sin or cos(atan2(Δλ, ΔΨ)) by more direct equivalence. - posted by de...@apache.org on 2019/08/09 10:37:05 UTC, 0 replies.
- [sis] 02/05: Add tests for the spherical case of rhumb line. - posted by de...@apache.org on 2019/08/09 10:37:06 UTC, 0 replies.
- [sis] 03/05: Replace authalic radius by semi-major axis length in GeodeticCalculator. The intent is to allow GeodesicsOnEllipsoid to delegate to its parent class in the equatorial case. - posted by de...@apache.org on 2019/08/09 10:37:07 UTC, 0 replies.
- [sis] 04/05: Delegate to parent class for geodesic distance on equator. - posted by de...@apache.org on 2019/08/09 10:37:08 UTC, 0 replies.
- [sis] 05/05: Make computation of rhumb line robust to the case where longitude difference is greater than 180°. Minor formatting. - posted by de...@apache.org on 2019/08/09 10:37:09 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Partially revert "Omit redundant sinα0 field." This reverts parts of commit 4b6bb5fd7844d977e14957a5d618b8f91873d4f7. The reason is that the merging sinα0 into msinα2 was dangerous. It makes the code more difficult to analyse and was a cause of bug in createGeodesicPath2D(…), where msinα2 was updated by different ways than through α0 computation. - posted by de...@apache.org on 2019/08/11 14:11:04 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (9a32072 -> 071aae3) - posted by de...@apache.org on 2019/08/11 15:16:33 UTC, 0 replies.
- [sis] 01/02: More accurate rhumb line distance in test cases using values computed by Karney's online calculator. - posted by de...@apache.org on 2019/08/11 15:16:34 UTC, 0 replies.
- [sis] 02/02: Test rhumb line azimuth. - posted by de...@apache.org on 2019/08/11 15:16:35 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (071aae3 -> f2591a4) - posted by de...@apache.org on 2019/08/13 11:59:22 UTC, 0 replies.
- [sis] 01/02: Replace checked exceptions by unchecked exceptions in GeodeticCalculator API. - posted by de...@apache.org on 2019/08/13 11:59:23 UTC, 0 replies.
- [sis] 02/02: Replace RuntimeException by GeodeticException where appropriate. - posted by de...@apache.org on 2019/08/13 11:59:24 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: JTS : make CRS key constant public - posted by js...@apache.org on 2019/08/13 12:30:42 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Filter : fix sort by comparator on Iterable types - posted by js...@apache.org on 2019/08/14 08:49:57 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (e94684c -> 43187e6) - posted by de...@apache.org on 2019/08/15 15:41:21 UTC, 0 replies.
- [sis] 01/04: Documentation updates. - posted by de...@apache.org on 2019/08/15 15:41:22 UTC, 0 replies.
- [sis] 02/04: Rename Node.name() as getName() in order to implement Function.getName(). - posted by de...@apache.org on 2019/08/15 15:41:23 UTC, 0 replies.
- [sis] 03/04: Rename AbstractFunction as NamedFunction with the following modifications: - `name` and `fallback` field replaced by methods to override, since they are often fixed values for a given class. - `equals(Object)` and `hashCode()` implementations inherited from parent class. - Verification that `parameters` argument contains only non-null values. - posted by de...@apache.org on 2019/08/15 15:41:24 UTC, 0 replies.
- [sis] 04/04: Avoid direct reference to Java Topology Suite (JTS) library from the ST_Transform class. Instead, use the Geometries intenal class which will delegate to JTS, ESRI or Java2D depending which libraries are on the classpath. This commit also relaxes restrictions on type of arguments (first expression may not be an instance of FeatureExpression, and second expression does not need to be a literal). - posted by de...@apache.org on 2019/08/15 15:41:25 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: CQL : add AntLR filter parser - posted by js...@apache.org on 2019/08/16 08:29:38 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: CQL : move all antlr specific methods in internal package - posted by js...@apache.org on 2019/08/16 09:17:30 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Filter ; add comparison filter tests - posted by js...@apache.org on 2019/08/16 09:36:44 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Filter : add Temporal filter function classes - posted by js...@apache.org on 2019/08/16 10:07:35 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Filter : add ST_Centroid and ST_Buffer - posted by js...@apache.org on 2019/08/16 12:37:54 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (aab81c7 -> 99cac87) - posted by de...@apache.org on 2019/08/17 11:42:22 UTC, 0 replies.
- [sis] 01/02: Fix the version number of Java Topology Suite (JTS) dependency. - posted by de...@apache.org on 2019/08/17 11:42:23 UTC, 0 replies.
- [sis] 02/02: More arguments verification at SimpleQuery construction time and `toString()` adjustments. - posted by de...@apache.org on 2019/08/17 11:42:24 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Clarify which exception may be thrown if result type of expressions can not be determined. - posted by de...@apache.org on 2019/08/19 17:20:26 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: When creating the FeatureType for a query or an expression, provide the FeatureTypeBuilder where the properties can be appended directly. - posted by de...@apache.org on 2019/08/20 16:58:57 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Improve error message if the feature type of filtered data can not be determined. - posted by de...@apache.org on 2019/08/21 08:52:31 UTC, 0 replies.
- [jira] [Updated] (SIS-460) Improve exception handling in filters - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/21 13:47:00 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Avoid direct dependency to Java Topology Suite (JTS) library, and adjust exceptions. - posted by de...@apache.org on 2019/08/21 16:40:18 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: OGC filter specification mandates that the default value of `matchCase` parameter is true. - posted by de...@apache.org on 2019/08/21 17:13:20 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Better handling of temporal types in comparisons. - posted by de...@apache.org on 2019/08/23 12:56:51 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Initial implementation of TemporalFunction. - posted by de...@apache.org on 2019/08/24 15:11:40 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: More tests about temporal functions. - posted by de...@apache.org on 2019/08/26 12:37:13 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (b4d7b41 -> a206c7b) - posted by de...@apache.org on 2019/08/26 17:28:16 UTC, 0 replies.
- [sis] 01/03: Verify also the ComparisonFunction name during tests, and verify at least one of the two expression operands. Recycle some previously created objects, and add comments about what is being tested in TemporalFunctionTest. - posted by de...@apache.org on 2019/08/26 17:28:17 UTC, 0 replies.
- [sis] 02/03: Minor reformating and test refactoring. Some module of CQL reviews will be done later (hopefully), among other for avoiding dependency to AntLR, delegate geometry parsing to JTS/ESRI library and for trying to avoid direct dependency to JTS. In the meantime, the module is available on geoapi=4.0 branch for experiment but will be excluded from Apache SIS 1.0 release. - posted by de...@apache.org on 2019/08/26 17:28:18 UTC, 0 replies.
- [sis] 03/03: Hide SQLMM class from public API (the function that it provides are available through DefaultFilterFactory) and refactor tests. - posted by de...@apache.org on 2019/08/26 17:28:19 UTC, 0 replies.
- [sis] branch geoapi-3.1 updated (c468aad -> 38edbe5) - posted by de...@apache.org on 2019/08/27 08:17:03 UTC, 0 replies.
- [sis] 01/01: Merge branch 'geoapi-4.0' into geoapi-3.1. Contains GeodeticCalculator implementation on ellipsoid and additional expression & filter implementations. - posted by de...@apache.org on 2019/08/27 08:17:04 UTC, 0 replies.
- [sis] branch master updated (c8bf605 -> 309aad8) - posted by de...@apache.org on 2019/08/27 09:30:26 UTC, 0 replies.
- [sis] 01/01: Merge branch 'geoapi-3.1' The main work is GeodeticCalculator on ellipsoid. The work on filters & expressions is excluded since filter interfaces are not available in GeoAPI 3.0. - posted by de...@apache.org on 2019/08/27 09:30:27 UTC, 0 replies.
- [jira] [Resolved] (SIS-386) Replace DefaultEllipsoid.orthodromicDistance(…) method - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/27 12:56:00 UTC, 0 replies.
- [jira] [Updated] (SIS-405) Upgrade or remove JAXB annotations of ImmutableIdentifier - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/27 13:08:00 UTC, 0 replies.
- [jira] [Resolved] (SIS-405) Upgrade or remove JAXB annotations of ImmutableIdentifier - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/27 13:09:00 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (a206c7b -> 90949f7) - posted by de...@apache.org on 2019/08/27 15:12:19 UTC, 0 replies.
- [sis] 01/02: Update dependencies. - posted by de...@apache.org on 2019/08/27 15:12:20 UTC, 0 replies.
- [sis] 02/02: Reduce the amount of HSQL-specific changes to SQL statements. We do not need anymore to omit "UNIQUE" keywords or to rename "CHR" as "CHAR". Avoid the "CREATE CACHED TABLE" statement by setting a default value instead. - posted by de...@apache.org on 2019/08/27 15:12:21 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (90949f7 -> 25af314) - posted by de...@apache.org on 2019/08/27 19:53:24 UTC, 0 replies.
- [sis] 01/04: Remove the MORE_WORDS hack. It is no longer needed since we avoid using the HSQLDB-specific "CREATE CACHED TABLE" statement. A comment has been added to the `addReplacement(String, String)` method for allowing us to reintroduce this hack if we need it again in the future. - posted by de...@apache.org on 2019/08/27 19:53:25 UTC, 0 replies.
- [sis] 02/04: Update links in documentation. - posted by de...@apache.org on 2019/08/27 19:53:26 UTC, 0 replies.
- [sis] 03/04: Minor documentation update. - posted by de...@apache.org on 2019/08/27 19:53:27 UTC, 0 replies.
- [sis] 04/04: Spelling change: implementor -> implementer. - posted by de...@apache.org on 2019/08/27 19:53:28 UTC, 0 replies.
- [jira] [Created] (SIS-468) Update EPSG geodetic dataset to version 9.7 - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/28 09:23:00 UTC, 0 replies.
- [jira] [Closed] (SIS-396) Update EPSG geodetic dataset to version 9.4 - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/28 09:25:00 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Avoid a NullPointerException which may happen with non-standard logging configuration. The null logging Level has been observed when using HSQL. - posted by de...@apache.org on 2019/08/28 09:31:31 UTC, 0 replies.
- svn commit: r1866042 [2/2] - /sis/data/non-free/sis-epsg/src/main/resources/org/apache/sis/referencing/factory/sql/epsg/Data.sql - posted by de...@apache.org on 2019/08/28 17:19:14 UTC, 0 replies.
- svn commit: r1866042 [1/2] - /sis/data/non-free/sis-epsg/src/main/resources/org/apache/sis/referencing/factory/sql/epsg/Data.sql - posted by de...@apache.org on 2019/08/28 17:19:14 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated: Provide more details in the documentation about how to upgrade the EPSG geodetic dataset. - posted by de...@apache.org on 2019/08/28 17:37:11 UTC, 0 replies.
- svn commit: r1866065 - in /sis/site/trunk: content/code-patterns.mdtext content/coding-conventions.mdtext content/index.mdtext content/release-management.mdtext content/source.mdtext content/team-list.mdtext templates/skeleton.html - posted by de...@apache.org on 2019/08/29 10:46:39 UTC, 0 replies.
- svn commit: r1049366 - /websites/staging/sis/trunk/content/ - posted by bu...@apache.org on 2019/08/29 10:46:57 UTC, 0 replies.
- svn commit: r1866081 - in /sis/site/trunk: content/index.mdtext content/source.mdtext templates/skeleton.html - posted by de...@apache.org on 2019/08/29 15:23:00 UTC, 0 replies.
- svn commit: r1049380 - /websites/staging/sis/trunk/content/ - posted by bu...@apache.org on 2019/08/29 15:23:11 UTC, 0 replies.
- svn commit: r1866105 - /sis/site/trunk/content/source.mdtext - posted by de...@apache.org on 2019/08/29 22:11:21 UTC, 0 replies.
- svn commit: r1049394 - in /websites/staging/sis/trunk/content: ./ source.html - posted by bu...@apache.org on 2019/08/29 22:11:31 UTC, 0 replies.
- svn commit: r1866143 - /sis/site/trunk/content/source.mdtext - posted by de...@apache.org on 2019/08/30 10:29:38 UTC, 0 replies.
- svn commit: r1049413 - in /websites/staging/sis/trunk/content: ./ source.html - posted by bu...@apache.org on 2019/08/30 10:29:48 UTC, 0 replies.
- [jira] [Commented] (SIS-377) Latitude of natural origin = -90 wrongly rejected for Transverse Mercator - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/30 15:18:00 UTC, 0 replies.
- svn commit: r1866153 [1/3] - in /sis/site/trunk/content: source.mdtext tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by de...@apache.org on 2019/08/30 17:26:07 UTC, 0 replies.
- svn commit: r1866153 [2/3] - in /sis/site/trunk/content: source.mdtext tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by de...@apache.org on 2019/08/30 17:26:07 UTC, 0 replies.
- svn commit: r1866153 [3/3] - in /sis/site/trunk/content: source.mdtext tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by de...@apache.org on 2019/08/30 17:26:07 UTC, 0 replies.
- svn commit: r1049426 [1/3] - in /websites/staging/sis/trunk/content: ./ source.html tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by bu...@apache.org on 2019/08/30 17:26:17 UTC, 0 replies.
- svn commit: r1049426 [3/3] - in /websites/staging/sis/trunk/content: ./ source.html tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by bu...@apache.org on 2019/08/30 17:26:17 UTC, 0 replies.
- svn commit: r1049426 [2/3] - in /websites/staging/sis/trunk/content: ./ source.html tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by bu...@apache.org on 2019/08/30 17:26:17 UTC, 0 replies.
- [sis] branch geoapi-4.0 updated (bd753fe -> cc55302) - posted by de...@apache.org on 2019/08/30 17:31:58 UTC, 0 replies.
- [sis] 01/02: Fix the SIS-377 fix: standard foot (0.3048 meter) shall not be confused with US survey foot. See https://issues.apache.org/jira/browse/SIS-377 - posted by de...@apache.org on 2019/08/30 17:31:59 UTC, 0 replies.
- [sis] 02/02: Update documentation about upgrading the EPSG database and update the list of sections in CoordinateReferenceSystems.java. - posted by de...@apache.org on 2019/08/30 17:32:00 UTC, 0 replies.
- [sis] branch geoapi-3.1 updated (38edbe5 -> 83846c5) - posted by de...@apache.org on 2019/08/30 17:44:08 UTC, 0 replies.
- [sis] 01/01: Merge branch 'geoapi-4.0' into geoapi-3.1 - posted by de...@apache.org on 2019/08/30 17:44:09 UTC, 0 replies.
- [sis] branch master updated (309aad8 -> cd5fecb) - posted by de...@apache.org on 2019/08/30 17:44:19 UTC, 0 replies.
- [sis] 01/01: Merge branch 'geoapi-3.1' - posted by de...@apache.org on 2019/08/30 17:44:20 UTC, 0 replies.
- svn commit: r1866197 - in /sis/site/trunk/content/tables: CoordinateOperationMethods.html CoordinateReferenceSystems.html - posted by de...@apache.org on 2019/08/31 09:06:31 UTC, 0 replies.
- svn commit: r1049454 - in /websites/staging/sis/trunk/content: ./ tables/CoordinateOperationMethods.html tables/CoordinateReferenceSystems.html - posted by bu...@apache.org on 2019/08/31 09:06:43 UTC, 0 replies.
- [jira] [Resolved] (SIS-468) Update EPSG geodetic dataset to version 9.7 - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/31 09:09:00 UTC, 0 replies.
- [jira] [Assigned] (SIS-126) Replace the NamespacePrefixMapper hack by NamespaceContext - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/31 09:53:00 UTC, 0 replies.
- [jira] [Created] (SIS-469) Remove support for JAXB internal implementation (JDK 8) - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/31 12:47:00 UTC, 0 replies.
- [jira] [Updated] (SIS-469) Remove support for JAXB internal implementation (JDK 8) - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/31 12:54:00 UTC, 2 replies.
- [sis] branch geoapi-4.0 updated (cc55302 -> b9b440d) - posted by de...@apache.org on 2019/08/31 16:09:23 UTC, 0 replies.
- [sis] 01/03: chore(Build): set explicit dependencies for JAXB api and engine. - posted by de...@apache.org on 2019/08/31 16:09:24 UTC, 0 replies.
- [sis] 02/03: fix(referencing): remove useless jaxb dependency, already handled by sis-metadata. - posted by de...@apache.org on 2019/08/31 16:09:25 UTC, 0 replies.
- [sis] 03/03: Merge branch 'chore/jaxb-dependency' into geoapi-4.0 with modifications: - Implementation.INTERNAL keep for now with removal is deferred at a later time: https://issues.apache.org/jira/browse/SIS-469 - All OGCNamespacePrefixMapper removed instead of only one, in order to keep Implementation.INTERNAL and ENDORSED equivalent. - Jakarata dependency with provided scope for allowing Java 8 to use its internal JAXB implementation. - posted by de...@apache.org on 2019/08/31 16:09:26 UTC, 0 replies.
- [jira] [Resolved] (SIS-126) Replace the NamespacePrefixMapper hack by NamespaceContext - posted by "Martin Desruisseaux (Jira)" <ji...@apache.org> on 2019/08/31 16:11:00 UTC, 0 replies.
- svn commit: r1866221 - in /sis/site/trunk/content: downloads.mdtext index.mdtext - posted by de...@apache.org on 2019/08/31 21:46:59 UTC, 0 replies.
- svn commit: r1049475 - in /websites/staging/sis/trunk/content: ./ downloads.html index.html - posted by bu...@apache.org on 2019/08/31 21:47:09 UTC, 0 replies.
- svn commit: r1866222 - in /sis/site/trunk/content: downloads.mdtext index.mdtext - posted by de...@apache.org on 2019/08/31 21:52:09 UTC, 0 replies.
- svn commit: r1049476 - in /websites/staging/sis/trunk/content: ./ downloads.html index.html - posted by bu...@apache.org on 2019/08/31 21:52:17 UTC, 0 replies.