Changes between Version 49 and Version 50 of FullBlogPlugin


Ignore:
Timestamp:
Jun 22, 2015, 10:35:47 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • FullBlogPlugin

    v49 v50  
    3636 * XmlRpcPlugin support.
    3737
    38 Feedback is most welcome - see [wiki:osimons] to get in touch with me by mail or on the #trac channel.
     38Feedback is most welcome, see [wiki:osimons] to get in touch with me by mail or on the #trac channel.
    3939
    4040=== Macro
     
    8282 * [attachment:fullblog-01.png Post view with commenting]
    8383
    84 To see the blog in action, visit its 'home' at http://www.coderesort.com/about/blog
     84To see the blog in action, visit its home at http://www.coderesort.com/about/blog.
    8585
    8686=== Migration
     
    9292 * Install FullBlogPlugin
    9393 * Upgrade the Trac environment:
    94 {{{
    95 #!sh
     94 {{{#!sh
    9695trac-admin /path/to/env upgrade
    9796}}}
    9897 * Run the migration script:
    99 {{{
    100 #!sh
     98 {{{#!sh
    10199migrate-tracblog.py /path/to/environment
    102100}}}
    103101 * Confirm that the migration succeeded, then remove the old posts if desired:
    104 {{{
    105 #!sh
     102 {{{#!sh
    106103migrate-tracblog.py /path/to/environment --delete-only
    107104}}}
     105
    108106Take a look at `migrate-tracblog.py --help` for more options.
    109107
     
    114112
    115113If you have any issues, create a
    116 [http://trac-hacks.org/newticket?component=FullBlogPlugin&owner=osimons new ticket].
     114/newticket?component=FullBlogPlugin new ticket].
    117115
    118116[[TicketQuery(component=FullBlogPlugin,group=type,format=progress)]]
     
    132130 * Or, check out the source (see below) and similarly run `python setup.py install` at correct location (like previous alternative). To update the plugin later, you can then just do `svn up` to pull down the latest source from repository and install it again.
    133131 * Or, to install it directly from repository to get the latest version with revision marker, use `easy_install`:
    134 {{{#!sh
     132 {{{#!sh
    135133easy_install --always-unzip http://trac-hacks.org/svn/fullblogplugin/0.11
    136134}}}
     
    141139
    142140 1. Enable the plugin:
    143 {{{
    144 #!ini
     141 {{{#!ini
    145142[components]
    146143tracfullblog.* = enabled
     
    148145 1. Upgrade your Trac environment by running: `trac-admin /path/to/env upgrade`.
    149146 1. Restart server and as `TRAC-ADMIN` you should now see 'Blog' in menu.
    150  1. Add one or more permissions to let users view, create, comment and modify posts (see list above).
     147 1. Add one or more permissions to let users view, create, comment and modify posts, see list above.
    151148
    152149The link to 'Blog' in menu will appear last. To move it, edit your `trac.ini` config file to add `blog` into the ordered list:
    153 {{{
    154 #!ini
     150{{{#!ini
    155151[trac]
    156152mainnav = wiki,blog,timeline,....
    157153}}}
    158154
    159 If you would like the blog to be the new default home page for your project (ie. handle requests to `/myproject/`), then update trac.ini:
    160 {{{
    161 #!ini
     155If you would like the blog to be the new default home page for your project (ie handle requests to `/myproject/`), then update `trac.ini`:
     156{{{#!ini
    162157[trac]
    163158default_handler = FullBlogModule