Changes between Version 3 and Version 4 of TracTimeDeltaUpdatorPlugin


Ignore:
Timestamp:
Nov 9, 2015, 1:36:54 PM (8 years ago)
Author:
figaro
Comment:

Rearranged paragraphs to maintain consistency

Legend:

Unmodified
Added
Removed
Modified
  • TracTimeDeltaUpdatorPlugin

    v3 v4  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Automatically updating for relative date/time displays on Trac
     3= Automatic update for relative date-time displays on Trac
    44
    55== Description
    66
    7 The plugin avoids relative date/time displays, "42 seconds ago", even though the page was opened 42 years ago with automatically refresh.
     7The plugin avoids relative date-time displays, "42 seconds ago", even though the page was opened 42 years ago with automatic refresh.
    88
    99== Bugs/Feature Requests
     
    1313
    1414If you have any issues, create a
    15 [http://trac-hacks.org/newticket?component=TracTimeDeltaUpdatorPlugin&owner=jun66j5 new ticket].
     15[/newticket?component=TracTimeDeltaUpdatorPlugin new ticket].
    1616
    1717[[TicketQuery(component=TracTimeDeltaUpdatorPlugin&group=type,format=progress)]]
     
    1919== Download
    2020
    21 Download the zipped source from [download:tractimedeltaupdatorplugin here].
     21Download the zipped source from [export:tractimedeltaupdatorplugin here].
    2222
    2323== Source
    2424
    25 You can check out TracTimeDeltaUpdatorPlugin from [http://trac-hacks.org/svn/tractimedeltaupdatorplugin here] using Subversion, or [source:tractimedeltaupdatorplugin browse the source] with Trac.
     25You can check out TracTimeDeltaUpdatorPlugin from [/svn/tractimedeltaupdatorplugin here] using Subversion, or [source:tractimedeltaupdatorplugin browse the source] with Trac.
     26
     27== Installation
     28
     29 1. Install the plugin:
     30{{{#!sh
     31easy_install http://trac-hacks.org/svn/tractimedeltaupdatorplugin/0.12
     32}}}
     33 1. Enable the plugin in `trac.ini`:
     34{{{#!ini
     35[components]
     36tractimedeltaupdator.* = enabled
     37}}}
     38 1. If your Trac is 1.0 or later, prepend `TimeDeltaUpdatorModule` to `request_filters` in the `[trac]` section:
     39{{{#!ini
     40[trac]
     41request_filters = TimeDeltaUpdatorModule
     42}}}
    2643
    2744== Example
     
    2946 1. Modify `SandBox` page on your Trac
    3047 1. Visit `SandBox` page and look at "Last modified: ..." in the page for the moment!
    31 
    32 == Installation
    33 
    34  1. Install the plugin:
    35 {{{
    36 #!sh
    37 easy_install http://trac-hacks.org/svn/tractimedeltaupdatorplugin/0.12
    38 }}}
    39  1. Enable the plugin in `trac.ini`:
    40 {{{
    41 #!ini
    42 [components]
    43 tractimedeltaupdator.* = enabled
    44 }}}
    45  1. If your Trac is 1.0 or later, prepend `TimeDeltaUpdatorModule` to `request_filters` in the `[trac]` section:
    46 {{{
    47 #!ini
    48 [trac]
    49 request_filters = TimeDeltaUpdatorModule
    50 }}}
    5148
    5249== Recent Changes