Skip to content

Commit

Permalink
Update HTTP links to HTTPS. Issue common-voice#1027 (common-voice#1028)
Browse files Browse the repository at this point in the history
* Update HTTP links to HTTPS

Update HTTP links to HTTPS. VoxForge link remains http because their server doesn't support HTTPS.
  • Loading branch information
missuniverse authored and mikehenrty committed May 28, 2018
1 parent 2d27c31 commit ec4999c
Show file tree
Hide file tree
Showing 19 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ Exhibit A - Source Code Form License Notice

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

If it is not possible or desirable to put the notice in a particular
file, then You may include the notice in a location (such as a LICENSE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Instrumentation test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
* @see <a href="https://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
Expand Down
4 changes: 2 additions & 2 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<manifest xmlns:android="https://schemas.android.com/apk/res/android"
package="speeech.mozilla.commonvoice">

<uses-permission android:name="android.permission.INTERNET" />
Expand All @@ -23,4 +23,4 @@
</application>


</manifest>
</manifest>
8 changes: 4 additions & 4 deletions android/app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
<android.support.constraint.ConstraintLayout xmlns:android="https://schemas.android.com/apk/res/android"
xmlns:app="https://schemas.android.com/apk/res-auto"
xmlns:tools="https://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="speeech.mozilla.commonvoice.MainActivity">

<WebView xmlns:android="http://schemas.android.com/apk/res/android"
<WebView xmlns:android="https://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
* @see <a href="https://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
}
}
4 changes: 2 additions & 2 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# https://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# https://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
4 changes: 2 additions & 2 deletions docs/HOWTO_S3.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ in which to store voice clips.
3. Click "Create bucket"
4. Choose a bucket name. For this example guide we'll choose "voice-web".
5. Choose a region.
6. Make note of the region's associated endpoint and region from the list at http://docs.aws.amazon.com/general/latest/gr/rande.html
6. Make note of the region's associated endpoint and region from the list at https://docs.aws.amazon.com/general/latest/gr/rande.html
7. Click next twice to skip over "Set properties".
8. Give yourself full permissions.
9. Verify that public read access is disabled.
Expand Down Expand Up @@ -50,4 +50,4 @@ in which to store voice clips.

1. Create a file in your repository folder called `config.json`
2. Add a key `BUCKET_NAME`, and enter a value of the bucket we chose earlier "voice-web"
3. Add a key `BUCKET_LOCATION` with Region corresponding to your region name listed here: http://docs.aws.amazon.com/general/latest/gr/rande.html
3. Add a key `BUCKET_LOCATION` with Region corresponding to your region name listed here: https://docs.aws.amazon.com/general/latest/gr/rande.html
2 changes: 1 addition & 1 deletion docs/corpus_readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
1. General information
======================

Common Voice is a corpus of speech data read by users on the Common Voice website (http://voice.mozilla.org/), and based upon text from a number of public domain sources like user submitted blog posts, old books, movies, and other public speech corpora. Its primary purpose is to enable the training and testing of automatic speech recognition (ASR) systems, but we encourage its use for other purposes as well.
Common Voice is a corpus of speech data read by users on the Common Voice website (https://voice.mozilla.org/), and based upon text from a number of public domain sources like user submitted blog posts, old books, movies, and other public speech corpora. Its primary purpose is to enable the training and testing of automatic speech recognition (ASR) systems, but we encourage its use for other purposes as well.


2. Structure
Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapper/AppDelegate.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

import UIKit

Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapper/BrowserViewController.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

import Foundation
import UIKit
Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapper/Info.plist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapper/Recorder.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

import Foundation
import AVFoundation
Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapper/ViewController.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

import WebKit

Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapperTests/Info.plist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
Expand Down
2 changes: 1 addition & 1 deletion ios/voicebank-ios-wrapperUITests/Info.plist
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
Expand Down
2 changes: 1 addition & 1 deletion server/data/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ Affirmer's express Statement of Purpose.
CC0 or use of the Work.

For more information, please see
<http://creativecommons.org/publicdomain/zero/1.0/>
<https://creativecommons.org/publicdomain/zero/1.0/>
2 changes: 1 addition & 1 deletion server/data/en/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ Affirmer's express Statement of Purpose.
CC0 or use of the Work.

For more information, please see
<http://creativecommons.org/publicdomain/zero/1.0/>
<https://creativecommons.org/publicdomain/zero/1.0/>
4 changes: 2 additions & 2 deletions web/src/components/pages/data/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ const datasets = [
{
nick: 'ted',
size: 54,
url: 'http://www.openslr.org/51/',
download: ['http://www.openslr.org/resources/51/TEDLIUM_release-3.tgz'],
url: 'https://www.openslr.org/51/',
download: ['https://www.openslr.org/resources/51/TEDLIUM_release-3.tgz'],
license: {
name: 'CC-BY-NC-ND 3.0',
url: 'https://creativecommons.org/licenses/by-nc-nd/3.0/',
Expand Down
2 changes: 1 addition & 1 deletion web/src/components/pages/faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default () => (
</Localized>
<Localized
id="faq-get-a"
downloadLink={<a href="http://voice.mozilla.org/data" />}
downloadLink={<a href="https://voice.mozilla.org/data" />}
licenseLink={
<a href="https://creativecommons.org/publicdomain/zero/1.0/" />
}>
Expand Down

0 comments on commit ec4999c

Please sign in to comment.