-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.html
More file actions
executable file
·78 lines (63 loc) · 3.06 KB
/
package.html
File metadata and controls
executable file
·78 lines (63 loc) · 3.06 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<table style="width:100%" >
<tr>
<td id="item-list" class="well">
<div id="grid-table">
<table id="app-list" class="table table-hover table-striped">
<thead>
<tr>
<th>App Label</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="app in Apps.record" id="row_{{app.id}}">
<td ng-click="showDetails()">{{app.name}}</td>
</tr>
</tbody>
</table>
</div>
</td>
<td> </td>
<td id="app-details" class="well">
<div class="navbar">
<div class="navbar-inner">
<div class="brand">Package Applications</div>
</div>
</div>
<div id="package-form" style="display:none">
<div class="section">
<h5>Database Schema(s)</h5>
<div class="form-inline" ng-show="service.type.indexOf('SQL DB Schema') != -1"
ng-repeat="service in Services.record">
<h6>{{service.name}}</h6>
<div ng-repeat="component in service.components"><input
ng-click="addServiceToAppWithComponents($event.target.checked)"
type="checkbox" class="include-schema" ng-checked = "isComponentMapped()"/> {{component.name}}
</div>
</div>
<br/>
<h5>Services</h5>
<div class="form-inline" ng-show="service.type.indexOf('SQL DB Schema') == -1 && !service.is_system"
ng-repeat="service in Services.record">
<h6><input class="include-service" ng-click="addServiceToApp($event.target.checked)"
type="checkbox"/> {{service.name}}</h6>
</div>
</div>
<br/>
<input type="checkbox" ng-model="include_files"/> Include this application's files in this package.
<br/><br/>
<button ng-click="export()" class="btn btn-info">Export App</button>
</div>
<div id="splash">
<div class="alert alert-info"><i class="icon icon-gift"></i> Creating a DreamFactory Package File</div>
<P>To create a package file for your app, follow these instructions:</P>
<ol>
<li>Select the app from the list just to the left</li>
<li>Choose the database schema you'd like to export.</li>
<li>Choose which services you'd like to export.</li>
<li>Press Export to be prompted to save your new .dfpkg file.</li>
</ol>
</div>
<iframe id="download_frame" style="display:none" frameBorder="0"></iframe>
</td>
</tr>
</table>