Opened 21 years ago
Last modified 3 weeks ago
#1 new enhancement
Add a new project summary module.
Reported by: | (none) | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | topic-multiproject |
Component: | general | Version: | 0.6.1 |
Severity: | critical | Keywords: | multiproject |
Cc: | a.a.vykhodtsev@…, lists@…, itamarost@…, tn@…, leho@…, Ryan J Ollos | Branch: | |
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description (last modified by )
This module should useful information like:
- Number of open tickets
- Tickets targeted for each milestone
- Tickets assigned to the current user (but see rather #4588 for that)
- And more…
… like a project description, attachments, etc.
Attachments (0)
Change History (49)
comment:1 by , 21 years ago
Priority: | p1 → p2 |
---|
comment:2 by , 21 years ago
Milestone: | → 2.0 |
---|---|
Priority: | high → normal |
Version: | → devel |
comment:3 by , 21 years ago
Severity: | normal → enhancement |
---|
comment:4 by , 21 years ago
Milestone: | 2.0 → 0.8 |
---|---|
Priority: | normal → highest |
comment:5 by , 20 years ago
Milestone: | 0.8 → 1.0 |
---|
comment:6 by , 20 years ago
Personally…
I think actually leaving a COMMENT as to why you made a change to this ticket number!
Going from high priority to low and back makes no sense with out an explanation!!!
comment:8 by , 20 years ago
The idea is central for the redesign, but needs to be fleshed out somewhere else.
comment:9 by , 20 years ago
Milestone: | 2.0 → 1.0 |
---|---|
Priority: | high → normal |
I wonder if this could not be done with
a set of wiki macros: with the [[TicketQuery()]]
and the WikiInclude macro to be able to include the WikiStart, it should be possible
to compose something like a dynamic My Page.
Note: it would be useful to be able to delete all the test comments attached to this ticket…
comment:11 by , 20 years ago
Component: | log view → general |
---|
comment:12 by , 20 years ago
Component: | general → changeset view |
---|
comment:13 by , 20 years ago
Component: | changeset view → project |
---|---|
Owner: | changed from | to
comment:14 by , 20 years ago
Component: | project → general |
---|---|
Owner: | changed from | to
comment:15 by , 19 years ago
Cc: | added |
---|
comment:16 by , 19 years ago
I think project summary (WikiStart) should contain "news" or "announce". To enable this, add the new type named "news" or "announce" to ticket by default, and show recent of these summaries by macro.
And I think "recent colosed tickets", "recent added tickets", and these kind of information can be showed using some macro by defaults.
comment:17 by , 19 years ago
Cc: | removed |
---|
Tidsstyring
Jeg savner muligens mulighet til å legge inn tidsestimater på tickets. Det ville vere nyttig, å kunne ha den type informasjon i samme systemet.
follow-up: 47 comment:18 by , 19 years ago
Cc: | added |
---|
comment:19 by , 19 years ago
Owner: | changed from | to
---|---|
Priority: | normal → lowest |
Severity: | normal → minor |
Version: | 0.6.1 → 0.9 |
comment:20 by , 19 years ago
Milestone: | 1.0 |
---|---|
Owner: | changed from | to
Priority: | lowest → normal |
Severity: | minor → normal |
Version: | 0.9 → 0.6.1 |
comment:21 by , 19 years ago
Milestone: | → 1.0 |
---|
According to our roadmap, this should be a 1.0 feature.
comment:22 by , 19 years ago
Keywords: | project added |
---|---|
Severity: | normal → major |
comment:23 by , 18 years ago
Priority: | normal → highest |
---|
comment:24 by , 18 years ago
Priority: | highest → normal |
---|
comment:34 by , 18 years ago
Cc: | removed |
---|
comment:35 by , 18 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:36 by , 18 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Quite unbelievably, this is not a test ticket, but a valid one.
Though the question of whether this should be done as a plugin might be asked…
An alternative to a plugin would be the possibility to have macros that can provide all the required info an be inserted in the WikiStart page.
e.g. the TicketQuery macro could be adapted to accept a count format, in addition to the compact one, and that would simply show the number of tickets matching the specific request.
-
trac/ticket/query.py
677 677 This macro accepts two parameters, the second of which is optional. 678 678 679 679 The first parameter is the query itself, and uses the same syntax as for 680 {{{query:}}} wiki links. The second parameter determines how the list of 681 tickets is presented: the default presentation is to list the ticket ID next 682 to the summary, with each ticket on a separate line. If the second parameter 683 is given and set to '''compact''' then the tickets are presented as a 684 comma-separated list of ticket IDs. 680 {{{query:}}} wiki links. 681 682 The second parameter determines how the list of tickets is 683 presented: the default presentation is to list the ticket ID next 684 to the summary, with each ticket on a separate line. 685 If the second parameter is given, it must be one of: 686 - '''compact''' -- the tickets are presented as a comma-separated 687 list of ticket IDs. 688 - '''count''' -- only the count of matching tickets is displayed 685 689 """ 686 690 687 691 def render_macro(self, req, name, content): 688 692 query_string = '' 689 compact = 0 693 compact = False 694 count = False 690 695 argv = content.split(',') 691 696 if len(argv) > 0: 692 697 query_string = argv[0] 693 698 if len(argv) > 1: 694 if argv[1].strip().lower() == 'compact': 695 compact = 1 699 format = argv[1].strip().lower() 700 if format == 'compact': 701 compact = True 702 elif format == 'count': 703 count = True 696 704 697 705 buf = StringIO() 698 706 … … 709 717 (ticket['status'], href, summary, ticket['id']) 710 718 links.append(a) 711 719 buf.write(', '.join(links)) 720 elif count: 721 buf.write(len(tickets)) 712 722 else: 713 723 buf.write('<dl class="wiki compact">') 714 724 for ticket in tickets:
comment:38 by , 18 years ago
Description: | modified (diff) |
---|---|
Owner: | changed from | to
Priority: | normal → high |
Severity: | major → critical |
Status: | reopened → new |
Summary: | Add a new project summary module. (My Page) → Add a new project summary module. |
I've removed (My Page) from the summary, as this is more related to #4588.
This is about whole project summary, which makes a lot of sense in the multiple project per environment case.
comment:39 by , 18 years ago
#1877 proposed a patch on 0.8 to give a summary of tickets for all projects (in the multiple environment case).
This makes me think that in order to complement the Project Summary, there should probably be a Projects Overview, in the same vein as we now have a Milestone and the Roadmap for getting an overview of all the milestones.
comment:40 by , 16 years ago
Cc: | added |
---|
comment:41 by , 15 years ago
Cc: | added |
---|
comment:42 by , 15 years ago
cool, first ticket ever.
from the looks of the description, it would seem the current 0.12-trunk capabilities of Roadmap fulfill the original idea.
or what's the latest thought process on this for you cboos?
comment:44 by , 15 years ago
Milestone: | triaging → 0.13 |
---|
Complementary to #130 / #11025.
The exact form this could take should be very free form, so perhaps rather than the fixed model followed by a milestone (description + ticket progress bar), a project overview could be generated from a set of macros that could be freely modified and repositioned in the project's description. The default layout and content could be taken from ProjectTemplates sub-pages, with a nice ProjectTemplates/default.
comment:45 by , 14 years ago
Keywords: | multiproject added; project removed |
---|
follow-up: 48 comment:46 by , 14 years ago
Perhaps this could be made a DashboardPlugin where the user can edit the page layout and define what is shown and what is not on the DashboardPlugin admin page.
The dashboard plugin itself should provide extension points, for example DashboardInformationProvider which can then be implemented by for example the ticket system, for example the LatestTicketChangesInformationProvider, or the MostActiveTicketsInformationProvider and so on.
On the admin page then, the user can opt in/out individual such information providers, setting them up in for example a two or three column layout.
On the dashboard page itself, the user might be enabled to drag around individual renderings of the available information providers to their personal likings, collapsing or expanding individual such renderings.
In a multi project scenario, the multi project system would then provide new implementations of these information providers, overriding the defaults in the system provided by the ticket system, the timeline and so on, coalescing the information from these multiple projects into a single view.
comment:47 by , 14 years ago
Replying to anonymous:
I think project summary (WikiStart) should contain "news" or "announce". To enable this, add the new type named "news" or "announce" to ticket by default, and show recent of these summaries by macro.
And I think "recent colosed tickets", "recent added tickets", and these kind of information can be showed using some macro by defaults.
I do not think that the original WikiStart page should be replaced by something like the dashboard.
If you want to include such information on your WikiStart page, your best bet is to implement or use an existing macro and use that on your page.
-10 for replacing the WikiStart by a Dashboard from me.
comment:48 by , 14 years ago
Replying to Carsten Klein <carsten.klein@…>:
Perhaps this could be made a DashboardPlugin where the user can edit the page layout and define what is shown and what is not on the DashboardPlugin admin page.
with that I meant that the plugin will provide a requesthandler responsible for the /dashboard realm.
comment:49 by , 14 years ago
Cc: | added |
---|
comment:50 by , 14 years ago
Cc: | added |
---|
follow-up: 52 comment:51 by , 14 years ago
Cc: | added |
---|
comment:53 by , 14 years ago
SpamFilter said:
CaptchaSystem (10): Human verified via CAPTCHA
Either there's a bug in the SpamFilter, or that was really a real human behing the keyboard… @anonymous, would you mind confirming?
comment:54 by , 14 years ago
Have a look at the apache server and trac logs. They should tell you whether the captcha was solved or not :-)
comment:55 by , 14 years ago
Milestone: | 0.13 → 0.14-multiproject |
---|
comment:56 by , 12 years ago
Cc: | added |
---|
Not sure why I commented but didn't cc before. Anyway, Bloodhound is shipping their alpha preview 0.1 release with a Dashboard view. That should be interesting to look at.
comment:57 by , 10 years ago
Cc: | added; removed |
---|
comment:58 by , 9 years ago
Owner: | removed |
---|
Ah. bug #1… hehe.. this one will be here a while, or slowly die..