Хранилища Subversion ant

Редакция

Авторство | Последнее изменение | Открыть журнал | RSS

<?php

/**
 * Project:     Ant: sources.list generator
 * File:        modern.php
 *
 * This application is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This application is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */



include "lib/init.php";

$query =& $db->query("SELECT * FROM settings WHERE opt LIKE 'version'");
$query->fetchInto($antv, DB_FETCHMODE_ASSOC);
$antversion = $antv["optvalue"];


$scripts  = '
        $(document).ready(function() {
                var options = {
                        target:        "#modern",    
                        success:       showResponse
                };
                $("#distro").ajaxForm(options);
        });

        function showResponse(responseText, statusText)  {
                //$("#modern").replaceAll(responseText);
        }
'
;

$linux = "<p><input type='hidden' name='step' value='1' /></p>";
$query =& $db->query("SELECT * FROM distribution");
while ($query->fetchInto($data, DB_FETCHMODE_ASSOC)) {
        $linux .= "<p><input type='radio' name='d' value='".$data["dist_id"]."' />".stripslashes($data["distname"])."</p>\n";
}

$modern  = "<div id='ant'><div id='modern'>";

$modern .= "<h2>Выбор дистрибутива</h2>";
$modern .= "<form action='./m-process.php' method='post' id='distro'>";
$modern .= $linux;
$modern .= "<p><input type='submit' value=' Выбрать дистрибутив '></p>";
$modern .= "</form>";

$modern .= "</div></div>";

$smarty->assign('modern',$modern);
$smarty->assign('scripts',$scripts);
$smarty->assign('antversion',$antversion);

$smarty->display('modern.tpl');

?>