Cross Reference: index.php
xref
: /
vbox
/
src
/
VBox
/
Devices
/
PC
/
ipxe
/
contrib
/
rom-o-matic
/
index.php
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
index.php revision a734c64bff58bda2fa48c2795453e092167b0ff7
2521
N/A
<?php
// -*- Mode: PHP; -*-
2521
N/A
2521
N/A
/**
2521
N/A
* Copyright (C) 2009 Marty Connor <mdc@etherboot.org>.
2521
N/A
* Copyright (C) 2009 Entity Cyber, Inc.
2521
N/A
*
2521
N/A
* This program is free software; you can redistribute it
and
/
or
2521
N/A
* modify it under the terms of the GNU General Public License as
2521
N/A
* published by the Free Software Foundation; either version 2 of the
2521
N/A
* License, or any later version.
2521
N/A
*
2521
N/A
* This program is distributed in the hope that it will be useful, but
2521
N/A
* WITHOUT ANY WARRANTY; without even the implied warranty of
2521
N/A
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2521
N/A
* General Public License for more details.
2521
N/A
*
2521
N/A
* You should have received a copy of the GNU General Public License
2521
N/A
* along with this program; if not, write to the Free Software
2521
N/A
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2521
N/A
*/
2521
N/A
2521
N/A
// Get utility functions and set globals
3699
N/A
require_once
"
utils.php
"
;
2521
N/A
3998
N/A
// Begin html output
2521
N/A
include_once
$
top_inc
;
3998
N/A
3998
N/A
?>
3998
N/A
<
form
action
=
"build.php"
method
=
POST>
2521
N/A
<
input
type
=
"hidden"
name
=
"version"
value
=
"
<?php
echo
$
version
?>
"
>
2521
N/A
<
h3
>To create an image:</
h3
>
3998
N/A
<
ol
>
3998
N/A
<?php
require
(
"
directions.php
"
);
?>
3998
N/A
<
li
>
2521
N/A
Generate and download an image:
2521
N/A
<
input
type
=
"submit"
name
=
"A"
value
=
"Get Image"
>
2521
N/A
<
br
><
br
>
3998
N/A
</
li
>
2521
N/A
<
li
>
3533
N/A
(optional) Customize image configuration options:
2521
N/A
<
input
type
=
"submit"
name
=
"A"
value
=
"Customize"
>
3998
N/A
<
br
><
br
>
3998
N/A
</
li
>
3998
N/A
</
ol
>
3998
N/A
</
form
>
3998
N/A
3998
N/A
<?php
include_once
$
bottom_inc
?>
3998
N/A