﻿ticket	summary	type	release	owner	status	created	modified	_description	_reporter
13436	KIS plugin additional ticket keywords exposed to KIS assistant expressions	enhancement	1.2	Jon Ashley	new	2018-06-05T20:36:36+02:00	2018-06-08T10:16:54+02:00	"Also, maybe I should open a new ticket for this, but I also wanted to do something like

`foo.visible = authname == owner`

where `owner` is replaced with the owner of the ticket. In kis.py, I did 

{{{
#!python
    def post_process_request(self, req, template, data, content_type):
        ...

            if 'id' in req.args:
                ticket_id = req.args['id'].lstrip('#')
                ticket = Ticket(self.env, ticket_id)
                status = ticket.get_value_or_default('status')
                owner =  ticket.get_value_or_default('owner')
            else:
                ticket_id = ''
                status = ''
                owner = ''

            page_data = { 'trac_ini' : config,
                          'status'   : status,
                          'owner'    : owner,
                          'id'       : ticket_id,
                          'authname' : req.authname }
}}}

Then in kis.js, in term()'s promise executor,

{{{
#!javascript
    function term() { return new Promise(function (resolve, reject) {
        ...
        if (token == 'owner') {
            result.value = page_info['owner'];
            next_token();
        } else
}}}

Might be useful to expose all the column names in the ticket schema to page_info?"	solstice333
13157	Provide option to show a compact warning message based on warden rules	enhancement		Jon Ashley	new	2017-04-19T15:37:29+02:00	2018-04-15T18:36:11+02:00	In case of descriptive rule definitions there is no need to display the conditions in the warden's warning message. So I thing we should provide an option to only display the rule description. I have implemented a solution which can be enabled in Trac.ini (see KisWarden's description). I have attached the patch to the ticket.	Miklos Molnar
13159	Ticket validation warnings are difficult to notice	enhancement		Jon Ashley	new	2017-04-20T12:45:38+02:00	2018-04-15T18:35:37+02:00	"There is already a ticket about this issue here: [https://trac.edgewall.org/ticket/11269 ticket]

I suggest to apply the suggested workaround until there is an officially accepted solution.

I have attached the patch."	Miklos Molnar
