Хранилища Subversion ant

Редакция

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

Редакция 475 Редакция 554
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 apt-distributives
6
 *  distributives, based on Debian
-
 
7
 *  http://alex-w.org.ru/p/antng/
6
 *  http://alex-w.org.ru/p/antng/
8
 *
7
 *
9
 *  Copyright (c) 2009 Alexander Wolf
8
 *  Copyright (c) 2009 Alexander Wolf
10
 *  Dual licensed under the MIT and GNU LGPL licenses.
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
11
 *  http://alex-w.org.ru/p/antng/license
10
 *  http://alex-w.org.ru/p/antng/license
12
 *
11
 *
13
 */
12
 */
14
13
15
require_once dirname(__FILE__)."/init.php";
14
require_once dirname(__FILE__)."/init.php";
16
15
17
$reqID  = $_GET["uuid"];
16
$reqID  = $_GET["uuid"];
18
$distID = $secure->checkInt($_POST["d"]);
17
$distID = $secure->checkInt($_POST["d"]);
19
$versID = $secure->checkInt($_POST["v"]);
18
$versID = $secure->checkInt($_POST["v"]);
20
19
21
// TODO Написать генерялку sources.list
20
// TODO Написать генерялку sources.list
22
echo "Oops... Under construction ;)";
21
echo "Oops... Under construction ;)";
23
22
24
?>
23
?>
25
 
24