You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2019/08/06 23:39:35 UTC

svn commit: r1864574 - in /comdev/reporter.apache.org/trunk/site/wizard/js: source/generators.js source/init.js wizard.js

Author: humbedooh
Date: Tue Aug  6 23:39:35 2019
New Revision: 1864574

URL: http://svn.apache.org/viewvc?rev=1864574&view=rev
Log:
switch to new quickjson endpoint, see how it fares :)
so far so good...

Modified:
    comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
    comdev/reporter.apache.org/trunk/site/wizard/js/source/init.js
    comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js?rev=1864574&r1=1864573&r2=1864574&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/generators.js Tue Aug  6 23:39:35 2019
@@ -149,7 +149,7 @@ function generate_meta(data) {
 
 function pre_splash(state, json) {
     cycles = json;
-    GET("/getjson.py", splash, {});
+    GET("/quickjson", splash, {});
 }
 
 function splash(state, json, all) {

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/source/init.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/source/init.js?rev=1864574&r1=1864573&r2=1864574&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/source/init.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/source/init.js Tue Aug  6 23:39:35 2019
@@ -44,7 +44,7 @@ function init_wizard(so) {
         console.log("Initializing escrow checks");
         window.setInterval(escrow_check, 250);
         
-        GET("/getjson.py?only=%s&anon=true".format(project), prime_wizard, {});
+        GET("/quickjson?%s".format(project), prime_wizard, {});
     }
 }
 document.body.addEventListener('keydown', () => { if (event.keyCode == 27) $("#alert").modal('hide'); });

Modified: comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js
URL: http://svn.apache.org/viewvc/comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js?rev=1864574&r1=1864573&r2=1864574&view=diff
==============================================================================
--- comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js (original)
+++ comdev/reporter.apache.org/trunk/site/wizard/js/wizard.js Tue Aug  6 23:39:35 2019
@@ -1334,7 +1334,7 @@ function generate_meta(data) {
 
 function pre_splash(state, json) {
     cycles = json;
-    GET("/getjson.py", splash, {});
+    GET("/quickjson", splash, {});
 }
 
 function splash(state, json, all) {
@@ -1773,7 +1773,7 @@ function init_wizard(so) {
         console.log("Initializing escrow checks");
         window.setInterval(escrow_check, 250);
         
-        GET("/getjson.py?only=%s&anon=true".format(project), prime_wizard, {});
+        GET("/quickjson?%s".format(project), prime_wizard, {});
     }
 }
 document.body.addEventListener('keydown', () => { if (event.keyCode == 27) $("#alert").modal('hide'); });