Хранилища Subversion ant

Редакция

Редакция 143 | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
62 alex-w 1
<?php
2
 
3
/**
4
 * Project:     Ant: sources.list generator
5
 * File:        modern.php
6
 *
7
 * This application is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * This application is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 *
21
 */
22
 
23
 
101 alex-w 24
require_once dirname(__FILE__)."/lib/init.php";
62 alex-w 25
 
26
$info = array();
27
 
28
$info = $core->getInfo($_SERVER["HTTP_USER_AGENT"],$db);
29
 
63 alex-w 30
$telepathy = "<h2>Генератор sources.list</h2><p>".$info[1];
62 alex-w 31
 
32
if ($info[0]!="unknown") {
33
        $cnt = count($info);
34
        switch ($cnt) {
35
                case '2':
65 alex-w 36
                        $telepathy .= "GNU/Linux, но явно не та, которую мы поддерживаем или дистрибутив и его версия тчательно замаскированы. Если это маскировка, то можно попробовать сгенерировать sources.list &#8220;<a href='./modern.php'>вручную</a>&#8221;.</p>";
62 alex-w 37
                break;
38
                case '4':
65 alex-w 39
                        $telepathy .= "<em>".$info[3]."</em>, а что за версия не могу разобрать. Попробуем создать sources.list &#8220;<a href='./modern.php'>вручную</a>&#8221;?</p>";
62 alex-w 40
                break;
41
                case '6':
65 alex-w 42
                        $telepathy .= "<em>".$info[3]." ".$info[5]."</em>. Если это не так, то выберите дистрибутив и версию <a href='./modern.php'>вручную</a>.</p>";
63 alex-w 43
                        $telepathy .= "<p>Для этой версии у нас есть следующие репозитории (список нужно скопировать в файл <span id='sourceslist'>/etc/apt/sources.list</span>):</p>";
64 alex-w 44
                        $telepathy .= "<pre># Ant: sources.list generator :: http://track.altlug.ru/projects/show/ant\n\n".$core->getRepList($info[2],$info[4],$db)."</pre>";
63 alex-w 45
                        $telepathy .= "<p><a href='./get.php?id=".$info[2].",".$info[4]."'>Получить sources.list файлом</a></p>";
62 alex-w 46
                break;
47
        }
63 alex-w 48
} else {
49
        $telepathy .= "</p>";
62 alex-w 50
};
51
 
131 alex-w 52
$smarty->assign('feedaddr',$_SERVER["HTTP_HOST"].dirname($_SERVER["PHP_SELF"]));
62 alex-w 53
$smarty->assign('modern',$telepathy);
132 alex-w 54
$smarty->assign('antversion',$core->getSetting('version',$db));
55
$smarty->assign('title',$core->getSetting('codename',$db));
143 alex-w 56
$smarty->assign('interface'," &bull; <a href='./changelog.php'>Изменения</a> &bull; ".$core->getInterfacesList($_SERVER["REQUEST_URI"],$db));
62 alex-w 57
 
58
$smarty->display('modern.tpl');
59
 
60
?>