Changes between Version 15 and Version 16 of CustomFieldAdminPlugin


Ignore:
Timestamp:
Jul 6, 2014, 6:53:52 PM (10 years ago)
Author:
Ryan J Ollos
Comment:

Minor changes.

Legend:

Unmodified
Added
Removed
Modified
  • CustomFieldAdminPlugin

    v15 v16  
    11[[PageOutline(2-5,Contents,pullout)]]
    2 = Trac Custom Field Admin plugin =
     2= Trac Custom Field Admin plugin
    33
    4 == Description ==
     4== Description
    55
    6 This plugin is a Web Admin panel for administrating custom fields - adding, modifying and deleting them without editing the `trac.ini` file directly.
     6This plugin is a Web Admin panel for administering custom fields - adding, modifying and deleting them without editing the `trac.ini` file directly.
    77
    8 The plugin is available for Trac 0.10 and 0.11/0.12/1.0 (0.11 branch is compatible with current 0.12+). The plugin will be integrated into Trac in trac:#11469.
     8The plugin is available for Trac 0.10 and 0.11/0.12/1.0 (0.11 branch is compatible with current 0.12+). The plugin will be integrated into Trac for release 1.2 (trac:#11469).
    99
    1010This plugin is a cooperation between !CodeResort.com and Optaros.com, and is made freely available under a BSD license.
    1111
    12 == Bugs/Feature Requests ==
     12== Bugs/Feature Requests
    1313
    1414Existing bugs and feature requests for CustomFieldAdminPlugin are
     
    1818[/newticket?component=CustomFieldAdminPlugin&owner=osimons new ticket].
    1919
    20 == Download ==
     20== Download
    2121
    2222Download the zipped source from [download:customfieldadminplugin here].
    2323
    24 == Source ==
     24== Source
    2525
    2626You can check out CustomFieldAdminPlugin from [http://trac-hacks.org/svn/customfieldadminplugin here] using Subversion, or [source:customfieldadminplugin browse the source] with Trac.
    2727
    28 == easy_install ==
     28== easy_install
    2929
    3030The plugin can also be installed directly from repos:
    31 {{{
    32 #!sh
     31{{{#!sh
    3332easy_install -U -Z http://trac-hacks.org/svn/customfieldadminplugin/0.11
    3433}}}
    3534
    36 (or substitute 0.11 with 0.10 for older Trac version)
     35(substitute `0.11` with `0.10` for older Trac version)
    3736
    38 == Configuration ==
     37== Configuration
    3938
    40 This plugin requires Web Admin plugin ([trac:wiki:WebAdmin]) if you are using the 0.10 version, but not for 0.11 as Web Admin is integrated into main Trac for this version.
     39This plugin requires Web Admin plugin ([trac:wiki:WebAdmin]) if you are using the 0.10 version, but not for the 0.11 version as Web Admin is integrated into Trac for this version.
    4140
    4241Enable the plugin in trac.ini:
    43 {{{
    44 #!ini
     42{{{#!ini
    4543[components]
    4644customfieldadmin.* = enabled
    4745}}}
    4846
    49 == API ==
     47== API
    5048
    5149The plugin also has an API that can be called from other code if you need to create or modify custom fields. Here is an interactive session as example:
    52 {{{
    53 #!python
     50
     51{{{#!python
    5452from trac.env import Environment
    5553from customfieldadmin.api import CustomFields