Changes between Version 9 and Version 10 of TracFormsPlugin


Ignore:
Timestamp:
Jun 15, 2008, 1:15:58 AM (16 years ago)
Author:
Rich Harkins
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFormsPlugin

    v9 v10  
    2626
    2727{{{
    28 #!shell
     28#!sh
    2929 cd tracformsplugin
    3030 cd trunk
     
    3333
    3434=== Method 1: Lay an egg ===
    35 From here, you can do one of two things.  The first is building an egg to drop into your project's plugins directory or your master project's plugins directory (replace $TRACENV_DIR with your project's base directory):
     35From here, you can do one of two things.  The first is building an egg to drop into your project's plugins directory or your master project's plugins directory (replace or define $TRACENV_DIR with your project's base directory):
    3636
     37{{{
     38#!sh
    3739 python setup.py bdist_egg
    3840 cp dist/TracForms-0.1-*.egg $TRACENV_DIR/plugins/
     41}}}
    3942
    4043=== Method 2: Full install ===
    4144
    42 Or, you can build and install and enable the right bit in the configuration file:
     45Or, you can build and install and enable the right bit in the configuration file (replace or define $TRACENV_DIR with your project's base directory):
    4346
     47{{{
     48#!sh
    4449 python setup.py install
    4550 vi $TRACENV_DIR/conf/trac.ini
     51}}}
    4652
    4753Within here, locate (or create) your [components] section and add the following:
    4854
     55{{{
    4956 [components]
    5057 tracforms.* = enabled
     58}}}
    5159
    5260