Re: implementing Java's URI in GWT

2012-02-08 Thread Thomas Broyer
On Tuesday, February 7, 2012 10:44:56 PM UTC+1, Sebastian Gurin wrote: > > On Tue, 7 Feb 2012 13:39:32 -0800 (PST) > Thomas Broyer wrote: > > > AIUI,MIT license allows you to re-license the code under Apache > (sublicense). But I wonder why you simply don't use the regex from the RFC? > > For a

Re: implementing Java's URI in GWT

2012-02-07 Thread Sebastian Gurin
On Tue, 7 Feb 2012 13:39:32 -0800 (PST) Thomas Broyer wrote: > AIUI,MIT license allows you to re-license the code under Apache (sublicense). > But I wonder why you simply don't use the regex from the RFC? For a java programmer it is nicer to use the java API if possible, I think... > > -- >

implementing Java's URI in GWT

2012-02-07 Thread Thomas Broyer
AIUI,MIT license allows you to re-license the code under Apache (sublicense). But I wonder why you simply don't use the regex from the RFC? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://

implementing Java's URI in GWT

2012-02-07 Thread alexp
Hello there, I recently noticed this TODO in the javadoc for the UriBuilder constructor: "Add a constructor that parses an existing URL" I searched a little for an existing class to parse URIs in GWT but did not have much luck, so I thought I'd give it a shot to implement one. My approach was t