Find Poi issues globally in the site when adding issue tracker tasks
Project description
eXtremeManagement has a content type called ‘Poi Task’ that provides a way to link a task to a story.
xm.globalissues changes the way issues are being found when adding a Poi Task, so issues are found globally in the instance.
Setup
>>> self.setRoles(['Manager']) >>> workflow = self.portal.portal_workflow
We need to install Poi and eXtremeManagement:
>>> ignore = self.portal.portal_quickinstaller.installProducts(['Poi', 'eXtremeManagement'])
We create a project, an iteration, and a story. Note that in our model, issues correspond to tasks:
>>> projectfolder = \ ... self.portal[self.portal.invokeFactory('Folder', 'folder')] >>> project = projectfolder[projectfolder.invokeFactory('Project', 'project')] >>> iteration1 = project[project.invokeFactory('Iteration', 'iteration1')] >>> story1 = iteration1[iteration1.invokeFactory('Story', 'story1')]
Remember that a story has to be estimated and marked as so, so that we’re able to add any tasks to it. Therefore, right now, we shouldn’t be able to add any tasks. An image is allowed, though.
>>> def list_addable(context): ... allowed = context.getAllowedTypes() ... addable = context.getAddableTypesInMenu(allowed) ... return u', '.join(ad.Title() for ad in addable) >>> list_addable(story1) u'File, Image'>>> story1.setRoughEstimate(1.5) >>> workflow.doActionFor(story1, 'estimate') >>> list_addable(story1) u'File, Image, Issue Tracker Task, Task'
Let’s create an issue tracker in the project with two issues in it:
>>> tracker = project[project.invokeFactory('PoiTracker', 'tracker')] >>> myissue = tracker[tracker.invokeFactory('PoiIssue', '1')] >>> yourissue = tracker[tracker.invokeFactory('PoiIssue', '2')]
Poi Tasks
In our story, we can now add two different types of tasks, the normal “Task” type and the “Poi Task” type. The “Poi Task” is what we’re interested in, so let’s create one and connect it with one of our issues:
>>> task = story1[story1.invokeFactory('PoiTask', 'task')] >>> task.setIssues([myissue]) >>> task.getIssues() [<PoiIssue at /plone/folder/project/tracker/1>] >>> story1.manage_delObjects(['task'])
Poi Tasks have a vocabulary method vocabulary_issues that’ll return a DisplayList of issues that can be referred to. Note that this list only includes open issues:
>>> task.vocabulary_issues() # doctest: +ELLIPSIS <DisplayList [('...', '#1: '), ('...', '#2: ')] at ...> >>> myissue.isValid = True >>> workflow.doActionFor(myissue, 'post') >>> workflow.doActionFor(myissue, 'resolve-unconfirmed') >>> task.vocabulary_issues() # doctest: +ELLIPSIS <DisplayList [('...', '#2: ')] at ...> >>> workflow.doActionFor(myissue, 'open-resolved') >>> task.vocabulary_issues() # doctest: +ELLIPSIS <DisplayList [('...', '#1: '), ('...', '#2: ')] at ...>
Mass-creating Poi Tasks
The @@xm-poi view allows us to create tasks by tags. We use the add_tasks_from_tags method for this.
>>> from Products.statusmessages.interfaces import IStatusMessage >>> storyview = story1.restrictedTraverse('@@xm-poi') >>> def show_message(): ... for msg in [msg.message for msg in ... IStatusMessage(storyview.request).showStatusMessages()]: ... print msg
Finding issues globally
Thanks to xm.globalissues, issues that live outside our project are also considered:
>>> folder = self.folder >>> tracker2 = folder[folder.invokeFactory('PoiTracker', 'tracker2')] >>> other_issue = tracker2[tracker2.invokeFactory('PoiIssue', 'other-issue')] >>> other_issue.setSubject(['yourtag']) >>> other_issue.reindexObject() >>> storyview.add_tasks_from_tags(['yourtag']) >>> show_message() # doctest: +NORMALIZE_WHITESPACE Added tasks for issues: other-issue.
Changelog
1.0 (2009-02-20)
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file xm.globalissues-1.0.tar.gz
.
File metadata
- Download URL: xm.globalissues-1.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 605f5d09e132b548d81ebd45fa12c61ab20bcd62c6107a03000fa3c3962590b7 |
|
MD5 | 174c8c3d3c46763c387acbbd5dd50494 |
|
BLAKE2b-256 | 02483b0bc5621beafe5d3892cb964c2d6eb5078075ab3dcc50255ddb6cf6b594 |
File details
Details for the file xm.globalissues-1.0-py2.4.egg
.
File metadata
- Download URL: xm.globalissues-1.0-py2.4.egg
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8f7746032fad23617b4fcbacdb3487715f53b95224fcc10b3a24e7fce4a3862 |
|
MD5 | 8118c76284690947198c270244dcb5be |
|
BLAKE2b-256 | 162d9723a589fef84527e4faaab5927c3bbc602c9127493f68722d2581c925db |