diff options
| author | xue <> | 2006-04-20 17:09:09 +0000 | 
|---|---|---|
| committer | xue <> | 2006-04-20 17:09:09 +0000 | 
| commit | c54a230a5926086ff1b69a0dd7e6352dbc0b40ff (patch) | |
| tree | 4006daa2f5f5d0cfb90ebc028b9820b077df4a69 | |
| parent | 3ff35ae583c52e54418a61cabf3282c00a8039d1 (diff) | |
Merge from 3.0 branch till 947.
| -rw-r--r-- | HISTORY | 2 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Advanced/I18N.page | 4 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Configurations/Templates2.page | 2 | ||||
| -rw-r--r-- | demos/quickstart/protected/pages/Configurations/Templates3.page | 2 | ||||
| -rw-r--r-- | framework/Web/THttpResponse.php | 7 | ||||
| -rw-r--r-- | framework/Web/THttpUtility.php | 4 | ||||
| -rw-r--r-- | framework/Web/UI/WebControls/THtmlArea.php | 9 | ||||
| -rw-r--r-- | framework/Web/UI/WebControls/TJavascriptLogger.php | 11 | ||||
| -rw-r--r-- | framework/Web/UI/WebControls/TTableRow.php | 3 | 
9 files changed, 30 insertions, 14 deletions
@@ -12,6 +12,8 @@ Version 3.0.0 May 1, 2006  =========================
  BUG: Ticket#131 - TImageMap and TLinkButton continue to postback even client validator fails (Wei)
  BUG: Ticket#135 - TBrowserLogRoute reports wrong timings (Qiang)
 +BUG: Ticket#137 - The JavasciptLogger does not work (Qiang)
 +BUG: Ticket#138 - missing file in TDataGrid (Qiang)
  BUG: Non-control components can now use expressions in their properties (Qiang)
  BUG: TControl.Visible did not make use of overriden getVisible() (Qiang)
  BUG: TWizard did not stop navigation upon a validation failure (Qiang)
 diff --git a/demos/quickstart/protected/pages/Advanced/I18N.page b/demos/quickstart/protected/pages/Advanced/I18N.page index 75ee59ee..f37e5cf6 100644 --- a/demos/quickstart/protected/pages/Advanced/I18N.page +++ b/demos/quickstart/protected/pages/Advanced/I18N.page @@ -114,7 +114,7 @@ function clickMe($sender,$param)  <com:TTextHighlighter CssClass="source">
  function clickMe($sender,$param)
  {
 -  $sender->Text=localize("Hello, world!");
 +  $sender->Text=Prado::localize("Hello, world!");
  }
  </com:TTextHighlighter>
 @@ -129,7 +129,7 @@ $message = "There are " . $num_users . " users online.";  This problem can be solved using the <tt>localize</tt> function with string substitution. For example, the <tt>$message</tt> string above can be constructed as follows.
  <com:TTextHighlighter CssClass="source">
  $num_users = 12;
 -$message = localize("There are {num_users} users online.", array('num_users'=>$num_users));
 +$message = Prado::localize("There are {num_users} users online.", array('num_users'=>$num_users));
  </com:TTextHighlighter>
  <p>Where the second parameter in <tt>localize</tt> takes an associative array with the key as the substitution to find in the text and replaced it with the associated value.
  The <tt>localize</tt> function does not solve the problem of localizing languages that have plural forms, the solution is to use <a href="#choice-format">TChoiceFormat</a>.</p>
 diff --git a/demos/quickstart/protected/pages/Configurations/Templates2.page b/demos/quickstart/protected/pages/Configurations/Templates2.page index 9fc06fb4..17502151 100644 --- a/demos/quickstart/protected/pages/Configurations/Templates2.page +++ b/demos/quickstart/protected/pages/Configurations/Templates2.page @@ -93,7 +93,7 @@ Localization tags represent localized texts. They are in the following format,  <%[string]%>
  </com:TTextHighlighter>
  <p>
 -where <tt>string</tt> will be translated to different languages according to the end-user's language preference.
 +where <tt>string</tt> will be translated to different languages according to the end-user's language preference. Localization tags are in fact shortcuts to the function call <tt>Prado::localize(string)</tt>.
  </p>
  </com:TContent>
\ No newline at end of file diff --git a/demos/quickstart/protected/pages/Configurations/Templates3.page b/demos/quickstart/protected/pages/Configurations/Templates3.page index b97b1583..457c1a38 100644 --- a/demos/quickstart/protected/pages/Configurations/Templates3.page +++ b/demos/quickstart/protected/pages/Configurations/Templates3.page @@ -84,7 +84,7 @@ Localization tags represent localized texts. They are in the following format,  <%[string]%>
  </com:TTextHighlighter>
  <p>
 -where <tt>string</tt> will be translated to different languages according to the end-user's language preference. The localization tags are evaluated when the template is instantiated.
 +where <tt>string</tt> will be translated to different languages according to the end-user's language preference. The localization tags are evaluated when the template is instantiated. Localization tags are in fact shortcuts to the function call <tt>Prado::localize(string)</tt>.
  </p>
  </com:TContent>
\ No newline at end of file diff --git a/framework/Web/THttpResponse.php b/framework/Web/THttpResponse.php index 18be9fec..29258259 100644 --- a/framework/Web/THttpResponse.php +++ b/framework/Web/THttpResponse.php @@ -238,15 +238,14 @@ class THttpResponse extends TModule implements ITextWriter  		if($mimeType===null)
  		{
 +			$mimeType='text/plain';
  			if(function_exists('mime_content_type'))
  				$mimeType=mime_content_type($fileName);
 -			else
 +			else if(($ext=strrchr($fileName,'.'))!==false)
  			{
 -				$ext=array_pop(explode('.',$fileName));
 +				$ext=substr($ext,1);
  				if(isset($defaultMimeTypes[$ext]))
  					$mimeType=$defaultMimeTypes[$ext];
 -				else
 -					$mimeType='text/plain';
  			}
  		}
  		$fn=basename($fileName);
 diff --git a/framework/Web/THttpUtility.php b/framework/Web/THttpUtility.php index 4cd869b4..3bb78f0f 100644 --- a/framework/Web/THttpUtility.php +++ b/framework/Web/THttpUtility.php @@ -20,8 +20,8 @@   */
  class THttpUtility
  {
 -	private static $_encodeTable=array('<'=>'<','>'=>'>','"'=>'"e;');
 -	private static $_decodeTable=array('<'=>'<','>'=>'>','"e;'=>'"');
 +	private static $_encodeTable=array('<'=>'<','>'=>'>','"'=>'"');
 +	private static $_decodeTable=array('<'=>'<','>'=>'>','"'=>'"');
  	/**
  	 * HTML-encodes a string.
 diff --git a/framework/Web/UI/WebControls/THtmlArea.php b/framework/Web/UI/WebControls/THtmlArea.php index 7ad2d06f..038c7368 100644 --- a/framework/Web/UI/WebControls/THtmlArea.php +++ b/framework/Web/UI/WebControls/THtmlArea.php @@ -11,6 +11,11 @@   */
  /**
 + * Includes TTextBox class
 + */
 +Prado::using('System.Web.UI.WebControls.TTextBox');
 +
 +/**
   * THtmlArea class
   *
   * THtmlArea wraps the visual editting functionalities provided by the
 @@ -73,7 +78,8 @@   */
  class THtmlArea extends TTextBox
  {
 -	protected $langs = array(
 +	// Qiang: need to clean up the following (too inefficient)
 +	private $langs = array(
  		'da' => array('da'),
  		'fa' => array('fa'),
  		'hu' => array('hu'),
 @@ -310,6 +316,7 @@ class THtmlArea extends TTextBox  		if(count($variants) == 0)
  			$variants[] = empty($culture) ? 'en' : strtolower($culture);
 +		// TODO: triple loops???
  		foreach($this->langs as $js => $langs)
  		{
  			foreach($variants as $variant)
 diff --git a/framework/Web/UI/WebControls/TJavascriptLogger.php b/framework/Web/UI/WebControls/TJavascriptLogger.php index 3196d3b6..0296a276 100644 --- a/framework/Web/UI/WebControls/TJavascriptLogger.php +++ b/framework/Web/UI/WebControls/TJavascriptLogger.php @@ -41,17 +41,24 @@ class TJavascriptLogger extends TWebControl  	}
  	/**
 +	 * Registers the required logger javascript.
 +	 * @param TEventParameter event parameter
 +	 */
 +	public function onPreRender($param)
 +	{
 +		$this->getPage()->getClientScript()->registerPradoScript('logger');
 +	}
 +
 +	/**
  	 * Register the required javascript libraries and
  	 * display some general usage information.
  	 * @param THtmlWriter the writer used for the rendering purpose
  	 */
  	public function renderContents($writer)
  	{
 -		$this->getPage()->getClientScript()->registerPradoScript('logger');
  		$info = '(<a href="http://gleepglop.com/javascripts/logger/" target="_blank">more info</a>).';
  		$usage = 'Press ALT-D (Or CTRL-D on OS X) to toggle the javascript log console';
  		$writer->write("{$usage} {$info}");
 -		parent::renderContents($writer);
  	}
  }
 diff --git a/framework/Web/UI/WebControls/TTableRow.php b/framework/Web/UI/WebControls/TTableRow.php index 04a1555d..6a3f196a 100644 --- a/framework/Web/UI/WebControls/TTableRow.php +++ b/framework/Web/UI/WebControls/TTableRow.php @@ -11,9 +11,10 @@   */
  /**
 - * Includes TTableCell class
 + * Includes TTableCell and TTableHeaderCell classes
   */
  Prado::using('System.Web.UI.WebControls.TTableCell');
 +Prado::using('System.Web.UI.WebControls.TTableHeaderCell');
  /**
   * TTableRow class.
  | 
