Skip to content

Commit bf4c7c0

Browse files
committed
[secure] Use all we can on https in site pages
1 parent cf9b924 commit bf4c7c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+80
-80
lines changed

src/site/es/xdoc/configuration.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Configuración</title>

src/site/es/xdoc/dynamic-sql.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | SQL dinámico</title>

src/site/es/xdoc/getting-started.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Primeros pasos</title>
@@ -85,7 +85,7 @@ SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(input
8585
<source><![CDATA[<?xml version="1.0" encoding="UTF-8" ?>
8686
<!DOCTYPE configuration
8787
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
88-
"http://mybatis.org/dtd/mybatis-3-config.dtd">
88+
"https://mybatis.org/dtd/mybatis-3-config.dtd">
8989
<configuration>
9090
<environments default="development">
9191
<environment id="development">

src/site/es/xdoc/index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Introducción</title>

src/site/es/xdoc/java-api.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Java API</title>

src/site/es/xdoc/logging.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Logging</title>
@@ -80,13 +80,13 @@ org.apache.ibatis.logging.LogFactory.useStdOutLogging();
8080
</p>
8181
<ul>
8282
<li>
83-
<a href="http://www.slf4j.org/">SLF4J</a>
83+
<a href="https://www.slf4j.org/">SLF4J</a>
8484
</li>
8585
<li>
86-
<a href="http://commons.apache.org/logging">Apache Commons Logging</a>
86+
<a href="https://commons.apache.org/proper/commons-logging/">Apache Commons Logging</a>
8787
</li>
8888
<li>
89-
<a href="http://logging.apache.org/log4j/">Apache Log4j 1.x y 2.x</a>
89+
<a href="https://logging.apache.org/log4j/2.x/">Apache Log4j 1.x y 2.x</a>
9090
</li>
9191
<li>
9292
<a href="https://docs.oracle.com/javase/8/docs/technotes/guides/logging/overview.html">JDK Logging API</a>

src/site/es/xdoc/sqlmap-xml.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Ficheros XML de mapeo</title>

src/site/es/xdoc/statement-builders.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Statement Builders</title>

src/site/fr/resources/css/site.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/*
1717
* when new flags are needed, take them from
1818
*
19-
* http://www.printableworldflags.com/flag-icon
19+
* https://www.printableworldflags.com/flag-icon
2020
*
2121
* that are free for any kind of usage
2222
*/

src/site/fr/xdoc/getting-started.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
-->
1919
<document xmlns="http://maven.apache.org/XDOC/2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20-
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 http://maven.apache.org/xsd/xdoc-2.0.xsd">
20+
xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 https://maven.apache.org/xsd/xdoc-2.0.xsd">
2121

2222
<properties>
2323
<title>MyBatis 3 | Premiers pas</title>
@@ -61,7 +61,7 @@ SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(input
6161
<source><![CDATA[<?xml version="1.0" encoding="UTF-8" ?>
6262
<!DOCTYPE configuration
6363
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
64-
"http://mybatis.org/dtd/mybatis-3-config.dtd">
64+
"https://mybatis.org/dtd/mybatis-3-config.dtd">
6565
<configuration>
6666
<environments default="development">
6767
<environment id="development">

0 commit comments

Comments
 (0)