Added support for EDB Job Scheduler. #7098

This commit is contained in:
Akshay Joshi
2024-03-18 11:53:59 +05:30
committed by GitHub
parent f351b10ed0
commit 097b630738
125 changed files with 7867 additions and 339 deletions
+2 -2
View File
@@ -27,10 +27,10 @@ export function getHelpUrl(base_path, file, version) {
return url + file;
}
export function getEPASHelpUrl(version) {
export function getEPASHelpUrl(version, epasURL=null) {
let major = Math.floor(version / 10000),
minor = Math.floor(version / 100) - (major * 100),
epasHelp11Plus = 'https://www.enterprisedb.com/docs/epas/$VERSION$/epas_compat_sql/',
epasHelp11Plus = epasURL??'https://www.enterprisedb.com/docs/epas/$VERSION$/epas_compat_sql/',
epasHelp = 'https://www.enterprisedb.com/docs/epas/$VERSION$/',
url = '';