File tree 3 files changed +18
-1
lines changed
3 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
* Provide a way to update SSH keys on existing resources
8
8
([ #1393 ] ( https://github.com/GENI-NSF/geni-portal/issues/1393 ) )
9
+ * Add some notes to geni-fetch-aggmon for testing
10
+ ([ #1703 ] ( https://github.com/GENI-NSF/geni-portal/issues/1703 ) )
11
+ * Update the Jacks URL per Emulab's request
12
+ ([ #1704 ] ( https://github.com/GENI-NSF/geni-portal/issues/1704 ) )
9
13
10
14
## Installation Notes
11
15
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ $portal_version = "@VERSION@";
51
51
52
52
// URL to the Jacks root
53
53
// Stable
54
- $jacks_stable_url = "https://www.emulab.net/protogeni/jacks-stable/js/jacks";
54
+ $jacks_stable_url = "https://www.emulab.net/protogeni/jacks-stable/js/jacks.js ";
55
55
//$jacks_stable_url = "https://portal.geni.net/jacks-stable/js/jacks";
56
56
57
57
// Sources for external libraries the portal uses
Original file line number Diff line number Diff line change 2
2
3
3
# Monitoring API: http://groups.geni.net/geni/wiki/GENIMonitoring/API
4
4
5
+ # ----------------------------------------------------------------------
6
+ # TO DO:
7
+ # * Add a command option to override the BASE_URL so that the
8
+ # development server, for instance, could be used without changes
9
+ # * Add a command line option to allow verbose output to enable
10
+ # debugging
11
+ # ----------------------------------------------------------------------
12
+
5
13
import urllib
6
14
import urllib2
7
15
import json
@@ -11,6 +19,11 @@ import pprint
11
19
import sys
12
20
import argparse
13
21
22
+ # --------------------------------------------------
23
+ # For testing use the development server BASE_URL:
24
+ # http://genimondev.uky.edu/API'
25
+ # --------------------------------------------------
26
+
14
27
BASE_URL = 'http://genimon.uky.edu/API'
15
28
INFO_URL = '%s/info/' % (BASE_URL )
16
29
DATA_URL = '%s/data/' % (BASE_URL )
You can’t perform that action at this time.
0 commit comments