# File lib/taskjuggler/daemon/ReportServer.rb, line 209 def addFile(authKey, file) return false unless @server.checkKey(authKey, 'addFile') trap { @server.addFile(file) } end
# File lib/taskjuggler/daemon/ReportServer.rb, line 237 def checkStatusSheet(authKey, sheet) return false unless @server.checkKey(authKey, 'checkStatusSheet') trap { @server.checkStatusSheet(sheet) } end
# File lib/taskjuggler/daemon/ReportServer.rb, line 231 def checkTimeSheet(authKey, sheet) return false unless @server.checkKey(authKey, 'checkTimeSheet') trap { @server.checkTimeSheet(sheet) } end
# File lib/taskjuggler/daemon/ReportServer.rb, line 215 def generateReport(authKey, reportId, regExpMode, formats, dynamicAttributes) return false unless @server.checkKey(authKey, 'generateReport') trap do @server.generateReport(reportId, regExpMode, formats, dynamicAttributes) end end
Generated with the Darkfish Rdoc Generator 2.