Changes between Version 17 and Version 18 of TracPastePlugin


Ignore:
Timestamp:
Jun 20, 2012, 8:57:24 AM (12 years ago)
Author:
Ryan J Ollos
Comment:

Existing and proposed features. Cleaned up installation and permission sections.

Legend:

Unmodified
Added
Removed
Modified
  • TracPastePlugin

    v17 v18  
     1[[PageOutline(2-5,Contents,pullout)]]
    12= Add a pastebin component to Trac =
    23
    34== Description ==
    45
    5 Adds a basic [http://en.wikipedia.org/wiki/Pastebin pastebin] functionality to a webpage. It requires trac0.11 and pygments > 0.5.
     6Adds a basic [http://en.wikipedia.org/wiki/Pastebin pastebin] functionality to a webpage. It requires Trac >= 0.11 and Pygments > 0.5.
    67
    78For some screenshots have a look at the attachments. But note that they are taken on my test trac installation with a heavily modified theme.
     9
     10The TracPastePlugin provides several features:
     11 * Paste events are shown in the timeline.
     12
     13Several additional features have been proposed:
     14 * Tags support (#6160)
     15 * TracLinks support (#5773)
     16 * Search provider (#6140)
     17 * Spam filter integration (#6144)
     18 * XmlRpcPlugin support (#6348)
    819
    920[[Image(pastebin_file.png, 50%)]]
     
    2334== Installing ==
    2435
    25  1. Make sure the Pygments Python extension is installed
     36 1. Make sure the Pygments Python package is installed
    2637 1. Either: Download, build egg, drop into your plugins folder, [[BR]]
    2738    or: `easy_install http://trac-hacks.org/svn/tracpasteplugin/0.11`
    28  1. Enable it over webadmin or by editing trac.ini: `[components] tracpaste.* = enabled`
    29  1. Run `trac-admin /path/to/project upgrade`
     39 1. Enable it through WebAdmin or by editing `trac.ini`: `[components] tracpaste.* = enabled`
     40 1. Run `trac-admin $TRAC_ENV upgrade`
    3041 1. Restart web server
    31  1. Add permission `PASTEBIN_USE` to users/groups that should be able to access it
    32  1. It should now be visible in menu and available under `/pastebin`.
    33 
    34 == Permissions ==
    35  * `PASTEBIN_CREATE`
    36  * `PASTEBIN_DELETE`
    37  * `PASTEBIN_VIEW`
    38  * `PASTEBIN_ADMIN`
     42 1. Add the permissions `PASTEBIN_VIEW`, `PASTEBIN_CREATE`, `PASTEBIN_DELETE` and `PASTEBIN_ADMIN` that you'd like your users to have.
     43 1. It should now be visible on the main navigation bar and available under `/pastebin`.
    3944
    4045== Recent Changes ==