remove openwrt.org specific paths
authorMoritz Warning <moritzwarning@web.de>
Fri, 5 Jun 2020 21:10:00 +0000 (23:10 +0200)
committerMoritz Warning <moritzwarning@web.de>
Fri, 5 Jun 2020 21:10:19 +0000 (23:10 +0200)
this would require every json file input to include an url value

config.js
index.js

index 7a19d500b316af0366cbdef8765454205ab25e7f..d5e6891b54af305e3722215198fec68c8209c1e0 100644 (file)
--- a/config.js
+++ b/config.js
@@ -4,8 +4,6 @@ var config = {
   language: 'en',
   // Show help text for images
   showHelp: true,
-  // base URL
-  base_url: 'https://downloads.openwrt.org',
   // Files to get data from
   versions: {
   //'SNAPSHOT': '/api/names/SNAPSHOT', // when using sasu backend
index fab5b878d14666fd2d64b08c295d831e89cbdfff..038b4048c021fd9147b7e19a072e900e71ca69f0 100644 (file)
--- a/index.js
+++ b/index.js
@@ -27,14 +27,6 @@ function get_model_titles(titles) {
   }).join(' / ');
 }
 
-function get_version_url(version) {
-  if (version == 'SNAPSHOT') {
-    return config.base_url + '/snapshots/targets/{target}'
-  } else {
-    return config.base_url + '/releases/{version}/targets/{target}'.replace('{version}', version)
-  }
-}
-
 function build_asa_request() {
   if (!current_model || !current_model.id) {
     alert('bad profile');
@@ -398,7 +390,6 @@ function init() {
       data.json().then(obj => {
         // handle native openwrt json format
         if ('profiles' in obj) {
-          obj['url'] = get_version_url(version)
           obj['models'] = {}
           for (const [key, value] of Object.entries(obj['profiles'])) {
             obj['models'][get_model_titles(value.titles)] = value