summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorwei <>2006-01-13 13:03:01 +0000
committerwei <>2006-01-13 13:03:01 +0000
commitf0737c5b52373f262a4c8cfd25d4e1bb6ff33aee (patch)
treee4ace9d8b7b9c65721330f13f59f684dce32b9da /framework
parent52ae5aef521fa7d800e09206342eb9ac17043cd8 (diff)
Move SafeHtml to 3rdParty/SafeHtml. Add TSafeHtml component. Change TTextBox::getText() to use SafeHtml
Diffstat (limited to 'framework')
-rw-r--r--framework/3rdParty/SafeHtml/HTMLSax3.php (renamed from framework/IO/SafeHtml/HTMLSax3.php)0
-rw-r--r--framework/3rdParty/SafeHtml/HTMLSax3/Decorators.php (renamed from framework/IO/SafeHtml/HTMLSax3/Decorators.php)0
-rw-r--r--framework/3rdParty/SafeHtml/HTMLSax3/States.php (renamed from framework/IO/SafeHtml/HTMLSax3/States.php)0
-rw-r--r--framework/3rdParty/SafeHtml/TSafeHtmlParser.php (renamed from framework/IO/TSafeHtml.php)4
-rw-r--r--framework/3rdParty/SafeHtml/license.txt (renamed from framework/IO/SafeHtml/license.txt)0
-rw-r--r--framework/3rdParty/SafeHtml/readme.txt (renamed from framework/IO/SafeHtml/readme.txt)0
-rw-r--r--framework/Web/THttpRequest.php8
7 files changed, 10 insertions, 2 deletions
diff --git a/framework/IO/SafeHtml/HTMLSax3.php b/framework/3rdParty/SafeHtml/HTMLSax3.php
index 35e50f55..35e50f55 100644
--- a/framework/IO/SafeHtml/HTMLSax3.php
+++ b/framework/3rdParty/SafeHtml/HTMLSax3.php
diff --git a/framework/IO/SafeHtml/HTMLSax3/Decorators.php b/framework/3rdParty/SafeHtml/HTMLSax3/Decorators.php
index 6256706c..6256706c 100644
--- a/framework/IO/SafeHtml/HTMLSax3/Decorators.php
+++ b/framework/3rdParty/SafeHtml/HTMLSax3/Decorators.php
diff --git a/framework/IO/SafeHtml/HTMLSax3/States.php b/framework/3rdParty/SafeHtml/HTMLSax3/States.php
index 2b863a59..2b863a59 100644
--- a/framework/IO/SafeHtml/HTMLSax3/States.php
+++ b/framework/3rdParty/SafeHtml/HTMLSax3/States.php
diff --git a/framework/IO/TSafeHtml.php b/framework/3rdParty/SafeHtml/TSafeHtmlParser.php
index 311ae2a3..2cedb36e 100644
--- a/framework/IO/TSafeHtml.php
+++ b/framework/3rdParty/SafeHtml/TSafeHtmlParser.php
@@ -19,7 +19,7 @@
/**
* This package requires HTMLSax3 package
*/
-Prado::using('System.IO..SafeHtml.HTMLSax3');
+Prado::using('System.3rdParty.SafeHtml.HTMLSax3');
/**
@@ -55,7 +55,7 @@ Prado::using('System.IO..SafeHtml.HTMLSax3');
* @version Release: @package_version@
* @link http://pear.php.net/package/SafeHTML
*/
-class TSafeHtml
+class TSafeHtmlParser
{
/**
* Storage for resulting HTML output
diff --git a/framework/IO/SafeHtml/license.txt b/framework/3rdParty/SafeHtml/license.txt
index 21496aa2..21496aa2 100644
--- a/framework/IO/SafeHtml/license.txt
+++ b/framework/3rdParty/SafeHtml/license.txt
diff --git a/framework/IO/SafeHtml/readme.txt b/framework/3rdParty/SafeHtml/readme.txt
index d525f92c..d525f92c 100644
--- a/framework/IO/SafeHtml/readme.txt
+++ b/framework/3rdParty/SafeHtml/readme.txt
diff --git a/framework/Web/THttpRequest.php b/framework/Web/THttpRequest.php
index 9e8b7a04..d397cc56 100644
--- a/framework/Web/THttpRequest.php
+++ b/framework/Web/THttpRequest.php
@@ -288,6 +288,14 @@ class THttpRequest extends TModule
}
/**
+ * @return TMap list of input variables, include GET, POST
+ */
+ public function getParameters()
+ {
+ return $this->_items;
+ }
+
+ /**
* @return THttpCookieCollection list of cookies to be sent
*/
public function getCookies()