Skip to content

Commit c3eb9f1

Browse files
Change http: to https: when meaningful. Resolves #262.
1 parent 478f97c commit c3eb9f1

File tree

14 files changed

+24
-24
lines changed

14 files changed

+24
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ I would like to acknowledge the influence of the [JP1 forum](http://hifi-remote.
1515
This work surely would not exist without the JP1 forum.
1616

1717
## Background
18-
This program can be considered as a successor of [IrpMaster](http://www.harctoolbox.org/IrpMaster,html).
18+
This program can be considered as a successor of [IrpMaster](https://harctoolbox.org/IrpMaster,html).
1919
The Irp parser therein is based upon a [ANTLR3 grammar](http://www.antlr.org). The "new version"
2020
ANTLR4 is really not a new version, but a completely different tool, fixing most of the quirks that were irritating
2121
in IrpMaster (like the "ugliness" of embedding actions within the grammar, no left recursion, and much more).
@@ -109,7 +109,7 @@ This has been inspired by to the Analyzer and the RepeatFinder in
109109
## Protocol Data Base
110110
The "ini"-file `IrpProtocols.ini` of IrpMaster has been replaced by an XML file,
111111
per default called `IrpProtocols.xml`. The XML format
112-
is defined by the W3C schema [irp-protocols](http://www.harctoolbox.org/schemas/irp-protocols.xsd), and has the name space
112+
is defined by the W3C schema [irp-protocols](https://harctoolbox.org/schemas/irp-protocols.xsd), and has the name space
113113
`http://www.harctoolbox.org/irp-protocols`. This format has many advantages in
114114
comparison with the simpler previous format, for example, it can contain embedded XHTLM fragments.
115115
It also can contain different parameters that can be used by different programs, for example, tolerance parameters
@@ -750,5 +750,5 @@ Usage: IrpTransmogrifier [options] [command] [command options]
750750
751751
752752
753-
For documentation, see http://www.harctoolbox.org/IrpTransmogrifier.html
753+
For documentation, see https://harctoolbox.org/IrpTransmogrifier.html
754754
```

irptransmogrifier

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ IRPHOME="$(dirname -- "$(readlink -f -- "${0}")" )"
77
if [ ! -d ${IRPHOME}/target ] ; then
88
echo "This wrapper, $(readlink -f -- "${0}"), is intended for development ONLY." 1>&2
99
echo "It is NOT intended for deployment!" 1>&2
10-
echo "Instructions for installing given in http://www.harctoolbox.org/IrpTransmogrifier.html#Installation" 1>&2
10+
echo "Instructions for installing given in https://www.harctoolbox.org/IrpTransmogrifier.html#Installation" 1>&2
1111
echo "as well as in the README.md." 1>&2
1212
exit 255
1313
fi

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</license>
1717
</licenses>
1818
<description>Parser for IRP notation protocols, with rendering, code generation, recognition applications.</description>
19-
<url>http://www.harctoolbox.org</url>
19+
<url>https://www.harctoolbox.org</url>
2020
<properties>
2121
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2222
<project.nameLowercase>irptransmogrifier</project.nameLowercase>
@@ -100,7 +100,7 @@
100100
<include>IrpProtocols.xml</include>
101101
</includes>
102102
<xincludeAware>true</xincludeAware>
103-
<systemId>http://www.harctoolbox.org/schemas/irp-protocols.xsd</systemId>
103+
<systemId>https://www.harctoolbox.org/schemas/irp-protocols.xsd</systemId>
104104
</validationSet>
105105
</validationSets>
106106
<transformationSets>

src/main/java/org/harctoolbox/irp/IrpDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public final class IrpDatabase implements Iterable<NamedProtocol>, Serializable
7474
public static final String DEFAULT_CONFIG_FILE = "/IrpProtocols.xml";
7575
public static final String IRP_PROTOCOL_NS = "http://www.harctoolbox.org/irp-protocols";
7676
public static final String IRP_SCHEMA_FILE = "/irp-protocols.xsd";
77-
public static final String IRP_PROTOCOL_SCHEMA_LOCATION = "http://www.harctoolbox.org/schemas/irp-protocols.xsd";
77+
public static final String IRP_PROTOCOL_SCHEMA_LOCATION = "https://www.harctoolbox.org/schemas/irp-protocols.xsd";
7878
public static final String IRP_NAMESPACE_PREFIX = "irp";
7979
private static final int MAX_RECURSION_DEPTH = 5;
8080

src/main/java/org/harctoolbox/xml/XmlUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,17 @@ public final class XmlUtils {
103103
public static final String GIRR_NAMESPACE_URI = "http://www.harctoolbox.org/Girr";
104104
public static final String IRP_NAMESPACE_URI = "http://www.harctoolbox.org/irp-protocols";
105105
public static final String XINCLUDE_NAMESPACE_URI = "http://www.w3.org/2001/XInclude";
106-
public static final String IRP_SCHEMA_LOCATION = "http://www.harctoolbox.org/irp-protocols http://www.harctoolbox.org/schemas/irp-protocols.xsd";
106+
public static final String IRP_SCHEMA_LOCATION = "http://www.harctoolbox.org/irp-protocols https://www.harctoolbox.org/schemas/irp-protocols.xsd";
107107
public static final String IRP_PREFIX = "irp";
108108

109109
// In order to generate simple Girr files, without invoking the Girr library
110110
// (which would mean circular dependencies)
111111
// we here duplicate some Girr XML constants
112112
public static final String GIRR_PREFIX = "girr";
113-
public static final String GIRR_COMMENT = "This file is in the Girr (General IR Remote) format, see http://www.harctoolbox.org/Girr.html";
113+
public static final String GIRR_COMMENT = "This file is in the Girr (General IR Remote) format, see https://www.harctoolbox.org/Girr.html";
114114
public static final String GIRR_VERSION_NAME = "girrVersion";
115115
public static final String GIRR_VERSION = "1.2";
116-
public static final String GIRR_SCHEMA_LOCATION = "http://www.harctoolbox.org/Girr http://www.harctoolbox.org/schemas/girr_ns-" + GIRR_VERSION + ".xsd";
116+
public static final String GIRR_SCHEMA_LOCATION = "http://www.harctoolbox.org/Girr https://www.harctoolbox.org/schemas/girr_ns-" + GIRR_VERSION + ".xsd";
117117

118118
private static final Logger logger = Logger.getLogger(XmlUtils.class.getName());
119119

src/main/resources/IrpProtocols.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!--
1010
Notes for those modifying this file:
1111
12-
Syntax of the XML file is defined in the W3C Schema http://www.harctoolbox.org/schemas/irp-protocols.xsd
12+
Syntax of the XML file is defined in the W3C Schema https://www.harctoolbox.org/schemas/irp-protocols.xsd
1313
(although possibly easier to digest for machines than for humans).
1414
This defines the XML name space irp=http://www.harctoolbox.org/irp-protocols,
1515
using the prefix irp.
@@ -187,8 +187,8 @@ ordering is not required but it improves the readability of the entry.
187187
xmlns:rm="https://sourceforge.net/projects/controlremote/files/RemoteMaster"
188188
xmlns:xi="http://www.w3.org/2001/XInclude"
189189
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
190-
version="2025-02-10"
191-
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols http://www.harctoolbox.org/schemas/irp-protocols.xsd"
190+
version="2025-04-05"
191+
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols https://www.harctoolbox.org/schemas/irp-protocols.xsd"
192192
xmlns:irp="http://www.harctoolbox.org/irp-protocols">
193193

194194
<irp:protocol name="48-NEC">

src/main/resources/IrpProtocols2html.xsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ this program. If not, see http://www.gnu.org/licenses/.
1919
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2020
xmlns="http://www.w3.org/1999/xhtml"
2121
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22-
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols http://www.harctoolbox.org/schemas/irp-protocols.xsd"
22+
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols https://www.harctoolbox.org/schemas/irp-protocols.xsd"
2323
xmlns:irp="http://www.harctoolbox.org/irp-protocols">
2424

2525
<xsl:output method="html"/>

src/main/resources/IrpProtocols2md.xsl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ this program. If not, see http://www.gnu.org/licenses/.
1919
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2020
xmlns="http://www.w3.org/1999/xhtml"
2121
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22-
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols http://www.harctoolbox.org/schemas/irp-protocols.xsd"
22+
xsi:schemaLocation="http://www.harctoolbox.org/irp-protocols https://www.harctoolbox.org/schemas/irp-protocols.xsd"
2323
xmlns:irp="http://www.harctoolbox.org/irp-protocols">
2424

2525
<xsl:output method="text"/>

src/main/schemas/irp-protocols.xsd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@
1616
<xs:documentation>
1717
<html:div>
1818
This document determines and documents the format of the protocol data base <html:code>IrpProtocols.xml</html:code> as used in
19-
<html:a href="http://www.harctoolbox.org/IrpTransmogrifier.html">IrpTransmogrifier</html:a>,
19+
<html:a href="https://www.harctoolbox.org/IrpTransmogrifier.html">IrpTransmogrifier</html:a>,
2020
(and possibly other programs).
2121
It is maintained in the repository
2222
<html:a href="https://github.com/bengtmartensson/IrpTransmogrifier">https://github.com/bengtmartensson/IrpTransmogrifier"</html:a>
2323
with path <html:a href="https://raw.githubusercontent.com/bengtmartensson/IrpTransmogrifier/master/src/main/schemas/irp-protocols.xsd">
2424
main/schemas/irp-protocols.xsd</html:a>, and can be used with <html:code>schemaLocation</html:code>
25-
<html:a href="http://www.harctoolbox.org/schemas/irp-protocols.xsd">http://www.harctoolbox.org/schemas/irp-protocols.xsd</html:a>.
25+
<html:a href="https://www.harctoolbox.org/schemas/irp-protocols.xsd">https://www.harctoolbox.org/schemas/irp-protocols.xsd</html:a>.
2626
</html:div>
2727
</xs:documentation>
2828
</xs:annotation>

src/main/xdocs/IrpTransmogrifier.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
</p>
129129
<p>
130130
In order to avoid circular dependencies,
131-
it is prohibited to use any other <a href="http://www.harctoolbox.org">Harctoolbox software</a>.
131+
it is prohibited to use any other <a href="https://www.harctoolbox.org">Harctoolbox software</a>.
132132
</p>
133133
</section>
134134

@@ -450,7 +450,7 @@
450450
The configuration file <code>IrpProtocols.ini</code> of IrpMaster has been replaced by an XML file,
451451
called <code>IrpProtocols.xml</code>. The XML format
452452
is defined by a <a href="Glossary.html#XMLSchema">W3C schema</a>, named
453-
<a href="http://www.harctoolbox.org/schemas/irp-protocols.xsd">irp-protocols</a>,
453+
<a href="https://www.harctoolbox.org/schemas/irp-protocols.xsd">irp-protocols</a>,
454454
having the XML name space <code>http://www.harctoolbox.org/irp-protocols</code>.
455455
This format has many advantages over
456456
the previous, simpler, format, as it gives access to different XML technologies,
@@ -509,7 +509,7 @@
509509
</ul>
510510

511511
<p>Syntax and semantics of the file is believed to be essentially self explaing.
512-
The exact syntax is given by <a href="http://www.harctoolbox.org/schemas/irp-protocols.xsd">the schema</a>,
512+
The exact syntax is given by <a href="https://www.harctoolbox.org/schemas/irp-protocols.xsd">the schema</a>,
513513
and is therefore not repeated here.</p>
514514

515515
<p>Note that the program contains some functions for the

0 commit comments

Comments
 (0)