]> git.sur5r.net Git - bacula/bacula/commitdiff
bacula-web: Moved and renamed config.inc.php file into config folder
authorDavide Franco <bacula-dev@dflc.ch>
Tue, 12 Jul 2011 10:17:02 +0000 (12:17 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:49:23 +0000 (14:49 +0200)
gui/bacula-web/config.inc.php [deleted file]
gui/bacula-web/config/global.inc.php [new file with mode: 0644]

diff --git a/gui/bacula-web/config.inc.php b/gui/bacula-web/config.inc.php
deleted file mode 100644 (file)
index 43973a7..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-/* 
-+-------------------------------------------------------------------------+
-| Copyright 2010-2011, Davide Franco                                             |
-|                                                                         |
-| This program is free software; you can redistribute it and/or           |
-| modify it under the terms of the GNU General Public License             |
-| as published by the Free Software Foundation; either version 2          |
-| of the License, or (at your option) any later version.                  |
-|                                                                         |
-| This program is distributed in the hope that it will be useful,         |
-| but WITHOUT ANY WARRANTY; without even the implied warranty of          |
-| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
-| GNU General Public License for more details.                            |
-+-------------------------------------------------------------------------+ 
-*/
- define( 'BW_ROOT', getcwd() );        
- define( 'BW_OBJ', BW_ROOT . '/includes/' ); 
- define( 'BW_EXTERNAL', BW_OBJ . 'external' );
- define( 'BW_PHPLOT', BW_EXTERNAL . '/phplot/'  );                                     
- define( 'BW_SMARTY', BW_EXTERNAL . '/smarty/libs/' );                         
- define( 'BW_SMARTY_GETTEXT', BW_EXTERNAL . '/smarty_gettext-0.9/' );
- require_once( BW_SMARTY . "Smarty.class.php");                        
- require_once( BW_PHPLOT . "phplot.php");                              
- // PEAR-DB classe
- require_once "DB.php";   
- // Internal libraries
- require_once BW_OBJ . "cfg/config.class.php";
- require_once BW_OBJ . "graph/cgraph.class.php";
- require_once BW_OBJ . "bweb.inc.php";
- require_once BW_OBJ . "utils/cutils.class.php";
- require_once BW_OBJ . "utils/ctimeutils.class.php";
- // Global constants
- define('CONFIG_DIR', BW_ROOT . "/config/");
- define('CONFIG_FILE', CONFIG_DIR . "config.php");
- // Time intervals in secondes
- define( 'FIRST_DAY',  mktime( 0, 0, 0, 1, 1, 1970) );
- define( 'NOW',                time() );
- define( 'LAST_DAY',   NOW - 86400 );
- define( 'LAST_WEEK',  NOW - 604800 );
- define( 'LAST_MONTH',         NOW - 2678400 );
- define( 'DAY',                        86400 );
- define( 'WEEK',               604800 );
- define( 'MONTH',              2678400 );
- define( 'ALL',                -1 );
- // Job status code
- define( 'J_NOT_RUNNING',                'C' );
- define( 'J_RUNNING',                    'R' );
- define( 'J_BLOCKED',                    'B' );
- define( 'J_COMPLETED',                  'T' );
- define( 'J_COMPLETED_ERROR',    'E' );
- define( 'J_NO_FATAL_ERROR',     'e' );
- define( 'J_FATAL',                      'f' );
- define( 'J_CANCELED',                           'A' );
- define( 'J_WAITING_CLIENT',     'F' );
- define( 'J_WAITING_SD',                 'S' );
- define( 'J_WAITING_NEW_MEDIA',          'm' );
- define( 'J_WAITING_MOUNT_MEDIA', 'M' );
- define( 'J_WAITING_STORAGE_RES', 's' );
- define( 'J_WAITING_JOB_RES',     'j' );
- define( 'J_WAITING_CLIENT_RES',  'c' );
- define( 'J_WAITING_MAX_JOBS',    'd' );
- define( 'J_WAITING_START_TIME',  't' );
- define( 'J_WAITING_HIGH_PR_JOB', 'p' );
- // Job levels
- define( 'J_FULL',     'F' );
- define( 'J_DIFF',     'D' );
- define( 'J_INCR',     'I' );
-?>
diff --git a/gui/bacula-web/config/global.inc.php b/gui/bacula-web/config/global.inc.php
new file mode 100644 (file)
index 0000000..43973a7
--- /dev/null
@@ -0,0 +1,77 @@
+<?php
+/* 
++-------------------------------------------------------------------------+
+| Copyright 2010-2011, Davide Franco                                             |
+|                                                                         |
+| This program is free software; you can redistribute it and/or           |
+| modify it under the terms of the GNU General Public License             |
+| as published by the Free Software Foundation; either version 2          |
+| of the License, or (at your option) any later version.                  |
+|                                                                         |
+| This program is distributed in the hope that it will be useful,         |
+| but WITHOUT ANY WARRANTY; without even the implied warranty of          |
+| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
+| GNU General Public License for more details.                            |
++-------------------------------------------------------------------------+ 
+*/
+ define( 'BW_ROOT', getcwd() );        
+ define( 'BW_OBJ', BW_ROOT . '/includes/' ); 
+ define( 'BW_EXTERNAL', BW_OBJ . 'external' );
+ define( 'BW_PHPLOT', BW_EXTERNAL . '/phplot/'  );                                     
+ define( 'BW_SMARTY', BW_EXTERNAL . '/smarty/libs/' );                         
+ define( 'BW_SMARTY_GETTEXT', BW_EXTERNAL . '/smarty_gettext-0.9/' );
+ require_once( BW_SMARTY . "Smarty.class.php");                        
+ require_once( BW_PHPLOT . "phplot.php");                              
+ // PEAR-DB classe
+ require_once "DB.php";   
+ // Internal libraries
+ require_once BW_OBJ . "cfg/config.class.php";
+ require_once BW_OBJ . "graph/cgraph.class.php";
+ require_once BW_OBJ . "bweb.inc.php";
+ require_once BW_OBJ . "utils/cutils.class.php";
+ require_once BW_OBJ . "utils/ctimeutils.class.php";
+ // Global constants
+ define('CONFIG_DIR', BW_ROOT . "/config/");
+ define('CONFIG_FILE', CONFIG_DIR . "config.php");
+ // Time intervals in secondes
+ define( 'FIRST_DAY',  mktime( 0, 0, 0, 1, 1, 1970) );
+ define( 'NOW',                time() );
+ define( 'LAST_DAY',   NOW - 86400 );
+ define( 'LAST_WEEK',  NOW - 604800 );
+ define( 'LAST_MONTH',         NOW - 2678400 );
+ define( 'DAY',                        86400 );
+ define( 'WEEK',               604800 );
+ define( 'MONTH',              2678400 );
+ define( 'ALL',                -1 );
+ // Job status code
+ define( 'J_NOT_RUNNING',                'C' );
+ define( 'J_RUNNING',                    'R' );
+ define( 'J_BLOCKED',                    'B' );
+ define( 'J_COMPLETED',                  'T' );
+ define( 'J_COMPLETED_ERROR',    'E' );
+ define( 'J_NO_FATAL_ERROR',     'e' );
+ define( 'J_FATAL',                      'f' );
+ define( 'J_CANCELED',                           'A' );
+ define( 'J_WAITING_CLIENT',     'F' );
+ define( 'J_WAITING_SD',                 'S' );
+ define( 'J_WAITING_NEW_MEDIA',          'm' );
+ define( 'J_WAITING_MOUNT_MEDIA', 'M' );
+ define( 'J_WAITING_STORAGE_RES', 's' );
+ define( 'J_WAITING_JOB_RES',     'j' );
+ define( 'J_WAITING_CLIENT_RES',  'c' );
+ define( 'J_WAITING_MAX_JOBS',    'd' );
+ define( 'J_WAITING_START_TIME',  't' );
+ define( 'J_WAITING_HIGH_PR_JOB', 'p' );
+ // Job levels
+ define( 'J_FULL',     'F' );
+ define( 'J_DIFF',     'D' );
+ define( 'J_INCR',     'I' );
+?>