Skip to content

Commit 051b0cc

Browse files
committed
doc(deps): update to use https
1 parent 79e36d4 commit 051b0cc

File tree

18 files changed

+48
-48
lines changed

18 files changed

+48
-48
lines changed

deps/ocelot-nightly/INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ in most cases, `/usr/local/lib32` for 32-bit builds on a 64-bit machine and
5555
and have permissions to place files there.
5656

5757
If you have installed a previous version of `ocelot`, you probably want to get
58-
rid of that. For example, on my 64-bit [gentoo](http://www.gentoo.org) machine,
59-
the following instructions run as _root_ uninstall any previous installation of
60-
32-bit builds of `ocelot`.
58+
rid of that. For example, on my 64-bit [gentoo](https://www.gentoo.org)
59+
machine, the following instructions run as _root_ uninstall any previous
60+
installation of 32-bit builds of `ocelot`.
6161

6262
rm -rf /usr/local/include/cbl /usr/local/include/cdsl /usr/local/include/cel
6363
rm /usr/local/lib/libcbl* /usr/local/lib/libcdsl* /usr/local/lib/libcel*

deps/ocelot-nightly/LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ocelot: a language extension library
55
notices apply. Instead of providing several `LICENSE.md` files, the names of
66
all libraries are listed here with their copyright notices merged. They are
77
copied with a few changes for
8-
[markdown](http://daringfireball.net/projects/markdown/) from the `doxymain.h`
8+
[markdown](https://daringfireball.net/projects/markdown/) from the `doxymain.h`
99
files in the libraries.
1010

1111
-------------------------------------------------------------------------------

deps/ocelot-nightly/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ libraries of each category:
3535
- `conf.h/c`: configuration library (configuration file parser)
3636
- `opt.h/c`: option library (option parser)
3737

38-
Libraries had been documented with [doxygen](http://www.doxygen.org), and
39-
changed to use [markdown](http://daringfireball.net/projects/markdown/) for
38+
Libraries had been documented with [doxygen](https://www.doxygen.org), and
39+
changed to use [markdown](https://daringfireball.net/projects/markdown/) for
4040
easier maintenance and access. The `doc` directory contains
4141
[documentation](https://github.com/mycoboco/ocelot/tree/master/doc) for them.
4242

@@ -48,4 +48,4 @@ _As of the 0.4.0 release which breaks backward compatibility, the
4848
0.x in order to match the release version._
4949

5050
If you have a question or suggestion, do not hesitate to contact me via email
51-
(woong.jun at gmail.com) or web (http://code.woong.org/).
51+
(woong.jun at gmail.com) or web (https://code.woong.org/).

deps/ocelot-nightly/doc/cbl/arena.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ however, are given to aid the use of the library.
1515

1616
## 1. Introduction
1717

18-
[`malloc()`](http://en.wikipedia.org/wiki/C_dynamic_memory_allocation) and
18+
[`malloc()`](https://en.wikipedia.org/wiki/C_dynamic_memory_allocation) and
1919
other related functions from
20-
[`<stdlib.h>`](http://en.wikipedia.org/wiki/Stdlib.h) provide facilities for
20+
[`<stdlib.h>`](https://en.wikipedia.org/wiki/Stdlib.h) provide facilities for
2121
the size-based memory allocation strategy. Each invocation to allocation
2222
functions requires a corresponding invocation to deallocation functions in
2323
order to avoid
24-
[the memory leakage problem](http://en.wikipedia.org/wiki/Memory_leak). Under
24+
[the memory leakage problem](https://en.wikipedia.org/wiki/Memory_leak). Under
2525
certain circumstances the size-based memory allocator is not the best way to
2626
manage storage.
2727

@@ -128,7 +128,7 @@ There are two ways to release storages from an arena: `ARENA_FREE()` and
128128
`ARENA_DISPOSE()` does the same job and also destroy the arena to make it no
129129
more usable.
130130

131-
If you have a plan to use a tool like [Valgrind](http://valgrind.org/) to
131+
If you have a plan to use a tool like [Valgrind](https://valgrind.org/) to
132132
detect memory-related bugs, see explanations for `ARENA_DISPOSE()`.
133133

134134

@@ -281,7 +281,7 @@ it has to carefully check overflow when calculating the total size.
281281

282282
## 4. Contact me
283283

284-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
284+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
285285
this library. Any comments about the library are welcomed. If you have a
286286
proposal or question on the library just email me, and I will reply as soon as
287287
possible.

deps/ocelot-nightly/doc/cbl/assert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Nothing.
104104

105105
## 3. Contact me
106106

107-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
107+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
108108
this library. Any comments about the library are welcomed. If you have a
109109
proposal or question on the library just email me, and I will reply as soon as
110110
possible.

deps/ocelot-nightly/doc/cbl/except.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ works. Finding when it is useful is up to users.
107107
### 1.2. Caveats
108108

109109
The exception handling mechanism given here is implemented using a non-local
110-
jump provided by [`<setjmp.h>`](http://en.wikipedia.org/wiki/Setjmp.h). Every
110+
jump provided by [`<setjmp.h>`](https://en.wikipedia.org/wiki/Setjmp.h). Every
111111
restriction applied to `<setjmp.h>` also applies to this library. For example,
112112
there is no guarantee that an updated `auto` variable preserves its last stored
113113
value if the update done between `setjmp()` and `longjmp()`. For example,
@@ -362,7 +362,7 @@ names, calling sites and preferably arguments.
362362

363363
## 4. Contact me
364364

365-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
365+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
366366
this library. Any comments about the library are welcomed. If you have a
367367
proposal or question on the library just email me, and I will reply as soon as
368368
possible.

deps/ocelot-nightly/doc/cbl/memory.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ aid the use of the library.
1818

1919
The memory library is intended to substitute calls to the memory
2020
allocation/deallocation functions like
21-
[`malloc()`](http://en.wikipedia.org/wiki/C_dynamic_memory_allocation) from
22-
[`<stdlib.h>`](http://en.wikipedia.org/wiki/C_standard_library). Its main
21+
[`malloc()`](https://en.wikipedia.org/wiki/C_dynamic_memory_allocation) from
22+
[`<stdlib.h>`](https://en.wikipedia.org/wiki/C_standard_library). Its main
2323
purpose is to enhance their safety by making them:
2424

2525
- never return a null pointer, which eliminates handling exceptional cases
@@ -82,7 +82,7 @@ same interfaces and only their implementations differ. During debugging code,
8282
linking the debugging version is helpful when you want to figure out if there
8383
are invalid memory usages like a free-free problem (trying to release an
8484
already-deallocated area) and a memory leakage. This does not cover the whole
85-
range of such problems as [valgrind](http://valgrind.org/) does, but if there
85+
range of such problems as [valgrind](https://valgrind.org/) does, but if there
8686
are no other tools available for catching memory problems, the debugging
8787
version of this library would be useful. Unfortunately, the debugging version
8888
is not able to keep track of memory usage unless allocated via this library;
@@ -480,7 +480,7 @@ the total size.
480480

481481
## 4. Contact me
482482

483-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
483+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
484484
this library. Any comments about the library are welcomed. If you have a
485485
proposal or question on the library just email me, and I will reply as soon as
486486
possible.

deps/ocelot-nightly/doc/cbl/text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ in `text_save()`.
10771077

10781078
## 4. Contact me
10791079

1080-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
1080+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
10811081
this library. Any comments about the library are welcomed. If you have a
10821082
proposal or question on the library just email me, and I will reply as soon as
10831083
possible.

deps/ocelot-nightly/doc/cdsl/bitv.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ library.
1515

1616
## 1. Introduction
1717

18-
This library implements a [bit-vector](http://en.wikipedia.org/wiki/Bit_array)
18+
This library implements a [bit-vector](https://en.wikipedia.org/wiki/Bit_array)
1919
that is a set of integers. An unsigned integer type like `unsigned long` or a
2020
bit-field in a `struct` or `union` is often used to represent such a set, and
21-
various [bitwise operators](http://en.wikipedia.org/wiki/Bitwise_operation)
21+
various [bitwise operators](https://en.wikipedia.org/wiki/Bitwise_operation)
2222
serve set operations; for example, the bitwise OR operator effectively provides
2323
a union operation. This approach, however, imposes a restriction that the size
2424
of a set should be limited by that of the primitive integer type chosen. This
@@ -595,7 +595,7 @@ The symmetric difference of bit-vectors.
595595

596596
## 3. Contact me
597597

598-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
598+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
599599
this library. Any comments about the library are welcomed. If you have a
600600
proposal or question on the library just email me, and I will reply as soon as
601601
possible.

deps/ocelot-nightly/doc/cdsl/dlist.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ library.
1616
## 1. Introduction
1717

1818
The doubly-linked list library is a typical implementation of a
19-
[doubly-linked list](http://en.wikipedia.org/wiki/Doubly_linked_list) in which
19+
[doubly-linked list](https://en.wikipedia.org/wiki/Doubly_linked_list) in which
2020
nodes have two pointers to their next and previous nodes; a list with a
2121
unidirectional pointer
22-
(a [singly-linked list](http://en.wikipedia.org/wiki/Linked_list)) is
22+
(a [singly-linked list](https://en.wikipedia.org/wiki/Linked_list)) is
2323
implemented in the list library. The storage used to maintain a list itself is
2424
managed by the library, but any storage allocated for data stored in nodes
2525
should be managed by a user program.
@@ -438,7 +438,7 @@ Nothing.
438438

439439
## 3. Contact me
440440

441-
Visit [`code.woong.org`](http://code.woong.org) to get the latest version of
441+
Visit [`code.woong.org`](https://code.woong.org) to get the latest version of
442442
this library. Any comments about the library are welcomed. If you have a
443443
proposal or question on the library just email me, and I will reply as soon as
444444
possible.

0 commit comments

Comments
 (0)