Changes between Version 11 and Version 12 of WikiCssPlugin


Ignore:
Timestamp:
Jan 17, 2018, 9:11:28 PM (6 years ago)
Author:
figaro
Comment:

Add functional description

Legend:

Unmodified
Added
Removed
Modified
  • WikiCssPlugin

    v11 v12  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Set CSS styles using a wiki page
     3= Set styles based on the styling of a single wiki page
    44
    55== Description
    66
    7 This plugin allows one wiki page to be used as global CSS style file for Trac. The CSS file is provided at `[/projectdir]/wikicss.css` and a `link` HTML header is inserted which directs browsers to it.
     7This plugin allows a user to apply the styling of a selected wiki page to the entire Trac project. It does so by using the CSS file of the selected wiki page as the global CSS file for the Trac project. The CSS file is specified as `[/projectdir]/wikicss.css` in the project's `trac.ini` file and a `link` HTML header is inserted which directs browsers to it.
     8
     9The action can be undone by removing or commenting out the line from the `trac.ini` file, without having to uninstall or deactivate the plugin.
    810
    911This plugin was originally requested through #1714.
     
    1113== Bugs/Feature Requests
    1214
    13 Existing bugs and feature requests for WikiCssPlugin are [report:9?COMPONENT=WikiCssPlugin here].
     15Existing bugs and feature requests for WikiCssPlugin are
     16[report:9?COMPONENT=WikiCssPlugin here].
    1417
    15 If you have any issues, create a [/newticket?component=WikiCssPlugin new ticket].
     18If you have any issues, create a
     19[/newticket?component=WikiCssPlugin new ticket].
    1620
    1721[[TicketQuery(component=WikiCssPlugin&group=type,format=progress)]]
     
    2731== Installation
    2832
    29  1. With easy_install:
    30  {{{#!sh
    31 easy_install https://trac-hacks.org/svn/wikicssplugin/0.11
    32 }}}
    33  1. Restart web server (in this example using Apache on Ubuntu OS):
    34  {{{#!sh
    35 sudo /etc/init.d/apache2 restart
    36 }}}
    37  1. Enable plugin through {{{../admin/general/plugin}}} or modify your `trac.ini` file to include:
    38  {{{#!ini
    39 [components]
    40 tracwikicss.* = enabled
    41 }}}
     33General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4234
    4335== Configuration