Re: [Trac] Ticket View

2017-05-22 Thread toto200891
Thanks for the links Ryan.

SF

On Friday, May 19, 2017 at 7:32:28 PM UTC+2, RjOllos wrote:
>
>
>
> On Friday, May 19, 2017 at 3:39:39 AM UTC-7, toto200891 wrote:
>>
>> Is it also possible to include the following:
>>
>> return [ticket['status'], 'username'] in ['test', 'accepted_for_test', 
>> ticket['reporter'], ticket['owner']]
>>
>
> Consider reading a basic Python tutorial. Your question is about testing 
> for membership and using conditionals. You can find better explainers, but 
> here is the official documentation:
>
> https://docs.python.org/2.7/reference/expressions.html#membership-test-operations
>
> and some good sites for getting started:
> https://dbader.org
> https://www.learnpython.org/
> https://www.blog.pythonlibrary.org/
>
> - Ryan
>
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Ticket View

2017-05-22 Thread toto200891
Yes it worked! thank you so much.

SF

On Friday, May 19, 2017 at 6:38:51 PM UTC+2, Peter Suter wrote:
>
> On 19.05.2017 12:39, toto200891 wrote:
>
> On Friday, May 19, 2017 at 12:28:52 PM UTC+2, toto200891 wrote: 
>
>> On Friday, May 19, 2017 at 11:16:50 AM UTC+2, Cooke, Mark wrote: 
>>>
>>> > -Original Message- 
>>> > From: trac-...@googlegroups.com [mailto:trac-...@googlegroups.com] On 
>>> > Behalf Of toto200891 
>>> > 
>>> > Hi, 
>>> > 
>>> > I was working on ticket view on trac 0.12.7. I had used the following 
>>> shown 
>>> > plugin to create a permission TICKET_VIEW_STATUS and allow the user to 
>>> see 
>>> > the tickets with status "test". 
>>> > 
>>> > # -*- coding: utf-8 -*- 
>>> > # 
>>> > # Copyright (C) 2017 Edgewall Software 
>>> > # All rights reserved. 
>>> > # 
>>> > # This software is licensed as described in the file COPYING, which 
>>> > # you should have received as part of this distribution. The terms 
>>> > # are also available at http://trac.edgewall.org/wiki/TracLicense. 
>>> > # 
>>> > # This software consists of voluntary contributions made by many 
>>> > # individuals. For the exact contribution history, see the revision 
>>> > # history and logs, available at http://trac.edgewall.org/log/. 
>>> > 
>>> > 
>>> > from trac.core import * 
>>> > from trac.perm import IPermissionPolicy, IPermissionRequestor 
>>> > from trac.resource import ResourceNotFound 
>>> > from trac.ticket.model import Ticket 
>>> > 
>>> > 
>>> > 
>>> > 
>>> > class StatusDeskPolicy(Component): 
>>> > """Provides a permission for restricting ticket actions to the 
>>> > ticket owner. 
>>> > """ 
>>> > 
>>> > 
>>> > implements(IPermissionPolicy, IPermissionRequestor) 
>>> > 
>>> > 
>>> > # IPermissionRequestor methods 
>>> > 
>>> > 
>>> > def get_permission_actions(self): 
>>> > return ['TICKET_VIEW_STATUS'] 
>>> > 
>>> > 
>>> > # IPermissionPolicy methods 
>>> > 
>>> > 
>>> > def check_permission(self, action, username, resource, perm): 
>>> > if username != 'anonymous' and \ 
>>> > action == 'TICKET_VIEW' and \ 
>>> > 'TICKET_ADMIN' not in perm: 
>>> > if 'TICKET_VIEW_STATUS' in perm: 
>>> > if resource is None or \ 
>>> > resource.realm == 'ticket' and \ 
>>> > resource.id is None: 
>>> > return True 
>>> > elif resource.realm == 'ticket' and \ 
>>> > resource.id is not None: 
>>> > try: 
>>> > ticket = Ticket(self.env, resource.id) 
>>> > except ResourceNotFound: 
>>> > pass 
>>> > else: 
>>> > return ticket['status']=='test' 
>>> > 
>>> > 
>>> > Now I would like to add another status to this code like 
>>> "Accepted_for_test" 
>>> > , for so I just tried changing the last line as follows: 
>>> > 
>>> > 
>>> > return ticket['status']=='test', 'accepted_for_test' 
>>>
>>> Python allows you to return multiple values, so you have effectively 
>>> returned a tuple of a Boolean (the result of the comparison) and a constant 
>>> string. 
>>>
>>> Try something like this: 
>>>
>>> > return ticket['status'] in ['test', 'accepted_for_test'] 
>>>
>>> ~ Mark C 
>>>
>>> > But by doing the following change, Now the user is able to view all 
>>> tickets, 
>>> > which I was not expecting. Is there any problem with the syntax? or I 
>>> am 
>>> > missing something? Kindly guide me in this regard. 
>>> > 
>>> > 
>>> > Regards, 
>>> > SF 
>>
>> Is it also possible to include the following: 
>
> return [ticket['status'], 'username'] in ['test', 'accepted_for_test', 
> ticket['reporter'], ticket['owner']]
>
> Such that I could allow a user to view tickets, based on status and also 
> the tickets he is been assigned to or he reported?
>
>
> return ticket['status'] in ['test', 'accepted_for_test'] or username in 
> [ticket['reporter'], ticket['owner']]
>
> Maybe?
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Ticket View

2017-05-19 Thread RjOllos


On Friday, May 19, 2017 at 3:39:39 AM UTC-7, toto200891 wrote:
>
> Is it also possible to include the following:
>
> return [ticket['status'], 'username'] in ['test', 'accepted_for_test', 
> ticket['reporter'], ticket['owner']]
>

Consider reading a basic Python tutorial. Your question is about testing 
for membership and using conditionals. You can find better explainers, but 
here is the official documentation:
https://docs.python.org/2.7/reference/expressions.html#membership-test-operations

and some good sites for getting started:
https://dbader.org
https://www.learnpython.org/
https://www.blog.pythonlibrary.org/

- Ryan

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Ticket View

2017-05-19 Thread Peter Suter

On 19.05.2017 12:39, toto200891 wrote:

On Friday, May 19, 2017 at 12:28:52 PM UTC+2, toto200891 wrote:

On Friday, May 19, 2017 at 11:16:50 AM UTC+2, Cooke, Mark wrote:

> -Original Message-
> From: trac-...@googlegroups.com
[mailto:trac-...@googlegroups.com] On
> Behalf Of toto200891
>
> Hi,
>
> I was working on ticket view on trac 0.12.7. I had used the
following shown
> plugin to create a permission TICKET_VIEW_STATUS and allow
the user to see
> the tickets with status "test".
>
> # -*- coding: utf-8 -*-
> #
> # Copyright (C) 2017 Edgewall Software
> # All rights reserved.
> #
> # This software is licensed as described in the file
COPYING, which
> # you should have received as part of this distribution. The
terms
> # are also available at
http://trac.edgewall.org/wiki/TracLicense
.
> #
> # This software consists of voluntary contributions made by
many
> # individuals. For the exact contribution history, see the
revision
> # history and logs, available at http://trac.edgewall.org/log/.
>
>
> from trac.core import *
> from trac.perm import IPermissionPolicy, IPermissionRequestor
> from trac.resource import ResourceNotFound
> from trac.ticket.model import Ticket
>
>
>
>
> class StatusDeskPolicy(Component):
> """Provides a permission for restricting ticket actions
to the
> ticket owner.
> """
>
>
> implements(IPermissionPolicy, IPermissionRequestor)
>
>
> # IPermissionRequestor methods
>
>
> def get_permission_actions(self):
> return ['TICKET_VIEW_STATUS']
>
>
> # IPermissionPolicy methods
>
>
> def check_permission(self, action, username, resource,
perm):
> if username != 'anonymous' and \
> action == 'TICKET_VIEW' and \
> 'TICKET_ADMIN' not in perm:
> if 'TICKET_VIEW_STATUS' in perm:
> if resource is None or \
> resource.realm == 'ticket' and \
> resource.id  is None:
> return True
> elif resource.realm == 'ticket' and \
> resource.id  is not None:
> try:
> ticket = Ticket(self.env,
resource.id )
> except ResourceNotFound:
> pass
> else:
> return ticket['status']=='test'
>
>
> Now I would like to add another status to this code like
"Accepted_for_test"
> , for so I just tried changing the last line as follows:
>
>
> return ticket['status']=='test', 'accepted_for_test'

Python allows you to return multiple values, so you have
effectively returned a tuple of a Boolean (the result of the
comparison) and a constant string.

Try something like this:

> return ticket['status'] in ['test', 'accepted_for_test']

~ Mark C

> But by doing the following change, Now the user is able to
view all tickets,
> which I was not expecting. Is there any problem with the
syntax? or I am
> missing something? Kindly guide me in this regard.
>
>
> Regards,
> SF 


Is it also possible to include the following:

return [ticket['status'], 'username'] in ['test', 'accepted_for_test', 
ticket['reporter'], ticket['owner']]


Such that I could allow a user to view tickets, based on status and 
also the tickets he is been assigned to or he reported?


return ticket['status'] in ['test', 'accepted_for_test'] or username in 
[ticket['reporter'], ticket['owner']]


Maybe?

--
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Ticket View

2017-05-19 Thread toto200891
Is it also possible to include the following:

return [ticket['status'], 'username'] in ['test', 'accepted_for_test', 
ticket['reporter'], ticket['owner']]

Such that I could allow a user to view tickets, based on status and also 
the tickets he is been assigned to or he reported?

I tried doing this, but I see that he could not view any tickets now, 
because of the following modification.

regards,

SF

On Friday, May 19, 2017 at 12:28:52 PM UTC+2, toto200891 wrote:
>
> Thank you so much, it worked.
>
> On Friday, May 19, 2017 at 11:16:50 AM UTC+2, Cooke, Mark wrote:
>>
>> > -Original Message- 
>> > From: trac-...@googlegroups.com [mailto:trac-...@googlegroups.com] On 
>> > Behalf Of toto200891 
>> > 
>> > Hi, 
>> > 
>> > I was working on ticket view on trac 0.12.7. I had used the following 
>> shown 
>> > plugin to create a permission TICKET_VIEW_STATUS and allow the user to 
>> see 
>> > the tickets with status "test". 
>> > 
>> > # -*- coding: utf-8 -*- 
>> > # 
>> > # Copyright (C) 2017 Edgewall Software 
>> > # All rights reserved. 
>> > # 
>> > # This software is licensed as described in the file COPYING, which 
>> > # you should have received as part of this distribution. The terms 
>> > # are also available at http://trac.edgewall.org/wiki/TracLicense. 
>> > # 
>> > # This software consists of voluntary contributions made by many 
>> > # individuals. For the exact contribution history, see the revision 
>> > # history and logs, available at http://trac.edgewall.org/log/. 
>> > 
>> > 
>> > from trac.core import * 
>> > from trac.perm import IPermissionPolicy, IPermissionRequestor 
>> > from trac.resource import ResourceNotFound 
>> > from trac.ticket.model import Ticket 
>> > 
>> > 
>> > 
>> > 
>> > class StatusDeskPolicy(Component): 
>> > """Provides a permission for restricting ticket actions to the 
>> > ticket owner. 
>> > """ 
>> > 
>> > 
>> > implements(IPermissionPolicy, IPermissionRequestor) 
>> > 
>> > 
>> > # IPermissionRequestor methods 
>> > 
>> > 
>> > def get_permission_actions(self): 
>> > return ['TICKET_VIEW_STATUS'] 
>> > 
>> > 
>> > # IPermissionPolicy methods 
>> > 
>> > 
>> > def check_permission(self, action, username, resource, perm): 
>> > if username != 'anonymous' and \ 
>> > action == 'TICKET_VIEW' and \ 
>> > 'TICKET_ADMIN' not in perm: 
>> > if 'TICKET_VIEW_STATUS' in perm: 
>> > if resource is None or \ 
>> > resource.realm == 'ticket' and \ 
>> > resource.id is None: 
>> > return True 
>> > elif resource.realm == 'ticket' and \ 
>> > resource.id is not None: 
>> > try: 
>> > ticket = Ticket(self.env, resource.id) 
>> > except ResourceNotFound: 
>> > pass 
>> > else: 
>> > return ticket['status']=='test' 
>> > 
>> > 
>> > Now I would like to add another status to this code like 
>> "Accepted_for_test" 
>> > , for so I just tried changing the last line as follows: 
>> > 
>> > 
>> > return ticket['status']=='test', 'accepted_for_test' 
>>
>> Python allows you to return multiple values, so you have effectively 
>> returned a tuple of a Boolean (the result of the comparison) and a constant 
>> string. 
>>
>> Try something like this: 
>>
>> > return ticket['status'] in ['test', 'accepted_for_test'] 
>>
>> ~ Mark C 
>>
>> > But by doing the following change, Now the user is able to view all 
>> tickets, 
>> > which I was not expecting. Is there any problem with the syntax? or I 
>> am 
>> > missing something? Kindly guide me in this regard. 
>> > 
>> > 
>> > Regards, 
>> > SF 
>> > 
>> > -- 
>> > You received this message because you are subscribed to the Google 
>> Groups 
>> > "Trac Users" group. 
>> > To unsubscribe from this group and stop receiving emails from it, send 
>> an 
>> > email to trac-users+...@googlegroups.com. 
>> > To post to this group, send email to trac-...@googlegroups.com. 
>> > Visit this group at https://groups.google.com/group/trac-users. 
>> > For more options, visit https://groups.google.com/d/optout. 
>>
>>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


Re: [Trac] Ticket View

2017-05-19 Thread toto200891
Thank you so much, it worked.

On Friday, May 19, 2017 at 11:16:50 AM UTC+2, Cooke, Mark wrote:
>
> > -Original Message- 
> > From: trac-...@googlegroups.com  [mailto:
> trac-...@googlegroups.com ] On 
> > Behalf Of toto200891 
> > 
> > Hi, 
> > 
> > I was working on ticket view on trac 0.12.7. I had used the following 
> shown 
> > plugin to create a permission TICKET_VIEW_STATUS and allow the user to 
> see 
> > the tickets with status "test". 
> > 
> > # -*- coding: utf-8 -*- 
> > # 
> > # Copyright (C) 2017 Edgewall Software 
> > # All rights reserved. 
> > # 
> > # This software is licensed as described in the file COPYING, which 
> > # you should have received as part of this distribution. The terms 
> > # are also available at http://trac.edgewall.org/wiki/TracLicense. 
> > # 
> > # This software consists of voluntary contributions made by many 
> > # individuals. For the exact contribution history, see the revision 
> > # history and logs, available at http://trac.edgewall.org/log/. 
> > 
> > 
> > from trac.core import * 
> > from trac.perm import IPermissionPolicy, IPermissionRequestor 
> > from trac.resource import ResourceNotFound 
> > from trac.ticket.model import Ticket 
> > 
> > 
> > 
> > 
> > class StatusDeskPolicy(Component): 
> > """Provides a permission for restricting ticket actions to the 
> > ticket owner. 
> > """ 
> > 
> > 
> > implements(IPermissionPolicy, IPermissionRequestor) 
> > 
> > 
> > # IPermissionRequestor methods 
> > 
> > 
> > def get_permission_actions(self): 
> > return ['TICKET_VIEW_STATUS'] 
> > 
> > 
> > # IPermissionPolicy methods 
> > 
> > 
> > def check_permission(self, action, username, resource, perm): 
> > if username != 'anonymous' and \ 
> > action == 'TICKET_VIEW' and \ 
> > 'TICKET_ADMIN' not in perm: 
> > if 'TICKET_VIEW_STATUS' in perm: 
> > if resource is None or \ 
> > resource.realm == 'ticket' and \ 
> > resource.id is None: 
> > return True 
> > elif resource.realm == 'ticket' and \ 
> > resource.id is not None: 
> > try: 
> > ticket = Ticket(self.env, resource.id) 
> > except ResourceNotFound: 
> > pass 
> > else: 
> > return ticket['status']=='test' 
> > 
> > 
> > Now I would like to add another status to this code like 
> "Accepted_for_test" 
> > , for so I just tried changing the last line as follows: 
> > 
> > 
> > return ticket['status']=='test', 'accepted_for_test' 
>
> Python allows you to return multiple values, so you have effectively 
> returned a tuple of a Boolean (the result of the comparison) and a constant 
> string. 
>
> Try something like this: 
>
> > return ticket['status'] in ['test', 'accepted_for_test'] 
>
> ~ Mark C 
>
> > But by doing the following change, Now the user is able to view all 
> tickets, 
> > which I was not expecting. Is there any problem with the syntax? or I am 
> > missing something? Kindly guide me in this regard. 
> > 
> > 
> > Regards, 
> > SF 
> > 
> > -- 
> > You received this message because you are subscribed to the Google 
> Groups 
> > "Trac Users" group. 
> > To unsubscribe from this group and stop receiving emails from it, send 
> an 
> > email to trac-users+...@googlegroups.com . 
> > To post to this group, send email to trac-...@googlegroups.com 
> . 
> > Visit this group at https://groups.google.com/group/trac-users. 
> > For more options, visit https://groups.google.com/d/optout. 
>
>

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


RE: [Trac] Ticket View

2017-05-19 Thread Cooke, Mark
> -Original Message-
> From: trac-users@googlegroups.com [mailto:trac-users@googlegroups.com] On
> Behalf Of toto200891
> 
> Hi,
> 
> I was working on ticket view on trac 0.12.7. I had used the following shown
> plugin to create a permission TICKET_VIEW_STATUS and allow the user to see
> the tickets with status "test".
> 
> # -*- coding: utf-8 -*-
> #
> # Copyright (C) 2017 Edgewall Software
> # All rights reserved.
> #
> # This software is licensed as described in the file COPYING, which
> # you should have received as part of this distribution. The terms
> # are also available at http://trac.edgewall.org/wiki/TracLicense.
> #
> # This software consists of voluntary contributions made by many
> # individuals. For the exact contribution history, see the revision
> # history and logs, available at http://trac.edgewall.org/log/.
> 
> 
> from trac.core import *
> from trac.perm import IPermissionPolicy, IPermissionRequestor
> from trac.resource import ResourceNotFound
> from trac.ticket.model import Ticket
> 
> 
> 
> 
> class StatusDeskPolicy(Component):
> """Provides a permission for restricting ticket actions to the
> ticket owner.
> """
> 
> 
> implements(IPermissionPolicy, IPermissionRequestor)
> 
> 
> # IPermissionRequestor methods
> 
> 
> def get_permission_actions(self):
> return ['TICKET_VIEW_STATUS']
> 
> 
> # IPermissionPolicy methods
> 
> 
> def check_permission(self, action, username, resource, perm):
> if username != 'anonymous' and \
> action == 'TICKET_VIEW' and \
> 'TICKET_ADMIN' not in perm:
> if 'TICKET_VIEW_STATUS' in perm:
> if resource is None or \
> resource.realm == 'ticket' and \
> resource.id is None:
> return True
> elif resource.realm == 'ticket' and \
> resource.id is not None:
> try:
> ticket = Ticket(self.env, resource.id)
> except ResourceNotFound:
> pass
> else:
> return ticket['status']=='test'
> 
> 
> Now I would like to add another status to this code like "Accepted_for_test"
> , for so I just tried changing the last line as follows:
> 
> 
> return ticket['status']=='test', 'accepted_for_test'

Python allows you to return multiple values, so you have effectively returned a 
tuple of a Boolean (the result of the comparison) and a constant string.

Try something like this:

> return ticket['status'] in ['test', 'accepted_for_test']

~ Mark C

> But by doing the following change, Now the user is able to view all tickets,
> which I was not expecting. Is there any problem with the syntax? or I am
> missing something? Kindly guide me in this regard.
> 
> 
> Regards,
> SF
> 
> --
> You received this message because you are subscribed to the Google Groups
> "Trac Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to trac-users+unsubscr...@googlegroups.com.
> To post to this group, send email to trac-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/trac-users.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


[Trac] Ticket View

2017-05-19 Thread toto200891
Hi,

I was working on ticket view on trac 0.12.7. I had used the following shown 
plugin to create a permission TICKET_VIEW_STATUS and allow the user to see 
the tickets with status "test".

# -*- coding: utf-8 -*-
#
# Copyright (C) 2017 Edgewall Software
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://trac.edgewall.org/wiki/TracLicense.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://trac.edgewall.org/log/.

from trac.core import *
from trac.perm import IPermissionPolicy, IPermissionRequestor
from trac.resource import ResourceNotFound
from trac.ticket.model import Ticket


class StatusDeskPolicy(Component):
"""Provides a permission for restricting ticket actions to the
ticket owner.
"""

implements(IPermissionPolicy, IPermissionRequestor)

# IPermissionRequestor methods

def get_permission_actions(self):
return ['TICKET_VIEW_STATUS']

# IPermissionPolicy methods

def check_permission(self, action, username, resource, perm):
if username != 'anonymous' and \
action == 'TICKET_VIEW' and \
'TICKET_ADMIN' not in perm:
if 'TICKET_VIEW_STATUS' in perm:
if resource is None or \
resource.realm == 'ticket' and \
resource.id is None:
return True
elif resource.realm == 'ticket' and \
resource.id is not None:
try:
ticket = Ticket(self.env, resource.id)
except ResourceNotFound:
pass
else:
return ticket['status']=='test'

Now I would like to add another status to this code like 
"Accepted_for_test" , for so I just tried changing the last line as follows:

return ticket['status']=='test', 'accepted_for_test'

But by doing the following change, Now the user is able to view all 
tickets, which I was not expecting. Is there any problem with the syntax? 
or I am missing something? Kindly guide me in this regard.

Regards,
SF

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to trac-users+unsubscr...@googlegroups.com.
To post to this group, send email to trac-users@googlegroups.com.
Visit this group at https://groups.google.com/group/trac-users.
For more options, visit https://groups.google.com/d/optout.


[Trac] Ticket View Interface Customization for 0.11

2008-07-21 Thread Mirko Stocker

Hi!

We had a customized ticket view with our old Trac installation, and
now that we switched to 0.11, I can't figure out how to make it work
again. I noticed the new way these customizations are handled, and I
was able to restore our customized header in site.html, so that works.
I'm also able to insert stuff before or after the body, but the
Example snippet of adding introduction text to the new ticket form
(hide when preview): doesn't work. Maybe I'm placing it at the wrong
place or something, I'd be very glad if someone could post me a
complete and working site.html.

Thanks a lot

Mirko

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Ticket View Customization

2008-04-08 Thread Gab

Hi there,

I'm new in the Trac World and I'm quite impressed by it's simplicity
to install and run.
I'd liked to know if there is a mean to make the list of fields
displayed while viewing / editing a Ticket vary depending on:
- the person logged (to hide / show or edit depending on this person
rights)
- the state of the Ticket : some fields could be relevant only in a
closed state, or assigned, and not to be mentioned while creating a
new Ticket for example
- the type of the Ticket : an enhancement, a bug, a task could have
different fields, not relevant for all types of tickets.

If such a functionality doesn't exist, is it planned for future
release of Trac ? What could be the workaround waiting for the
functionality to be part of Trac ?

Thanks for your support.

regards

gab

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---