|
NAMEBigtop - A web application data language processorSYNOPSISSee Bigtop::Docs::TentTut or Bigtop::Docs::Tutorial for how to create a Bigtop file. Bigtop::Docs::TOC is a guide to all of the documentation modules.The real synopsis (see Bigtop::ScriptHelp::Style::Kickstart): bigtop --new AppName 'stock<-lot stock(symbol,name) lot(bought:date,price:int4,shares:int4)' or go manual: vi your_app.bigtop (or use tentmaker see Bigtop::Docs::TentTut) bigtop --create your_app.bigtop all Then run your app (if you have sqlite in your path): cd AppName ./app.server Modify your bigtop file and try again: bigtop docs/your_app.bigtop all DESCRIPTIONBigtop is a language for describing the data of a web application. Usually this data will be stored in a relational database. Once you have a description of your data, you can generate a web application from it. This includes all the pieces you need like: the sql statements ready for feeding to your database command line tool, the httpd.conf you need to Include in the httpd.conf on your system, the modules that will handle the web requests, the models that make the database tables look like classes, etc.If you need to alter the data model in the future, you can change your original description to match the new reality, then regenerate the application without fear of losing hand written code (though you may have to modify some of it to reflect the new reality). FUNCTIONSThis module is really a place holder, but it does provide some developer routines (which are not exported):
EXPORTNone.SEE ALSOBigtop::Docs::TOCIf you are interested in Bigtop's inner workings, consider delving into some of these:
The backends come in types. Ideally, these types all share a set of keywords which are requested from Bigtop::Keywords in the type's module. So Bigtop::Backend::SQL is meant to request the KEYWORDS that all Bigtop::SQL::* modules use. They may request others, but only if they are specific to the generated target. For example, there might be some Postgres specific keyword which doesn't apply to other databases. It should be requested in "Bigtop::Backend::SQL::Postgres". Even if you need backend specific keywords, you should put them in "Bigtop::Keywords" so tentmaker can display them. JOIN USBigtop is discussed on the Gantry mailing list. Please visit http://www.usegantry.org, and click on the Mailing List tab under the banner, for instructions.Bigtop source is available for svn checkout. For instructions, visit: http://usegantry.org AUTHORPhil Crow, <crow.phil@gmail.com>COPYRIGHT AND LICENSECopyright (C) 2005-7, Phil CrowThis 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.
Visit the GSP FreeBSD Man Page Interface. |