summaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src
AgeCommit message (Expand)AuthorFilesLines
2017-11-01Merge "confirmation msg for delete FG doesn't appear"Vitaly Emporopulo1-1/+3
2017-10-26confirmation msg for delete FG doesn't appearmiriame1-1/+3
2017-10-26delete confirmation modals - styles alignmentmiriame8-8/+16
2017-10-23Readonly screen for limitsilanap4-12/+46
2017-10-22Merge "fix error when moving to previous version"Avi Gaffa1-1/+2
2017-10-22fix error when moving to previous versionmiriame1-1/+2
2017-10-22parse multilple error messages in separate linesmiriame2-3/+6
2017-10-09Problem validation error messageilanap1-3/+3
2017-09-27Fix orphan list for VLMsilanap3-19/+4
2017-09-13Other option for license agreement termilanap7-293/+45
2017-09-12Create new VSP, onboard from TOSCA file - UIshrek200016-97/+182
2017-09-10Add latest bug fixes to masteravigaffa2-11/+17
2017-08-30vsp submit message error fixSVISHNEV1-3/+6
2017-08-29Validation page icons fixSVISHNEV1-2/+2
2017-08-28Update D3 version in dox-sequence-diagram-uiStanislav Vishnevetsky1-3/+2
2017-08-10[SDC] OnBoard with enabled tests and featuresaz249744-271/+444
2017-07-26[SDC] Full OnBoard health-check and NFoD supportAvi Ziv76-540/+1566
2017-07-18[SDC] Onboarding 1710 rebase.Avi Ziv128-869/+4031
2017-06-18[sdc] update code of sdcMichael Lando2-2/+4
2017-06-11[SDC-29] rebase continue work to align sourceMichael Lando9-26/+53
2017-06-09[SDC-29] Amdocs OnBoard 1707 initial commit.AviZi295-7958/+13677
2017-02-19Add new code new versionMichael Lando196-0/+17079
ABLE IF NOT EXISTS feature_group (vlm_id text, fg_id text, name text, description text, ep_ids set<text>, lkg_ids set<text>, refd_by_las set<text>, PRIMARY KEY (vlm_id, fg_id)) ### CREATE TABLE IF NOT EXISTS license_key_group (vlm_id text,lkg_id text,name text,description text, type text, operational_scope text, ref_fgs set<text>,PRIMARY KEY (vlm_id, lkg_id)) ### Usage: ### ### parse-json.py -t create -f cassandra-commands.json ### ### For example: ### ### ### Author: Avi Ziv ### Version 1.0 ### Date: 3 May 2016 ### ############################################################################## import sys, getopt import json as json from collections import OrderedDict def readJsonFile(file, type): with open(file, 'r') as f: data = json.load(f, object_pairs_hook=OrderedDict) return data[type] def printJsonTypeEntries(jsonData): for i in jsonData.keys(): print jsonData[i] + ';' def usage(): print 'parseJsonFile.py [-f <json-file> & -t <cql-type: drop|create|insert|update|select]' def main(argv): action = '' try: opts, args = getopt.getopt(argv, "h:f:t:") except getopt.GetoptError: usage() sys.exit(2) for opt, arg in opts: if opt == '-h': usage() sys.exit() elif opt == '-f': jsonFile = arg action = 'file' elif opt == '-t': type = arg if action == 'file': sJson = readJsonFile(jsonFile, type) printJsonTypeEntries(sJson) sys.exit() else: usage() if __name__ == "__main__": main(sys.argv[1:])