This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository mum. See http://git.chorem.org/mum.git commit d531cafcf6963452133b182b0a5aa205d36db606 Author: Alexis Guilbaud <guilbaud@codelutin.com> Date: Fri Jun 26 15:13:57 2015 +0200 fullscreen on url + changed log location on rules and conf --- debian/rules | 6 ++++-- mum.conf | 2 +- static/js/controllers/dashboardCtrl.js | 2 ++ 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/debian/rules b/debian/rules index dedaaeb..ad8c683 100755 --- a/debian/rules +++ b/debian/rules @@ -27,8 +27,9 @@ DEST_CONF=$(CURDIR)/debian/mum/etc/mum DEST_VAR=$(CURDIR)/debian/mum/var/lib/mum DEST_BIN=$(CURDIR)/debian/mum/usr/bin DEST_INIT_D=$(CURDIR)/debian/mum/etc/init.d -DEST_SYSTEMD=$(CURDIR)/debian/usr/lib/systemd/system -DEST_DOC=$(CURDIR)/debian/usr/share/doc/mum +DEST_SYSTEMD=$(CURDIR)/debian/mum/usr/lib/systemd/system +DEST_DOC=$(CURDIR)/debian/mum/usr/share/doc/mum +DEST_LOGS=$(CURDIR)/debian/mum/var/log/mum build : build-stamp @@ -54,6 +55,7 @@ install : build clean $(app) $(bower_components) $(static) $(views) $(install_sc mkdir -p $(DEST_BIN) mkdir -p $(DEST_SYSTEMD) mkdir -p $(DEST_DOC) + mkdir -p $(DEST_LOGS) mkdir $(DEST_VAR)/keys mkdir $(DEST_VAR)/logs mkdir $(DEST_VAR)/data diff --git a/mum.conf b/mum.conf index 0a12be8..6e7bf07 100644 --- a/mum.conf +++ b/mum.conf @@ -1,7 +1,7 @@ server_port=1337 server_addr=0.0.0.0 db_location=/var/lib/mum/data/mum.db -log_location=/var/lib/mum/logs +log_location=/var/log/mum external_modules_location=/etc/mum/modules/ keys_location=/var/lib/mum/keys/ smtp_server=localhost diff --git a/static/js/controllers/dashboardCtrl.js b/static/js/controllers/dashboardCtrl.js index 746329c..6f1dc8d 100644 --- a/static/js/controllers/dashboardCtrl.js +++ b/static/js/controllers/dashboardCtrl.js @@ -80,6 +80,8 @@ mumApp.controller('dashboardCtrl', function ($scope, $routeParams, $location, $r $scope.update_url = function () { var url = ""; + url += "fullscreen=" + $scope.fullscreen + "&"; + url += "host_filter=" + $scope.host_filter + "&"; url += "addr_filter=" + $scope.addr_filter + "&"; -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.