Хранилища 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"];

$info = array();

$info = $core->getInfo($_SERVER["HTTP_USER_AGENT"],$db);

$telepathy = $info[1];

if ($info[0]!="unknown") {
        $cnt = count($info);
        switch ($cnt) {
                case '2':
                        $telepathy .= "GNU/Linux, но явно не та, которую мы поддерживаем или дистрибутив и его версия тчательно замаскированы.";
                break;
                case '4':
                        $telepathy .= $info[3].", а что за версия не могу разобрать.";
                break;
                case '6':
                        $telepathy .= $info[3]." ".$info[5];
                break;
        }
};

$smarty->assign('modern',$telepathy);
$smarty->assign('antversion',$antversion);
$smarty->assign('interface'," &bull; <a href='./classic.php'>Классический интерфейс</a>");

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

?>