This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-scxml.git


The following commit(s) were added to refs/heads/master by this push:
     new 7229f7a0 Use HTTPS in URL
7229f7a0 is described below

commit 7229f7a0f5263ef7a92532b565970887d0c1a47d
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 2 10:36:16 2025 -0500

    Use HTTPS in URL
---
 src/changes/changes.xml                              |  2 +-
 .../apache/commons/scxml2/SCXMLSystemContext.java    |  4 ++--
 .../java/org/apache/commons/scxml2/TriggerEvent.java |  6 +++---
 src/site/fml/faq.fml                                 |  4 ++--
 src/site/site.xml                                    | 20 ++++++++++----------
 src/site/xdoc/0.5/index.xml                          |  4 ++--
 src/site/xdoc/0.6/index.xml                          |  4 ++--
 src/site/xdoc/0.7/index.xml                          |  4 ++--
 src/site/xdoc/0.8/index.xml                          |  4 ++--
 src/site/xdoc/0.9/index.xml                          |  4 ++--
 src/site/xdoc/building.xml                           |  4 ++--
 src/site/xdoc/download_scxml.xml                     | 18 +++++++++---------
 src/site/xdoc/guide/custom-actions.xml               |  4 ++--
 src/site/xdoc/guide/scxml-documents.xml              | 10 +++++-----
 src/site/xdoc/guide/testing-standalone.xml           |  4 ++--
 src/site/xdoc/guide/using-commons-scxml.xml          |  2 +-
 src/site/xdoc/index.xml                              | 10 +++++-----
 src/site/xdoc/roadmap.xml                            | 10 +++++-----
 src/site/xdoc/usecases/scxml-stopwatch.xml           |  2 +-
 .../java/org/apache/commons/scxml2/w3c/W3CTests.java |  2 +-
 20 files changed, 61 insertions(+), 61 deletions(-)

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index cd7d530e..6b2a50b6 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -919,7 +919,7 @@
       <action dev="rahul" type="update">
        [02-05-2006] Contexts are now created per State, but only as and
        when needed. The <![CDATA[
-       <a href="http://svn.apache.org/viewcvs?rev=374981&amp;view=rev";>
+       <a href="https://svn.apache.org/viewcvs?rev=374981&amp;view=rev";>
        commit message for r374981</a> has the details.]]>
       </action>
 
diff --git a/src/main/java/org/apache/commons/scxml2/SCXMLSystemContext.java 
b/src/main/java/org/apache/commons/scxml2/SCXMLSystemContext.java
index df6a9776..7d01c258 100644
--- a/src/main/java/org/apache/commons/scxml2/SCXMLSystemContext.java
+++ b/src/main/java/org/apache/commons/scxml2/SCXMLSystemContext.java
@@ -28,7 +28,7 @@ import java.util.Set;
  * The SCXMLSystemContext is used as a read only Context wrapper
  * and provides the SCXML (read only) system variables which are injected via 
the unwrapped {@link #getContext()}.
  *
- * @see <a 
href="http://www.w3.org/TR/scxml/#SystemVariables";>http://www.w3.org/TR/scxml/#SystemVariables</a>
+ * @see <a 
href="https://www.w3.org/TR/scxml/#SystemVariables";>http://www.w3.org/TR/scxml/#SystemVariables</a>
  */
 public class SCXMLSystemContext implements Context, Serializable {
 
@@ -39,7 +39,7 @@ public class SCXMLSystemContext implements Context, 
Serializable {
 
     /**
      * The protected system variables names as defined in the SCXML 
specification
-     * @see <a 
href="http://www.w3.org/TR/scxml/#SystemVariables";>http://www.w3.org/TR/scxml/#SystemVariables</a>
+     * @see <a 
href="https://www.w3.org/TR/scxml/#SystemVariables";>http://www.w3.org/TR/scxml/#SystemVariables</a>
      */
     public static final String EVENT_KEY = "_event";
     public static final String SESSIONID_KEY = "_sessionid";
diff --git a/src/main/java/org/apache/commons/scxml2/TriggerEvent.java 
b/src/main/java/org/apache/commons/scxml2/TriggerEvent.java
index a73c34c1..a6b53d06 100644
--- a/src/main/java/org/apache/commons/scxml2/TriggerEvent.java
+++ b/src/main/java/org/apache/commons/scxml2/TriggerEvent.java
@@ -67,7 +67,7 @@ public class TriggerEvent implements Serializable {
      * Indicates that an error internal to the execution of the document has 
occurred, such as one arising from
      * expression evaluation.
      * </p>
-     * @see <a href="http://www.w3.org/TR/scxml/#errorsAndEvents";>
+     * @see <a href="https://www.w3.org/TR/scxml/#errorsAndEvents";>
      *      http://www.w3.org/TR/scxml/#errorsAndEvents</a>
      */
     public static final String ERROR_EXECUTION = "error.execution";
@@ -77,7 +77,7 @@ public class TriggerEvent implements Serializable {
      * <p>
      * Indicates that an error has occurred while trying to communicate with 
an external entity.
      * </p>
-     * @see <a href="http://www.w3.org/TR/scxml/#errorsAndEvents";>
+     * @see <a href="https://www.w3.org/TR/scxml/#errorsAndEvents";>
      *      http://www.w3.org/TR/scxml/#errorsAndEvents</a>
      */
     public static final String ERROR_COMMUNICATION = "error.communication";
@@ -87,7 +87,7 @@ public class TriggerEvent implements Serializable {
      * <p>
      * Indicates that a platform- or application-specific error has occurred.
      * </p>
-     * @see <a href="http://www.w3.org/TR/scxml/#errorsAndEvents";>
+     * @see <a href="https://www.w3.org/TR/scxml/#errorsAndEvents";>
      *      http://www.w3.org/TR/scxml/#errorsAndEvents</a>
      */
     public static final String ERROR_PLATFORM = "error.platform";
diff --git a/src/site/fml/faq.fml b/src/site/fml/faq.fml
index 4f2111c9..c3f4d4b3 100644
--- a/src/site/fml/faq.fml
+++ b/src/site/fml/faq.fml
@@ -29,7 +29,7 @@
     State Chart XML (SCXML) is a general-purpose event-based state
     machine language that can be used in many ways. It is currently
     a W3C Working Draft, available
-    <a href="http://www.w3.org/TR/scxml/";>here</a>.
+    <a href="https://www.w3.org/TR/scxml/";>here</a>.
    </answer>
   </faq>
 
@@ -81,7 +81,7 @@
    <answer>
     Commons SCXML currently supports
     <a href="https://commons.apache.org/jexl/";>Commons JEXL</a>, Javascript, 
XPath and
-    <a href="http://groovy.codehaus.org/";>Groovy</a>. For details,
+    <a href="https://groovy.codehaus.org/";>Groovy</a>. For details,
     see the <a href="guide/testing-standalone.html">trying out</a> and
     <a href="guide/contexts-evaluators.html">contexts and evaluators</a>
     pages of the user guide.
diff --git a/src/site/site.xml b/src/site/site.xml
index 39bb85dd..79562fff 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -114,10 +114,10 @@
                   href="/javadocs/0.9/" />
 
         <item     name="Release notes"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";
 />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";
 />
 
         <item     name="Source"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/"; />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/"; />
 
       </item>
 
@@ -129,10 +129,10 @@
                   href="/javadocs/0.8/" />
 
         <item     name="Release notes"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/RELEASE-NOTES.txt?view=markup";
 />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/RELEASE-NOTES.txt?view=markup";
 />
 
         <item     name="Source"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/"; />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/"; />
 
       </item>
 
@@ -144,10 +144,10 @@
                   href="/javadocs/0.7/" />
 
         <item     name="Release notes"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/RELEASE-NOTES.txt?view=markup";
 />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/RELEASE-NOTES.txt?view=markup";
 />
 
         <item     name="Source"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/"; />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/"; />
 
       </item>
 
@@ -159,10 +159,10 @@
                   href="/javadocs/0.6/" />
 
         <item     name="Release notes"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/RELEASE-NOTES.txt?view=markup";
 />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/RELEASE-NOTES.txt?view=markup";
 />
 
         <item     name="Source"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/"; />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/"; />
 
       </item>
 
@@ -174,10 +174,10 @@
                   href="/javadocs/0.5/" />
 
         <item     name="Release notes"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/RELEASE-NOTES.txt?view=markup";
 />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/RELEASE-NOTES.txt?view=markup";
 />
 
         <item     name="Source"
-                  
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/"; />
+                  
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/"; />
 
       </item>
 
diff --git a/src/site/xdoc/0.5/index.xml b/src/site/xdoc/0.5/index.xml
index 68e6cfec..cea12b10 100644
--- a/src/site/xdoc/0.5/index.xml
+++ b/src/site/xdoc/0.5/index.xml
@@ -34,8 +34,8 @@
   <p>
     <ul>
       <li>The v0.5 <a href="../javadocs/0.5/">Javadoc</a>.</li>
-      <li>The v0.5 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
-      <li>The v0.5 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/";>source 
tree</a>.</li>
+      <li>The v0.5 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
+      <li>The v0.5 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_5/";>source
 tree</a>.</li>
     </ul>
   </p>
 
diff --git a/src/site/xdoc/0.6/index.xml b/src/site/xdoc/0.6/index.xml
index b89a38fe..9125c6ab 100644
--- a/src/site/xdoc/0.6/index.xml
+++ b/src/site/xdoc/0.6/index.xml
@@ -34,8 +34,8 @@
   <p>
     <ul>
       <li>The v0.6 <a href="../javadocs/0.6/">Javadoc</a>.</li>
-      <li>The v0.6 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
-      <li>The v0.6 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/";>source 
tree</a>.</li>
+      <li>The v0.6 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
+      <li>The v0.6 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_6/";>source
 tree</a>.</li>
     </ul>
   </p>
 
diff --git a/src/site/xdoc/0.7/index.xml b/src/site/xdoc/0.7/index.xml
index c73da5c5..829b2e16 100644
--- a/src/site/xdoc/0.7/index.xml
+++ b/src/site/xdoc/0.7/index.xml
@@ -34,8 +34,8 @@
   <p>
     <ul>
       <li>The v0.7 <a href="../javadocs/0.7/">Javadoc</a>.</li>
-      <li>The v0.7 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
-      <li>The v0.7 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/";>source 
tree</a>.</li>
+      <li>The v0.7 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
+      <li>The v0.7 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_7/";>source
 tree</a>.</li>
     </ul>
   </p>
 
diff --git a/src/site/xdoc/0.8/index.xml b/src/site/xdoc/0.8/index.xml
index 549a2d4d..853f9886 100644
--- a/src/site/xdoc/0.8/index.xml
+++ b/src/site/xdoc/0.8/index.xml
@@ -34,8 +34,8 @@
   <p>
     <ul>
       <li>The v0.8 <a href="../javadocs/0.8/">Javadoc</a>.</li>
-      <li>The v0.8 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
-      <li>The v0.8 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/";>source 
tree</a>.</li>
+      <li>The v0.8 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
+      <li>The v0.8 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_8/";>source
 tree</a>.</li>
     </ul>
   </p>
 
diff --git a/src/site/xdoc/0.9/index.xml b/src/site/xdoc/0.9/index.xml
index beeb2fc8..dcc1ea45 100644
--- a/src/site/xdoc/0.9/index.xml
+++ b/src/site/xdoc/0.9/index.xml
@@ -34,8 +34,8 @@
   <p>
     <ul>
       <li>The v0.9 <a href="../javadocs/0.9/">Javadoc</a>.</li>
-      <li>The v0.9 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
-      <li>The v0.9 <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/";>source 
tree</a>.</li>
+      <li>The v0.9 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";>release
 notes</a>.</li>
+      <li>The v0.9 <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/";>source
 tree</a>.</li>
     </ul>
   </p>
 
diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml
index 3151c690..76f965eb 100644
--- a/src/site/xdoc/building.xml
+++ b/src/site/xdoc/building.xml
@@ -24,9 +24,9 @@
 <!-- ================================================== -->
 <section name="Overview">
 <p>
-  Commons SCXML uses <a href="http://maven.apache.org";>Maven 2 or higher</a> as
+  Commons SCXML uses <a href="https://maven.apache.org";>Maven 2 or higher</a> 
as
   a build system. The source is
-  <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/";>here</a>.
+  <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/";>here</a>.
 </p>
 </section>
 <!-- ================================================== -->
diff --git a/src/site/xdoc/download_scxml.xml b/src/site/xdoc/download_scxml.xml
index 24786bc5..ec13cb3f 100644
--- a/src/site/xdoc/download_scxml.xml
+++ b/src/site/xdoc/download_scxml.xml
@@ -88,7 +88,7 @@ limitations under the License.
       </form>
 
       <p>
-        The <a href="http://www.apache.org/dist/commons/KEYS";>KEYS</a>
+        The <a href="https://www.apache.org/dist/commons/KEYS";>KEYS</a>
         link links to the code signing keys used to sign the product.
         The <code>PGP</code> link downloads the OpenPGP compatible signature 
from our main site.
         The <code>MD5</code> link downloads the checksum from the main site.
@@ -100,13 +100,13 @@ limitations under the License.
         <table>
           <tr>
               <td><a 
href="[preferred]/commons/scxml/binaries/commons-scxml-0.9-bin.tar.gz">commons-scxml-0.9-bin.tar.gz</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.tar.gz.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.tar.gz.md5";>md5</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
               <td><a 
href="[preferred]/commons/scxml/binaries/commons-scxml-0.9-bin.zip">commons-scxml-0.9-bin.zip</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.zip.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.zip.asc";>pgp</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.zip.md5";>md5</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/binaries/commons-scxml-0.9-bin.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
@@ -114,13 +114,13 @@ limitations under the License.
         <table>
           <tr>
               <td><a 
href="[preferred]/commons/scxml/source/commons-scxml-0.9-src.tar.gz">commons-scxml-0.9-src.tar.gz</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.tar.gz.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.tar.gz.asc";>pgp</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.tar.gz.md5";>md5</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.tar.gz.asc";>pgp</a></td>
           </tr>
           <tr>
               <td><a 
href="[preferred]/commons/scxml/source/commons-scxml-0.9-src.zip">commons-scxml-0.9-src.zip</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.zip.md5";>md5</a></td>
-              <td><a 
href="http://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.zip.asc";>pgp</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.zip.md5";>md5</a></td>
+              <td><a 
href="https://www.apache.org/dist/commons/scxml/source/commons-scxml-0.9-src.zip.asc";>pgp</a></td>
           </tr>
         </table>
       </subsection>
diff --git a/src/site/xdoc/guide/custom-actions.xml 
b/src/site/xdoc/guide/custom-actions.xml
index 232f8a33..e5d1899e 100644
--- a/src/site/xdoc/guide/custom-actions.xml
+++ b/src/site/xdoc/guide/custom-actions.xml
@@ -32,7 +32,7 @@
       within &lt;onentry&gt;, &lt;onexit&gt; and &lt;transition&gt;
       elements.</p>
 
-   <p>The <a href="http://www.w3.org/TR/scxml/";>SCXML specification</a>
+   <p>The <a href="https://www.w3.org/TR/scxml/";>SCXML specification</a>
       (currently a Working Draft) defines a set of "standard actions".
       These include &lt;var&gt;, &lt;assign&gt;, &lt;log&gt;, &lt;send&gt;,
       &lt;cancel&gt;, &lt;if&gt;, &lt;elseif&gt; and &lt;else&gt;.</p>
@@ -102,7 +102,7 @@
       value of the name attribute when it executes.</p>
 
     <p>A simple example is
-      <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/custom-hello-world-01.xml";>here</a>
+      <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/custom-hello-world-01.xml";>here</a>
       .</p>
 
    </subsection>
diff --git a/src/site/xdoc/guide/scxml-documents.xml 
b/src/site/xdoc/guide/scxml-documents.xml
index 68921d42..8223da4a 100644
--- a/src/site/xdoc/guide/scxml-documents.xml
+++ b/src/site/xdoc/guide/scxml-documents.xml
@@ -31,7 +31,7 @@
       machine language that can be used in many ways.</p>
 
    <p>The definitive guide to authoring SCXML documents is the
-      <a href="http://www.w3.org/TR/scxml/";>W3C Working Draft
+      <a href="https://www.w3.org/TR/scxml/";>W3C Working Draft
       of the SCXML specification</a>.</p>
 
   </section>
@@ -54,7 +54,7 @@
   <section name="Hello World">
 
    <p>Here is the canonical
-      <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/hello-world.xml";>hello
 world example</a>
+      <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/hello-world.xml";>hello
 world example</a>
       for SCXML. The interesting bits are:</p>
 
    <pre>
@@ -163,7 +163,7 @@
    <p>States can contain states, so we can think of an
       SCXML document as a recursive transition network. Here is
       a snippet (here is the entire version of this
-      <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-01.xml";>microwave
 example</a>
+      <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-01.xml";>microwave
 example</a>
       ):</p>
 
    <pre>
@@ -221,7 +221,7 @@
       can become a state machine in its own right -- that are "active"
       at the same time. Here is
       a relevant snippet (the entire version of this
-      <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-02.xml";>parallel
 microwave example</a>
+      <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-02.xml";>parallel
 microwave example</a>
       ):</p>
 
    <pre>
@@ -281,7 +281,7 @@
 
    <p>The Commons SCXML implementation allows you to register custom actions.
       Here is the Commons SCXML
-      <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/custom-hello-world-02.xml";>hello
 world example using a custom action</a>.
+      <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/custom-hello-world-02.xml";>hello
 world example using a custom action</a>.
       The interesting bits are:</p>
 
    <pre>
diff --git a/src/site/xdoc/guide/testing-standalone.xml 
b/src/site/xdoc/guide/testing-standalone.xml
index f3369ad8..522ea5f7 100644
--- a/src/site/xdoc/guide/testing-standalone.xml
+++ b/src/site/xdoc/guide/testing-standalone.xml
@@ -56,7 +56,7 @@
 
     <a 
href="../xref/org/apache/commons/scxml2/test/StandaloneJexlExpressions.html">org.apache.commons.scxml2.test.StandaloneJexlExpressions</a>
 
-    <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-01.xml";>microwave01.xml</a>
+    <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/jexl/microwave-01.xml";>microwave01.xml</a>
     </pre>
 
    </subsection>
@@ -69,7 +69,7 @@
    </p>
 
    <p>A few examples are available as part of the 
-   <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/";>
+   <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/";>
    Commons SCXML test suite</a> (look in env.* child packages as well).</p>
 
   </section> 
diff --git a/src/site/xdoc/guide/using-commons-scxml.xml 
b/src/site/xdoc/guide/using-commons-scxml.xml
index 9709eb06..2b4e948b 100644
--- a/src/site/xdoc/guide/using-commons-scxml.xml
+++ b/src/site/xdoc/guide/using-commons-scxml.xml
@@ -29,7 +29,7 @@
 
    <p>Commons SCXML provides a generic event-driven state machine based
    execution environment, borrowing the semantics defined by
-   <a href="http://www.w3.org/TR/scxml";>SCXML</a>. Most things that can be
+   <a href="https://www.w3.org/TR/scxml";>SCXML</a>. Most things that can be
    represented as a UML state chart -- business process flows, view
    navigation bits, interaction or dialog management, and too many more
    to list here -- can leverage the Commons SCXML library. The library can
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index d74a7355..f37b4b63 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -28,7 +28,7 @@
  <section name="Commons SCXML">
 
   <p>
-  <a href="http://www.w3.org/TR/scxml/"; target="_blank">State Chart XML 
(SCXML)</a> is currently a
+  <a href="https://www.w3.org/TR/scxml/"; target="_blank">State Chart XML 
(SCXML)</a> is currently a
   Working Draft specification published by the World Wide Web Consortium (W3C).
   SCXML provides a generic state-machine based execution environment based on 
Harel
   State Tables. SCXML is a candidate for the control language within 
@@ -69,7 +69,7 @@
     <ul>
       <li>The latest <a href="apidocs/index.html">Javadoc</a>.</li>
       <li>The latest <a href="xref/index.html">source</a>.</li>
-      <li>The <a href="http://wiki.apache.org/commons/SCXML";>wiki</a>.</li>
+      <li>The <a href="https://wiki.apache.org/commons/SCXML";>wiki</a>.</li>
       <li>Commons SCXML <a href="usecases.html">usecases</a> (case 
studies).</li>
       <li>A <a href="guide.html">user guide</a> containing assorted API notes 
and tutorials.</li>
     </ul>
@@ -83,7 +83,7 @@
  <section name="Releases">
   <p>
   The latest release is v0.9. Read
-  <a 
href="http://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";>v0.9
+  <a 
href="https://svn.apache.org/viewvc/commons/proper/scxml/tags/SCXML_0_9/RELEASE-NOTES.txt?view=markup";>v0.9
   release notes</a> before upgrading.
   <a href="https://commons.apache.org/scxml/download_scxml.cgi";>Download 
v0.9!</a>
   </p>
@@ -126,7 +126,7 @@
    Related projects providing some SCXML-related functionality (based on 
Commons SCXML 0.9):
    <ul>
     <li>
-     <a 
href="http://svn.apache.org/repos/asf/commons/sandbox/gsoc/2010/scxml-eclipse/";>Commons
 SCXML - Eclipse</a> -
+     <a 
href="https://svn.apache.org/repos/asf/commons/sandbox/gsoc/2010/scxml-eclipse/";>Commons
 SCXML - Eclipse</a> -
      This project aims to provide an Eclipse and GMF based visual editor and 
debugger for SCXML, which can
      also be used to generate SCXML documents and code from a state chart.
     </li>
@@ -141,7 +141,7 @@
        SCION-Java provides lightweight bindings to the SCION library for Java.
      </li>
     <li>
-     <a href="http://code.google.com/p/scxmlgui/";>scxmlgui</a> -
+     <a href="https://code.google.com/p/scxmlgui/";>scxmlgui</a> -
      This project aims to provide a simple GUI to edit SCXML state charts.
     </li>
    </ul>
diff --git a/src/site/xdoc/roadmap.xml b/src/site/xdoc/roadmap.xml
index f687e55f..b560acfc 100644
--- a/src/site/xdoc/roadmap.xml
+++ b/src/site/xdoc/roadmap.xml
@@ -24,7 +24,7 @@
     <section name="Commons SCXML 2.0 Roadmap">
       <p>
         The last SCXML release 0.9 has been quite some time ago (2008) and 
since then the
-        <a href="http://www.w3.org/TR/scxml/"; target="_blank">W3C SCXML 
specification</a> has progressed and changed
+        <a href="https://www.w3.org/TR/scxml/"; target="_blank">W3C SCXML 
specification</a> has progressed and changed
         quite a lot, and almost ready to move to Candidate Recommendation 
status.
       </p>
       <p>
@@ -70,7 +70,7 @@
           The high-level plan is to:
           <ul>
             <li>Redefine SCXMLSemantics to align with the
-              <a 
href="http://www.w3.org/TR/scxml/#AlgorithmforSCXMLInterpretation"; 
target="_blank">
+              <a 
href="https://www.w3.org/TR/scxml/#AlgorithmforSCXMLInterpretation"; 
target="_blank">
                 SCXML Algorithm for SCXML Interpretation</a>
               <p>
                 The current SCXMLSemantics interface and its implementation is 
so much different from
@@ -100,7 +100,7 @@
               </p>
               <p>
                 And finally, SCXMLExecutor currently doesn't yet provide a 
good abstraction or implementation of the
-                <a href="http://www.w3.org/TR/scxml/#SCXMLEventProcessor"; 
target="_blank">
+                <a href="https://www.w3.org/TR/scxml/#SCXMLEventProcessor"; 
target="_blank">
                   SCXML Event I/O Processor</a> functionally.
                 The internal and external event I/O management is a critical 
requirement and many features of the
                 specification rely on it fulfilling this contract.<br/>
@@ -150,7 +150,7 @@
           provide this as custom extension, no longer as default.
         </p>
         <p>The additional target is to be able to now <em>run</em> a 
substantial number of the
-          <a href="http://www.w3.org/Voice/2013/scxml-irp/"; 
target="_blank">SCXML IPR tests</a>. Currently almost
+          <a href="https://www.w3.org/Voice/2013/scxml-irp/"; 
target="_blank">SCXML IPR tests</a>. Currently almost
           all still fail because of (simple) expression language issues, so 
fixing and improving the language support
           is an important goal as well.</p>
       </subsection>
@@ -168,7 +168,7 @@
         </p>
         <p>
           As part of validation the implementation, the
-          <a href="http://www.w3.org/Voice/2013/scxml-irp/"; 
target="_blank">SCXML 1.0 Implementation Report Plan</a>
+          <a href="https://www.w3.org/Voice/2013/scxml-irp/"; 
target="_blank">SCXML 1.0 Implementation Report Plan</a>
           will be used to test against.
         </p>
         <p>
diff --git a/src/site/xdoc/usecases/scxml-stopwatch.xml 
b/src/site/xdoc/usecases/scxml-stopwatch.xml
index f8fe4266..d6d1dd23 100644
--- a/src/site/xdoc/usecases/scxml-stopwatch.xml
+++ b/src/site/xdoc/usecases/scxml-stopwatch.xml
@@ -70,7 +70,7 @@
    <subsection name="The SCXML document">
     <p>The SCXML document is then, a simple serialization of
        the "model" above:
-       <a 
href="http://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/stopwatch.xml";>stopwatch.xml</a>.
+       <a 
href="https://svn.apache.org/repos/asf/commons/proper/scxml/trunk/src/test/java/org/apache/commons/scxml2/env/stopwatch.xml";>stopwatch.xml</a>.
     </p>
    </subsection>
 
diff --git a/src/test/java/org/apache/commons/scxml2/w3c/W3CTests.java 
b/src/test/java/org/apache/commons/scxml2/w3c/W3CTests.java
index e85c1ee2..81d84a13 100644
--- a/src/test/java/org/apache/commons/scxml2/w3c/W3CTests.java
+++ b/src/test/java/org/apache/commons/scxml2/w3c/W3CTests.java
@@ -56,7 +56,7 @@ import org.apache.commons.scxml2.model.Final;
 import org.apache.commons.scxml2.model.SCXML;
 
 /**
- * W3C SCXML 1.0 IRP tests: <a 
href="http://www.w3.org/Voice/2013/scxml-irp/";>http://www.w3.org/Voice/2013/scxml-irp/</a>.
+ * W3C SCXML 1.0 IRP tests: <a 
href="https://www.w3.org/Voice/2013/scxml-irp/";>http://www.w3.org/Voice/2013/scxml-irp/</a>.
  * <p>
  * The <strong>W3CTests</strong> class is standalone and can download and 
transform the IRP tests locally using respectively
  * command-line parameter <strong>get</strong> or <strong>make</strong>.

Reply via email to