You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by sa...@apache.org on 2016/10/06 20:07:13 UTC

[1/2] ode-console git commit: Putoff polling

Repository: ode-console
Updated Branches:
  refs/heads/master 43066f63a -> 26d35f5c1


Putoff polling


Project: http://git-wip-us.apache.org/repos/asf/ode-console/repo
Commit: http://git-wip-us.apache.org/repos/asf/ode-console/commit/715b5c88
Tree: http://git-wip-us.apache.org/repos/asf/ode-console/tree/715b5c88
Diff: http://git-wip-us.apache.org/repos/asf/ode-console/diff/715b5c88

Branch: refs/heads/master
Commit: 715b5c889ea2027a7c66a4e827fed0b78c5e7230
Parents: 43066f6
Author: sathwik <sa...@apache.org>
Authored: Fri Oct 7 01:31:53 2016 +0530
Committer: sathwik <sa...@apache.org>
Committed: Fri Oct 7 01:31:53 2016 +0530

----------------------------------------------------------------------
 src/app/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ode-console/blob/715b5c88/src/app/index.js
----------------------------------------------------------------------
diff --git a/src/app/index.js b/src/app/index.js
index 4b067ef..5a5a46c 100644
--- a/src/app/index.js
+++ b/src/app/index.js
@@ -65,7 +65,7 @@ angular.module('odeConsole', ['ngAnimate', 'ngSanitize', 'ngRoute', 'ui.bootstra
   .constant('IMAPI_ENDPOINT', rootURI+'ode/processes/InstanceManagement')
   .constant('PMAPI_ENDPOINT', rootURI+'ode/processes/ProcessManagement')
   .constant('DSAPI_ENDPOINT', rootURI+'ode/processes/DeploymentService')
-  .constant('POLLING_INTERVAL', '4000')
+  .constant('POLLING_INTERVAL', '0')
   .filter('escape', function() {
     return window.encodeURIComponent;
   })


[2/2] ode-console git commit: build to include woff2 fonts from bootstrap-sass

Posted by sa...@apache.org.
build to include woff2 fonts from bootstrap-sass


Project: http://git-wip-us.apache.org/repos/asf/ode-console/repo
Commit: http://git-wip-us.apache.org/repos/asf/ode-console/commit/26d35f5c
Tree: http://git-wip-us.apache.org/repos/asf/ode-console/tree/26d35f5c
Diff: http://git-wip-us.apache.org/repos/asf/ode-console/diff/26d35f5c

Branch: refs/heads/master
Commit: 26d35f5c1e21cc0141f50dfbde9718e6d5b6b139
Parents: 715b5c8
Author: sathwik <sa...@apache.org>
Authored: Fri Oct 7 01:36:28 2016 +0530
Committer: sathwik <sa...@apache.org>
Committed: Fri Oct 7 01:36:28 2016 +0530

----------------------------------------------------------------------
 gulp/build.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ode-console/blob/26d35f5c/gulp/build.js
----------------------------------------------------------------------
diff --git a/gulp/build.js b/gulp/build.js
index 5c5c957..8dcf45f 100644
--- a/gulp/build.js
+++ b/gulp/build.js
@@ -145,7 +145,7 @@ gulp.task('images', function () {
 
 gulp.task('fonts', function () {
   return gulp.src($.mainBowerFiles())
-    .pipe($.filter('**/*.{eot,svg,ttf,woff}'))
+    .pipe($.filter('**/*.{eot,svg,ttf,woff,woff2}'))
     .pipe($.flatten())
     .pipe(gulp.dest('dist/fonts/'));
 });