{5} Assigned, Active Tickets by Owner (Full Description) (3 matches)
List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.
sylvain
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #3 | Simple example server fails to come up | amplee | amplee-0.6.1 | defect | 03/28/08 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Seems like the examples are out of date. I wasn't able to get the cherry py 3 server to work with Amplee. After easy installing amplee, I tried to use the examples to run an HTTP server with amplee. cd /opt mkdir /opt/amplee svn co https://svn.defuze.org/oss/amplee/amplee/examples cd simple python server.py I saw an issue here because of a typo in the example. Traceback (most recent call last):
File "server.py", line 40, in ?
from searchapplication import SearchApplication
File "/opt/amplee/examples/simple/searchapplication.py", line 5, in ?
from amplee.ext.opensearch.description import OpenSearchDescription
File "/usr/lib/python2.4/site-packages/amplee-0.6.0-py2.4.egg/amplee/ext/opensearch/description.py", line 6, in ?
from email.utils import parseaddr, formataddr
ImportError: No module named utils
This required a fix in the amplee egg in python's site-packages pushd /usr/lib/python2.4/site-packages/amplee-0.6.0-py2.4.egg/ cd amplee/ext/opensearch sed s/email.utils/email.Utils description.py popd I saw another issue at this point Traceback (most recent call last):
File "server.py", line 43, in ?
cherrypy.signal_handler.subscribe()
AttributeError: 'module' object has no attribute 'signal_handler'
To resolve this, I edited the server.py and comment out line 43. After that -- [27/Mar/2008:23:44:01] AtomPub service application ready |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #4 | Cannot run Amplee as WSGI application because 4Suite_XML requires stdout | amplee | defect | 04/06/08 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
The following trace shows what happens when amplee starts up and stdout is restricted by mod_wsgi in Apache. If I put WSGIRestrictStdout off then this error goes away [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] mod_wsgi (pid=13056): Exception occurred processing WSGI script '/usr/local/amplee.wsgi'. [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] Traceback (most recent call last): [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/usr/local/amplee.wsgi", line 9, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] from amplee.atompub.collection import FeedHandler [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/amplee-0.6.0-py2.5.egg/amplee/atompub/collection.py", line 32, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] import amara [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/Amara-1.2.0.2-py2.5.egg/amara/__init__.py", line 11, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/Amara-1.2.0.2-py2.5.egg/amara/binderytools.py", line 13, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/InputSource.py", line 355, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] DefaultFactory = InputSourceFactory(catalog=GetDefaultCatalog()) [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Catalog.py", line 575, in GetDefaultCatalog [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] catalog = Catalog(uri, quiet) [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Catalog.py", line 95, in __init__ [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] self._parseXmlCat(data) [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Catalog.py", line 372, in _parseXmlCat [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] from Ft.Xml.Sax import CreateParser [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Sax.py", line 242, in <module> [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] class SaxPrinter(ContentHandler): [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Sax.py", line 247, in SaxPrinter [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] def __init__(self, printer=XmlPrinter(sys.stdout, 'utf-8')): [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] File "/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/site-packages/4Suite_XML-1.0.2-py2.5-macosx-10.3-i386.egg/Ft/Xml/Lib/XmlPrinter.py", line 39, in __init__ [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] self.stream = sw = cStreamWriter.StreamWriter(stream, encoding) [Sun Apr 06 08:15:38 2008] [error] [client 127.0.0.1] TypeError: argument must have 'write' attribute |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #17 | Error when sending characters <> | headstock | headstock-0.3.0 | enhancement | 07/04/08 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
In the simple chat example, the program has bizarre behavior if you were to type in "user@domain.com <>". The program still runs and appears fine, but will show as offline on another user's buddy list. I'm not sure if it's my responsibility to escape this text or not, but either way, if it's supposed to fail, it should fail more helpfully. :) Jason Baker |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
