Changes between Version 43 and Version 44 of FullBlogPlugin


Ignore:
Timestamp:
Oct 5, 2012, 4:31:33 PM (11 years ago)
Author:
Ryan J Ollos
Comment:

Added page outline and maintainer.

Legend:

Unmodified
Added
Removed
Modified
  • FullBlogPlugin

    v43 v44  
     1[[PageOutline(2-5,Contents,pullout]]
    12= Self-contained Blog plugin =
    2 [[PageOutline]]
     3
    34== Description ==
    45
     
    7879Posts are rendered sorted by newest first for all modes.
    7980
    80 
    8181== Screenshots ==
    8282
     
    9595 * Upgrade the Trac environment:
    9696{{{
     97#!sh
    9798trac-admin /path/to/env upgrade
    9899}}}
    99100 * Run the migration script:
    100101{{{
     102#!sh
    101103migrate-tracblog.py /path/to/environment
    102104}}}
    103105 * Confirm the migration succeeded, then remove the old posts (if desired)
    104106{{{
     107#!sh
    105108migrate-tracblog.py /path/to/environment --delete-only
    106109}}}
     
    122125 * or, to install it directly from repository to get the latest version with revision marker, use easy_install:
    123126{{{
     127#!sh
    124128easy_install --always-unzip http://trac-hacks.org/svn/fullblogplugin/0.11
    125129}}}
     
    127131''Note: on Fedora-14, Python 2.7,  Trac 0.11, trac did not see the plugin after easy_install and restart.  Adding these two symbolic links in site_packages fixed it:''
    128132{{{
     133#!sh
    129134ln -s TracFullBlogPlugin-0.1.1_r9430-py2.7.egg/EGG-INFO TracFullBlogPlugin-0.1.1_r9430-py2.7.egg-info
    130135ln -s TracFullBlogPlugin-0.1.1_r9430-py2.7.egg/tracfullblog
     
    143148 1. Enable the plugin:
    144149{{{
     150#!ini
    145151[components]
    146152tracfullblog.* = enabled
     
    152158The link to 'Blog' in menu will appear last. To move it, edit your `trac.ini` config file to add `blog` into the ordered list:
    153159{{{
     160#!ini
    154161[trac]
    155162mainnav = wiki,blog,timeline,....
     
    158165If you would like the blog to be the new default home page for your project (ie. handle requests to `/myproject/`), then update trac.ini:
    159166{{{
     167#!ini
    160168[trac]
    161169default_handler = FullBlogModule
    162170}}}
    163171
    164 '''Run''' on your Trac environment
    165     {{{
    166     #!sh
    167     $ trac-admin <env> upgrade
    168     }}}
     172'''Upgrade''' on your Trac environment
     173{{{
     174#!sh
     175$ trac-admin <env> upgrade
     176}}}
    169177
    170178== Available Plugins ==