Хранилища Subversion ant

Редакция

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

Редакция 554 Редакция 701
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 *  
4
 *  
5
 *  Codename: ant-ng - generator of sources.list for apt-distributives
5
 *  Codename: ant-ng - generator of sources.list for apt-distributives
6
 *  http://alex-w.org.ru/p/antng/
6
 *  http://alex-w.org.ru/p/antng/
7
 *
7
 *
8
 *  Copyright (c) 2009 Alexander Wolf
8
 *  Copyright (c) 2009 Alexander Wolf
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
9
 *  Dual licensed under the MIT and GNU LGPL licenses.
10
 *  http://alex-w.org.ru/p/antng/license
10
 *  http://alex-w.org.ru/p/antng/license
11
 *
11
 *
12
 */
12
 */
13
13
14
# Define options for MySQL connection
14
# Define options for MySQL connection
15
define('DBNAME', "generator"); // Database name
15
define('DBNAME', "generator"); // Database name
16
define('DBUSER', "sqluser"); // Database user
16
define('DBUSER', "sqluser"); // Database user
17
define('DBPASS', "sqlpass"); // Password
17
define('DBPASS', "sqlpass"); // Password
18
define('DBHOST', "localhost"); // Database host
18
define('DBHOST', "localhost"); // Database host
19
define('PREFIX', "g_"); // Database tables prefix
19
define('PREFIX', "g_"); // Database tables prefix
20
20
21
?>
21
?>
22
 
22