Commit e50dfe66cadeed0f7a4ac5526f9d93c9b0e9b3ae
Merge branch 'QA' into Develop
Showing
7 changed files
with
60 additions
and
14 deletions
150-DOCUMENTATION/001-CONFIGURATION/ADAM Education Servers List-updated.xlsx
0 → 100644
No preview for this file type
150-DOCUMENTATION/001-CONFIGURATION/MongoConfig
0 → 100644
1 | +1. downlaod and install mongoDB from "https://www.mongodb.com/download-center#community". | |
2 | +2. create a folder mongoadmin somewhere in your D:\ | |
3 | +3. create 3 folders within this folder with the following names: | |
4 | + conf | |
5 | + data | |
6 | + log | |
7 | + 4. Place mongod.conf file in conf folder. Contents of file are below. | |
8 | + | |
9 | + storage: | |
10 | + dbPath: "d:/mongoadmin/data" | |
11 | + journal: | |
12 | + enabled: true | |
13 | + | |
14 | + systemLog: | |
15 | + destination: file | |
16 | + path: "d:/mongoadmin/log/mongod.log" | |
17 | + | |
18 | + net: | |
19 | + http: | |
20 | + enabled: true | |
21 | +5. run command to install mongodb as windows service and in that command give the mongod.conf file's path as a parameter. | |
22 | + 'mongod.exe --config "d:\mongoadmin\conf\mongod.conf" --install' | |
23 | +mong if you do not install mongodb as a service, then you need to run mongod.exe everytime you want to have mongodb running | |
24 | +6. after executing the above command, you can run the following command to start MongoDB service | |
25 | + "net start MongoDB" | |
26 | + to execute all the above commands, you need to open command with "run as administrator" | |
27 | + | |
28 | +------------- | |
29 | +@TO DUMP DATABASE | |
30 | +mongodump -d <dataabseNme> -o <target diectory> | |
31 | + | |
32 | +@TO RESTORE DB | |
33 | +mongorestore --db <database_name> <path_to_bson_file> | |
34 | + | |
35 | + | |
36 | +-------- | |
37 | +@Install MongoBooster | |
38 | +and add DB name in create connection Default Database tab. | |
0 | 39 | \ No newline at end of file | ... | ... |
150-DOCUMENTATION/Audit/Sprints/JulyAugSep/Ebix-Estimation Model_Health_Dev_Product Sprint 39(30-Aug-17).xlsx
No preview for this file type
400-SOURCECODE/AIAHTML5.Web/app/controllers/TileViewListController.js
... | ... | @@ -280,9 +280,9 @@ function ($scope, $window, $rootScope, $compile, $http, $log, $location, $timeou |
280 | 280 | $scope.imageWidth = this.width; |
281 | 281 | $scope.imageHeight = this.height; |
282 | 282 | |
283 | - $('#aaBodyView').css("height", $(window).outerHeight()); | |
283 | + //$('#aaBodyView').css("height", $(window).outerHeight()); | |
284 | 284 | |
285 | - $('#aaBodyView').css("width", $(window).outerWidth()); | |
285 | + //$('#aaBodyView').css("width", $(window).outerWidth()); | |
286 | 286 | $timeout(function () { |
287 | 287 | $compile(aaViewElement.contents())($scope); |
288 | 288 | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/main/AIA.js
... | ... | @@ -352,7 +352,7 @@ AIA.constant("UserTypeConstants", { |
352 | 352 | |
353 | 353 | AIA.constant("AIAConstants", { |
354 | 354 | |
355 | - "NO_BODY_SYSTEM_AVAILABLE" : "No body system available in this layer.", | |
355 | + "NO_BODY_SYSTEM_AVAILABLE" : "This body system is not available on this layer.", | |
356 | 356 | |
357 | 357 | }) |
358 | 358 | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/aa/atlas-anatomy-detail.html
... | ... | @@ -128,15 +128,22 @@ |
128 | 128 | </div> |
129 | 129 | |
130 | 130 | <!-- Single button --> |
131 | - <div class="btn-group" style="vertical-align:top;"> | |
132 | - <button type="button" class="btn btn-success dropdown-toggle btn-sm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
133 | - <i class="fa fa-arrow-circle-right"></i> | |
131 | + <div class="btn-group pull-left" style="vertical-align:top;"> | |
132 | + | |
133 | + <button type="button" style="padding: 5px 10px 4px 10px !important;border: none;" class="btn btn-success btn-sm" onclick="onSearchAA()" onblur="hideSearchList()"> | |
134 | + <!--<img src="~/../content/images/DA/go-to.png" style="height: 30px;width:50px">--> | |
135 | + <i class="fa fa-caret-down" style="font-size:20px;"></i> | |
134 | 136 | </button> |
135 | - <ul class="dropdown-menu"> | |
136 | - <li><a href="#">1<sup>st</sup> & 2<sup>nd</sup> Intercostal Spaces</a></li> | |
137 | - <li role="separator" class="divider"></li> | |
138 | - <li><a href="#">All</a></li> | |
139 | - </ul> | |
137 | + | |
138 | + | |
139 | + <!--<button type="button" class="btn btn-success dropdown-toggle btn-sm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> | |
140 | + <i class="fa fa-arrow-circle-right"></i> | |
141 | + </button>--> | |
142 | + <!--<ul class="dropdown-menu"> | |
143 | + <li><a href="#">1<sup>st</sup> & 2<sup>nd</sup> Intercostal Spaces</a></li> | |
144 | + <li role="separator" class="divider"></li> | |
145 | + <li><a href="#">All</a></li> | |
146 | + </ul>--> | |
140 | 147 | </div> |
141 | 148 | <!--<div class="btn-group"> |
142 | 149 | <button type="button" class="btn btn-primary dropdown-toggle btn-sm" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" id="navigatorMan"> | ... | ... |
400-SOURCECODE/AIAHTML5.Web/app/views/da/da-view.html
... | ... | @@ -278,10 +278,11 @@ |
278 | 278 | </div> |
279 | 279 | |
280 | 280 | </div> |
281 | - <div class="btn-group"> | |
281 | + <div class="btn-group" style="vertical-align:top;"> | |
282 | 282 | |
283 | - <button type="button" id="btnDATermSearch" style="padding:0px 0px 10px 1px !important;background-color:rgba(255,255,255,0.0); border:none;" class="btn btn-success btn-sm" ng-mousedown="OnSearchBtnClick($event)"> | |
284 | - <img src="~/../content/images/DA/go-to.png" style="height: 30px;width:50px"> | |
283 | + <button type="button" id="btnDATermSearch" style="padding: 5px 10px 4px 10px !important;border: none;" class="btn btn-success btn-sm" onclick="OnSearch()" ng-blur="HideSearch()"> | |
284 | + <!--<img src="~/../content/images/DA/go-to.png" style="height: 30px;width:50px">--> | |
285 | + <i class="fa fa-caret-down" style="font-size:20px;"></i> | |
285 | 286 | </button> |
286 | 287 | </div> |
287 | 288 | <div class="btn-group open" id="da-body-nav"> | ... | ... |