Difference between revisions of "Contribution convention"
(→After creation) |
(→Page content) |
||
Line 22: | Line 22: | ||
<nowiki>}}</nowiki> | <nowiki>}}</nowiki> | ||
− | + | This calls the [[Template:Contribution|contribution template]] with various options, meaning your new page will be automatically formatted and added to the appropriate categories. | |
+ | |||
+ | === Parameter editing and explanation === | ||
<nowiki>{{Contribution|</nowiki> | <nowiki>{{Contribution|</nowiki> | ||
− | This line should be left as it is | + | :This line should be left as it is - this is the name of the template being called. |
| name = MyAwesomeModule | | name = MyAwesomeModule | ||
− | Your module's name | + | :Your module's name |
| author = Your name / wiki username | | author = Your name / wiki username | ||
− | Take credit for your work! | + | :Take credit for your work! If you are registered on the wiki use your username - it will then automatically link to your userpage. Contributions will be automatically added to the category ''Category:Contributions/Authorname'' (which will also be linked to on the contribution's page). |
Line 38: | Line 40: | ||
| user = yes | | user = yes | ||
| theme = yes | | theme = yes | ||
− | These specify the type of modification. Admin-side, user-side or a new theme/template. Remove all those that don't apply to your contribution. Your page will be automatically categorised based upon these lines. | + | :These specify the type of modification. Admin-side, user-side or a new theme/template. Remove all those that don't apply to your contribution. Your page will be automatically categorised based upon these lines. |
| desc = A short summary of your project | | desc = A short summary of your project | ||
− | Let people know exactly what your modification does. | + | :Let people know exactly what your modification does. Don't go mad, you can add a features section later, this should just be a short intro. |
| version = Current version number | | version = Current version number | ||
− | 1.0 is a good starting place. | + | :1.0 is always a good starting place. |
| zip = <nowiki>http://mydomain/link/to/download.zip</nowiki> | | zip = <nowiki>http://mydomain/link/to/download.zip</nowiki> | ||
| targz = <nowiki>http://mydomain/link/to/download.tar.gz</nowiki> | | targz = <nowiki>http://mydomain/link/to/download.tar.gz</nowiki> | ||
− | + | :Specify the URL to download your modification from as either a .tar.gz or .zip file. You may use both formats, or either (See below if you don't want to use downloads). If your download is neither format or you want to link to a different page, use 'link' and 'linkname' instead: | |
| link = <nowiki>http://link/to/another/site/</nowiki> | | link = <nowiki>http://link/to/another/site/</nowiki> | ||
| linkname = Download here | | linkname = Download here | ||
Line 58: | Line 60: | ||
If your modification is just a small one and doesn't require a download don't supply download links, instead use this parameter: | If your modification is just a small one and doesn't require a download don't supply download links, instead use this parameter: | ||
| code = yes | | code = yes | ||
− | This will instead allow you to insert code changes onto the page. | + | :This will instead allow you to insert code changes onto the page. (More information below) |
== After creation == | == After creation == |
Revision as of 13:40, 13 March 2008
So, you want to release and document your WHMCS module/modification/enhancement/template on the wiki? Follow these guidelines to get up and running.
Naming your page
Your new page should be named accordingly: Contribution:ModificationName
I.E. If you're the creator of 'MyAwesomeModule', head along: Contribution:MyAwesomeModule!
Page content
Once you're there place the following on your new page:
{{Contribution| | name = MyAwesomeModule | author = Your name / wiki username | admin = yes | user = yes | theme = yes | desc = A short summary of your project | version = Current version number | zip = http://mydomain/link/to/download.zip | targz = http://mydomain/link/to/download.tar.gz }}
This calls the contribution template with various options, meaning your new page will be automatically formatted and added to the appropriate categories.
Parameter editing and explanation
{{Contribution|
- This line should be left as it is - this is the name of the template being called.
| name = MyAwesomeModule
- Your module's name
| author = Your name / wiki username
- Take credit for your work! If you are registered on the wiki use your username - it will then automatically link to your userpage. Contributions will be automatically added to the category Category:Contributions/Authorname (which will also be linked to on the contribution's page).
| admin = yes | user = yes | theme = yes
- These specify the type of modification. Admin-side, user-side or a new theme/template. Remove all those that don't apply to your contribution. Your page will be automatically categorised based upon these lines.
| desc = A short summary of your project
- Let people know exactly what your modification does. Don't go mad, you can add a features section later, this should just be a short intro.
| version = Current version number
- 1.0 is always a good starting place.
| zip = http://mydomain/link/to/download.zip | targz = http://mydomain/link/to/download.tar.gz
- Specify the URL to download your modification from as either a .tar.gz or .zip file. You may use both formats, or either (See below if you don't want to use downloads). If your download is neither format or you want to link to a different page, use 'link' and 'linkname' instead:
| link = http://link/to/another/site/ | linkname = Download here
If your modification is just a small one and doesn't require a download don't supply download links, instead use this parameter:
| code = yes
- This will instead allow you to insert code changes onto the page. (More information below)
After creation
After you click save you'll be presented with your contribution's page. As the description option above should only be a short introduction you can create a features sub-page for listing all that your contribution has to offer which will be automatically included in the appropriate place on the module page. A second sub-page can also be used to maintain a changelog. A link to both of these sub-pages are automatically included on your contribution's page, this link will disappear to be replaced with the page's content when the page exists.
A third sub-page can be created to display code changes to make instead of linking to installation files, though this will only be automatically included if the Contribution template is called with the code parameter set to 'yes'.
The sub-page names take the form of:
- Contribution:MyAwesomeModule/Features
- Contribution:MyAwesomeModule/Changelog
- Contribution:MyAwesomeModule/Code
Contribution convention
All documented contributions | Document your own contribution