Хранилища Subversion ant

Редакция

Редакция 65 | Весь файл | Не учитывать пробелы | Содержимое файла | Авторство | Последнее изменение | Открыть журнал | RSS

Редакция 65 Редакция 70
Строка 1... Строка 1...
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 * Project:     Ant: sources.list generator
4
 * Project:     Ant: sources.list generator
5
 * File:        modern.php
5
 * File:        index.php
6
 *
6
 *
7
 * This application is free software; you can redistribute it and/or
7
 * This application is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
10
 * version 2.1 of the License, or (at your option) any later version.
Строка 19... Строка 19...
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 *
20
 *
21
 */
21
 */
22
22
23
23
24
include "lib/init.php";
24
require_once "lib/init.php";
25
25
26
$query =& $db->query("SELECT * FROM settings WHERE opt LIKE 'version'");
26
$req =& $db->query("SELECT * FROM settings WHERE opt LIKE 'interface'");
27
$query->fetchInto($antv, DB_FETCHMODE_ASSOC);
-
 
28
$antversion = $antv["optvalue"];
-
 
29
-
 
30
$info = array();
-
 
31
-
 
32
$info = $core->getInfo($_SERVER["HTTP_USER_AGENT"],$db);
-
 
33
-
 
34
$telepathy = "<h2>Генератор sources.list</h2><p>".$info[1];
-
 
35
-
 
36
if ($info[0]!="unknown") {
27
if ($req->numRows()>0) {
37
        $cnt = count($info);
28
        $req->fetchInto($if, DB_FETCHMODE_ASSOC);
38
        switch ($cnt) {
-
 
39
                case '2':
-
 
40
                        $telepathy .= "GNU/Linux, но явно не та, которую мы поддерживаем или дистрибутив и его версия тчательно замаскированы. Если это маскировка, то можно попробовать сгенерировать sources.list &#8220;<a href='./modern.php'>вручную</a>&#8221;.</p>";
29
        $file = stripslashes($if["optvalue"]).".php";
41
                break;
-
 
42
                case '4':
-
 
43
                        $telepathy .= "<em>".$info[3]."</em>, а что за версия не могу разобрать. Попробуем создать sources.list &#8220;<a href='./modern.php'>вручную</a>&#8221;?</p>";
-
 
44
                break;
-
 
45
                case '6':
30
        include ($file);
46
                        $telepathy .= "<em>".$info[3]." ".$info[5]."</em>. Если это не так, то выберите дистрибутив и версию <a href='./modern.php'>вручную</a>.</p>";
-
 
47
                        $telepathy .= "<p>Для этой версии у нас есть следующие репозитории (список нужно скопировать в файл <span id='sourceslist'>/etc/apt/sources.list</span>):</p>";
-
 
48
                        $telepathy .= "<pre># Ant: sources.list generator :: http://track.altlug.ru/projects/show/ant\n\n".$core->getRepList($info[2],$info[4],$db)."</pre>";
-
 
49
                        $telepathy .= "<p><a href='./get.php?id=".$info[2].",".$info[4]."'>Получить sources.list файлом</a></p>";
-
 
50
                break;
-
 
51
        }
-
 
52
} else {
-
 
53
        $telepathy .= "</p>";
-
 
54
};
31
}
55
-
 
56
$smarty->assign('modern',$telepathy);
-
 
57
$smarty->assign('antversion',$antversion);
-
 
58
$smarty->assign('interface'," &bull; <a href='./classic.php'>Классический интерфейс</a> &bull; <a href='./modern.php'>Современный интерфейс</a>");
-
 
59
32
60
$smarty->display('modern.tpl');
-
 
61
33
62
?>
34
?>