Skip to content

Commit be6c658

Browse files
committed
Merge branch 'develop' into iss1393-update-keys
2 parents ac847b6 + a59d071 commit be6c658

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
* Provide a way to update SSH keys on existing resources
88
([#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))
913

1014
## Installation Notes
1115

lib/php/settings.php.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ $portal_version = "@VERSION@";
5151

5252
// URL to the Jacks root
5353
// 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";
5555
//$jacks_stable_url = "https://portal.geni.net/jacks-stable/js/jacks";
5656

5757
// Sources for external libraries the portal uses

sbin/geni-fetch-aggmon.in

+13
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
# Monitoring API: http://groups.geni.net/geni/wiki/GENIMonitoring/API
44

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+
513
import urllib
614
import urllib2
715
import json
@@ -11,6 +19,11 @@ import pprint
1119
import sys
1220
import argparse
1321

22+
# --------------------------------------------------
23+
# For testing use the development server BASE_URL:
24+
# http://genimondev.uky.edu/API'
25+
# --------------------------------------------------
26+
1427
BASE_URL = 'http://genimon.uky.edu/API'
1528
INFO_URL = '%s/info/' % (BASE_URL)
1629
DATA_URL = '%s/data/' % (BASE_URL)

0 commit comments

Comments
 (0)