case 3649
This commit is contained in:
@@ -654,7 +654,7 @@ namespace AyaNova.PlugIn.PTI
|
||||
break;
|
||||
|
||||
case "Contents": //
|
||||
Util.OpenWebURL("http://www.ayanova.com/pti7webhelp/index.html");
|
||||
Util.OpenWebURL("https://www.ayanova.com/PTI7webHelp/index.html");//case 3649
|
||||
break;
|
||||
|
||||
case "Technical support": // ButtonTool
|
||||
@@ -662,7 +662,7 @@ namespace AyaNova.PlugIn.PTI
|
||||
break;
|
||||
|
||||
case "Check for updates": // ButtonTool
|
||||
Util.OpenWebURL("http://www.ayanova.com/download.htm");
|
||||
Util.OpenWebURL("https://www.ayanova.com/download.htm");
|
||||
break;
|
||||
|
||||
case "About": // ButtonTool
|
||||
|
||||
@@ -675,7 +675,8 @@ namespace AyaNova.PlugIn.QBI
|
||||
break;
|
||||
|
||||
case "Contents": //
|
||||
Util.OpenWebURL("http://www.ayanova.com/qbi7webhelp/index.html");
|
||||
//case 3649
|
||||
Util.OpenWebURL("https://www.ayanova.com/QBI7webHelp/index.html");
|
||||
break;
|
||||
|
||||
case "Technical support": // ButtonTool
|
||||
@@ -683,7 +684,8 @@ namespace AyaNova.PlugIn.QBI
|
||||
break;
|
||||
|
||||
case "Check for updates": // ButtonTool
|
||||
Util.OpenWebURL("http://www.ayanova.com/download.htm");
|
||||
//case 3649
|
||||
Util.OpenWebURL("https://www.ayanova.com/download.htm");
|
||||
break;
|
||||
|
||||
case "About": // ButtonTool
|
||||
|
||||
@@ -666,7 +666,7 @@ namespace AyaNova.PlugIn.QBOI
|
||||
break;
|
||||
|
||||
case "Contents": //
|
||||
Util.OpenWebURL("http://www.ayanova.com/qboi7webhelp/index.html");
|
||||
Util.OpenWebURL("https://www.ayanova.com/QBOI7WebHelp/index.html");
|
||||
break;
|
||||
|
||||
case "Technical support": // ButtonTool
|
||||
|
||||
@@ -840,7 +840,7 @@ namespace AyaNova
|
||||
private void btnCountryCode_Click(object sender, System.EventArgs e)
|
||||
{
|
||||
//case 1039 //log.Debug("btnCountryCode_Click");
|
||||
Util.OpenWebURL("http://www.iso.org/iso/en/prods-services/iso3166ma/02iso-3166-code-lists/list-en1.html");
|
||||
Util.OpenWebURL("https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2");
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -3637,8 +3637,8 @@ namespace AyaNova
|
||||
break;
|
||||
|
||||
case "QuickStart": // case 1306
|
||||
|
||||
Util.OpenWebURL(Util.BaseHelpUrl + "QuickStart_for_Beginners.htm");
|
||||
//case 3649
|
||||
Util.OpenWebURL(Util.BaseHelpUrl + "index.html?quickstart_for_beginners.htm");
|
||||
|
||||
break;
|
||||
|
||||
@@ -3661,15 +3661,21 @@ namespace AyaNova
|
||||
System.Diagnostics.FileVersionInfo fileVersion = System.Diagnostics.FileVersionInfo.GetVersionInfo(a.Location);
|
||||
string surl = CheckForUpdate.UpdateUrl((AyaBizUtils.Lite ? "AyaNovaLite" : "AyaNovaFull"), fileVersion.FileVersion);
|
||||
|
||||
|
||||
|
||||
if (!string.IsNullOrEmpty(surl))
|
||||
if (!surl.StartsWith("http:"))
|
||||
{
|
||||
//case 3649
|
||||
if (surl.StartsWith("http:"))
|
||||
surl = surl.Replace("http:", "https:");
|
||||
|
||||
if (!surl.StartsWith("https:"))
|
||||
Util.Error("CheckForUpdate failed", surl);
|
||||
else
|
||||
Util.OpenWebURL(surl);
|
||||
}
|
||||
else
|
||||
MessageBox.Show("Up to date!");
|
||||
//Util.OpenWebURL("http://www.ayanova.com/download.htm");
|
||||
|
||||
break;
|
||||
|
||||
case "LT:UI.Help.PurchaseLicenses": // StateButtonTool
|
||||
|
||||
@@ -18,8 +18,8 @@ namespace AyaNova
|
||||
|
||||
private void lblQuickStart_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
||||
Util.OpenWebURL(Util.BaseHelpUrl + "index.html?QuickStart_for_Beginners.htm");
|
||||
|
||||
Util.OpenWebURL(Util.BaseHelpUrl + "index.html?quickstart_for_beginners.htm");
|
||||
// this.Close();
|
||||
}
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ namespace AyaNova
|
||||
private void lblQuickStart_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
||||
{
|
||||
|
||||
Util.OpenWebURL( "http://www.ayanova.com/purchase.htm");
|
||||
Util.OpenWebURL( "https://www.ayanova.com/purchase.htm");
|
||||
//this.WindowState = FormWindowState.Minimized;
|
||||
}
|
||||
|
||||
|
||||
@@ -5499,10 +5499,13 @@ At first I was happy to find your code that solved my problem, but I did not lik
|
||||
|
||||
try
|
||||
{
|
||||
if(sUrl.ToLower().StartsWith("http://"))
|
||||
//case 3649 changed this block to handle https urls
|
||||
if (sUrl.ToLower().StartsWith("https://"))
|
||||
System.Diagnostics.Process.Start(sUrl);
|
||||
else if(sUrl.ToLower().StartsWith("http://"))
|
||||
System.Diagnostics.Process.Start(sUrl);
|
||||
else
|
||||
System.Diagnostics.Process.Start("http://" + sUrl);
|
||||
System.Diagnostics.Process.Start("https://" + sUrl);//was http before case 3649
|
||||
|
||||
}
|
||||
catch(Exception ex)
|
||||
@@ -8514,9 +8517,9 @@ At first I was happy to find your code that solved my problem, but I did not lik
|
||||
get
|
||||
{
|
||||
if(AyaBizUtils.Lite)
|
||||
return "http://www.ayanova.com/AyaNovaLite7webHelp/";
|
||||
return @"https://www.ayanova.com/AyaNovaLite7webHelp/";
|
||||
|
||||
return "http://www.ayanova.com/AyaNova7webHelp/";
|
||||
return @"https://www.ayanova.com/AyaNova7webHelp/";
|
||||
}
|
||||
}
|
||||
#endregion help url
|
||||
|
||||
Reference in New Issue
Block a user