|
|
@@ -26,7 +26,6 @@
|
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
//
|
|
|
|
|
|
-using [email protected];
|
|
|
using javax.servlet.http;
|
|
|
using System.Collections.Specialized;
|
|
|
using System.Globalization;
|
|
|
@@ -46,8 +45,6 @@ namespace System.Web.UI
|
|
|
{
|
|
|
bool _emptyPortletNamespace = false;
|
|
|
string _PortletNamespace = null;
|
|
|
- bool _renderResponseInit = false;
|
|
|
- IPortletRenderResponse _renderResponse = null;
|
|
|
StateManager.SerializedView _facesSerializedView;
|
|
|
|
|
|
|
|
|
@@ -88,25 +85,6 @@ namespace System.Web.UI
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- internal bool IsPortletRender
|
|
|
- {
|
|
|
- get {
|
|
|
- return RenderResponse != null;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- internal IPortletRenderResponse RenderResponse
|
|
|
- {
|
|
|
- get {
|
|
|
- if (!_renderResponseInit)
|
|
|
- if (Context != null) {
|
|
|
- _renderResponse = Context.ServletResponse as IPortletRenderResponse;
|
|
|
- _renderResponseInit = true;
|
|
|
- }
|
|
|
- return _renderResponse;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
internal string EncodeURL (string raw) {
|
|
|
//kostat: BUGBUG: complete
|
|
|
return raw;
|