summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-04-15Introduce column filters in GAB tableTomasz Golabek3-1/+54
Additional input is available in each GABs headers providing possibility to filter data-rows Change-Id: I3d782673e275a2dc3b2d297520ace774348a8e68 Issue-ID: SDC-2214 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
2019-04-14Declare properties as policiestalio64-880/+2955
Change-Id: I54dc7b444e08117097c314cf5f51bd356ac5287d Issue-ID: SDC-2240 Signed-off-by: talio <tali.orenbach@amdocs.com>
2019-04-14Revert "Upgrade SDC to use common cassandra cluster"Sonsino, Ofir (os0695)8-21/+30
This reverts commit 00a6a4d66b0d22d530314816b4b5697fbc975e37. Change-Id: I308844556aea66e91064d9067e3ba54179a0bb46 Issue-ID: SDC-2199 Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
2019-04-11Functional Test Automation: VSPVodafone10-18/+435
Change-Id: I2090a0646c1f1c7077830dbf49294f9a711774e4 Issue-ID: SDC-2047 Co-authored-by: rahul.ghugikar@vodafone.com, soumyarup.paul@vodafone.com Signed-off-by: Vodafone <onap@vodafone.com>
2019-04-11Apply Valid Value Constraints validationsiddharth09051-11/+22
Service consumption scenario fix Change-Id: I5ad7beb18b0490385d24ce30b750ca5c2ebb28a8 Issue-ID: SDC-2224 Signed-off-by: siddharth0905 <siddharth.singh4@amdocs.com>
2019-04-11sdc-backend-init docker container exits unsuccessfully with 404 error in ↵sarada prasad sahoo2-31/+23
importNormativeAll.py import of osca.policies.nfv.AffinityRule and tosca.policies.nfv.AntiAffinityRule getting failed at first attempt, comment execute , then un-comment execute it is working, strange issue Change-Id: Ia8799b4221b771ed34d61d09f87e2d9973861ebe Issue-ID: SDC-2231 Signed-off-by: sarada prasad sahoo <sarada.prasad.sahoo@huawei.com>
2019-04-11Apply Valid Value Constraints validationsiddharth090553-779/+2827
Apply Valid Value Constraints validation for FE and BE in Property Assignment, Input, Service Consumption screen Change-Id: I01c7523bad702f003cd52fd88bc69fe950b2b4f3 Issue-ID: SDC-2224 Signed-off-by: siddharth0905 <siddharth.singh4@amdocs.com>
2019-04-10Some unit tests for catalog-beTomasz Golabek7-169/+191
Code coverage for some classes from catalog-be increased. Some refactor made if needed. Change-Id: I1c5a35f99fcc0ace2f7b6ba4f7ef4f41acbed5e7 Issue-ID: SDC-2220 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
2019-04-10Upgrade SDC to use common cassandra clusterMahendra Raghuwanshi8-30/+21
Issue-ID: SDC-2199 Change-Id: I139f38f3f3d968b775c9962bfe3ad6d13ea7f678 Signed-off-by: Mahendra Raghuwanshi <mahendra.raghuwanshi@amdocs.com>
2019-04-10Add cds consumer to the SDC.prathamesh morde1-1/+1
Change-Id: Ib11a4d8806ecd3568e50d28f471655dea1d3cf9f Issue-ID: CCSDK-1213 Signed-off-by: prathamesh morde <prathamesh.morde@bell.ca>
2019-04-10READMETomasz Golabek1-0/+72
README for the yaml parser. Change-Id: Id94ec7bf4ba27ccffb31765b279e1ba3b8b50cd1 Issue-ID: SDC-2094 Signed-off-by: Tomasz Golabek <tomasz.golabek@nokia.com>
2019-04-10fix a typo: enzble --> enableLiang Ding1-1/+1
Change-Id: I9639fe1777b98eed3fc340044d57d6f007ed58f0 Issue-ID: SDC-2212 Signed-off-by: Liang Ding <liang.ding@intel.com>
2019-04-10Workflow artifact in distribution notification-18/+18
retrive -- > retrieve Change-Id: Ic6bce5b991c042cc2d19f1f72dd827644111b105 Issue-ID: SDC-2207 Signed-off-by: Liang Ding <liang.ding@intel.com>
an class="p">) { transform: rotate($deg + deg); /* IE10 and Mozilla */ -ms-transform: rotate($deg + deg); /* IE 9 */ -webkit-transform: rotate($deg + deg); /* Safari and Chrome */ } /* transform-translate */ // @mixin // Defines a 2D rotation, the angle is specified in the parameter // @param // $deg - angle in degrees @mixin transform-translate($x, $y) { transform: translate($x, $y); /* IE10 and Mozilla */ -ms-transform: translate($x, $y); /* IE 9 */ -webkit-transform: translate($x, $y); /* Safari and Chrome */ } /* transform-scale */ // @mixin // Defines a 2D scale transformation, changing the elements width and height // @param // $width - width // @param // $height - height @mixin transform-scale($width, $height) { transform: scale($width, $height); /* IE10 and Mozilla */ -ms-transform: scale($width, $height); /* IE 9 */ -webkit-transform: scale($width, $height); /* Safari and Chrome */ } @mixin scrollable() { ::-webkit-scrollbar { width: 8px; } } @mixin create-circle($size, $bgcolor) { border-radius: 50%; width: $size; height: $size; background: $bgcolor; border: 3px solid $bgcolor; display: flex; align-items: center; justify-content: center; } /**/ @mixin keyframe-animation($animationType, $properties, $fromValue, $toValue) { @keyframes #{$animationType} { from { $startIndex: 1; @each $property in $properties { #{$property}: nth($fromValue, $startIndex); $startIndex: $startIndex + 1; } } to { $startIndex: 1; @each $property in $properties { #{$property}: nth($toValue, $startIndex); $startIndex: $startIndex + 1; } } } @-moz-keyframes #{$animationType} { /* Firefox */ from { $startIndex: 1; @each $property in $properties { #{$property}: nth($fromValue, $startIndex); $startIndex: $startIndex + 1; } } to { $startIndex: 1; @each $property in $properties { #{$property}: nth($toValue, $startIndex); $startIndex: $startIndex + 1; } } } @-webkit-keyframes #{$animationType} { /* Safari and Chrome */ from { $startIndex: 1; @each $property in $properties { #{$property}: nth($fromValue, $startIndex); $startIndex: $startIndex + 1; } } to { $startIndex: 1; @each $property in $properties { #{$property}: nth($toValue, $startIndex); $startIndex: $startIndex + 1; } } } @-o-keyframes #{$animationType} { /* Opera */ from { $startIndex: 1; @each $property in $properties { #{$property}: nth($fromValue, $startIndex); $startIndex: $startIndex + 1; } } to { $startIndex: 1; @each $property in $properties { #{$property}: nth($toValue, $startIndex); $startIndex: $startIndex + 1; } } } } /**/ @mixin border-shadow($xShadow: 0.545px, $yShadow: 0.839px, $blur: 4px, $spread: 0, $color: $light-gray, $opacity: 0.2) { @include box-shadow($xShadow $yShadow $blur $spread rgba($color, $opacity)); } /* percent-plus-value */ // @mixin // Calculate length property (e.g. width, margin) by adding a value (e.g. in pixels) // to a percentage of container height/width @mixin percent-plus-value($property, $value, $percent: 100%) { $string: 'calc(' + $percent + ' + ' + $value + ')'; #{$property}: unquote($string); }