From 84f72303fb185a51610d33df7848a0e01ebc6807 Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Wed, 21 Dec 2011 15:39:33 -0500 Subject: [PATCH] GENI v3 manifest rspec scheamLocation attribute now reports the correct scheam --- sfa/rspecs/versions/pgv3.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sfa/rspecs/versions/pgv3.py b/sfa/rspecs/versions/pgv3.py index 3fe60e56..6bedec6a 100644 --- a/sfa/rspecs/versions/pgv3.py +++ b/sfa/rspecs/versions/pgv3.py @@ -1,6 +1,6 @@ from sfa.rspecs.versions.pgv2 import PGv2 -class PGv3(PGv2): +class GENIv3(PGv2): type = 'GENI' content_type = 'ad' version = '3' @@ -14,21 +14,21 @@ class PGv3(PGv2): elements = [] -class PGv3Ad(PGv3): +class GENIv3Ad(GENIv3): enabled = True content_type = 'ad' schema = 'http://www.geni.net/resources/rspec/3/ad.xsd' template = '' -class PGv3Request(PGv3): +class GENIv3Request(GENIv3): enabled = True content_type = 'request' schema = 'http://www.geni.net/resources/rspec/3/request.xsd' template = '' -class PGv2Manifest(PGv3): +class GENIv2Manifest(GENIv3): enabled = True content_type = 'manifest' schema = 'http://www.geni.net/resources/rspec/3/manifest.xsd' - template = '' + template = '' -- 2.43.0