Skip to content

Commit 51d8415

Browse files
committed
fixed doc deploy for tag
fixed some links and also use https consistently
1 parent 78f9413 commit 51d8415

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Looking to contribute something to [JSON-Fortran](https://github.com/jacobwillia
3434
- Take a look at the [issues](https://github.com/jacobwilliams/json-fortran/issues) to see if there is an issue you'd like to help address. [Issues](https://github.com/jacobwilliams/json-fortran/issues) with the [ready label](https://github.com/jacobwilliams/json-fortran/issues?q=is%3Aopen+is%3Aissue+label%3A%22ready%22) are issues that are ready to be dealt with. (i.e., They are not blocked by other dependencies and are higher priority.)
3535
- Increasing the test coverage is another helpful way to
3636
contribute. Please take a look at
37-
[the test coverage page](http://jacobwilliams.github.io/json-fortran/page/development-resources/json_module.F90.gcov.html)
37+
[the test coverage page](https://jacobwilliams.github.io/json-fortran/page/development-resources/json_module.F90.gcov.html)
3838
for a list of uncovered procedures, and at the
3939
[Codecov.io coverage status](https://codecov.io/gh/jacobwilliams/json-fortran)
4040
to find procedures and lines of code that are still uncovered by the

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
with:
119119
branch: gh-pages # The branch the action should deploy to.
120120
folder: doc # The folder the action should deploy.
121-
target-folder: prev/$TAGNAME # deploy to a version-specific folder
121+
target-folder: prev/${TAGNAME} # deploy to a version-specific folder
122122

123123
- name: Upload coverage
124124
if: matrix.gcc_v == 7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ Documentation
143143
--------------
144144

145145
The API documentation for the latest release version can be found
146-
[here](http://jacobwilliams.github.io/json-fortran/). The
146+
[here](https://jacobwilliams.github.io/json-fortran/). The
147147
documentation can also be generated by processing the source files
148148
with [FORD](https://github.com/cmacmackin/ford). Note that both the
149149
shell script and CMake will also generate these files automatically in the documentation folder, assuming you have FORD installed.

json-fortran.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ License
5050
The JSON-Fortran source code and related files and documentation are
5151
distributed under a permissive free software license (BSD-style). See
5252
the
53-
[LICENSE](http://jacobwilliams.github.io/json-fortran/page/development-resources/LICENSE.html)
53+
[LICENSE](https://jacobwilliams.github.io/json-fortran/page/development-resources/LICENSE.html)
5454
file for more details.
5555

5656
Official Releases
@@ -60,13 +60,13 @@ The **current stable release** is **{!.VERSION!}** and can be [downloaded
6060
on GitHub](https://github.com/jacobwilliams/json-fortran/releases/latest)
6161
or installed with [Homebrew](http://brew.sh) on MacOS. The
6262
documentation for the current version, **{!.VERSION!}**, can be
63-
found [here](http://jacobwilliams.github.io/json-fortran/prev/{!.VERSION!}/index.html)[^1], and a
63+
found [here](https://jacobwilliams.github.io/json-fortran/prev/{!.VERSION!}/index.html)[^1], and a
6464
list of changes from the previous version are
65-
[here](http://jacobwilliams.github.io/json-fortran/page/releases/index.html#change-log).
65+
[here](https://jacobwilliams.github.io/json-fortran/page/releases/index.html#change-log).
6666

6767
A list of all past releases, links to their documentation, and the
6868
change log can be found on the
69-
[releases page](http://jacobwilliams.github.io/json-fortran/page/releases/index.html).
69+
[releases page](https://jacobwilliams.github.io/json-fortran/page/releases/index.html).
7070

7171
Miscellaneous
7272
-------------
@@ -82,4 +82,4 @@ Miscellaneous
8282
[^1]:
8383
Documentation for a particular release does not contain links
8484
back to *general* documentation; use the browser's back button to
85-
navigate back to <http://jacobwilliams.github.io/json-fortran/>
85+
navigate back to <https://jacobwilliams.github.io/json-fortran/>

pages/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Other Docs
44

55
The latest stable release is
66
[**{!.VERSION!}**](
7-
http://jacobwilliams.github.io/json-fortran/{!.VERSION!}/index.html).[^1]
7+
https://jacobwilliams.github.io/json-fortran/prev/{!.VERSION!}/index.html).[^1]
88

99
# Past Releases
1010

pages/releases/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ of the `master` branch, please head back to the
1313

1414
**Documentation:**
1515
[{!.VERSION!}](
16-
https://jacobwilliams.github.io/json-fortran/{!.VERSION!}/index.html)
16+
https://jacobwilliams.github.io/json-fortran/prev/{!.VERSION!}/index.html)
1717

1818
**Download:**
1919
<https://github.com/jacobwilliams/json-fortran/releases/latest>
@@ -131,7 +131,7 @@ the [main project page](|url|/index.html) for convenient navigation.
131131
# Development Version
132132

133133
Documentation for the latest development version may be found at
134-
<https://jacobwilliams.github.io/json-fortran/{!.VERSION!}/index.html>
134+
<https://jacobwilliams.github.io/json-fortran/prev/{!.VERSION!}/index.html>
135135
or generated locally using the
136136
[build.sh](|url|/page/development-resources/build.sh.html) build
137137
script.

src/json_module.F90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737
! one module (json_module.f90).
3838
! Various Fortran 2003/2008 features are now used
3939
! (e.g., allocatable strings, newunit, generic, class, and abstract interface).
40-
! * Development continues at: [Github](http://github.com/jacobwilliams/json-fortran)
40+
! * Development continues at: [Github](https://github.com/jacobwilliams/json-fortran)
4141
!
4242
!### See also
43-
! * [json-fortran development site](http://github.com/jacobwilliams/json-fortran)
44-
! * [json-fortran online documentation](http://jacobwilliams.github.io/json-fortran)
43+
! * [json-fortran development site](https://github.com/jacobwilliams/json-fortran)
44+
! * [json-fortran online documentation](https://jacobwilliams.github.io/json-fortran)
4545
! * [JSON website](http://www.json.org/)
4646
! * [JSON validator](http://jsonlint.com/)
4747
!

0 commit comments

Comments
 (0)