Changes between Version 7 and Version 8 of TracFormsPlugin


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

--

Legend:

Unmodified
Added
Removed
Modified
  • TracFormsPlugin

    v7 v8  
    2121You can check out TracFormsPlugin from [http://trac-hacks.org/svn/tracformsplugin here] using Subversion, or [source:tracformsplugin browse the source] with Trac.
    2222
     23== Installation ==
     24
     25Once you have downloaded the source, do the following (your mileage may vary on the actual directory names depending on what you downloaded):
     26
     27 cd tracformsplugin
     28 cd trunk
     29 cd 0.11
     30
     31=== Method 1: Lay an egg ===
     32From 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):
     33
     34 python setup.py bdist_egg
     35 cp dist/TracForms-0.1-*.egg $TRACENV_DIR/plugins/
     36
     37=== Method 2: Full install ===
     38
     39Or, you can build and install and enable the right bit in the configuration file:
     40
     41 python setup.py install
     42 vi $TRACENV_DIR/conf/trac.ini
     43
     44Within here, locate (or create) your [components] section and add the following:
     45
     46 [components]
     47 tracforms.* = enabled
     48
     49
    2350== Example ==
    2451