forked from TobiasOetzel/mdSkeleton
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
35 lines (31 loc) · 2.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<title>MD-Template</title>
<!-- try to load the basic UI5 styles for standalone and demokit usecase -->
<link rel="stylesheet" type="text/css" href="resources/sap/ui/core/themes/sap_bluecrystal/library.css">
<link rel="stylesheet" type="text/css" href="../../../../../resources/sap/ui/core/themes/sap_bluecrystal/library.css">
</head>
<body class="sapUiBody sapUiMediumMargin sapUiForceWidthAuto">
<h1>md-template</h1>
<p>This is a best practice implementation of the master detail design pattern in UI5.<br/>Choose one of the access points below to launch the app.</p>
<h2>Standalone</h2>
These files can be used to run the application as a standalone application after building and serving with bower/grunt (expects a UI5 installation available at the server root, so this will not work without this build and the grunt-based server).
<ul>
<li><a href="test.html">test.html</a> - start the app with mock data</li>
<li><a href="testFLP.html">testFLP.html</a> - start the app in the SAP Fiori launchpad sandbox</li>
<li><a href="testFLPService.html">testFLPService.html</a> - start the app in the SAP Fiori launchpad sandbox with mock data</li>
<li><a href="production.html">production.html</a> - start the app in production mode</li>
<li><a href="test/unit/unitTests.qunit.html">test/unit/unitTests.qunit.html</a> - run all unit tests</li>
<li><a href="test/integration/opaTests.qunit.html">test/integration/opaTests.qunit.html</a> - run all integration tests</li>
</ul>
<h2>Demokit/SDK</h2>
These files can be used to run the application from within the Demokit/SDK (using the UI5 version shipping with the SDK).
<ul>
<li><a href="demokit.html">demokit.html</a> - start the app with mock data in demokit context</li>
<li><a href="demokitFLP.html">demokitFLP.html</a> - start the app in the SAP Fiori launchpad sandbox (requires ushell library)</li>
<li><a href="test/unit/unitTestsDemokit.qunit.html">test/unit/unitTestsDemokit.qunit.html</a> - run all unit tests in demokit context</li>
<li><a href="test/integration/opaTestsDemokit.qunit.html">test/integration/opaTestsDemokit.qunit.html</a> - run all integration tests in demokit context</li>
</ul>
<p>For more documentation please read the <a href="https://openui5.hana.ondemand.com">UI5 Developer Guide</a>.</p>
</body>
</html>