/[cvs]/nfo/php/libs/org.netfrag.glib/includes.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.glib/includes.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by joko, Sun Feb 9 16:52:08 2003 UTC revision 1.15 by joko, Sat Apr 5 19:55:24 2003 UTC
# Line 1  Line 1 
1  <?  <?
2  // ---------------------------------------------------------------------------  /**
3  //  $Id$   * --- boot org.netfrag.glib
4  // ---------------------------------------------------------------------------   *
5  //  $Log$   * @author Andreas Motl <andreas.motl@ilo.de>
6  //  Revision 1.4  2003/02/09 16:52:08  joko   * @package org.netfrag.glib
7  //  + updated, new modules in this library   *
8  //   */
9  //  Revision 1.3  2003/02/04 08:26:18  joko  
10  //  + fixed comment  /**
11  //   * <b>Cvs-Log:</b>
12  //  Revision 1.2  2003/02/04 08:25:43  joko   *
13  //  + minor modification regarding configuration/resource variable hierarchy   * <pre>
14  //   *
15  //  Revision 1.1  2003/02/03 14:39:58  joko   *  $Id$
16  //  + initial commit   *
17  //   *  $Log$
18  // ---------------------------------------------------------------------------   *  Revision 1.15  2003/04/05 19:55:24  joko
19     *  moved some code to utils/includes.php
20     *
21  $smarty = $config['_startup'][path][lib][smarty];   *  Revision 1.14  2003/04/04 17:36:16  joko
22  $pear = $config['_startup'][path][lib][pear];   *  added new required file
23  $flib = $config['_startup'][path][lib][flib];   *
24  $glib = $config['_startup'][path][lib][glib];   *  Revision 1.13  2003/03/28 06:43:20  joko
25     *  initial commit: php_constants.php
26     *
27    // ------ override/expand php's 'include_path' setting ------   *  Revision 1.12  2003/03/11 02:23:02  joko
28    // determine OS   *  + fixed metadata for phpDocumentor
29    $os = 'linux';   *
30    if (stristr($_SERVER["SERVER_SOFTWARE"], 'win32')) {   *  Revision 1.11  2003/03/11 02:14:17  joko
31      $os = 'windows';   *  + fixed metadata for phpDocumentor
32    }   *
33     *  Revision 1.10  2003/03/10 23:24:59  joko
34    $path_delimiter = ':';   *  + fixed metadata for phpDocumentor
35    // change path-delimiter for win32   *
36    if ($os == 'windows') { $path_delimiter = ';'; }   *  Revision 1.9  2003/03/10 23:05:24  joko
37    // build new 'include_path'-string   *  + fixed metadata for phpDocumentor
38    $path_new = join($path_delimiter, array($pear, $flib, $glib, ini_get("include_path")));   *
39    ini_set("include_path", $path_new);   *  Revision 1.8  2003/03/03 22:13:45  joko
40     *  minor update regarding includes
41     *
42     *  Revision 1.7  2003/03/03 21:08:47  joko
43     *  updated
44     *
45     *  Revision 1.6  2003/02/27 16:35:03  joko
46     *  + include path mungling now done via 'function add_include_path'
47     *
48     *  Revision 1.5  2003/02/22 16:17:56  joko
49     *  + include path for new sister library org.netfrag.app
50     *  + autoloading abstract class for backend-communication
51     *
52     *  Revision 1.4  2003/02/09 16:52:08  joko
53     *  + updated, new modules in this library
54     *
55     *  Revision 1.3  2003/02/04 08:26:18  joko
56     *  + fixed comment
57     *
58     *  Revision 1.2  2003/02/04 08:25:43  joko
59     *  + minor modification regarding configuration/resource variable hierarchy
60     *
61     *  Revision 1.1  2003/02/03 14:39:58  joko
62     *  + initial commit
63     *
64     * </pre>
65     *
66     */
67    
68    
69    // utility- and helper functions- and classes
70    require_once("utils/includes.php");
71        
72    // tune libpath
73      // FIXME: enhance! use constants here!!!
74      $smarty = $config['_startup'][path][lib][smarty];
75      $pear = $config['_startup'][path][lib][pear];
76      $flib = $config['_startup'][path][lib][flib];
77      $glib = $config['_startup'][path][lib][glib];
78      $lib_app = $config['_startup'][path][lib][app];
79      php::add_libpath(array($pear, $glib, $lib_app));
80    
81    
82    // PEAR modules
83    
84      // --- logging
85      require_once 'Log.php';
86      require_once 'Log/file.php';
87    
88      // --- benchmarking
89      require_once("Benchmark/Timer.php");
90      $timer = new Benchmark_Timer;
91      $timer->start();
92      $timer->setMarker("pear libraries: including");
93    
   
 // =======================================  
 // ------ pear libs ------  
   // benchmarking  
     require_once("Benchmark/Timer.php");  
     $timer = new Benchmark_Timer;  
     $timer->start();  
     $timer->setMarker("pear libraries: including");  
   
   // logging  
     require_once 'Log.php';  
     require_once 'Log/file.php';  
94    // date-handling and -manipulation ... 0.02 execution time for inclusion    // date-handling and -manipulation ... 0.02 execution time for inclusion
95      require_once 'Date.php';      require_once 'Date.php';
96    // database... 0.03 execution time for inclusion    // database... 0.03 execution time for inclusion
97      require_once 'DB.php';      require_once 'DB.php';
   // rpc - standard  
   require_once 'XML/RPC/RPC.php';  
98    
99      $timer->setMarker("pear libraries: ready");      $timer->setMarker("pear libraries: ready");
100    
# Line 65  $glib = $config['_startup'][path][lib][g Line 104  $glib = $config['_startup'][path][lib][g
104  // ------ glib libraries/classes/components ------  // ------ glib libraries/classes/components ------
105        
106    // abstract base classes - lowlevel    // abstract base classes - lowlevel
107      require_once("DesignPattern/Object.php");  
108      loadModule('DesignPattern::Logger');      // old ones, got refactored somehow
109      loadModule('DesignPattern::Bridge');      //loadModule('DesignPattern::Object');
110      loadModule('DesignPattern::Loader');      //loadModule('DesignPattern::Logger');
111          //loadModule('DesignPattern::Bridge');
112        //loadModule('DesignPattern::Loader');
113    
114    // abstract base classes - application level    // abstract base classes - application level
115      loadModule('Application::AbstractBase');      loadModule('Application::AbstractBase');
116      loadModule('Application::AbstractRequest');      loadModule('Application::AbstractRequest');
117      loadModule('Application::AbstractHandler');      loadModule('Application::AbstractHandler');
118        loadModule('Application::AbstractBackend');
119        
120    // concrete classes    // concrete classes
121    
# Line 85  $glib = $config['_startup'][path][lib][g Line 127  $glib = $config['_startup'][path][lib][g
127      loadModule('Data::Validator::CreditCard');      loadModule('Data::Validator::CreditCard');
128    
129      // core/transport: rpc-xml communication      // core/transport: rpc-xml communication
130      loadModule('Data::Driver::Proxy');      //loadModule('Data::Driver::Proxy');
131      loadModule('Data::Driver::RPC::Remote');      //loadModule('Data::Driver::RPC::Remote');
   
132    
133    
134  // =======================================  // =======================================
135  // ------ flib libraries/classes ------  // ------ flib libraries/classes ------
136    // error handling      php::add_libpath($flib);
137     require_once("Application/ErrorHandler.php");      require_once('includes.php');
138    // misc  
    require_once("utils/helper.php");  
    require_once("utils/shortcuts.php");  
   // array manipulation  
    require_once("utils/Array_Manip.php");  
   
   // utf8-encodings (Internationalization)  
   // iso <-> utf8  
    //require_once("Application/i18n/TextEncode.php");  
   // language (Localization)  
    require_once("Application/l10n/LocaleText.php");  
   // site  
    require_once("Site.php");  
   // user  
    require_once("Tracker/Session.php");  
    require_once("Tracker/User.php");  
   // tablebrowser  
    require_once("$flib/Site/Widget/TableBrowser.php");  
139    
140  // ------ local libs - abstract ------  // ------ local libs - abstract ------
141    // site    // site
# Line 122  $glib = $config['_startup'][path][lib][g Line 146  $glib = $config['_startup'][path][lib][g
146     define(SMARTY_DIR, $smarty);     define(SMARTY_DIR, $smarty);
147     require_once(SMARTY_DIR . 'Smarty.class.php');     require_once(SMARTY_DIR . 'Smarty.class.php');
148    
   
149  ?>  ?>

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.15

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed