Skip to content

Commit da8e10b

Browse files
authored
Merge pull request #978 from htacg/rc
HTTPS Migration
2 parents d79fe9f + 0d173d6 commit da8e10b

File tree

313 files changed

+1537
-1381
lines changed

Some content is hidden

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

313 files changed

+1537
-1381
lines changed

.github/workflows/api_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
############################################################
4848
# On macOS, we'll build both architectures.
4949
# Note: this is the currently only enabled runner, and I'm
50-
# comfortable with it. This excercises nearly all of
50+
# comfortable with it. This exercises nearly all of
5151
# HTML Tidy's library API, which should be platform
5252
# agnostic.
5353
############################################################

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Build and Test tidy on the latest versions of all of the major platforms.
33
#
44
# - Build on multiple operating systems, and where possible, multiple
5-
# architectures. On Windows, we will also build and test MingGW in
5+
# architectures. On Windows, we will also build and test mingw in
66
# addition to MSVC.
77
#
88
# - Report the version number for each binary that is built.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cmake_minimum_required (VERSION 2.8.12)
2121

2222
set(LIB_NAME tidy)
2323
set(LIBTIDY_DESCRIPTION "${LIB_NAME} - HTML syntax checker")
24-
set(LIBTIDY_URL "http://www.html-tidy.org")
24+
set(LIBTIDY_URL "https://www.html-tidy.org")
2525

2626
project (${LIB_NAME})
2727

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,34 +44,34 @@ Tidy supports localization, and welcomes translations into various languages. Pl
4444

4545
## Other Important Links
4646

47-
- site: [http://www.html-tidy.org/][4]
47+
- site: [https://www.html-tidy.org/][4]
4848
- source: [https://github.com/htacg/tidy-html5][5]
49-
- binaries: [http://binaries.html-tidy.org][6]
49+
- binaries: [https://binaries.html-tidy.org][6]
5050
- bugs: [https://github.com/htacg/tidy-html5/issues][7]
5151
- list: [https://lists.w3.org/Archives/Public/html-tidy/][8]
52-
- api and quickref: [http://api.html-tidy.org/][9]
52+
- api and quickref: [https://api.html-tidy.org/][9]
5353
- Wikidata: [https://www.wikidata.org/wiki/Q1566084][10]
5454

55-
[4]: http://www.html-tidy.org/
55+
[4]: https://www.html-tidy.org/
5656
[5]: https://github.com/htacg/tidy-html5
57-
[6]: http://binaries.html-tidy.org
57+
[6]: https://binaries.html-tidy.org
5858
[7]: https://github.com/htacg/tidy-html5/issues
5959
[8]: https://lists.w3.org/Archives/Public/html-tidy/
60-
[9]: http://api.html-tidy.org/
60+
[9]: https://api.html-tidy.org/
6161
[10]: https://www.wikidata.org/wiki/Q1566084
6262

6363

6464
## History
6565

6666
This repository should be considered canonical for HTML Tidy starting from 2015-January-15.
6767

68-
- This repository originally transferred from [w3c.github.com/tidy-html5][20], now redirected to the current site.
68+
- This repository originally transferred from [w3c.github.com/tidy-html5][20], then redirected to the current site, but now dead.
6969

7070
- First moved to Github from [tidy.sourceforge.net][21]. Note, this site is kept only for historic reasons, and is not now well maintained.
7171

7272
**Tidy is the granddaddy of HTML tools, with support for modern standards.** Have fun...
7373

74-
[20]: http://w3c.github.com/tidy-html5/
74+
[20]: https://w3c.github.com/tidy-html5/
7575
[21]: http://tidy.sourceforge.net
7676

7777

README/BUILD.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
## Prerequisites
44

5-
1. git - [http://git-scm.com/book/en/v2/Getting-Started-Installing-Git][1]
5+
1. git - [https://git-scm.com/book/en/v2/Getting-Started-Installing-Git][1]
66

7-
2. cmake - [http://www.cmake.org/download/][2]
7+
2. cmake - [https://cmake.org/download/][2]
88

99
3. appropriate build tools for the platform
1010

@@ -86,9 +86,6 @@ make test
8686
make install
8787
~~~
8888

89-
[1]: http://git-scm.com/book/en/v2/Getting-Started-Installing-Git
90-
[2]: http://www.cmake.org/download/
89+
[1]: https://git-scm.com/book/en/v2/Getting-Started-Installing-Git
90+
[2]: https://cmake.org/download/
9191
[3]: http://xmlsoft.org/XSLT/xsltproc2.html
92-
93-
94-
; eof

README/OPTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Tidy supports a quite large number of configuration options. The full list can be output using `-help-config`. This will show the option to be used either on the command line or in a configuration file, the type of option, and the value(s) that can be used. The current default value for each option can be seen using `-show-config`.
44

5-
The options can also be listed in xml format. `-xml-help` will output each option plus a description. `-xml-config` will not only output the option and a description, but will include the type, default and examples. These xml outputs are used, with the aid of `xsltproc` and `doxygen`, to generate the [API Documentation](http://api.html-tidy.org/).
5+
The options can also be listed in xml format. `-xml-help` will output each option plus a description. `-xml-config` will not only output the option and a description, but will include the type, default and examples. These xml outputs are used, with the aid of `xsltproc` and `doxygen`, to generate the [API Documentation](https://api.html-tidy.org/).
66

77
These options can also be used by application linking with `libtidy`. For each option there is a `TidyOptionId` enumeration in the `tidyenum.h` file, and get/set functions for each option type.
88

README/README.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ <h1 id="htacghtmltidy">HTACG HTML Tidy</h1>
33
<h2 id="prerequisites">Prerequisites</h2>
44

55
<ol>
6-
<li><p>git - <a href="http://git-scm.com/book/en/v2/Getting-Started-Installing-Git">http://git-scm.com/book/en/v2/Getting-Started-Installing-Git</a></p></li>
7-
<li><p>cmake - <a href="http://www.cmake.org/download/">http://www.cmake.org/download/</a></p></li>
6+
<li><p>git - <a href="https://git-scm.com/book/en/v2/Getting-Started-Installing-Git">https://git-scm.com/book/en/v2/Getting-Started-Installing-Git</a></p></li>
7+
<li><p>cmake - <a href="https://cmake.org/download/">https://cmake.org/download/</a></p></li>
88
<li><p>appropriate build tools for the platform</p></li>
99
<li><p>the <a href="http://xmlsoft.org/XSLT/xsltproc2.html">xsltproc</a> tool is required to build and install the <code>tidy.1</code> man page on Unix-like platforms.</p></li>
1010
</ol>

README/TAGS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is about adding a new HTML **tag**.
44

55
Tidy tries to support all **tags** supported by the W3C. To add a new supported **tag**, the definition begins in `tidyenum.h`, to give it a value. Then it is added to the `tag_defs[]` table in `tags.c`, where it is given a unique string, supported html versions, attributes support, and a bit `type`.
66

7-
Note, there are a group of configuration options to add **tags** not yet approved by the W3C. These are [new-blocklevel-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-blocklevel-tags), [new-empty-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-empty-tags), [new-inline-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-inline-tags). and [new-pre-tags](http://api.html-tidy.org/tidy/quickref_5.2.0.html#new-pre-tags). This provides a way to extend the `tag_defs[]` table just for that tidy session.
7+
Note, there are a group of configuration options to add **tags** not yet approved by the W3C. These are [new-blocklevel-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-blocklevel-tags), [new-empty-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-empty-tags), [new-inline-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-inline-tags). and [new-pre-tags](https://api.html-tidy.org/tidy/quickref_next.html#new-pre-tags). This provides a way to extend the `tag_defs[]` table just for that tidy session.
88

99
So, adding a new HTML **tag** consists of the following simple steps:
1010

README/VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document provides an explanation of how to interpret HTML Tidy’s version
44

55
## Background
66

7-
**HTML Tidy** uses a modified version of [Semantic Versioning](http://semver.org/), and so it’s important to understand what the version number of **HTML Tidy** means to you, and how it might impact your workflow.
7+
**HTML Tidy** uses a modified version of [Semantic Versioning](https://semver.org/), and so it’s important to understand what the version number of **HTML Tidy** means to you, and how it might impact your workflow.
88

99
When you execute `tidy -v` on the command line, you might see responses such as:
1010

build/macos/Installer-Introduction.rtf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
\f3\fmodern\fcharset0 Courier;}
44
{\colortbl;\red255\green255\blue255;}
55
{\*\expandedcolortbl;;}
6-
\paperw11900\paperh16840\margl1440\margr1440\vieww25720\viewh15920\viewkind0
6+
\paperw11905\paperh16837\margl1440\margr1440\vieww25720\viewh15920\viewkind0
77
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\qc\partightenfactor0
88

99
\f0\b\fs36 \cf0 HTACG HTML Tidy for macOS
1010
\fs24 \
1111
\
1212
13-
\fs28 http://www.html-tidy.org
13+
\fs28 https://www.html-tidy.org
1414
\f1\b0\fs24 \
1515
\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
1616
\cf0 \

0 commit comments

Comments
 (0)