Changes between Version 16 and Version 17 of TracUnreadPlugin


Ignore:
Timestamp:
Aug 11, 2016, 5:57:20 PM (8 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracUnreadPlugin

    v16 v17  
    77This plugin tracks ticket page views and provides "last unread" link '''on ticket pages''', ie those pages that end with `/ticket/XYZ`. This is similar to a feature you have probably seen on most forums:
    88
    9 [[Image(last_metanav.png, border=1)]]
     9[[Image(last_metanav.png, border=2)]]
    1010
    1111The only difference is that this plugin does not just use your last login time, but actually tracks time when you requested each ticket. This is also the reason that a Trac environment upgrade is required.
     
    1313Of course, it does not work for anonymous users:
    1414
    15 [[Image(no_unread_metanav.png, border=1)]]
     15[[Image(no_unread_metanav.png, border=2)]]
    1616
    1717Tested on Trac 0.10 and current trunk of Trac 0.11.
     
    1919This plugin can be used in reports and a [source:tracunreadplugin/0.11/trac7_with_unread.sql sample SQL report for PostgreSQL] is included in its distribution:
    2020
    21 [[Image(trac_unread_report.png, border=1)]]
     21[[Image(trac_unread_report.png, border=2)]]
    2222
    2323Known limitations:
    2424 1. This plugin works with PostgreSQL: SQLite lacks string functions required to extract comment number from "parent.reply" pair in the database. Nor has it been tested with MySQL.
    25  2. Also, you must dump all `_description`, `description_` and `_description_` fields from your report (they are hidden in default reports). The reason is that these fields provide the link to "unread comment". The only way to include another link to report row is generating wiki markup in `description` field. This could be improved however, and patches welcome.
     25 1. Also, you must dump all `_description`, `description_` and `_description_` fields from your report (they are hidden in default reports). The reason is that these fields provide the link to "unread comment". The only way to include another link to report row is generating wiki markup in `description` field. This could be improved however, and patches welcome.
    2626
    2727== Bugs/Feature Requests