Changes between Version 6 and Version 7 of StickyTicketPlugin


Ignore:
Timestamp:
Apr 1, 2012, 3:43:36 AM (12 years ago)
Author:
Adrian Fritz
Comment:

Configuration. Page Refactoring

Legend:

Unmodified
Added
Removed
Modified
  • StickyTicketPlugin

    v6 v7  
    55== Description ==
    66
    7 This plugin is able to print tickets on sticky notes.
     7[[Image(sticky-tickets.png,width=200px, right)]]
     8
     9This plugin is able to print tickets on sticky notes.
     10
     11== Usage ==
     12
     13Observe next to download section (bottom page) a link to get a PDF file from a simple ticket or even from a set of tickets. [[Image(StickyFormated.jpg,width=400px)]]
     14
     15=== Arguments ===
     16
     17The chart display can be controlled with a number of macro arguments:
     18
     19||'''Argument'''  ||'''Version'''  ||'''Description'''  ||'''Default'''
     20|| `fields`|| 0.12.0.3 ||Optional. Ticket fields in a sticky. || `owner,reporter,time` ||
     21|| `fontname`|| 0.12.0.3 ||Optional. Font name in PDF file. || `(auto)` ||
     22|| `pagesize`|| 0.12.0.3 ||Optional. Page size of PDF file which the tickets is printed. || `A4` ||
     23|| `sticky_width`|| N.A see #9655 ||Optional. Width (mm) of a sticky. || `75` ||
     24|| `sticky_height`|| N.A see #9655 ||Optional. Height (mm) of a sticky"). || `75` ||
     25
     26
     27== Installation ==
     28
     29 1. '''Install''' globally with:
     30{{{
     31  sudo easy_install https://trac-hacks.org/svn/stickyticketplugin/0.12
     32}}}
     33 1. '''Enable''' the plugin by updating TracIni file (..../trac.ini) as follows:
     34{{{
     35  [components]
     36  tracstickyticket.* = enabled
     37}}}
     38 1. '''Configure''' the plugin in its own configuration section, placed into 'trac.ini' file as follows:
     39{{{
     40  [sticky-ticket]
     41  fields = owner,milestone,priority,description
     42  sticky_width = 65
     43  sticky_height = 50
     44}}}
     45 1. '''Restart''' web server on command line:
     46{{{
     47#!sh
     48    $ sudo /etc/init.d/apache2 restart
     49}}}
    850
    951== Bugs/Feature Requests ==
    1052
    11 Existing bugs and feature requests for StickyTicketPlugin are
    12 [report:9?COMPONENT=StickyTicketPlugin here].
     53Existing bugs and feature requests for !StickyTicketPlugin are [report:9?COMPONENT=StickyTicketPlugin here].
    1354
    14 If you have any issues, create a
    15 [http://trac-hacks.org/newticket?component=StickyTicketPlugin&owner=jun66j5 new ticket].
     55If you have any issues, create a [/newticket?component=StickyTicketPlugin&owner=jun66j5 new ticket].
    1656
    17 == Download ==
     57== Source & Download ==
     58
     59You can check out !StickyTicketPlugin from [http://trac-hacks.org/svn/stickyticketplugin here] using Subversion, or [source:stickyticketplugin browse the source] with Trac.
    1860
    1961Download the zipped source from [download:stickyticketplugin here].
    2062
    21 == Source ==
    22 
    23 You can check out StickyTicketPlugin from [http://trac-hacks.org/svn/stickyticketplugin here] using Subversion, or [source:stickyticketplugin browse the source] with Trac.
    24 
    25 == Example ==
    26 [[Image(sticky-tickets.png,width=200px)]]
    27 
    28 == Installation ==
    29  1. Using easy_install
    30 {{{
    31 $ easy_install http://trac-hacks.org/svn/stickyticketplugin/0.12
    32 }}}
    33  2. Enable the plugin
    34 {{{
    35 # conf/trac.ini
    36 [components]
    37 tracstickyticket.* = enabled
    38 }}}
    39 
    40 == Tickets ==
    41 
    42 [[TicketQuery(component=StickyTicketPlugin&status!=closed,group=status)]]
    43 
    44 == Recent Changes ==
     63=== Recent Changes ===
    4564
    4665[[ChangeLog(stickyticketplugin, 3)]]