.. -*- coding: utf-8 -*- Version 0.13.6 -------------- :publication date: 2009/03/02 :expected date: n/a Ticket #5632 Have a more explicit error message ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.500 :state: deprecated When you have a task that uses a resource-type that is not available in the resources, projman writes: "task has no begin" We could have something like "task has no resource". Ticket #5875 missing dependency on debian package ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.250 :state: resolved installing projman with apt-get and running it leads to:: ImportError: No module named doctools.rest_docbook It's probably missing a dependancy on logilab-doctools Ticket #5630 svg renderer does not work with matplotlib 0.98.1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 0.250 :state: deprecated Debian unstable has update matplotlib to 0.98.1 and this version has a different interface for the backends. Using it to generate SVG diagrams results in:: Traceback (most recent call last): File "/usr/bin/projman", line 4, in run(sys.argv[1:]) File "/home/alf/dev/public/projman/main.py", line 24, in run main_run(args, __doc__) File "/home/alf/dev/public/logilab/common/clcommands.py", line 136, in main_run cmd_run(arg, *args) File "/home/alf/dev/public/logilab/common/clcommands.py", line 119, in cmd_run command.run(args) File "/home/alf/dev/public/projman/commands.py", line 80, in run self._run(args) File "/home/alf/dev/public/projman/commands.py", line 290, in _run renderer.render(self.project, stream) File "/home/alf/dev/public/projman/renderers/gantt.py", line 42, in render AbstractRenderer.render(self, task, stream) File "/home/alf/dev/public/projman/renderers/abstract.py", line 150, in render self._render_body(project) File "/home/alf/dev/public/projman/renderers/gantt.py", line 52, in _render_body self.drawer.main_title('Gantt diagram') File "/home/alf/dev/public/projman/renderers/abstract.py", line 347, in main_title ROW_HEIGHT, fillcolor=self._colors['HEAD']) File "/home/alf/dev/public/projman/renderers/abstract.py", line 252, in _draw_rect self._handler.draw_rect(self._x+1, self._y+1, width-2, height-2, **attrs) File "/home/alf/dev/public/projman/renderers/svg.py", line 175, in draw_rect self._rend.draw_rectangle(gc, rgbFace, x, y, width, height) AttributeError: RendererSVG instance has no attribute 'draw_rectangle' Comments :: On 2008/10/09 08:45 - anon wrote : ludovic generates svg using file.write. david generates svg using pycairo. pick one and get projman to draw diagrams again. Ticket #5916 upgrade to matplotlib 0.98 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ :type: bug :load: 1.000 :state: resolved matplotlib 0.98 changed the drawing interface. current code works with 0.91