Changes between Version 21 and Version 22 of DevGuide


Ignore:
Timestamp:
Apr 11, 2016, 12:04:24 AM (8 years ago)
Author:
Ryan J Ollos
Comment:

Fix typo.

Legend:

Unmodified
Added
Removed
Modified
  • DevGuide

    v21 v22  
    4747{{{#!python
    4848revision = "$Rev$"
    49 homepage = "https://trac-hacks.org/wiki/MyAmazingPlugin"
     49home_page = "https://trac-hacks.org/wiki/MyAmazingPlugin"
    5050license = "3-Clause BSD"
    5151author = "Joe Bloggs"
     
    5353}}}
    5454
    55 The attributes should be self-explanatory with the possible exception of the `trac` attribute. The `trac` attribute is used to direct bug reports to an issue tracker that differs from `homepage`. If the plugin is hosted on trac-hacks.org and the `homepage` attribute is set to point to the project wiki page, the `trac` attribute will not need to be set.
     55The attributes should be self-explanatory with the possible exception of the `trac` attribute. The `trac` attribute is used to direct bug reports to an issue tracker that differs from `home_page`. If the plugin is hosted on trac-hacks.org and the `home_page` attribute is set to point to the project wiki page, the `trac` attribute will not need to be set.
    5656
    57 For files stored in Subversion, [http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html Keyword Substitution] is supported for the `homepage` (`url`) and `version` (`revision`) attributes.
     57For files stored in Subversion, [http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html Keyword Substitution] is supported for the `home_page` (`url`) and `version` (`revision`) attributes.
    5858
    5959{{{#!python
    60 homepage = '$URL$'
     60home_page = '$URL$'
    6161version = '$Rev$'
    6262}}}