Changes between Version 7 and Version 8 of TracTicketFieldsLayoutPlugin


Ignore:
Timestamp:
Sep 6, 2016, 5:33:42 PM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketFieldsLayoutPlugin

    v7 v8  
    11[[PageOutline(2-5,Contents,pullout)]]
    2 
    3 {{{#!box warn
    4 I have no plans to make this plugin work on Trac 1.4+ with //Jinja2// template because it depends strongly on `ITemplateStreamFilter.filter_stream()` based on Genshi template engine. I don't want to implement the same feature using javascript. I dislike using javascript to modify severely structure of DOMs.
    5 }}}
    62
    73= Allow to customize the layout of ticket fields in view and form
    84
     5{{{#!box warn
     6'''Notice''': I have no plans to make this plugin work on Trac 1.4+ with //Jinja2// template because it depends strongly on `ITemplateStreamFilter.filter_stream()` based on Genshi template engine. I don't want to implement the same feature using javascript. I dislike using javascript to modify severely structure of DOMs.
     7}}}
     8
    99== Description
    1010
    11 The plugin allows to customize the layout of ticket fields and hide the fields in ticket view and ticket form. It also provides admin panel to customize.
     11This plugin allows you to customize the layout of ticket fields and hide the fields in ticket view and ticket form. It also provides admin panel to customize.
     12
     13=== New ticket
     14
     15[[Image(newticket.png, 60%, border=2)]]
     16
     17=== Ticket view and form
     18
     19[[Image(ticket.png, 60%, border=2)]]
     20
     21=== Admin panel to customize
     22
     23[[Image(ticketfieldslayout-admin.png, 80%, border=2)]]
    1224
    1325== !Bugs/Feature Requests
     
    3244
    3345 1. Install the plugin:
    34 {{{
    35 #!sh
     46 {{{#!sh
    3647easy_install https://trac-hacks.org/svn/tracticketfieldslayoutplugin/0.12
    3748}}}
    3849 1. Enable the plugin in the `trac.ini` file:
    39 {{{
    40 #!ini
     50 {{{#!ini
    4151; conf/trac.ini
    4252[components]
     
    4555 1. Restart your tracd or web server.
    4656 1. Visit [/admin/ticket/ticketlayout] in your Trac after logged in with `TICKET_ADMIN` permission.
    47 
    48 == Screenshots
    49 
    50 ||= New Ticket ||= Ticket view and form ||= Admin panel to customize ||
    51 {{{#!tr
    52 {{{#!td style="vertical-align:top"
    53 [[Image(newticket.png,width=300)]]
    54 }}}
    55 {{{#!td style="vertical-align:top"
    56 [[Image(ticket.png,width=300)]]
    57 }}}
    58 {{{#!td style="vertical-align:top"
    59 [[Image(ticketfieldslayout-admin.png,width=300)]]
    60 }}}
    61 }}}
    6257
    6358== Recent Changes