[OGo-Bugs][Bug 1854] Wrong date/time on new tasks & subsequent task actions
bugs@opengroupware.org
bugs@opengroupware.org
Wed, 20 Feb 2008 03:26:23 +0100 (CET)
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug
report.
http://bugzilla.opengroupware.org/bugzilla/show_bug.cgi?id=1854
------- Additional Comments From awilliam@whitemice.org 2007-09-14 12:24 -------
Same issue applies to task annotation whether performed via WebUI, XML-RPC API,
or zOGI API.
Actions performed at 06:22 appear in WebUI as occuring at 10:22
---------------
#!/usr/bin/env python
import xmlrpclib
HOST="localhost"
LOGIN="adam"
PWD="fred"
URL = "http://%s:%s@%s/RPC2" % (LOGIN, PWD, HOST)
server = xmlrpclib.ServerProxy(URL)
result=server.jobs.annotateJob(10332139, "XML-RPC comment");
print "got:", result
--------------
#!/usr/bin/env python
import xmlrpclib, time, sys, pprint
server = xmlrpclib.Server('http://adam:fred@localhost/zidestore/so/adam/')
notation = {}
notation['entityName'] = 'taskNotation'
notation['taskObjectId'] = 10332139
notation['comment'] = 'zOGI comment'
notation['action'] = 'comment'
print server.zogi.putObject(notation);
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.