Rename supybot-newplugin to supybot-plugin-create.

This commit is contained in:
James Vega 2005-04-04 03:11:46 +00:00
parent aea980ce41
commit 482a49022c
3 changed files with 12 additions and 9 deletions

View File

@ -1,15 +1,15 @@
.\" Process this file with .\" Process this file with
.\" groff -man -Tascii supybot-newplugin.1 .\" groff -man -Tascii supybot-plugin-create.1
.\" .\"
.TH SUPYBOT\-NEWPLUGIN 1 "SEPTEMBER 2004" .TH SUPYBOT\-PLUGIN\-CREATE 1 "APRIL 2005"
.SH NAME .SH NAME
supybot\-newplugin \- A wizard for creating Supybot plugins supybot\-plugin\-create \- A wizard for creating Supybot plugins
.SH SYNOPSIS .SH SYNOPSIS
.B supybot\-newplugin .B supybot\-plugin\-create
.RI [ options ] .RI [ options ]
.SH DESCRIPTION .SH DESCRIPTION
.B .B
supybot\-newplugin supybot\-plugin\-create
is a wizard that creates a template python source file for a new is a wizard that creates a template python source file for a new
.IR supybot (1) .IR supybot (1)
plugin. plugin.
@ -21,19 +21,22 @@ Show version of program.
.BR \-h ", " \-\^\-help .BR \-h ", " \-\^\-help
Show summary of options. Show summary of options.
.TP .TP
.BR \-r ", " \-\^\-regexp
Uses a regexp\-based callback.
.TP
.BI \-n " NAME" "\fR,\fP \-\^\-name=" NAME .BI \-n " NAME" "\fR,\fP \-\^\-name=" NAME
Sets the name for the plugin. Sets the name for the plugin.
.TP .TP
.BR \-t ", " \-\^\-thread .BR \-t ", " \-\^\-thread
Makes the plugin threaded. Makes the plugin threaded.
.TP
.BI \-\^\-real-name=" REALNAME
Specify what real name the copyright is assigned to.
.SH "SEE ALSO" .SH "SEE ALSO"
.IR python (1), .IR python (1),
.IR supybot (1), .IR supybot (1),
.IR supybot\-test (1),
.IR supybot\-botchk (1),
.IR supybot\-wizard (1), .IR supybot\-wizard (1),
.IR supybot\-adduser (1), .IR supybot\-adduser (1),
.IR supybot\-plugin\-doc (1)
.SH AUTHOR .SH AUTHOR
This manual page was originally written by James Vega This manual page was originally written by James Vega
<vega dot james at gmail dot com>. Permission is granted to copy, <vega dot james at gmail dot com>. Permission is granted to copy,

View File

@ -191,8 +191,8 @@ setup(
'scripts/supybot-botchk', 'scripts/supybot-botchk',
'scripts/supybot-wizard', 'scripts/supybot-wizard',
'scripts/supybot-adduser', 'scripts/supybot-adduser',
'scripts/supybot-newplugin',
'scripts/supybot-plugin-doc', 'scripts/supybot-plugin-doc',
'scripts/supybot-plugin-create',
'scripts/supybot-plugin-package', 'scripts/supybot-plugin-package',
] ]
) )