Хранилища 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
# Define options for MySQL connection
14
# Define options for MySQL connection
16
define('DBNAME', "generator"); // Database name
15
define('DBNAME', "generator"); // Database name
17
define('DBUSER', "sqluser"); // Database user
16
define('DBUSER', "sqluser"); // Database user
18
define('DBPASS', "sqlpass"); // Password
17
define('DBPASS', "sqlpass"); // Password
19
define('DBHOST', "localhost"); // Database host
18
define('DBHOST', "localhost"); // Database host
20
define('PREFIX', "g_"); // Database tables prefix
19
define('PREFIX', "g_"); // Database tables prefix
21
20
22
?>
21
?>
23
 
22