Changes between Version 14 and Version 15 of UnderscoreWikiPlugin


Ignore:
Timestamp:
Dec 21, 2016, 2:27:14 PM (7 years ago)
Author:
figaro
Comment:

Further cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • UnderscoreWikiPlugin

    v14 v15  
    55== Description
    66
    7 This is a one-file plugin that transforms the !MediaWiki styled `Underscore_Wiki_Page` to a link automatically, as it does with `CamelCaseWikiPage`. The wiki page name must have at least two words and each word must start with an upper case letter, like `Foo_Bar_Baz`.
     7This is a one-file plugin that transforms the !MediaWiki styled `Underscore_Wiki_Page` to a link automatically, as it does with `CamelCaseWikiPage` see [t:CamelCase]. This pliugin requires that the wiki page name must have at least two words and each word must start with an upper case letter, like `Foo_Bar_Baz`.
    88
    99It was originally created to make class names, like `Controller_Frontend_Foobar` link to the corresponding wiki page automatically. However, we do think that !CamelCaseStyle is prettier and should still be used for Trac wiki pages.
     
    1515
    1616If you have any issues, create a
    17 [/newticket?component=UnderscoreWikiPlugin new ticket] or email to nadav \\at\\ humaninternals <dot> com. I'm also at #trac, usually with the nickname shsek, shesek or execute.
     17[/newticket?component=UnderscoreWikiPlugin new ticket]
     18or email to nadav \\at\\ humaninternals <dot> com. I'm also at #trac, usually with the nickname shsek, shesek or execute.
    1819
    1920[[TicketQuery(component=UnderscoreWikiPlugin&group=type,format=progress)]]
     
    2223
    2324Download the zipped source from [export:underscorewikiplugin here].
     25
     26Alternatively, you can download it using wget:
     27{{{#!sh
     28$ wget -O /path/to/trac/env/plugins/UnderscoreWiki.py https://trac-hacks.org/svn/underscorewikiplugin/0.12/UnderscoreWiki.py
     29}}}
    2430
    2531== Source
     
    3137This plugin consists of a single file. You can simply put the [/svn/underscorewikiplugin/0.12/UnderscoreWiki.py UnderscoreWiki.py] file directly in your plugins directory.
    3238
    33 You can download it using wget:
    34 {{{#!sh
    35 $ wget -O /path/to/trac/env/plugins/UnderscoreWiki.py https://trac-hacks.org/svn/underscorewikiplugin/0.12/UnderscoreWiki.py
    36 }}}
    37 
    38 Make sure its readable by the user running Trac.
     39Make sure it is readable by the user running Trac.
    3940
    4041== Configuration