Хранилища Subversion ant

Редакция

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

Редакция 304 Редакция 459
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
# Define options for MySQL connection
15
# Define options for MySQL connection
16
define('DBNAME', "generator"); // Database name
16
define('DBNAME', "generator"); // Database name
17
define('DBUSER', "sqluser"); // Database user
17
define('DBUSER', "sqluser"); // Database user
18
define('DBPASS', "sqlpass"); // Password
18
define('DBPASS', "sqlpass"); // Password
19
define('DBHOST', "localhost"); // Database host
19
define('DBHOST', "localhost"); // Database host
20
define('PREFIX', "g_"); // Database tables prefix
20
define('PREFIX', "g_"); // Database tables prefix
21
21
22
?>
22
?>
23
 
23