-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1c1952
commit 3f86131
Showing
49 changed files
with
44,326 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<buildpath> | ||
<buildpathentry kind="src" path=""/> | ||
<buildpathentry kind="con" path="com.intersys.eclipse.studio.SERVER_CONTAINER/Ensamble/DOCSEARCH"/> | ||
<buildpathentry kind="con" path="com.intersys.eclipse.studio.SERVER_CONTAINER/123/DOCSEARCH"/> | ||
</buildpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
cspApplications=/csp/docsearch | ||
eclipse.preferences.version=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
eclipse.preferences.version=1 | ||
encoding//CSP/csp/docsearch/js/vendor/angular.js=UTF-8 | ||
encoding//CSP/csp/docsearch/style/fonts/glyphicons-halflings-regular.eot=UTF-8 | ||
encoding//CSP/csp/docsearch/style/fonts/glyphicons-halflings-regular.svg=UTF-8 | ||
encoding//CSP/csp/docsearch/style/fonts/glyphicons-halflings-regular.ttf=UTF-8 | ||
encoding//CSP/csp/docsearch/style/fonts/glyphicons-halflings-regular.woff=UTF-8 | ||
encoding//CSP/csp/docsearch/style/fonts/glyphicons-halflings-regular.woff2=UTF-8 | ||
encoding//CSP/csp/docsearch/style/frameworks/bootstrap-theme.css.map=UTF-8 | ||
encoding//CSP/csp/docsearch/style/frameworks/bootstrap-theme.min.css.map=UTF-8 | ||
encoding//CSP/csp/docsearch/style/frameworks/bootstrap.css.map=UTF-8 | ||
encoding//CSP/csp/docsearch/style/frameworks/bootstrap.min.css.map=UTF-8 | ||
encoding//CSP/csp/docsearch/style/images/Logo.png=UTF-8 | ||
encoding//CSP/csp/docsearch/style/images/icon.png=UTF-8 | ||
encoding//CSP/csp/docsearch/style/images/logo-telegram.png=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
<html lang="en" ng-app="searchApp"> | ||
<head> | ||
<title> DocSearch </title> | ||
<meta charset="utf-8"> | ||
<link href = "style/frameworks/bootstrap.min.css" rel="stylesheet"> <!-- bootstrap --> | ||
<link href = "style/DocSearch.css" rel="stylesheet"> <!-- ����� CSS --> | ||
<link href="style/images/icon.png" rel="icon" type="image/x-icon"/> <!-- ������ --> | ||
</head> | ||
|
||
<body ng-controller="searchController"> | ||
|
||
<!-- ��������� �������� --> | ||
<div ng-show = "toggle"> | ||
<header> <!-- ���� --> | ||
<p class="text-center MarginHeader"> | ||
<img ng-src = "style/images/Logo.png" width ="40%" title ="InterSystems" onclick = "logoClick()"/> | ||
</p> | ||
</header> | ||
|
||
<div> <!-- ��������� ������ � ������ ������ ��� ������ �������� ���� �������� --> | ||
<form class="form-horizontal container-fluid MarginSearchLine ui-widgetui-widget" autocomplete="off"> | ||
<div class="input-groop col-md-offset-3 col-md-6 col-sm-offset-3 col-sm-6 col-xs-offset-2 col-xs-8"> | ||
<input type="text" ng-model="search.text" ng-change = "change()" class="form-control" id="Search" placeholder="Search" ng-keydown="handleArrows($event)"> | ||
|
||
<div ng-show = "imputToggle" class = "toggler"> | ||
<ul class = "listStyle"> | ||
<li class = "hint" ng-repeat = "item in searchItems" ng-class="{'activeToggle': item.value == currrentSearchItem.value}" ng-click = "handleClick(item)"> | ||
{{item.value}} | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<button type="submit" class="btn btn-primary hidden-xs" ng-click = "makeSearch()"> | ||
<span class="glyphicon glyphicon-search"></span> Search | ||
</button> | ||
<button type="submit" class="btn btn-primary hidden-sm hidden-md hidden-lg" ng-click = "makeSearch()"> | ||
<span class="glyphicon glyphicon-search"></span> | ||
</button> | ||
</form><br> | ||
</div> | ||
<div class="col-md-offset-3 col-md-9 col-sm-offset-3 col-sm-9 col-xs-offset-2 col-xs-10"> | ||
<div> | ||
<!-- ��������� --> | ||
<ul class="nav nav-tabs lis" role="tablist"> | ||
<li class="active"><a href="#today" aria-controls="today" role="tab" data-toggle="tab"><span class="glyphicon glyphicon-education"></span> Guides</a></li> | ||
<li><a href="#week" aria-controls="week " role="tab" data-toggle="tab"><span class="glyphicon glyphicon-wrench"></span> Settings</a></li> | ||
</ul> | ||
</div> | ||
|
||
<!-- ���������� ������� Guides --> | ||
<div class="tab-content"> | ||
<div role="tabpanel" id="today" class="tab-pane fade in active"> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio1" value="option1" checked> | ||
��������� 1 | ||
</label> | ||
</div> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio2" value="option2"> | ||
��������� 2 | ||
</label> | ||
</div> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio3" value="option3"> | ||
��������� 3 | ||
</label> | ||
</div> | ||
</div> | ||
|
||
<!-- ���������� ������� Settings --> | ||
<div role="tabpanel" id="week" class="tab-pane fade"> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio4" value="option4" checked> | ||
Settings 1 | ||
</label> | ||
</div> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio5" value="option5"> | ||
Settings 2 | ||
</label> | ||
</div> | ||
<div class="radio"> | ||
<label> | ||
<input type="radio" name="optionsRadios" id="radio6" value="option6"> | ||
Settings 3 | ||
</label> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer class="footer"> <!-- ������ --> | ||
<div class="hidden-xs FloatLeft"> | ||
<ul class="list-inline"> | ||
<li><a href="http://www.intersystems.com/" target="_blank">InterSystems</a></li> | ||
<li><a href="https://docs.intersystems.com/latest/csp/docbook/DocBook.UI.Page.cls" target="_blank">Documentation</a></li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
<!-- �������� � ������������ ������ --> | ||
<div ng-show = "!toggle"> | ||
<header class="ResultHeader"> <!-- ����� --> | ||
<form class="form-horizontal" autocomplete="off"> | ||
<div class="col-md-3 col-sm-3 col-xs-3 Logo"> <!-- ���� --> | ||
<a href="javascript:window.location.reload()"><img ng-src = "style/images/Logo.png" width ="100%" title ="InterSystems"/></a> | ||
</div> | ||
<div class="input-groop col-md-6 col-sm-6 col-xs-6 MarginHeader"> <!-- ������ ������ --> | ||
<input type="text" ng-model="search.text" class="form-control" id="Search" placeholder="Search"/> | ||
</div> | ||
<div class="col-md-3 col-sm-3 col-xs-3 MarginHeader"> <!-- ������ ������ ��� ������ �������� ���� �������� --> | ||
<button type="submit" class="btn btn-primary hidden-sm hidden-xs" ng-click = "makeSearch()"> | ||
<span class="glyphicon glyphicon-search"></span> Search | ||
</button> | ||
<button type="submit" class="btn btn-primary hidden-md hidden-lg" ng-click = "makeSearch()"> | ||
<span class="glyphicon glyphicon-search"></span> | ||
</button> | ||
<div class="btn-group dropdown pull-right"> <!-- ���� �������� --> | ||
<button class="btn dropdown-toggle" data-toggle="dropdown">Settings <span class="caret"></span></button> | ||
<ul class="dropdown-menu"> | ||
<li><a href="#">111</a></li> | ||
<li><a href="#">222</a></li> | ||
<li><a href="#">333</a></li> | ||
<li><a href="#">444</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</form> | ||
</header> | ||
<div> <!-- ���������� ������ --> | ||
<ul> | ||
<li ng-repeat = "result in results" style="margin-top:10px; list-style-type: none;"> | ||
<a href="http://localhost:57773/csp/docbook/DocBook.UI.Page.cls?KEY={{result.link}}" target="_blank">{{result.title}}</a> | ||
<br> | ||
<span>{{result.content}}</span> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="pagination-wrap"> <!-- ��������� --> | ||
<ul class="pagination"> | ||
<li ng-repeat="page in paginationList" ng-click="showPage(page.link)" ng-class="{'active': currentPageNum() == page.link}"><a ng-bind-html="page.name"></a></li> | ||
</ul> | ||
</div> | ||
|
||
</div> | ||
|
||
<script type="text/javascript" src = "js/vendor/jquery-3.2.0.min.js"></script> | ||
<script type="text/javascript" src = "js/vendor/bootstrap.min.js"></script> | ||
<script type="text/javascript" src = "js/vendor/angular.js"></script> | ||
|
||
<script type="text/javascript" src = "js/app/app.js"></script> | ||
<script type="text/javascript" src = "js/app/controllers.js"></script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.