Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 415 → Редакция 416

/branches/ant-ng/get.php
Новый файл
0,0 → 1,25
<?php
 
/**
*
* Codename: ant-ng - generator of sources.list for Debian and
* distributives, based on Debian
* http://alex-w.org.ru/p/antng/
*
* Copyright (c) 2009 Alexander Wolf
* Dual licensed under the MIT and GNU LGPL licenses.
* http://alex-w.org.ru/p/antng/license
*
*/
 
require_once dirname(__FILE__)."/init.php";
 
$distID = $secure->checkInt($_GET["d"]);
$versID = $secure->checkInt($_GET["v"]);
 
// TODO Написать генерялку sources.list
$tmpl->assign('body', $body);
 
$tmpl->display('default.tpl');
 
?>