a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync<?php // -*- Mode: PHP; -*-
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Copyright (C) 2009 Marty Connor <mdc@etherboot.org>.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Copyright (C) 2009 Entity Cyber, Inc.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * This program is free software; you can redistribute it and/or
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * modify it under the terms of the GNU General Public License as
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * published by the Free Software Foundation; either version 2 of the
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * License, or any later version.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * This program is distributed in the hope that it will be useful, but
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * WITHOUT ANY WARRANTY; without even the implied warranty of
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * General Public License for more details.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * You should have received a copy of the GNU General Public License
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * along with this program; if not, write to the Free Software
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// Get utility functions and set globals
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncrequire_once "utils.php";
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// Prepare settable compile options for presentation to user
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync$build = "<input type=\"submit\" name=\"A\" value=\"Get Image\">";
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync$restart = "<input type=\"submit\" name=\"A\" value=\"Start Over\">";
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// Begin html output
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsyncinclude_once $top_inc;
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <input type="hidden" name="version" value = "<?php echo $version ?>">
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync Make changes below and press <?php echo $build ?> to create an image, <br>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync Or press <?php echo $restart ?> to return to the main page.
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <?php require ( "directions.php" ); ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync <?php echo textarea ( "embedded_script", "", "10", "50" ); ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync<?php include_once $bottom_inc; ?>
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// For emacs:
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// Local variables:
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// c-basic-offset: 4
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// c-indent-level: 4
a734c64bff58bda2fa48c2795453e092167b0ff7vboxsync// tab-width: 4