aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/webapp/usage guide/browser/templates
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/main/webapp/usage guide/browser/templates')
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/accordion.html26
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/buttons.html38
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/checkBoxes.html25
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/courses.html32
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/dropdown.html42
-rw-r--r--common/src/main/webapp/usage guide/browser/templates/functional.html32
6 files changed, 195 insertions, 0 deletions
diff --git a/common/src/main/webapp/usage guide/browser/templates/accordion.html b/common/src/main/webapp/usage guide/browser/templates/accordion.html
new file mode 100644
index 00000000..9c076e5c
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/accordion.html
@@ -0,0 +1,26 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+<div id="accordionArea" class="container col-sm-12 col-md-12 col-lg-12" ng-init="init()"><!--ng-if="accordionLoaded()"-->
+ <h4>Accordion</h4>
+ <div class="panel-group" id="accordion"></div>
+ <div class="shortnote">
+ <div class="shortnoteHeader">Usage</div>
+ <div class="shortnoteText">{{accordionTipData}}</div>
+ </div>
+</div>
diff --git a/common/src/main/webapp/usage guide/browser/templates/buttons.html b/common/src/main/webapp/usage guide/browser/templates/buttons.html
new file mode 100644
index 00000000..90ba3953
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/buttons.html
@@ -0,0 +1,38 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+<h4>Types of Buttons</h4>
+
+<div id="buttonArea" ng-init="init()">
+ <h3> Default Buttons</h3>
+ <div id="defaultButtonArea"></div>
+ <h3>Visual Buttons</h3>
+ <div id="visualButtonArea"></div>
+ <h3>Different Sized Buttons</h3>
+ <div id="sizeButtonArea"></div>
+ <h3>Icon Buttons</h3>
+ <div id="iconButtonArea"></div>
+
+</div>
+<div class="shortnote">
+ <div class="shortnoteHeader">Usage</div>
+ <div class="shortnoteText">{{buttonTipData}}</div>
+</div>
+
+
+
diff --git a/common/src/main/webapp/usage guide/browser/templates/checkBoxes.html b/common/src/main/webapp/usage guide/browser/templates/checkBoxes.html
new file mode 100644
index 00000000..0bc36264
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/checkBoxes.html
@@ -0,0 +1,25 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+<h4>Checkboxes</h4>
+
+<div id="CheckBoxArea" class="funkyradio" ng-init="init()"></div>
+<div class="shortnote">
+ <div class="shortnoteHeader">Usage</div>
+ <div class="shortnoteText"> {{checkboxTipData}}</div>
+</div>
diff --git a/common/src/main/webapp/usage guide/browser/templates/courses.html b/common/src/main/webapp/usage guide/browser/templates/courses.html
new file mode 100644
index 00000000..34dde6c3
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/courses.html
@@ -0,0 +1,32 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+
+<h1>{{message}}</h1>
+<ul ng-repeat="course in courses | orderBy : course : false">
+ <li>{{course}}</li>
+</ul>
+<button ng-click="showDialog()">Test</button>
+
+<!--<a ui-sref=".list">List</a>
+<a ui-sref=".details">Paragraph</a>
+
+<div ui-view></div>-->
+
+
+<div id="sampleArea" ng-if="subIsLoaded()"></div>
diff --git a/common/src/main/webapp/usage guide/browser/templates/dropdown.html b/common/src/main/webapp/usage guide/browser/templates/dropdown.html
new file mode 100644
index 00000000..bcf405ed
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/dropdown.html
@@ -0,0 +1,42 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+
+<div class="container col-sm-12 col-md-12 col-lg-12">
+ <h4>Drop Down</h4>
+
+ <div id="dropdown" class="container col-sm-12 col-md-12 col-lg-12" ng-init="init()">
+ <h3>Simple Dropdown</h3>
+ <div id="plainDropDown"></div>
+ <h3>Dropdown</h3>
+ <div id="dropArea" type="button"></div>
+ <h3>Dropup</h3>
+ <div id="dropAreaUP" type="button"></div>
+ <h3>Dropdown Header</h3>
+ <div id="dropAreaHeader" type="button"></div>
+
+ </div>
+ <div class="col-sm-12 col-md-12 col-lg-12 shortnote">
+ <div class="shortnoteHeader">Usage</div>
+ <div class="shortnoteText">{{dropdownTipData}}</div>
+ </div>
+</div>
+
+
+
+
diff --git a/common/src/main/webapp/usage guide/browser/templates/functional.html b/common/src/main/webapp/usage guide/browser/templates/functional.html
new file mode 100644
index 00000000..745b1f34
--- /dev/null
+++ b/common/src/main/webapp/usage guide/browser/templates/functional.html
@@ -0,0 +1,32 @@
+<!--
+
+ Copyright 2016-2017, Huawei Technologies Co., Ltd.
+
+ 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.
+
+-->
+
+<h4>{{message}}</h4>
+
+<div id="functionalArea" ng-init="init()">
+ <button type="button" class="btn btn-default" ng-click="showCreate()">Create</button>
+ <button type="button" class="btn btn-default" ng-click="showModify()">Modify</button>
+ <button type="button" class="btn btn-default" ng-click="showDelete()">Delete</button>
+ <button type="button" class="btn btn-default" ng-click="showWorkflow()">Workflow</button>
+ <div class="shortnote">
+ <div class="shortnoteHeader">Usage</div>
+ <div class="shortnoteText">{{functionalTipData}}</div>
+ </div>
+</div>
+
+