From 493c3839fb6807512218165fd8a3a6efe1933fb9 Mon Sep 17 00:00:00 2001 From: sebdet Date: Mon, 15 Jul 2019 17:26:18 +0200 Subject: SVG Rendering SVG rendering draft for Config and operational policies management + call to back-end Issue-ID: CLAMP-422 Change-Id: Ia3ca4223e283d0cd56d98fb1871fd3b2880940ec Signed-off-by: sebdet --- .../ConfigurationPolicyModal.js | 77 ++++ ui-react/src/components/dialogs/LoopModal.js | 110 ----- .../components/dialogs/OpenLoop/OpenLoopModal.js | 119 ++++++ .../OperationalPolicy/OperationalPolicyModal.js | 119 +++--- .../components/loop_viewer/logs/ClosedLoopLogs.js | 54 --- .../loop_viewer/status/ClosedLoopStatus.css | 19 - .../loop_viewer/status/ClosedLoopStatus.js | 55 --- .../components/loop_viewer/status/LoopStatus.css | 19 + .../components/loop_viewer/status/LoopStatus.js | 55 +++ .../components/loop_viewer/svg/ClosedLoopSvg.js | 43 -- ui-react/src/components/loop_viewer/svg/LoopSvg.js | 100 +++++ .../src/components/loop_viewer/svg/example.svg | 445 +-------------------- 12 files changed, 430 insertions(+), 785 deletions(-) create mode 100644 ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js delete mode 100644 ui-react/src/components/dialogs/LoopModal.js create mode 100644 ui-react/src/components/dialogs/OpenLoop/OpenLoopModal.js delete mode 100644 ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js delete mode 100644 ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css delete mode 100644 ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js create mode 100644 ui-react/src/components/loop_viewer/status/LoopStatus.css create mode 100644 ui-react/src/components/loop_viewer/status/LoopStatus.js delete mode 100644 ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js create mode 100644 ui-react/src/components/loop_viewer/svg/LoopSvg.js (limited to 'ui-react/src/components') diff --git a/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js new file mode 100644 index 00000000..1a8b6e2c --- /dev/null +++ b/ui-react/src/components/dialogs/ConfigurationPolicy/ConfigurationPolicyModal.js @@ -0,0 +1,77 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CLAMP + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ + +import React from 'react' +import Button from 'react-bootstrap/Button'; +import Modal from 'react-bootstrap/Modal'; +import { LOOP_CACHE } from '../../../api/LoopCache' +import styled from 'styled-components'; + +const ModalStyled = styled(Modal)` + background-color: transparent; +` + +export default class ConfigurationPolicyModal extends React.Component { + + constructor(props, context) { + super(props, context); + + this.handleClose = this.handleClose.bind(this); + + this.state = { + show: true, + }; + + } + + handleClose() { + this.setState({ show: false }); + this.props.history.push('/') + } + + + + render() { + return ( + + + Configuration policies + + + + + + + + + + + + + ); + } +} \ No newline at end of file diff --git a/ui-react/src/components/dialogs/LoopModal.js b/ui-react/src/components/dialogs/LoopModal.js deleted file mode 100644 index 6dc04d19..00000000 --- a/ui-react/src/components/dialogs/LoopModal.js +++ /dev/null @@ -1,110 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END============================================ - * =================================================================== - * - */ - -import React from 'react' -import Select from 'react-select'; -import Button from 'react-bootstrap/Button'; -import Modal from 'react-bootstrap/Modal'; -import Form from 'react-bootstrap/Form'; -import Row from 'react-bootstrap/Row'; -import Col from 'react-bootstrap/Col'; -import FormCheck from 'react-bootstrap/FormCheck' -import styled from 'styled-components'; -import LoopService from '../../api/LoopService'; -import LoopCache from '../../api/LoopCache'; - -const ModalStyled = styled(Modal)` - background-color: transparent; -` -const CheckBoxStyled = styled(FormCheck.Input)` - margin-left:3rem; -` - -export default class LoopModal extends React.Component { - constructor(props, context) { - super(props, context); - - this.getLoopNames = this.getLoopNames.bind(this); - this.openModel = this.openModel.bind(this); - this.handleClose = this.handleClose.bind(this); - this.handleDropdownListChange = this.handleDropdownListChange.bind(this); - this.state = { - show: true, - chosenLoopName: '', - loopNames:[] - }; - } - componentDidMount() { - this.getLoopNames(); - } - handleClose() { - this.setState({ show: false }); - this.props.history.push('/'); - } - handleDropdownListChange(e) { - this.setState({ chosenLoopName: e.value}); - } - getLoopNames() { - LoopService.getLoopNames().then(loopNames => { - const loopOptions = loopNames.map((loopName) => { return {label: loopName, value: loopName}}); - this.setState({loopNames:loopOptions}) - }); - } - openModel() { - this.setState({ show: false }); - this.props.history.push('/'); - // Open selected model - console.log("Loop " + this.state.chosenLoopName + " is chosen"); - LoopService.getLoop(this.state.chosenLoopName).then(loop => { - console.log("Initialize the loop cache"); - new LoopCache(loop); - }); - } - render() { - return ( - - - Open Model - - - - Model Name - - + + + + + Read Only + + + + + + + + + + + ); + } +} diff --git a/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js b/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js index fd53300d..6822f3ff 100644 --- a/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js +++ b/ui-react/src/components/dialogs/OperationalPolicy/OperationalPolicyModal.js @@ -24,7 +24,6 @@ import React from 'react' import Button from 'react-bootstrap/Button'; import Modal from 'react-bootstrap/Modal'; -import { LOOP_CACHE } from '../../../api/LoopCache' import './OperationalPolicy.css' import styled from 'styled-components'; @@ -34,30 +33,30 @@ const ModalStyled = styled(Modal)` export default class OperationalPolicyModal extends React.Component { + state = { + show: true, + loopCache: this.props.loopCache, + }; + + allPolicies = []; + policyIds = []; + constructor(props, context) { super(props, context); this.handleClose = this.handleClose.bind(this); this.initPolicySelect = this.initPolicySelect.bind(this); - - this.allPolicies = []; - this.policyIds = []; - this.initPolicySelect(); - - this.state = { - show: true, - }; - } handleClose() { this.setState({ show: false }); + this.props.history.push('/') } initPolicySelect() { if (this.allPolicies['operational_policy'] === undefined || this.allPolicies['operational_policy'] === null) { - this.allPolicies = LOOP_CACHE.getOperationalPolicyProperty(); + this.allPolicies = this.state.loopCache.getOperationalPolicyConfigurationJson(); } // Provision all policies ID first if (this.policyIds.length === 0 && this.allPolicies['operational_policy'] !== undefined) { @@ -94,7 +93,7 @@ export default class OperationalPolicyModal extends React.Component { } // When we change the name of a policy - isDuplicatedId (event) { + isDuplicatedId(event) { // update policy id structure var formNum = document.getElementById(event.target).closest('.formId').attr('id').substring(6); var policyId = document.getElementById(event.target).val(); @@ -111,51 +110,51 @@ export default class OperationalPolicyModal extends React.Component { } configureComponents() { - console.log("Load properties to op policy"); - // Set the header - document.getElementsByClassName('form-control').forEach(function() { - this.val(this.allPolicies['operational_policy']['controlLoop'][this.id]); - }); - // Set the sub-policies - this.allPolicies['operational_policy']['policies'].forEach(function(opPolicyElemIndex, opPolicyElemValue) { - -/* var formNum = add_one_more(); - forEach(document.getElementsByClassName('policyProperties').find('.form-control'), function(opPolicyPropIndex, opPolicyPropValue) { - - $("#formId" + formNum + " .policyProperties").find("#" + opPolicyPropValue.id).val( - allPolicies['operational_policy']['policies'][opPolicyElemIndex][opPolicyPropValue.id]); - }); - - // Initial TargetResourceId options - initTargetResourceIdOptions(allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target']['type'], formNum); - $.each($('.policyTarget').find('.form-control'), function(opPolicyTargetPropIndex, opPolicyTargetPropValue) { - - $("#formId" + formNum + " .policyTarget").find("#" + opPolicyTargetPropValue.id).val( - allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target'][opPolicyTargetPropValue.id]); - }); - - // update the current tab label - $("#go_properties_tab" + formNum).text( - allPolicies['operational_policy']['policies'][opPolicyElemIndex]['id']); - // Check if there is a guard set for it - $.each(allPolicies['guard_policies'], function(guardElemId, guardElemValue) { - - if (guardElemValue.recipe === $($("#formId" + formNum + " #recipe")[0]).val()) { - // Found one, set all guard prop - $.each($('.guardProperties').find('.form-control'), function(guardPropElemIndex, - guardPropElemValue) { - - guardElemValue['id'] = guardElemId; - $("#formId" + formNum + " .guardProperties").find("#" + guardPropElemValue.id).val( - guardElemValue[guardPropElemValue.id]); - }); - iniGuardPolicyType(guardElemId, formNum); - // And finally enable the flag - $("#formId" + formNum + " #enableGuardPolicy").prop("checked", true); - } - });*/ - }); - } + console.log("Load properties to op policy"); + // Set the header + document.getElementsByClassName('form-control').forEach(function () { + this.val(this.allPolicies['operational_policy']['controlLoop'][this.id]); + }); + // Set the sub-policies + this.allPolicies['operational_policy']['policies'].forEach(function (opPolicyElemIndex, opPolicyElemValue) { + + /* var formNum = add_one_more(); + forEach(document.getElementsByClassName('policyProperties').find('.form-control'), function(opPolicyPropIndex, opPolicyPropValue) { + + $("#formId" + formNum + " .policyProperties").find("#" + opPolicyPropValue.id).val( + allPolicies['operational_policy']['policies'][opPolicyElemIndex][opPolicyPropValue.id]); + }); + + // Initial TargetResourceId options + initTargetResourceIdOptions(allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target']['type'], formNum); + $.each($('.policyTarget').find('.form-control'), function(opPolicyTargetPropIndex, opPolicyTargetPropValue) { + + $("#formId" + formNum + " .policyTarget").find("#" + opPolicyTargetPropValue.id).val( + allPolicies['operational_policy']['policies'][opPolicyElemIndex]['target'][opPolicyTargetPropValue.id]); + }); + + // update the current tab label + $("#go_properties_tab" + formNum).text( + allPolicies['operational_policy']['policies'][opPolicyElemIndex]['id']); + // Check if there is a guard set for it + $.each(allPolicies['guard_policies'], function(guardElemId, guardElemValue) { + + if (guardElemValue.recipe === $($("#formId" + formNum + " #recipe")[0]).val()) { + // Found one, set all guard prop + $.each($('.guardProperties').find('.form-control'), function(guardPropElemIndex, + guardPropElemValue) { + + guardElemValue['id'] = guardElemId; + $("#formId" + formNum + " .guardProperties").find("#" + guardPropElemValue.id).val( + guardElemValue[guardPropElemValue.id]); + }); + iniGuardPolicyType(guardElemId, formNum); + // And finally enable the flag + $("#formId" + formNum + " #enableGuardPolicy").prop("checked", true); + } + });*/ + }); + } render() { return ( @@ -195,7 +194,7 @@ export default class OperationalPolicyModal extends React.Component {
+ readOnly="readonly" id="clname" value={this.state.loopCache.getLoopName()} />
@@ -225,7 +224,7 @@ export default class OperationalPolicyModal extends React.Component {
+ onKeyUp="updateTabLabel($event)" /> ID must be unique
@@ -550,4 +549,4 @@ export default class OperationalPolicyModal extends React.Component { ); } -} +} \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js b/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js deleted file mode 100644 index ef7a3aef..00000000 --- a/ui-react/src/components/loop_viewer/logs/ClosedLoopLogs.js +++ /dev/null @@ -1,54 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END============================================ - * =================================================================== - * - */ -import React from 'react'; -import Table from 'react-bootstrap/Table'; - -export default class ClosedLoopViewLogs extends React.Component { - render() { - return ( -
-
- - - - - - - - - - - - - - - - - - -
DateTypeComponentLog
testtesttesttest
-
-
- ); - } -} diff --git a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css b/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css deleted file mode 100644 index 14add0f5..00000000 --- a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.css +++ /dev/null @@ -1,19 +0,0 @@ - -.status_title{ - position: absolute; - left: 61%; - top: 151px; - font-size:20px; -} -.status{ - background-color: gray; - -moz-border-radius: 50px; - -webkit-border-radius: 50px; - border-radius: 50px; -} -.status_table { - position: absolute; - left: 61%; - top: 191px; - font-size:10px; -} \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js b/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js deleted file mode 100644 index da5969e4..00000000 --- a/ui-react/src/components/loop_viewer/status/ClosedLoopStatus.js +++ /dev/null @@ -1,55 +0,0 @@ -/*- -* ============LICENSE_START======================================================= -* ONAP CLAMP -* ================================================================================ -* Copyright (C) 2019 AT&T Intellectual Property. All rights -* reserved. -* ================================================================================ -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* ============LICENSE_END============================================ -* =================================================================== -* -*/ -import React from 'react'; -import Table from 'react-bootstrap/Table'; -import './ClosedLoopStatus.css'; - -export default class ClosedLoopStatus extends React.Component { - render() { - return ( -
- Status: -    TestStatus    - - -
- - - - - - - - - - - - - -
ComponentStateDescription
long test Statetest description very very very long description
-
-
- ); - } -} - diff --git a/ui-react/src/components/loop_viewer/status/LoopStatus.css b/ui-react/src/components/loop_viewer/status/LoopStatus.css new file mode 100644 index 00000000..14add0f5 --- /dev/null +++ b/ui-react/src/components/loop_viewer/status/LoopStatus.css @@ -0,0 +1,19 @@ + +.status_title{ + position: absolute; + left: 61%; + top: 151px; + font-size:20px; +} +.status{ + background-color: gray; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; +} +.status_table { + position: absolute; + left: 61%; + top: 191px; + font-size:10px; +} \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/status/LoopStatus.js b/ui-react/src/components/loop_viewer/status/LoopStatus.js new file mode 100644 index 00000000..f904d674 --- /dev/null +++ b/ui-react/src/components/loop_viewer/status/LoopStatus.js @@ -0,0 +1,55 @@ +/*- +* ============LICENSE_START======================================================= +* ONAP CLAMP +* ================================================================================ +* Copyright (C) 2019 AT&T Intellectual Property. All rights +* reserved. +* ================================================================================ +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +* ============LICENSE_END============================================ +* =================================================================== +* +*/ +import React from 'react'; +import Table from 'react-bootstrap/Table'; +import './LoopStatus.css'; + +export default class LoopStatus extends React.Component { + render() { + return ( +
+ Status: +    TestStatus    + + +
+ + + + + + + + + + + + + +
ComponentStateDescription
long test Statetest description very very very long description
+
+
+ ); + } +} + diff --git a/ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js b/ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js deleted file mode 100644 index d9f5eaf8..00000000 --- a/ui-react/src/components/loop_viewer/svg/ClosedLoopSvg.js +++ /dev/null @@ -1,43 +0,0 @@ -/*- - * ============LICENSE_START======================================================= - * ONAP CLAMP - * ================================================================================ - * Copyright (C) 2019 AT&T Intellectual Property. All rights - * reserved. - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============LICENSE_END============================================ - * =================================================================== - * - */ -import React from 'react'; -import styled from 'styled-components'; -import { ReactComponent as SvgExample } from './example.svg'; -const LoopViewSvgDivStyle = styled.div` - - overflow: hidden; - background-color: ${props => (props.theme.loopViewerBackgroundColor)}; - border: 1px solid transparent; - border-color: ${props => (props.theme.loopViewerHeaderColor)}; -` - -export default class ClosedLoopViewSvg extends React.Component { - render() { - return ( - - - - ); - } -} - diff --git a/ui-react/src/components/loop_viewer/svg/LoopSvg.js b/ui-react/src/components/loop_viewer/svg/LoopSvg.js new file mode 100644 index 00000000..2858ccd8 --- /dev/null +++ b/ui-react/src/components/loop_viewer/svg/LoopSvg.js @@ -0,0 +1,100 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CLAMP + * ================================================================================ + * Copyright (C) 2019 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ +import React from 'react'; +import styled from 'styled-components'; +import { withRouter } from "react-router"; +import LoopCache from '../../../api/LoopCache' +import LoopService from '../../../api/LoopService' + +const LoopViewSvgDivStyled = styled.div` + overflow: hidden; + background-color: ${props => (props.theme.loopViewerBackgroundColor)}; + border: 1px solid; + border-color: ${props => (props.theme.loopViewerHeaderColor)}; + height: 50%; +` + +class LoopViewSvg extends React.Component { + + static emptySvg = "No LOOP (SVG)"; + static operationalPolicyDataElementId = "OperationalPolicy"; + + + state = { + svgContent: LoopViewSvg.emptySvg, + loopCache: this.props.loopCache, + } + + constructor(props) { + super(props); + this.state.loopCache = props.loopCache; + this.handleSvgClick = this.handleSvgClick.bind(this); + this.getSvg = this.getSvg.bind(this); + } + + shouldComponentUpdate(nextProps, nextState) { + return this.state.svgContent !== nextState.svgContent; + } + + componentWillReceiveProps(newProps) { + this.state.loopCache = newProps.loopCache; + this.getSvg(); + } + + componentDidMount() { + this.getSvg(); + } + + getSvg() { + LoopService.getSvg(this.state.loopCache.getLoopName()).then(svgXml => { + if (svgXml.length != 0) { + this.setState({ svgContent: svgXml }) + } else { + this.setState({ svgContent: LoopViewSvg.emptySvg }) + } + }); + } + + handleSvgClick(event) { + console.debug("svg click event received"); + var elementName = event.target.parentNode.parentNode.parentNode.getAttribute('data-element-id'); + console.info("SVG element clicked", elementName); + if (typeof elementName === "undefined" || elementName === "VES") { + return; + } else if (elementName === LoopViewSvg.operationalPolicyDataElementId) { + this.props.history.push('/operationalPolicyModal'); + } else { + this.props.history.push('/configurationPolicyModal'); + } + } + + render() { + return ( + + + + ); + } +} + +export default withRouter(LoopViewSvg); \ No newline at end of file diff --git a/ui-react/src/components/loop_viewer/svg/example.svg b/ui-react/src/components/loop_viewer/svg/example.svg index 2f5ebd03..a7c40ee2 100644 --- a/ui-react/src/components/loop_viewer/svg/example.svg +++ b/ui-react/src/components/loop_viewer/svg/example.svg @@ -1,444 +1 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - VES - - - - - - - - - - - - - - - - - - - - - - - - - tca_k8s - - - - - - - - - - - - - - - - - - - - - - - - - OperationalPolicy - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file +VESTCAOperationalPolicy \ No newline at end of file -- cgit 1.2.3-korg