NAME

tentmaker - browser based bigtop file editor

USAGE

tentmaker [ --port=8192 ] [ file ]

Or, to name a new app with optional table layout:

tentmaker --new AppName style_info

Or, to augment an existing bigtop file:

tentmaker --add file.bigtop style_info

See SYTLES below for what style_info can be.

DESCRIPTION

This script is a simple web server. Tell it what file you want to edit (or start from scratch) and an optional port (defaults to 8080). Point your browser to that port and edit away.

OPTIONS

--port (or -p)

Specifies a port for the server. Defaults to 8080.

--new (or -n)

Allows you to specify the name of the app and optionally its table relationships. Requires a name for the app. The rest of the command line arguments are depend on what style you use, see STYLES.

--add (or -a)

Allows you to augment an existing bigtop file prior to editing it. Requires a bigtop file name. The rest of the command line arguments as the same as for -n, see STYLES.

--style (or -s)

Defaults to Original. Specifies which Bigtop::ScriptHelp::Style:: module will handle extra command line arguements and standard input. See your Style module's docs for details.

STYLES

Any command line arguments not consumed by the options above are passed to your style backend. If you don't use -s, the Original style is used. If you do use -s, whatever style you choose is used. All styles live in the Bigtop::ScriptHelp::Style:: namespace. See their individual docs for what they know how to do.

This section used to be called "ASCII ART," the code which supported that got factored out and became the default style Bigtop::ScriptHelp::Style::Original. See it for details on ASCII art.

AUTHOR

Phil Crow <crow.phil@gmail.com>

COPYRIGHT and LICENSE

Copyright (C) 2006 by Phil Crow

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available.