Rainer Sokoll | 1 Apr 2010 09:41
Picon
Favicon

[Trac] Threaded timeline?

Hi,

is it possible to have a threaded timeline? What I am looking for is
something like:

04/01/10
  Ticket #123 created by
  Ticket #122 created by
  Ticket #100 created by
    Ticket #100 closed by
  Ticket #121 created by

and so on.
Any ideas?

Thank you,
Rainer

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

Christian Boos | 1 Apr 2010 09:58
Picon

Re: [Trac] Threaded timeline?

On 4/1/2010 9:41 AM, Rainer Sokoll wrote:
> is it possible to have a threaded timeline? What I am looking for is
> something like:
>
> 04/01/10
>    Ticket #123 created by
>    Ticket #122 created by
>    Ticket #100 created by
>      Ticket #100 closed by
>    Ticket #121 created by
>
> and so on.
> Any ideas?
>    

Interesting! That display mode could certainly enhance the readability 
of busy timelines...
I suppose the threads shouldn't span days and group activity centered on 
a given resource.
"Easily" done for wiki pages and tickets, do you also think about a way 
we could group changesets?

-- Christian

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

(Continue reading)

Stefan Ruppert | 1 Apr 2010 10:10
Picon

Re: [Trac] Threaded timeline?

Christian Boos wrote:
> On 4/1/2010 9:41 AM, Rainer Sokoll wrote:
>> is it possible to have a threaded timeline? What I am looking for is
>> something like:
>>
>> 04/01/10
>>    Ticket #123 created by
>>    Ticket #122 created by
>>    Ticket #100 created by
>>      Ticket #100 closed by
>>    Ticket #121 created by
>>
>> and so on.
>> Any ideas?
>>    
> 
> Interesting! That display mode could certainly enhance the readability 
> of busy timelines...
> I suppose the threads shouldn't span days and group activity centered on 
> a given resource.
> "Easily" done for wiki pages and tickets, do you also think about a way 
> we could group changesets?
> 
> -- Christian
> 

Yes, thats a nice idea. Maybe different resources can be shown in an own 
column!?

04/01/10
(Continue reading)

Roger Oberholtzer | 1 Apr 2010 10:51
Picon

[Trac] WikiHtml: div class= examples wanted

In the WikiHtml doc page, there is an example of using the div directive
to get text into a box. It uses a class called 'important'. I confess
that I am not an HTML programmer. Beyond the simplest stuff. I googled
this, but only got generic info on the class directive. It implied that
the values were locally defined. Nonetheless, how could I find which
ones are available (pre-defined) in a Trac wiki page?

-- 
Roger Oberholtzer

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

Christian Boos | 1 Apr 2010 11:11
Picon

Re: [Trac] WikiHtml: div class= examples wanted

On 4/1/2010 10:51 AM, Roger Oberholtzer wrote:
> In the WikiHtml doc page, there is an example of using the div directive
> to get text into a box. It uses a class called 'important'. I confess
> that I am not an HTML programmer. Beyond the simplest stuff. I googled
> this, but only got generic info on the class directive. It implied that
> the values were locally defined. Nonetheless, how could I find which
> ones are available (pre-defined) in a Trac wiki page?
>
>    

None yet, besides the documented ones, "important" and "wiki", the 
latter being the default used if you specified no other class 
explicitly. "wiki" adds some left margin to compensate for the negative 
left margin used for headings. You can also specify class="" so that the 
"wiki" default class is not used

I think it would be nice to have a few more default classes, like 
MoinMoin's admonitions (http://moinmo.in/HelpOnAdmonitions).

Adding local classes can be done via a local site.css, see 
http://trac.edgewall.org/wiki/CookBook/SiteStyleCss for some examples.

-- Christian

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

(Continue reading)

Roger Oberholtzer | 1 Apr 2010 12:14
Picon

Re: [Trac] WikiHtml: div class= examples wanted

On Thu, 2010-04-01 at 11:11 +0200, Christian Boos wrote:
> On 4/1/2010 10:51 AM, Roger Oberholtzer wrote:
> > In the WikiHtml doc page, there is an example of using the div directive
> > to get text into a box. It uses a class called 'important'. I confess
> > that I am not an HTML programmer. Beyond the simplest stuff. I googled
> > this, but only got generic info on the class directive. It implied that
> > the values were locally defined. Nonetheless, how could I find which
> > ones are available (pre-defined) in a Trac wiki page?
> >
> >    
> 
> None yet, besides the documented ones, "important" and "wiki", the 
> latter being the default used if you specified no other class 
> explicitly. "wiki" adds some left margin to compensate for the negative 
> left margin used for headings. You can also specify class="" so that the 
> "wiki" default class is not used
> 
> I think it would be nice to have a few more default classes, like 
> MoinMoin's admonitions (http://moinmo.in/HelpOnAdmonitions).

Those would indeed be nice. We often have such parenthetical
information. Thanks for the pointer.

> Adding local classes can be done via a local site.css, see 
> http://trac.edgewall.org/wiki/CookBook/SiteStyleCss for some examples.

Dumb question: where do I tell that I would like a css file added? I
thought I would put this line in my site.html:

<link rel="stylesheet" type="text/css" charset="utf-8" media="all" href="site.css" />
(Continue reading)

Roger Oberholtzer | 1 Apr 2010 12:22
Picon

[Trac] graphviz cache

I use trac to edit graphviz charts (don't ask - I haven't found a gui to
simplify this so the wiki is as good a place as any). This results in
the gvcache directory getting larger and larger. I would like to flush
it. Is it ok to simple delete the contents, and the needed graphs will
be made the first time they are needed? Or would doing this cause some
unexpected problems?

-- 
Roger Oberholtzer

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

jevans | 1 Apr 2010 14:23
Picon

[Trac] Re: Trac user creation issue

amit_mitra wrote:
> Hi Team
>
> I am new to Trac project. I have installed Trac using Bitnami
> installer. The project is installed and running successfully. I've
> some major configurations problems for team members.
>
> During installation , it asked me for creating an administrator
> account. I created a 'tracadmin' user.
> The installer also helped in creating one project during installation.
>
> I can login with 'tracadmin' user without issues and can view my
> project.
>
> I have also configured Account manager pluging for creating users.
>
> But the users created using the AccountMangerPlugin are not able to
> access and login the application.
>
> I'm unable to understand the issue and resolve it.

After creating users, you also need to give them permissions.  See the
TracPermissions page.
- jevans

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
(Continue reading)

Roger Oberholtzer | 1 Apr 2010 14:31
Picon

[Trac] ListOfWikiPagesMacro question

I am trying the ListOfWikiPagesMacro, and it seems to do what's on the
label. But I notice something I did not expect: it only shows pages
added via the wiki interface. If I add a page via the "trac-admin wiki
import" command, it does not show seem to up here. I have a couple
hierarchies of such pages. Any idea why it differentiates? I would have
thought these pages were equal in all ways.

-- 
Roger Oberholtzer

OPQ Systems / Ramböll RST

Ramböll Sverige AB
Krukmakargatan 21
P.O. Box 17009
SE-104 62 Stockholm, Sweden

Office: Int +46 10-615 60 20
Mobile: Int +46 70-815 1696

-- 
Roger Oberholtzer

--

-- 
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users@...
To unsubscribe from this group, send email to trac-users+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

(Continue reading)

KrishnaDas Kossery | 1 Apr 2010 15:31
Picon

[Trac] Incorrect links to tickets in trac emails

Hello,

We are receiving emails from Trac-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org with the word trac missing on the ticket view URL path.
For instance,
Ticket URL: <https://trac.domain.com/ticket/4832#comment:12 <https://trac.domain.com/ticket/4832#comment:12> >

and it should be:

Ticket URL: <https://trac.domain.com/trac/ticket/4832#comment:12 <https://trac.domain.com/trac/ticket/4832#comment:12> >

Please let us know how we can fix this.

Regards,
Lego


--
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to trac-users+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.

Gmane