Changeset 1001
- Timestamp:
- 06/21/08 18:03:38 (6 months ago)
- Files:
-
- trunk/lib/jelix/core/jCmdlineCoordinator.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jConfig.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jConfigCompiler.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jContext.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jCoordinator.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jErrorHandler.lib.php (modified) (1 diff)
- trunk/lib/jelix/core/jException.lib.php (modified) (1 diff)
- trunk/lib/jelix/core/jICoordPlugin.iface.php (modified) (1 diff)
- trunk/lib/jelix/core/jIncluder.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jInstallChecker.class.php (modified) (3 diffs)
- trunk/lib/jelix/core/jResponse.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jSelector.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/jSession.class.php (modified) (1 diff)
- trunk/lib/jelix/core/jUrl.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/request/jClassicRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/request/jCmdLineRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/request/jCssRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/request/jRdfRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/request/jXmlRpcRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/request/jXulRequest.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseAtom10.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseBinary.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseCmdline.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/response/jResponseCss.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseHtml.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseHtmlFragment.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseJsonrpc.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseLatexToPdf.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseRdf.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseRedirect.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseRedirectUrl.class.php (modified) (2 diffs)
- trunk/lib/jelix/core/response/jResponseRss20.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXmlFeed.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXmlrpc.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXul.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXulDialog.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXulOverlay.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseXulPage.class.php (modified) (1 diff)
- trunk/lib/jelix/core/response/jResponseZip.class.php (modified) (1 diff)
- trunk/lib/jelix/tpl/jTpl.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/jelix/core/jCmdlineCoordinator.class.php
r919 r1001 28 28 } 29 29 } 30 ?>trunk/lib/jelix/core/jConfig.class.php
r669 r1001 101 101 } 102 102 103 104 ?>trunk/lib/jelix/core/jConfigCompiler.class.php
r976 r1001 351 351 #endif 352 352 } 353 354 ?>trunk/lib/jelix/core/jContext.class.php
r705 r1001 56 56 } 57 57 } 58 ?>trunk/lib/jelix/core/jCoordinator.class.php
r976 r1001 446 446 } 447 447 } 448 ?>trunk/lib/jelix/core/jErrorHandler.lib.php
r777 r1001 62 62 63 63 } 64 ?>trunk/lib/jelix/core/jException.lib.php
r807 r1001 95 95 } 96 96 97 ?>trunk/lib/jelix/core/jICoordPlugin.iface.php
r705 r1001 40 40 public function afterProcess (); 41 41 } 42 ?>trunk/lib/jelix/core/jIncluder.class.php
r582 r1001 179 179 } 180 180 } 181 182 ?>trunk/lib/jelix/core/jInstallChecker.class.php
r848 r1001 389 389 } 390 390 } 391 391 392 if(ini_get('magic_quotes_runtime') == 1){ 392 393 $this->error('ini.magic_quotes_runtime'); 393 394 $ok=false; 394 395 } 395 396 396 397 397 if(ini_get('session.auto_start') == 1){ … … 399 399 $ok=false; 400 400 } 401 401 402 if(ini_get('safe_mode') == 1){ 402 403 $this->warning('safe_mode'); … … 421 422 } 422 423 } 423 ?>trunk/lib/jelix/core/jResponse.class.php
r705 r1001 127 127 } 128 128 } 129 ?>trunk/lib/jelix/core/jSelector.class.php
r998 r1001 647 647 public $userFunctions = array(); 648 648 649 650 649 /** 651 650 * @param string $sel the template selector … … 911 910 } 912 911 913 ?>trunk/lib/jelix/core/jSession.class.php
r886 r1001 168 168 169 169 } 170 ?>trunk/lib/jelix/core/jUrl.class.php
r943 r1001 174 174 const JURLACTION=3; 175 175 /**#@-*/ 176 176 177 177 /** 178 178 * script name including its path … … 381 381 382 382 } 383 384 ?>trunk/lib/jelix/core/request/jClassicRequest.class.php
r716 r1001 30 30 31 31 } 32 ?>trunk/lib/jelix/core/request/jCmdLineRequest.class.php
r919 r1001 61 61 } 62 62 } 63 ?> 63 trunk/lib/jelix/core/request/jCssRequest.class.php
r716 r1001 29 29 public function allowedResponses(){ return array('jResponseCss');} 30 30 } 31 ?>trunk/lib/jelix/core/request/jRdfRequest.class.php
r716 r1001 29 29 30 30 } 31 ?> 31 trunk/lib/jelix/core/request/jXmlRpcRequest.class.php
r699 r1001 60 60 61 61 } 62 ?>trunk/lib/jelix/core/request/jXulRequest.class.php
r716 r1001 27 27 } 28 28 } 29 ?>trunk/lib/jelix/core/response/jResponseAtom10.class.php
r815 r1001 249 249 } 250 250 251 ?>trunk/lib/jelix/core/response/jResponseBinary.class.php
r705 r1001 127 127 } 128 128 } 129 ?>trunk/lib/jelix/core/response/jResponseCmdline.class.php
r919 r1001 20 20 */ 21 21 const EXIT_CODE_OK = 0; 22 22 23 23 /** 24 24 * Code used by exit function in the end of the process if an error occured … … 121 121 protected function sendHttpHeaders(){} 122 122 } 123 ?>trunk/lib/jelix/core/response/jResponseCss.class.php
r705 r1001 59 59 } 60 60 } 61 ?>trunk/lib/jelix/core/response/jResponseHtml.class.php
r927 r1001 539 539 540 540 } 541 ?>trunk/lib/jelix/core/response/jResponseHtmlFragment.class.php
r983 r1001 148 148 } 149 149 } 150 ?>trunk/lib/jelix/core/response/jResponseJsonrpc.class.php
r839 r1001 72 72 } 73 73 74 ?>trunk/lib/jelix/core/response/jResponseLatexToPdf.class.php
r705 r1001 184 184 } 185 185 } 186 ?>trunk/lib/jelix/core/response/jResponseRdf.class.php
r839 r1001 168 168 } 169 169 } 170 ?>trunk/lib/jelix/core/response/jResponseRedirect.class.php
r815 r1001 56 56 57 57 } 58 59 ?>trunk/lib/jelix/core/response/jResponseRedirectUrl.class.php
r815 r1001 42 42 } 43 43 44 45 44 public function output(){ 46 45 if ($this->url =='') … … 59 58 } 60 59 } 61 62 ?>trunk/lib/jelix/core/response/jResponseRss20.class.php
r815 r1001 258 258 public $sourceTitle; 259 259 } 260 261 ?>trunk/lib/jelix/core/response/jResponseXmlFeed.class.php
r705 r1001 245 245 } 246 246 247 ?>trunk/lib/jelix/core/response/jResponseXmlrpc.class.php
r839 r1001 61 61 } 62 62 } 63 64 ?>trunk/lib/jelix/core/response/jResponseXul.class.php
r927 r1001 344 344 public function getFormatType(){ return 'xul';} 345 345 } 346 347 ?>trunk/lib/jelix/core/response/jResponseXulDialog.class.php
r815 r1001 25 25 protected $_root = 'dialog'; 26 26 } 27 ?>trunk/lib/jelix/core/response/jResponseXulOverlay.class.php
r815 r1001 26 26 function _otherthings(){ } // pas d'overlay dans un overlay 27 27 } 28 ?>trunk/lib/jelix/core/response/jResponseXulPage.class.php
r815 r1001 25 25 protected $_root = 'page'; 26 26 } 27 ?>trunk/lib/jelix/core/response/jResponseZip.class.php
r797 r1001 83 83 } 84 84 } 85 ?>trunk/lib/jelix/tpl/jTpl.class.php
r999 r1001 350 350 } 351 351 } 352 ?>
