Merge branch 'develop' into interface

Conflicts:
	app/assets/javascripts/app/models/_application_model.js.coffee
This commit is contained in:
Martin Edenhofer 2014-09-24 21:39:43 +02:00
commit b957b843a3
3 changed files with 6 additions and 6 deletions

View file

@ -317,7 +317,7 @@ class _taskManagerSingleton extends App.Controller
@TaskbarIdInt
taskUpdate: (task) ->
@log 'notice', "UPDATE task #{task.id}", task
#@log 'notice', "UPDATE task #{task.id}", task
@tasksToUpdate[ task.key ] = 'toUpdate'
App.Event.trigger 'task:render'

View file

@ -151,20 +151,20 @@ class _webSocketSingleton extends App.Controller
ping: =>
return if @backend is 'ajax'
@log 'debug', 'send websockend ping'
@log 'debug', 'send websocket ping'
@send( { action: 'ping' } )
# check if ping is back within 2 min
App.Delay.clear 'websocket-ping-check', 'ws'
check = =>
@log 'notice', 'no websockend ping response, reconnect...'
@log 'notice', 'no websocket ping response, reconnect...'
@close()
App.Delay.set check, 90000, 'websocket-ping-check', 'ws'
pong: ->
return if @backend is 'ajax'
@log 'debug', 'received websockend ping'
@log 'debug', 'received websocket ping'
# test again after 1 min
App.Delay.set @ping, 60000, 'websocket-pong', 'ws'

View file

@ -277,8 +277,8 @@ class TicketsController < ApplicationController
links.each { |item|
link_list.push item
if item['link_object'] == 'Ticket'
ticket = Ticket.lookup( :id => item['link_object_value'] )
assets = ticket.assets(assets)
linked_ticket = Ticket.lookup( :id => item['link_object_value'] )
assets = linked_ticket.assets(assets)
end
}