Skip to content

Commit 18caa72

Browse files
committed
use https for links
* http url points to a webpage in maintainence mode
1 parent 90127af commit 18caa72

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/installation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
SUBJECTS_FILE = join(INSTALL_PATH,"subjects.json")
1515
DATA_FILE = join(INSTALL_PATH,"data.json")
1616
CONFIG_FILE = join(INSTALL_PATH,"config.json")
17-
LOGIN_LINK = "http://nalanda.bits-pilani.ac.in/login/index.php"
18-
HOMEPAGE_LINK = "http://nalanda.bits-pilani.ac.in/my"
17+
LOGIN_LINK = "https://nalanda.bits-pilani.ac.in/login/index.php"
18+
HOMEPAGE_LINK = "https://nalanda.bits-pilani.ac.in/my"
1919

2020
session = requests.session()
2121

src/nalanda

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ SUB_NAMES = list(subs.values())
1717
SUB_URLS = list(subs.keys())
1818
RANGE_SUBS = range(len(SUB_URLS))
1919

20-
ZIP_FILE_LINK = "http://nalanda.bits-pilani.ac.in/mod/folder/download_folder.php"
21-
LOGIN_LINK = "http://nalanda.bits-pilani.ac.in/login/index.php"
20+
ZIP_FILE_LINK = "https://nalanda.bits-pilani.ac.in/mod/folder/download_folder.php"
21+
LOGIN_LINK = "https://nalanda.bits-pilani.ac.in/login/index.php"
2222

2323
URLS = {}
2424
for x in RANGE_SUBS:

0 commit comments

Comments
 (0)