Хранилища Subversion ant

Редакция

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

Редакция 370 Редакция 376
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 *  
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for Debian and
5
 *  Codename: ant-ng - generator of sources.list for Debian and
6
 *  distributives, based on Debian
6
 *  distributives, based on Debian
7
 *  http://alex-w.org.ru/p/antng/
7
 *  http://alex-w.org.ru/p/antng/
8
 *
8
 *
9
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
11
 *  http://alex-w.org.ru/p/antng/license
12
 *
12
 *
13
 */
13
 */
14
14
15
require_once dirname(__FILE__)."/init.php";
15
require_once dirname(__FILE__)."/init.php";
16
16
-
 
17
$tmpl->assign('host',"http://d.alex-w.org.ru/p/ant-ng/");
-
 
18
$tmpl->assign('header',"Генератор sources.list");
17
$tmpl->assign('body',$core->showDistributionForm());
19
$tmpl->assign('body',$core->showDistributionForm());
18
20
19
$tmpl->display('default.tpl', array('body'));
21
$tmpl->display('default.tpl');
20
22
21
?>
23
?>
22
 
24