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
play.http.secret.key="ThehiveTestPassword" | |
## For test only ! | |
db.janusgraph { | |
storage.backend: berkeleyje | |
storage.directory: /tmp/ | |
berkeleyje.freeDisk: 200 | |
} | |
storage { |
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
<profiles> | |
<profile> | |
<id>windows_profile</id> | |
<activation> | |
<os> | |
<family>Windows</family> | |
</os> | |
</activation> | |
<properties> | |
<toolsjar>${java.home}/../lib/tools.jar</toolsjar> |
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
angular.module('services') | |
.config(function($httpProvider){ | |
//Here we're adding our interceptor. | |
$httpProvider.responseInterceptors.push('globalInterceptor'); | |
}) | |
//Here we define our interceptor | |
.factory('globalInterceptor', function($q){ | |
//When the interceptor runs, it is passed a promise object | |
return function(promise){ |
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
<ul> | |
<li ng-repeat="bar in filteredBars = (bars | filter:barFilter)"> | |
{{bar.name}} | |
</li> | |
</ul> | |
<p ng-hide="filteredBars.length">Nothing here!</p> |
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
div.indicator { | |
width: 100px; | |
border: 1px solid black; | |
} | |
div.indicator div.segment{ | |
float: left; | |
height: 20px; | |
} |