checkin request NetUI

2004-12-10 Thread Carlin Rogers
id dumpURLRewriters( ServletRequest request, PrintStream output ) +{ +ArrayList< URLRewriter > rewriters = getRewriters( request ); + +if ( output == null ) output = System.err; +output.println( "*** List of URLRewriter objects: " + rewriters ); + +

Re: checkin request NetUI

2004-12-10 Thread Carlin Rogers
FAULT_ENCODING = "UTF-8"; + +/** Character encoding used for the URI. */ +private String _encoding; + /** Protocol scheme. */ private String _scheme; @@ -92,7 +117,7 @@ throw new IllegalArgumentException( "The URI cannot be null." ); } -// Parse t

Re: checkin request NetUI

2004-12-12 Thread Richard Feit
ream output ) +{ +ArrayList< URLRewriter > rewriters = getRewriters( request ); + + if ( output == null ) output = System.err; +output.println( "*** List of URLRewriter objects: " + rewriters ); + + if ( rewriters != null ) +{ +

Re: checkin request NetUI

2004-12-12 Thread Richard Feit
+ +if ( output == null ) output = System.err; +output.println( "*** List of URLRewriter objects: " + rewriters ); + + if ( rewriters != null ) +{ +int count = 0; +for ( URLRewriter rewriter : rewriters ) +{ +

[jira] Resolved: (BEEHIVE-490) Provide a mechanism (netui-config flag) to allow overriding URL encoding of href attributes in tags

2005-05-04 Thread Carlin Rogers (JIRA)
Type: Improvement > Components: NetUI > Versions: V1Beta > Reporter: Carlin Rogers > Assignee: Carlin Rogers > Priority: Minor > Fix For: V1 > Attachments: useamppatch.tar.gz > > Some users may want to write their URL for tags with href as already > encoded string

Re: Mutable URI object and improving the URLRewriterService

2004-10-08 Thread Richard Feit
bject as a parameter to the rewriteURL() method so that a registered URLRewriter can access components of the URL without parsing. This includes parameters of the query. I.E. This method should take a URL object rather than a String object as a parameter. - Do we also want the rewriteURL() method to

Re: Mutable URI object and improving the URLRewriterService

2004-10-26 Thread Carlin Rogers
egistered URLRewriter can access components of the URL without parsing. This includes parameters of the query. I.E. This method should take a URL object rather than a String object as a parameter. - Do we also want the rewriteURL() method to return a mutable URL object so that consumers can now access

Re: Mutable URI object and improving the URLRewriterService

2004-10-27 Thread Richard Feit
should use a mutable URL object as a parameter to the rewriteURL() method so that a registered URLRewriter can access components of the URL without parsing. This includes parameters of the query. I.E. This method should take a URL object rather than a String object as a parameter. - Do we also want

Re: Mutable URI object and improving the URLRewriterService

2004-10-08 Thread Richard Feit
ect as a parameter to the rewriteURL() method so that a registered URLRewriter can access components of the URL without parsing. This includes parameters of the query. I.E. This method should take a URL object rather than a String object as a parameter. - Do we also want the rewriteURL() method to return a

Re: Mutable URI object and improving the URLRewriterService

2004-10-08 Thread Carlin Rogers
. - The URLRewriterService implementation should use a mutable URL object as a parameter to the rewriteURL() method so that a registered URLRewriter can access components of the URL without parsing. This includes parameters of the query. I.E. This method should take a URL object rather than a String o

[jira] Closed: (BEEHIVE-488) encode href attributes for NetUI tags

2005-04-27 Thread Krista Baker (JIRA)
[ http://issues.apache.org/jira/browse/BEEHIVE-488?page=all ] Krista Baker closed BEEHIVE-488: Verified that items like spaces are now encoded when used as the href attribute. The bvt for this item looks like it covers a vast majority of other