Changeset 2283
- Timestamp:
- 09/30/2007 07:33:28 PM (16 months ago)
- Location:
- trunk
- Files:
-
- 6 modified
-
HISTORY (modified) (1 diff)
-
UPGRADE (modified) (2 diffs)
-
buildscripts/texbuilder/quickstart/quickstart.tex (modified) (1 diff)
-
framework/PradoBase.php (modified) (1 diff)
-
framework/Web/UI/TClientScriptManager.php (modified) (1 diff)
-
index.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/HISTORY
r2276 r2283 1 Version 3.1.1 To be released2 ============================ 1 Version 3.1.1 October 1, 2007 2 ============================= 3 3 BUG: Ticket#340 - Callbacks and Firebug compatibility problem (Christophe) 4 4 BUG: Ticket#533 - HttpRequest::getBrowser() throws an error if browsercap.ini is invalid (Carl) -
trunk/UPGRADE
r2274 r2283 1 1 2 Upgrading Instructions for PRADO Framework v3.1. 12 Upgrading Instructions for PRADO Framework v3.1.2 3 3 ================================================= 4 4 … … 9 9 version B between A and C, you need to following the instructions 10 10 for both A and B. 11 12 Upgrading from v3.1.1 13 --------------------- 11 14 12 15 Upgrading from v3.1.0 -
trunk/buildscripts/texbuilder/quickstart/quickstart.tex
r2050 r2283 53 53 %----------------- TITLE -------------- 54 54 55 \title{\Huge \bfseries PRADO v3.1. 1Quickstart Tutorial55 \title{\Huge \bfseries PRADO v3.1.2 Quickstart Tutorial 56 56 \thanks{Copyright 2005-2007. All Rights Reserved.} 57 57 } -
trunk/framework/PradoBase.php
r2241 r2283 67 67 public static function getVersion() 68 68 { 69 return '3.1. 1';69 return '3.1.2a'; 70 70 } 71 71 -
trunk/framework/Web/UI/TClientScriptManager.php
r2252 r2283 206 206 { 207 207 $assets = Prado::getApplication()->getAssetManager(); 208 return array($assets->getPublishedPath($base), $assets->publishFilePath($base)); 208 if(strpos($base, $assets->getBaseUrl())===false) 209 { 210 if(!is_null($dir = Prado::getPathOfNameSpace($base))) 211 $base = $dir; 212 return array($assets->getPublishedPath($base), $assets->publishFilePath($base)); 213 } 214 else 215 { 216 return array($assets->getBasePath().str_replace($assets->getBaseUrl(),'',$base), $base); 217 } 209 218 } 210 219 -
trunk/index.html
r2279 r2283 9 9 <body> 10 10 <h1>PRADO Framework for PHP 5 </h1> 11 <p>Version 3.1. 1, October 1, 2007<br>11 <p>Version 3.1.2, To be released<br> 12 12 Copyright© 2004-2007 by <a href="http://www.pradosoft.com/">PradoSoft</a><br> 13 13 All Rights Reserved.
