hana-cli
Version:
HANA Developer Command Line Interface
93 lines (79 loc) • 3.1 kB
text/xml
<mvc:View controllerName="sap.hanacli.systemInfo.controller.App" height="100%" width="100%"
xmlns:l="sap.ui.layout"
xmlns:f="sap.ui.layout.form"
xmlns:mvc="sap.ui.core.mvc"
xmlns:core="sap.ui.core"
xmlns="sap.m">
<ScrollContainer
id="scrollContainer"
height="100%"
width="100%"
vertical="true"
focusable="true">
<f:SimpleForm id="SimpleFormToolbar" editable="false" layout="ResponsiveGridLayout" labelSpanXL="4" labelSpanL="3" labelSpanM="4" labelSpanS="12" adjustLabelSpan="false" emptySpanXL="0" emptySpanL="4" emptySpanM="0" emptySpanS="0" columnsXL="2" columnsL="1" columnsM="1" singleContainerFullSize="false" ariaLabelledBy="Title1">
<f:toolbar>
<Toolbar id="TB1">
<Title id="Title1" text="{i18n>appTitle}"/>
<ToolbarSpacer id="spacer1" />
</Toolbar>
</f:toolbar>
<f:content>
<Toolbar id="TB2" ariaLabelledBy="Title2">
<Title id="Title2" text="{i18n>currentSession}"/>
<ToolbarSpacer id="spacer2" />
</Toolbar>
<Label id="labelUser" text="{i18nReuse>user}" />
<Input id="inputCurrentUser" value="{/user/0/CURRENT_USER}" />
<Label id="labelSchema" text="{i18nReuse>scheam}" />
<Input id="inputCurrentSchema" value="{/user/0/CURRENT_SCHEMA}">
</Input>
<Toolbar id="TB3">
<Title id="Title3" text="{i18n>versionInfo}"/>
<ToolbarSpacer id="spacer3" />
</Toolbar>
<Label id="labelSystemDb" text="{i18n>system} / {i18n>databaseName}" />
<Input id="inputSystemId" value="{/version/SYSTEM_ID}">
<layoutData>
<l:GridData id="gridDataSystemId" span="XL2 L1 M3 S4" />
</layoutData>
</Input>
<Input id="inputDatabaseName" value="{/version/DATABASE_NAME}">
</Input>
<Label id="labelHost" text="{i18nReuse>host}" />
<Input id="inputHost" value="{/version/HOST}" />
<Label id="labelStartTime" text="{i18n>startTime}" />
<Input id="inputStartTime" value="{/version/START_TIME}" />
<Label id="labelVersion" text="{i18nReuse>version}" />
<Input id="inputVersion" value="{/version/VERSION}" />
</f:content>
</f:SimpleForm>
<Table id="overviewTable" items="{/overview}">
<headerToolbar>
<OverflowToolbar id="overviewToolbar">
<Title id="titleSystemOverview" text="{i18n>systemOverview}" level="H2"/>
<ToolbarSpacer id="spacer4"/>
</OverflowToolbar>
</headerToolbar>
<columns>
<Column id="SECTION" width="12em">
<Text id="textHeaderSection" text="{i18nReuse>section}" />
</Column>
<Column id="Value" minScreenWidth="Tablet" demandPopin="true">
<Text id="textHeaderName" text="{i18n>name}" />
</Column>
<Column id="STATUS" minScreenWidth="Tablet" demandPopin="true">
<Text id="textHeaderStatus" text="{i18n>status}" />
</Column>
</columns>
<items>
<ColumnListItem id="overviewListItem">
<cells>
<Text id="textSection" text="{SECTION}" />
<ObjectIdentifier id="objIdentifier" title="{NAME}" text="{VALUE}" class="sapUiTinyMarginTopBottom" />
<Text id="textStatus" text="{STATUS}" />
</cells>
</ColumnListItem>
</items>
</Table>
</ScrollContainer>
</mvc:View>