summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxue <>2007-10-01 00:33:28 +0000
committerxue <>2007-10-01 00:33:28 +0000
commit2af3f4de05875a23a7f5dadceaa64e6c0ec84c8b (patch)
tree92170452cc0da1c5e506dc85f9335d75662037b7
parent81db1a66aaf17b1355613c9fc5f0888e1140b4a8 (diff)
prepare for next release.
-rw-r--r--HISTORY4
-rw-r--r--UPGRADE5
-rw-r--r--buildscripts/texbuilder/quickstart/quickstart.tex2
-rw-r--r--framework/PradoBase.php2
-rw-r--r--framework/Web/UI/TClientScriptManager.php11
-rw-r--r--index.html2
6 files changed, 19 insertions, 7 deletions
diff --git a/HISTORY b/HISTORY
index 72e13d76..4f7b4729 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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)
diff --git a/UPGRADE b/UPGRADE
index b96ce565..17ae3298 100644
--- a/UPGRADE
+++ b/UPGRADE
@@ -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);
+ }
}
/**
diff --git a/index.html b/index.html
index 21b6c72f..ec31c93d 100644
--- a/index.html
+++ b/index.html
@@ -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&copy; 2004-2007 by <a href="http://www.pradosoft.com/">PradoSoft</a><br>
All Rights Reserved.
</p>