Changes between Version 13 and Version 14 of UnderscoreWikiPlugin


Ignore:
Timestamp:
Nov 18, 2015, 11:25:40 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • UnderscoreWikiPlugin

    v13 v14  
    55== Description
    66
    7 A tiny 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`. 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
    9 We originally created it to make class names (like Controller_Frontend_Foobar) link to a corresponding wiki page automatically. We do think that !CamelCaseStyle is prettier and still use it for most wiki pages.
     9It 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.
    1010
    1111== Bugs/Feature Requests
     
    2121== Download
    2222
    23 Download the zipped source from [download:underscorewikiplugin here].
     23Download the zipped source from [export:underscorewikiplugin here].
    2424
    2525== Source
    2626
    27 You can check out UnderscoreWikiPlugin from [http://trac-hacks.org/svn/underscorewikiplugin here] using Subversion, or [source:underscorewikiplugin browse the source] with Trac.
     27You can check out UnderscoreWikiPlugin from [/svn/underscorewikiplugin here] using Subversion, or [source:underscorewikiplugin browse the source] with Trac.
    2828
    2929== Installation
    3030
    31 This plugin consists of a single file. You can simply put the [http://trac-hacks.org/svn/underscorewikiplugin/0.12/UnderscoreWiki.py UnderscoreWiki.py] file directly in your plugins directory.
     31This 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.
    3232
    3333You can download it using wget:
    3434{{{#!sh
    35 $ wget -O /path/to/trac/env/plugins/UnderscoreWiki.py http://trac-hacks.org/svn/underscorewikiplugin/0.12/UnderscoreWiki.py
     35$ wget -O /path/to/trac/env/plugins/UnderscoreWiki.py https://trac-hacks.org/svn/underscorewikiplugin/0.12/UnderscoreWiki.py
    3636}}}
    3737
     
    4242This plugin has two configuration options that can be set under a `[underscore-wiki]` section in TracIni.
    4343
    44  * '''ignore_missing_pages''' - Enable/disable highlighting `Underscore_Wiki_Page` links to missing pages. Defaults to false (not ignoring them, they'll be shown in grey with a question mark).
    45  * '''uppercase_in_words''' - Enable/disable using upper case letters in places other than first character of every word. Only `Foo_Bar` is supported by default, setting this to true adds support for `Foo_BAR`, `Foo_BaR`, `FOO_Bar`, etc. Defaults to false.
     44 * '''ignore_missing_pages''' - Enable/disable highlighting `Underscore_Wiki_Page` links to missing pages. Defaults to `false`, which means not ignoring them, but they will be shown in grey with a question mark.
     45 * '''uppercase_in_words''' - Enable/disable using upper case letters in places other than the first character of every word. Only `Foo_Bar` is supported by default, setting this to `true` adds support for `Foo_BAR`, `Foo_BaR`, `FOO_Bar`, etc. Defaults to `false`.
    4646
    4747This should look like: