diff options
| -rw-r--r-- | HISTORY | 4 | ||||
| -rw-r--r-- | UPGRADE | 5 | ||||
| -rw-r--r-- | buildscripts/texbuilder/quickstart/quickstart.tex | 2 | ||||
| -rw-r--r-- | framework/PradoBase.php | 2 | ||||
| -rw-r--r-- | framework/Web/UI/TClientScriptManager.php | 11 | ||||
| -rw-r--r-- | index.html | 2 | 
6 files changed, 19 insertions, 7 deletions
| @@ -1,5 +1,5 @@ -Version 3.1.1 To be released -============================ +Version 3.1.1 October 1, 2007 +=============================  BUG: Ticket#340 - Callbacks and Firebug compatibility problem (Christophe)  BUG: Ticket#533 - HttpRequest::getBrowser() throws an error if browsercap.ini is invalid (Carl)  BUG: Ticket#592 - TRadioButton with UniqueGroupName always return false to getChecked (Christophe) @@ -1,5 +1,5 @@ -         Upgrading Instructions for PRADO Framework v3.1.1
 +         Upgrading Instructions for PRADO Framework v3.1.2
           =================================================
  !!!IMPORTANT!!!
 @@ -9,6 +9,9 @@ if you want to upgrade from version A to version C and there is  version B between A and C, you need to following the instructions
  for both A and B.
 +Upgrading from v3.1.1
 +---------------------
 +
  Upgrading from v3.1.0
  ---------------------
  - The RELATIONS declaration in Acive Record classes is changed from
 diff --git a/buildscripts/texbuilder/quickstart/quickstart.tex b/buildscripts/texbuilder/quickstart/quickstart.tex index 923b47ca..a2b20a61 100644 --- a/buildscripts/texbuilder/quickstart/quickstart.tex +++ b/buildscripts/texbuilder/quickstart/quickstart.tex @@ -52,7 +52,7 @@  %----------------- TITLE --------------
 -\title{\Huge \bfseries PRADO v3.1.1 Quickstart Tutorial
 +\title{\Huge \bfseries PRADO v3.1.2 Quickstart Tutorial
      \thanks{Copyright 2005-2007. All Rights Reserved.}
  }
  \author{Qiang Xue and Wei Zhuo}
 diff --git a/framework/PradoBase.php b/framework/PradoBase.php index d4f2522c..514a8a9a 100644 --- a/framework/PradoBase.php +++ b/framework/PradoBase.php @@ -66,7 +66,7 @@ class PradoBase  	 */
  	public static function getVersion()
  	{
 -		return '3.1.1';
 +		return '3.1.2a';
  	}
  	/**
 diff --git a/framework/Web/UI/TClientScriptManager.php b/framework/Web/UI/TClientScriptManager.php index 8b2bdae0..6d4775bf 100644 --- a/framework/Web/UI/TClientScriptManager.php +++ b/framework/Web/UI/TClientScriptManager.php @@ -205,7 +205,16 @@ class TClientScriptManager extends TApplicationComponent  	protected function getPackagePathUrl($base)  	{  		$assets = Prado::getApplication()->getAssetManager(); -		return array($assets->getPublishedPath($base), $assets->publishFilePath($base)); +		if(strpos($base, $assets->getBaseUrl())===false) +		{ +			if(!is_null($dir = Prado::getPathOfNameSpace($base))) +				$base = $dir; +			return array($assets->getPublishedPath($base), $assets->publishFilePath($base)); +		} +		else +		{ +			return array($assets->getBasePath().str_replace($assets->getBaseUrl(),'',$base), $base); +		}  	}  	/** @@ -8,7 +8,7 @@  <body>
  <h1>PRADO Framework for PHP 5 </h1>
 -<p>Version 3.1.1, October 1, 2007<br>
 +<p>Version 3.1.2, To be released<br>
  Copyright© 2004-2007 by <a href="http://www.pradosoft.com/">PradoSoft</a><br>
  All Rights Reserved.
  </p>
 | 
