Changes between Version 13 and Version 14 of ContextChromePlugin


Ignore:
Timestamp:
Dec 29, 2012, 11:50:30 AM (11 years ago)
Author:
matobaa
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ContextChromePlugin

    v13 v14  
    55== Description ==
    66
     7 1. Wiki Link Decoration by age of wiki page ... add "new" css-class to link to wiki page that is young. You can soecify ages at `trac.ini`.
     8 1. Decayed Wiki ... Indicate how old the wiki page is. You can specify colors by age in seconds at `trac.ini`.
     9 1. Ticket Link Decoration by field value ... Set css-class to link to tickets by field value. You can specify field names at `trac.ini`.
    710 1. Ticket color by Type ... Set css-class to type on ticket. You can design for each type of ticket with trac:wiki:CookBook/SiteStyleCss feature.
    8  2. Decayed Wiki ... Indicate how old the wiki page is. You can specify colors by age in seconds at `trac.ini`.
    9  3. Ticket Link Decoration by field value ... Set css-class to link to tickets by field value. You can specify field names at `trac.ini`.
    10  4. Wiki Link Decoration by age of wiki page ... add "new" css-class to link to wiki page that is young. You can soecify ages at `trac.ini`.
    1111
    12 If you want to edit the css on browser, use WikiCssPlugin or ThemeEnginePlugin.
     12If you want to edit the css on browser, use WikiCssPlugin or ThemeEnginePlugin.\\
     13If you want to modify decoration link to new page. edit site.html and site.css.
    1314
    1415== Bugs/Feature Requests ==
     
    4142}}}
    4243
    43 ==== Decayed Wiki ====
     44=== wiki age to dacorate or not ===
     45example trac.ini:
     46{{{
     47#!ini
     48[wiki]
     49wiki_new_info_second = 432000
     50}}}
     51[[Image(newpage.png)]]
     52
     53=== Decayed Wiki ===
    4454
    4555example trac.ini:
     
    5262background of wiki pages are colored by age, white for modified in a day, light grey for in a week, and so on.
    5363
    54 ==== Ticket link decoration by field value ====
     64=== Ticket link decoration by field value ===
    5565example trac.ini:
    5666{{{
     
    6979[[Image(linkdeco.png)]]
    7080
    71 ==== Tikcet color by Type ====
     81=== Tikcet color by Type ===
    7282example style.css:
    7383{{{
     
    7686body.type_is_enhancement { background-color: #87ceeb; /* sky blue */ }
    7787body.type_is_task        { background-color: #ffd700; /* gold */     }
    78 }}}
    79 
    80 ==== wiki age to dacorate or not ====
    81 example trac.ini:
    82 {{{
    83 #!ini
    84 [wiki]
    85 wiki_new_info_second = 432000
    8688}}}
    8789