Skip to content

Commit 8e5a7e0

Browse files
committed
1 parent 74de5e6 commit 8e5a7e0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

assets/addons/ide/ja/demo/webview.ijs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ wd 'bin z'
2323
wd 'pshow'
2424
wd 'set e text http://news.yahoo.com'
2525
wd 'set w1 url http://news.yahoo.com'
26-
wd 'set w2 baseurl http://www.jsoftware.com'
26+
wd 'set w2 baseurl https://www.jsoftware.com'
2727
wd 'set w2 html <html><body><img src=''./zippy.gif'' /></body></html>'
2828
)
2929

assets/addons/ide/ja/help.ijs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ htmlhelpbaselib=: 3 : 0
116116
if. fexist f=. jpath '~.Main/', y do.
117117
open f
118118
else.
119-
browse_j_ 'http://www.jsoftware.com/wsvn/base8/trunk/', y
119+
browse_j_ 'https://www.jsoftware.com/wsvn/base8/trunk/', y
120120
end.
121121
''
122122
)

assets/addons/ide/ja/testxml/res/values/strings.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
<string name="activity_name">Activity</string>
1414

15-
<string name="help_start">http://www.jsoftware.com/help/dictionary/vocabul.htm</string>
16-
<string name="learning">http://www.jsoftware.com/help/learning/contents.htm</string>
15+
<string name="help_start">https://www.jsoftware.com/help/dictionary/vocabul.htm</string>
16+
<string name="learning">https://www.jsoftware.com/help/learning/contents.htm</string>
1717
<string name="aboutj">docs/aboutj.txt</string>
1818
<string name="readme">docs/android-readme.txt</string>
1919

install.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ant is required but not eclipse.
44

55
download J binaries from
66

7-
http://www.jsoftware/download/jandroid/libs
7+
https://www.jsoftware/download/jandroid/libs
88

99
and copy them to libs folder
1010

src/com/jsoftware/j/android/AbstractActivity.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public boolean onOptionsItemSelected(MenuItem item)
281281
updateJ();
282282
break;
283283
case R.id.checknewver:
284-
new GetHttpTask().execute("http://www.jsoftware.com/download/j" + this.theApp.jversion + "/install/AndroidManifest.xml");
284+
new GetHttpTask().execute("https://www.jsoftware.com/download/j" + this.theApp.jversion + "/install/AndroidManifest.xml");
285285
break;
286286
default:
287287
result = false;
@@ -562,7 +562,7 @@ public void showHelp(int resId)
562562
if(file.exists())
563563
myIntent.setDataAndType(Uri.fromFile(file), "text/html");
564564
else
565-
myIntent.setData(Uri.parse("http://www.jsoftware.com/help/"+getResources().getString(resId)));
565+
myIntent.setData(Uri.parse("https://www.jsoftware.com/help/"+getResources().getString(resId)));
566566
startActivity(myIntent);
567567
}
568568
public void showTextFile(int resId)
@@ -837,7 +837,7 @@ protected void onPostExecute(String result)
837837
public void onClick(DialogInterface dialog, int which) {
838838
dialog.dismiss();
839839
Intent myIntent = new Intent(Intent.ACTION_VIEW,
840-
Uri.parse("http://www.jsoftware.com/download/j" + theApp.jversion + "/install/j" + theApp.jversion + "_android.apk"));
840+
Uri.parse("https://www.jsoftware.com/download/j" + theApp.jversion + "/install/j" + theApp.jversion + "_android.apk"));
841841
startActivity(myIntent);
842842
}
843843
});

0 commit comments

Comments
 (0)