Skip to content

Commit f5e5311

Browse files
author
Allen Winter
committed
various - use https instead of http where we can
Update Eric's email Remove softwarestudio.com which no longer exists as a domain
1 parent 464bef5 commit f5e5311

File tree

241 files changed

+589
-681
lines changed

Some content is hidden

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

241 files changed

+589
-681
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ set(LIBICAL_LIB_VERSION_STRING
113113
)
114114

115115
set(PROJECT_VERSION "${LIBICAL_LIB_MAJOR_VERSION}.${LIBICAL_LIB_MINOR_VERSION}")
116-
set(PROJECT_URL "http://libical.github.io/libical/")
116+
set(PROJECT_URL "https://libical.github.io/libical/")
117117

118118
# library build types
119119
set(LIBRARY_TYPE SHARED)
@@ -169,7 +169,7 @@ endif()
169169

170170
# libicu is highly recommended for RSCALE support
171171
# libicu can be found at http://www.icu-project.org
172-
# RSCALE info at http://tools.ietf.org/html/rfc7529
172+
# RSCALE info at https://tools.ietf.org/html/rfc7529
173173
find_package(ICU)
174174
set_package_properties(ICU PROPERTIES
175175
TYPE RECOMMENDED

Install.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Homebrew:
9898

9999
* Berkeley DB storage.
100100
Optional for the Berkeley Database storage support.
101-
The development toolkit can be found at http://www.oracle.com/database/berkeley-db
101+
The development toolkit can be found at https://www.oracle.com/database/berkeley-db
102102

103103
** This code path has not been fully tested.
104104
** Don't be surprised if there are bugs.
@@ -141,7 +141,7 @@ Use these CMake options to adjust the library behavior as follows:
141141

142142
== Tweaking the Installation Directories ==
143143
By default, the installation layout is according to the GNU standard installation directories.
144-
http://www.gnu.org/prep/standards/html_node/Directory-Variables.html
144+
https://www.gnu.org/prep/standards/html_node/Directory-Variables.html
145145

146146
You can override various installation folders by passing the following variables to CMake:
147147
CMAKE_INSTALL_LIBDIR = The fullpath where you want the put the installed libraries

LICENSE.MPL2.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ Exhibit A - Source Code Form License Notice
357357

358358
This Source Code Form is subject to the terms of the Mozilla Public
359359
License, v. 2.0. If a copy of the MPL was not distributed with this
360-
file, You can obtain one at http://mozilla.org/MPL/2.0/.
360+
file, You can obtain one at https://mozilla.org/MPL/2.0/.
361361

362362
If it is not possible or desirable to put the notice in a particular
363363
file, then You may include the notice in a location (such as a LICENSE

ReadMe.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ is aware of it and is prepared to change the calls anytime.
3333
## License
3434

3535
The code and datafiles in this distribution are licensed under the
36-
Mozilla Public License (MPL) v2.0. See <http://www.mozilla.org/MPL>
36+
Mozilla Public License (MPL) v2.0. See <https://www.mozilla.org/MPL>
3737
for a copy of this license.
3838

3939
Alternately, you may use libical under the terms of the GNU Lesser
40-
General Public License (LGPL) v2.1. See <http://www.gnu.org/licenses/lgpl-2.1.txt>
40+
General Public License (LGPL) v2.1. See <https://www.gnu.org/licenses/lgpl-2.1.txt>
4141
for a copy of this license.
4242

4343
This dual license ensures that the library can be incorporated into
@@ -56,7 +56,7 @@ see [UsingLibical.md](doc/UsingLibical.md)
5656
and annotated examples in `examples/` and the test code in `src/test/`.
5757

5858
Additionally, progress is underway to add API documentation,
59-
which is available [here](http://libical.github.io/libical/apidocs/index.html)
59+
which is available [here](https://libical.github.io/libical/apidocs/index.html)
6060

6161
## Acknowledgments
6262

@@ -91,10 +91,10 @@ In no particular order:
9191
Subscribe to our mailing lists:
9292

9393
For developer discussions
94-
<http://lists.infradead.org/mailman/listinfo/libical-devel>
94+
<https://lists.infradead.org/mailman/listinfo/libical-devel>
9595

9696
For general discussions about libical and related projects
97-
<http://lists.infradead.org/mailman/listinfo/libical-interest>
97+
<https://lists.infradead.org/mailman/listinfo/libical-interest>
9898

9999
Report bugs to our issue tracker at
100100
<https://github.com/libical/libical/issues>

cmake/Toolchain-QNX65.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This software is provided "as is" under an open source license, with
88
# no warranty. The complete license can be found in license.txt and
9-
# http://www.cisst.org/cisst/license.txt.
9+
# https://www.cisst.org/cisst/license.txt.
1010
#
1111
# --- end cisst license ---
1212

cmake/Toolchain-QNX66.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# This software is provided "as is" under an open source license, with
88
# no warranty. The complete license can be found in license.txt and
9-
# http://www.cisst.org/cisst/license.txt.
9+
# https://www.cisst.org/cisst/license.txt.
1010
#
1111
# --- end cisst license ---
1212

cmake/modules/FindBDB.cmake

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

88
set_package_properties(BDB PROPERTIES
99
DESCRIPTION "Berkeley DB storage"
10-
URL "http://www.oracle.com/database/berkeley-db"
10+
URL "https://www.oracle.com/database/berkeley-db"
1111
)
1212

1313
if(BDB_INCLUDE_DIR AND BDB_LIBRARY)

cmake/modules/FindGLib.cmake

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

99
set_package_properties(GLib PROPERTIES
1010
DESCRIPTION "A library of handy utility functions"
11-
URL "http://www.gtk.org"
11+
URL "https://www.gtk.org"
1212
)
1313

1414
find_package(PkgConfig)

debian/copyright

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ Wed, 27 Dec 2006 12:19:06 +0100.
44
It was downloaded from http://www.aurore.net/projects/libical/
55

66
This is a modified version of the original libical project from softwarestudio
7-
and the original author is Eric Busboom <eric@softwarestudio.org>.
7+
and the original author is Eric Busboom <eric@civicknowledge.com>.
88

99
Upstream Authors:
1010
John Gray <[email protected]>
1111
Andrea Campi <[email protected]>
1212
Omar Kilani <[email protected]>
1313

1414
Copyright for generated icalderivedproperties:
15-
(C) 1999 Eric Busboom <eric@softwarestudio.org>
15+
(C) 1999 Eric Busboom <eric@civicknowledge.com>
1616

1717
Copyright for generated restrictionrecords and parameterrestrictions:
1818
(C) 1999 Graham Davison <[email protected]>
1919

2020
Copyright for sspm based on code from the mimelite distribution:
2121
(C) 1994 Gisle Hannemyr <[email protected]>
22-
(C) 2000 Eric Busboom <eric@softwarestudio.org>
22+
(C) 2000 Eric Busboom <eric@civicknowledge.com>
2323

2424
Copyright for snprintf:
2525
(C) 1997 Theo de Raadt

doc/Mainpage.dox

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ plus the iCalendar iMIP protocol in RFC6047.
1616
@section license License
1717

1818
The code and datafiles in this distribution are licensed under the
19-
Mozilla Public License (MPL) v2.0. See http://www.mozilla.org/MPL
19+
Mozilla Public License (MPL) v2.0. See https://www.mozilla.org/MPL
2020
for a copy of the license.
2121

2222
Alternately, you may use libical under the terms of the GNU Library
23-
General Public License (LGPL) v2.1. See http://www.gnu.org/licenses/lgpl-2.1.txt
23+
General Public License (LGPL) v2.1. See https://www.gnu.org/licenses/lgpl-2.1.txt
2424
for a copy of the license.
2525

2626
This dual license ensures that the library can be incorporated into

0 commit comments

Comments
 (0)