Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public final class KMPLink {

public static final String KMP_PRODUCTION_HOST = "keyman.com";
public static final String KMP_STAGING_HOST = "keyman.com"; // #7227 disabling: "keyman-staging.com";
public static final String KMP_STAGING_HOST = "keyman-staging.com";

private static final String KMP_INSTALL_KEYBOARDS_PATTERN_FORMATSTR = "^http(s)?://(%s|%s)/keyboards/install/([^\\?/]+)(\\?(.+))?$";
private static final String installPatternFormatStr = KMString.format(KMP_INSTALL_KEYBOARDS_PATTERN_FORMATSTR,
Expand Down
2 changes: 1 addition & 1 deletion common/windows/delphi/general/Upload_Settings.pas
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ implementation
// Alpha versions will work against the staging server so that they
// can access new APIs etc that will only be available there. The staging
// servers have resource constraints but should be okay for limited use.
S_KeymanCom_Staging = 'https://keyman.com'; // #7227 disabling: 'https://keyman-staging.com';
S_KeymanCom_Staging = 'https://keyman-staging.com';
S_APIServer_Staging = 'api.keyman.com'; // #7227 disabling: 'api.keyman-staging.com';

const
Expand Down
2 changes: 1 addition & 1 deletion ios/engine/KMEI/KeymanEngine/Classes/KeymanHosts.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public enum KeymanHosts {
case .alpha:
fallthrough
case .beta:
return URL.init(string: "https://keyman.com")! // #7227 disabling: "https://keyman-staging.com")!
return URL.init(string: "https://keyman-staging.com")!
case .stable:
return URL.init(string: "https://keyman.com")!
}
Expand Down
12 changes: 6 additions & 6 deletions linux/keyman-config/keyman_config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ def add_standard_arguments(parser):
gettext.textdomain('keyman-config')


#if __tier__ == 'alpha' or __tier__ == 'beta': // #7227 disabling:
if __tier__ == 'alpha' or __tier__ == 'beta':
# Alpha and beta versions will work against the staging server so that they
# can access new APIs etc that will only be available there. The staging
# servers have resource constraints but should be okay for limited use.
# KeymanComUrl = 'https://keyman-staging.com'
# KeymanApiUrl = 'https://api.keyman-staging.com'
#else:
KeymanComUrl = 'https://keyman.com'
KeymanApiUrl = 'https://api.keyman.com'
KeymanComUrl = 'https://keyman-staging.com'
KeymanApiUrl = 'https://api.keyman.com'
else:
KeymanComUrl = 'https://keyman.com'
KeymanApiUrl = 'https://api.keyman.com'


# There's no staging site for downloads
Expand Down
Loading
Loading