Re: HttpUnit
Wolfgang Fahl <[email protected]> Fri, 07 May 2010 14:39:48 +0200
| Newsgroups | gmane.comp.web.httpunit.devel |
|---|---|
| Organization | BITPlan GmbH |
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format.
--===============0725438928518616853==
Content-Type: multipart/alternative;
boundary="------------010902040806090702030303"
This is a multi-part message in MIME format.
--------------010902040806090702030303
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 8bit
Serge,
thank you for your patch
subversion 1068 has it.
Wolfgang
Am 23.01.10 16:14, schrieb Serge Maslyukov:
> Hi
>
> There is a patch for tripple dotted url, i.e.
> http://en.wikipedia.org/wiki/...And_Found
>
>
> Index: src/com/meterware/httpunit/WebRequest.java
> ===================================================================
> --- src/com/meterware/httpunit/WebRequest.java (revision 1062)
> +++ src/com/meterware/httpunit/WebRequest.java (working copy)
> @@ -142,7 +142,7 @@
>
> private String getNormalizedPath( String path ) {
> if (path.lastIndexOf( "//" ) > path.lastIndexOf( "://" ) + 1)
> return getNormalizedPath( stripDoubleSlashes( path ) );
> - if (path.indexOf( "/.." ) > 0) return getNormalizedPath(
> stripUpNavigation( path ) );
> + if (path.indexOf( "/../" )>0 || path.endsWith("/..")) return
> getNormalizedPath( stripUpNavigation( path ) );
> if (path.indexOf( "/./" ) > 0) return getNormalizedPath(
> stripInPlaceNavigation( path ) );
> return path;
> }
> Index: test/com/meterware/httpunit/NormalizeURLTest.java
> ===================================================================
> --- test/com/meterware/httpunit/NormalizeURLTest.java (revision 1062)
> +++ test/com/meterware/httpunit/NormalizeURLTest.java (working copy)
> @@ -239,6 +239,10 @@
> assertEquals( "URL", request.getURL().toExternalForm(),
> "http://host.name/file.html" );
> }
>
> + public void testTripleDottedPath() throws Exception {
> + WebRequest request = new GetMethodWebRequest(
> "http://en.wikipedia.org/wiki/...And_Found" );
> + assertEquals( "URL", request.getURL().toExternalForm(),
> "http://en.wikipedia.org/wiki/...And_Found" );
> + }
>
> /*
> * Test relative URLs with directory navigation.
>
>
> With best regards
> Serge Maslyukov
>
>
> ------------------------------------------------------------------------
> *From:* Serge Maslyukov <[email protected]>
> *To:* Wolfgang Fahl <[email protected]>
> *Cc:* [email protected]; Discussion of use and development of
> HttpUnit <[email protected]>
> *Sent:* Tue, December 22, 2009 11:32:33 PM
> *Subject:* Re: HttpUnit
>
> Hello, Wolfgang
>
> There is a patch for an issue with non standard content type declaration
> i.e.: text/html charset=windows-1251
>
> I already sent it to you. May be my e-mail was dropped to spam (.
>
>
> Index: src/com/meterware/httpunit/HttpUnitUtils.java
> ===================================================================
> --- src/com/meterware/httpunit/HttpUnitUtils.java (revision 1062)
> +++ src/com/meterware/httpunit/HttpUnitUtils.java Tue Dec 22
> 23:23:06 MSK 2009
> @@ -76,7 +76,7 @@
> public static String[] parseContentTypeHeader( String header ) {
> String[] result = new String[] { "text/plain", null };
> if (header.trim().length()>0){
> - StringTokenizer st = new StringTokenizer( header, ";=" );
> + StringTokenizer st = new StringTokenizer( header, ";= " );
> result[0] = st.nextToken();
> while (st.hasMoreTokens()) {
> String parameter = st.nextToken();
> Index: test/com/meterware/httpunit/HttpUnitUtilsTest.java
> ===================================================================
> --- test/com/meterware/httpunit/HttpUnitUtilsTest.java Sat Dec 05
> 18:48:31 MSK 2009
> +++ test/com/meterware/httpunit/HttpUnitUtilsTest.java Sat Dec 05
> 18:48:31 MSK 2009
> @@ -0,0 +1,31 @@
> +package com.meterware.httpunit;
> +
> +import junit.framework.TestCase;
> +
> +/**
> + * User: SergeMaslyukov
> + * Date: 05.12.2009
> + * Time: 18:29:04
> + */
> +public class HttpUnitUtilsTest extends TestCase {
> +
> + public void testParseContentTypeHeader() throws Exception {
> + String[] ct;
> + ct = HttpUnitUtils.parseContentTypeHeader("text/html
> charset=windows-1251");
> + assertEquals(2, ct.length);
> + assertEquals("text/html", ct[0]);
> + assertEquals("windows-1251", ct[1]);
> + ct = HttpUnitUtils.parseContentTypeHeader("text/html;
> charset=utf-8");
> + assertEquals(2, ct.length);
> + assertEquals("text/html", ct[0]);
> + assertEquals("utf-8", ct[1]);
> + ct = HttpUnitUtils.parseContentTypeHeader("text/html; charset
> = utf-8");
> + assertEquals(2, ct.length);
> + assertEquals("text/html", ct[0]);
> + assertEquals("utf-8", ct[1]);
> + ct = HttpUnitUtils.parseContentTypeHeader("text/html;
> charset=\"iso-8859-8\"");
> + assertEquals(2, ct.length);
> + assertEquals("text/html", ct[0]);
> + assertEquals("iso-8859-8", ct[1]);
> + }
> +}
>
> With best regards
> Serge Maslyukov
>
>
> ------------------------------------------------------------------------
> *From:* Wolfgang Fahl <[email protected]>
> *To:* Serge Maslyukov <[email protected]>
> *Cc:* [email protected]; Discussion of use and development of
> HttpUnit <[email protected]>
> *Sent:* Tue, December 22, 2009 6:39:01 PM
> *Subject:* Re: HttpUnit
>
> Serge,
>
> thanx for the patch.
> 1062 has it:
> http://httpunit.svn.sourceforge.net/viewvc/httpunit?view=rev&revision=1062
>
> I have added two tests and solved the issue slightly differently by
> postponing the issue to the parsing phase.
> Also I have tried to work around the current regression problems i
> think there is an issue with defineResource if a resource has to be
> redefined - I assume the cleanup
> is not properly done and therefore have modified the tests to create
> resources with unique names instead which should not defeat the test
> purpose at all.
>
> Have a good christmas time and keep up the good work!
>
> Wolfgang
>
> Am 20.12.09 14:55, schrieb Serge Maslyukov:
>> Hello
>>
>> This is a new path for issue when server return empty content type value:
>>
>> Index: src/com/meterware/httpunit/WebResponse.java
>> ===================================================================
>> --- src/com/meterware/httpunit/WebResponse.java (revision 1061)
>> +++ src/com/meterware/httpunit/WebResponse.java (working copy)
>> @@ -1308,7 +1308,7 @@
>> private void readContentTypeHeader() {
>> String contentHeader = (_contentHeader != null) ? _contentHeader
>> :
>> getHeaderField( "Content-type" );
>> - if (contentHeader == null) {
>> + if (contentHeader == null || contentHeader.trim().length()==0) {
>> _contentType = HttpUnitOptions.getDefaultContentType();
>> setCharacterSet( HttpUnitOptions.getDefaultCharacterSet() );
>> _contentHeader = _contentType + ";charset=" +
>> _characterSet;
>>
>>
>> Sorry, without test case.
>>
>> With best regards
>> Serge Maslyukov
>>
>>
>> ------------------------------------------------------------------------
>> *From:* Serge Maslyukov <[email protected]>
>> *To:* [email protected]
>> *Cc:* [email protected]
>> *Sent:* Sat, December 5, 2009 6:57:25 PM
>> *Subject:* Re: HttpUnit
>>
>> Hello
>>
>> There is a patch for an issue with non standard content type declaration
>> i.e.: text/html charset=windows-1251
>> With best regards
>> Serge Maslyukov
>>
>>
>> ------------------------------------------------------------------------
>> *From:* Wolfgang Fahl <[email protected]>
>> *To:* Serge Maslyukov <[email protected]>
>> *Sent:* Fri, March 13, 2009 5:34:50 PM
>> *Subject:* Re: HttpUnit
>>
>> Serge,
>>
>> sorry for the delay in responding.
>> Excellent work!
>> SVN Version 1020 has your patch included.
>>
>> I'm looking forward to more of this ...
>>
>> Wolfgang
>>
>> >
>> > Hello
>> >
>> > This is patch for solve issue with drupal's cookie
>> >
>> > With best regards
>> > Serge Maslyukov
>> >
>> > From: Wolfgang Fahl <[email protected]>
>> > To: Serge Maslyukov <[email protected]>
>> > Cc: [email protected]
>> > Sent: Thursday, February 12, 2009 11:28:26 AM
>> > Subject: Re: HttpUnit
>> >
>> > Serge,
>> >
>> > thanks for the overview. For a start you can send me your results and
>> > I'll commit them after discussing details with you. After a while of
>> > doing so you' should be familiar with the procedures and rules we are
>> > following and I assume Russel will be more likely to give you direct
>> > committer right.
>> >
>> > I'm looking forward to your contribution
>> >
>> > Wolfgang
>> > >
>> > > Hello Wolfgang
>> > >
>> > > I wrote to Russel, but not receive response from him. Can you ask him
>> > > about me?
>> > >
>> > > My primary area of elaboration is cookie, script-less processing and
>> > > improve with maven integration.
>> > > cookie - I use httpunit to test my drupal site and I have some
>> problem
>> > > with processing of cooke in httpunit. I already fix this issue and
>> can
>> > > post it as patch
>> > >
>> > > script-less processing - httpunit always upload script files from
>> > site.
>> > >HttpUnitOptions.setScriptingEnabled(false) not control of this
>> > behavior.
>> > >
>> > > maven - build realeses with javadoc and source files. I use IDEA and
>> > > after processing of my pom.xml file, I lost manualy created refs to
>> > src
>> > > and javadoc.
>> > >
>> > >
>> > >
>> > >
>> > > With best regards
>> > > Serge Maslyukov
>> > >
>> > > From: Wolfgang Fahl <[email protected]>
>> > > To: Serge Maslyukov <[email protected]>
>> > > Cc: [email protected]
>> > > Sent: Wednesday, February 11, 2009 4:14:55 PM
>> > > Subject: Re: HttpUnit
>> > >
>> > > Hi Serge,
>> > >
>> > > thank you for your interest in becoming a httpunit committer.
>> > > you wrote:
>> > > > Can you add me as commiter to HttpUnit project?
>> > > Russell is the project administrator - you'd have to contact him
>> > >directly.
>> > > > My personal page at sf.net -
>> > https://sourceforge.net/users/serg_main/
>> > > > and main project - https://sourceforge.net/projects/riverock/
>> > > Would you please elaborate a bit on what you intend to do with
>> > httpunit
>> > > comitter rights?
>> > >
>> > >Cheers
>> > >Wolfgang
>> > >
>> > > BITPlan - smart solutions
>> > > Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
>> > > Tel. +49 2154 811-480, Fax +49 2154 811-481
>> > > Web: http://www.bitplan.de
>> > > bitplan GmbH, Willich - HRB 6820 Krefeld, VAT-ID: 10258040548,
>> > Geschäftsführer: Wolfgang
>> > >Fahl
>> > >
>> > >
>> > >
>> > >
>> > >
>> > >
>> >
>> >
>> >
>> > BITPlan - smart solutions
>> > Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
>> > Tel. +49 2154 811-480, Fax +49 2154 811-481
>> > Web: http://www.bitplan.de
>> > bitplan GmbH, Willich - HRB 6820 Krefeld, VAT-ID: 10258040548,
>> Geschäftsführer: Wolfgang
>> > Fahl
>> >
>> >
>> >
>> >
>> >
>> >
>>
>>
>> *
>> *
>> *BITPlan* - smart solutions
>> Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
>> Tel. +49 2154 811-480, Fax +49 2154 811-481
>> Web: http://www.bitplan.de
>> bitplan GmbH, Willich - HRB 6820 Krefeld, VAT-ID: 10258040548,
>> Geschäftsführer: Wolfgang Fahl
>>
>>
>
>
> --
>
> BITPlan - smart solutions
> Wolfgang Fahl
> Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
> Tel. +49 2154 811-480, Fax +49 2154 811-481
> Web:http://www.bitplan.de
> BITPlan GmbH, Willich - HRB 6820 Krefeld, Steuer-Nr.: 10258040548, Geschäftsführer: Wolfgang Fahl
>
>
--
BITPlan - smart solutions
Wolfgang Fahl
Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
Tel. +49 2154 811-480, Fax +49 2154 811-481
Web: http://www.bitplan.de
BITPlan GmbH, Willich - HRB 6820 Krefeld, Steuer-Nr.: 10258040548, Geschäftsführer: Wolfgang Fahl
--------------010902040806090702030303
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Serge,<br>
<br>
thank you for your patch<br>
subversion 1068 has it.<br>
<br>
Wolfgang<br>
<br>
Am 23.01.10 16:14, schrieb Serge Maslyukov:
<blockquote cite="mid:[email protected]"
type="cite">
<style type="text/css"><!-- DIV {margin:0px;} --></style>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;">Hi<br>
<br>
<span>There is a patch for tripple dotted url, i.e. <a
moz-do-not-send="true" target="_blank"
href="http://en.wikipedia.org/wiki/...And_Found">http://en.wikipedia.org/wiki/...And_Found</a></span><br>
<br>
<br>
Index: src/com/meterware/httpunit/WebRequest.java<br>
===================================================================<br>
--- src/com/meterware/httpunit/WebRequest.java (revision 1062)<br>
+++ src/com/meterware/httpunit/WebRequest.java (working copy)<br>
@@ -142,7 +142,7 @@<br>
<br>
private String getNormalizedPath( String path ) {<br>
if (path.lastIndexOf( "//" ) > path.lastIndexOf( "://" ) +
1) return getNormalizedPath( stripDoubleSlashes( path ) );<br>
- if (path.indexOf( "/.." ) > 0) return getNormalizedPath(
stripUpNavigation( path ) );<br>
+ if (path.indexOf( "/../" )>0 || path.endsWith("/.."))
return getNormalizedPath( stripUpNavigation( path ) );<br>
if (path.indexOf( "/./" ) > 0) return getNormalizedPath(
stripInPlaceNavigation( path ) );<br>
return path;<br>
}<br>
Index: test/com/meterware/httpunit/NormalizeURLTest.java<br>
===================================================================<br>
--- test/com/meterware/httpunit/NormalizeURLTest.java (revision 1062)<br>
+++ test/com/meterware/httpunit/NormalizeURLTest.java (working copy)<br>
@@ -239,6 +239,10 @@<br>
<span> assertEquals( "URL",
request.getURL().toExternalForm(), "<a moz-do-not-send="true"
target="_blank" href="http://host.name/file.html">http://host.name/file.html</a>"
);</span><br>
}<br>
<br>
+ public void testTripleDottedPath() throws Exception {<br>
<span>+ WebRequest request = new GetMethodWebRequest( "<a
moz-do-not-send="true" target="_blank"
href="http://en.wikipedia.org/wiki/...And_Found">http://en.wikipedia.org/wiki/...And_Found</a>"
);</span><br>
<span>+ assertEquals( "URL",
request.getURL().toExternalForm(), "<a moz-do-not-send="true"
target="_blank" href="http://en.wikipedia.org/wiki/...And_Found">http://en.wikipedia.org/wiki/...And_Found</a>"
);</span><br>
+ }<br>
<br>
/*<br>
* Test relative URLs with directory navigation.<br>
<br>
<br>
<div> </div>
With best regards<br>
Serge Maslyukov
<div><br>
</div>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;"><br>
<div
style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font
face="Tahoma" size="2">
<hr size="1"><b><span style="font-weight: bold;">From:</span></b>
Serge Maslyukov <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">To:</span></b> Wolfgang Fahl
<a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">Cc:</span></b>
<a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a>; Discussion of use and development of HttpUnit
<a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">Sent:</span></b> Tue, December
22, 2009 11:32:33 PM<br>
<b><span style="font-weight: bold;">Subject:</span></b> Re: HttpUnit<br>
</font><br>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;">Hello,
<font face="Tahoma" size="2">Wolfgang </font><br>
<br>
There is a patch for an issue with non standard content type declaration<br>
i.e.: text/html charset=windows-1251 <br>
<br>
I already sent it to you. May be my e-mail was dropped to spam (.<br>
<br>
<br>
Index: src/com/meterware/httpunit/HttpUnitUtils.java<br>
===================================================================<br>
--- src/com/meterware/httpunit/HttpUnitUtils.java (revision 1062)<br>
+++ src/com/meterware/httpunit/HttpUnitUtils.java Tue Dec 22
23:23:06 MSK 2009<br>
@@ -76,7 +76,7 @@<br>
public static String[] parseContentTypeHeader( String header ) {<br>
String[] result = new String[] { "text/plain", null };<br>
if (header.trim().length()>0){<br>
- StringTokenizer st = new StringTokenizer( header, ";=" );<br>
+ StringTokenizer st = new StringTokenizer( header, ";= " );<br>
result[0] = st.nextToken();<br>
while (st.hasMoreTokens()) {<br>
String parameter = st.nextToken();<br>
Index: test/com/meterware/httpunit/HttpUnitUtilsTest.java<br>
===================================================================<br>
--- test/com/meterware/httpunit/HttpUnitUtilsTest.java Sat Dec 05
18:48:31 MSK 2009<br>
+++ test/com/meterware/httpunit/HttpUnitUtilsTest.java Sat Dec 05
18:48:31 MSK 2009<br>
@@ -0,0 +1,31 @@<br>
+package com.meterware.httpunit;<br>
+<br>
+import junit.framework.TestCase;<br>
+<br>
+/**<br>
+ * User: SergeMaslyukov<br>
+ * Date: 05.12.2009<br>
+ * Time: 18:29:04<br>
+ */<br>
+public class HttpUnitUtilsTest extends TestCase {<br>
+<br>
+ public void testParseContentTypeHeader() throws Exception {<br>
+ String[] ct;<br>
+ ct = HttpUnitUtils.parseContentTypeHeader("text/html
charset=windows-1251");<br>
+ assertEquals(2, ct.length);<br>
+ assertEquals("text/html", ct[0]);<br>
+ assertEquals("windows-1251", ct[1]);<br>
+ ct = HttpUnitUtils.parseContentTypeHeader("text/html;
charset=utf-8");<br>
+ assertEquals(2, ct.length);<br>
+ assertEquals("text/html", ct[0]);<br>
+ assertEquals("utf-8", ct[1]);<br>
+ ct = HttpUnitUtils.parseContentTypeHeader("text/html; charset
= utf-8");<br>
+ assertEquals(2, ct.length);<br>
+ assertEquals("text/html", ct[0]);<br>
+ assertEquals("utf-8", ct[1]);<br>
+ ct = HttpUnitUtils.parseContentTypeHeader("text/html;
charset=\"iso-8859-8\"");<br>
+ assertEquals(2, ct.length);<br>
+ assertEquals("text/html", ct[0]);<br>
+ assertEquals("iso-8859-8", ct[1]);<br>
+ }<br>
+}<br>
<br>
<div> </div>
With best regards<br>
Serge Maslyukov
<div><br>
</div>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;"><br>
<div
style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font
face="Tahoma" size="2">
<hr size="1"><b><span style="font-weight: bold;">From:</span></b>
Wolfgang Fahl <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">To:</span></b> Serge Maslyukov
<a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">Cc:</span></b>
<a class="moz-txt-link-abbreviated" href="mailto:[email protected]">[email protected]</a>; Discussion of use and development of HttpUnit
<a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">Sent:</span></b> Tue, December
22, 2009 6:39:01 PM<br>
<b><span style="font-weight: bold;">Subject:</span></b> Re: HttpUnit<br>
</font><br>
<title></title>
Serge,<br>
<br>
thanx for the patch.<br>
1062 has it:<br>
<a moz-do-not-send="true" rel="nofollow" class="moz-txt-link-freetext"
target="_blank"
href="http://httpunit.svn.sourceforge.net/viewvc/httpunit?view=rev&revision=1062">http://httpunit.svn.sourceforge.net/viewvc/httpunit?view=rev&revision=1062</a><br>
<br>
I have added two tests and solved the issue slightly differently by
postponing the issue to the parsing phase.<br>
Also I have tried to work around the current regression problems i
think there is an issue with defineResource if a resource has to be
redefined - I assume the cleanup<br>
is not properly done and therefore have modified the tests to create
resources with unique names instead which should not defeat the test
purpose at all.<br>
<br>
Have a good christmas time and keep up the good work!<br>
<br>
Wolfgang<br>
<br>
Am 20.12.09 14:55, schrieb Serge Maslyukov:
<blockquote type="cite">
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;">Hello<br>
<div> <br>
This is a new path for issue when server return empty content type
value:<br>
<br>
Index: src/com/meterware/httpunit/WebResponse.java<br>
===================================================================<br>
--- src/com/meterware/httpunit/WebResponse.java (revision 1061)<br>
+++ src/com/meterware/httpunit/WebResponse.java (working copy)<br>
@@ -1308,7 +1308,7 @@<br>
private void readContentTypeHeader() {<br>
String contentHeader = (_contentHeader != null) ?
_contentHeader<br>
:
getHeaderField( "Content-type" );<br>
- if (contentHeader == null) {<br>
+ if (contentHeader == null || contentHeader.trim().length()==0)
{<br>
_contentType = HttpUnitOptions.getDefaultContentType();<br>
setCharacterSet( HttpUnitOptions.getDefaultCharacterSet()
);<br>
_contentHeader = _contentType + ";charset=" +
_characterSet; <br>
<br>
<br>
Sorry, without test case.<br>
<br>
</div>
With best regards<br>
Serge Maslyukov
<div><br>
</div>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;"><br>
<div
style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font
face="Tahoma" size="2">
<hr size="1"><b><span style="font-weight: bold;">From:</span></b>
Serge Maslyukov <a moz-do-not-send="true" rel="nofollow"
class="moz-txt-link-rfc2396E" ymailto="mailto:[email protected]"
target="_blank" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">To:</span></b> <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-abbreviated"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]">[email protected]</a><br>
<b><span style="font-weight: bold;">Cc:</span></b>
<a moz-do-not-send="true" rel="nofollow"
class="moz-txt-link-abbreviated" ymailto="mailto:[email protected]"
target="_blank" href="mailto:[email protected]">[email protected]</a><br>
<b><span style="font-weight: bold;">Sent:</span></b> Sat, December
5,
2009 6:57:25 PM<br>
<b><span style="font-weight: bold;">Subject:</span></b> Re: HttpUnit<br>
</font><br>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;">Hello<br>
<br>
There is a patch for an issue with non standard content type declaration<br>
i.e.: text/html charset=windows-1251<br>
<div> </div>
With best regards<br>
Serge Maslyukov
<div><br>
</div>
<div
style="font-family: Courier New,courier,monaco,monospace,sans-serif; font-size: 8pt;"><br>
<div
style="font-family: times new roman,new york,times,serif; font-size: 12pt;"><font
face="Tahoma" size="2">
<hr size="1"><b><span style="font-weight: bold;">From:</span></b>
Wolfgang Fahl <a moz-do-not-send="true" rel="nofollow"
class="moz-txt-link-rfc2396E" ymailto="mailto:[email protected]"
target="_blank" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">To:</span></b> Serge Maslyukov
<a moz-do-not-send="true" rel="nofollow"
class="moz-txt-link-rfc2396E" ymailto="mailto:[email protected]"
target="_blank" href="mailto:[email protected]"><[email protected]></a><br>
<b><span style="font-weight: bold;">Sent:</span></b> Fri, March 13,
2009 5:34:50 PM<br>
<b><span style="font-weight: bold;">Subject:</span></b> Re: HttpUnit<br>
</font><br>
<title></title>
<div align="left"><font face="Courier New" size="2"> <span
style="font-size: 10pt;">Serge,</span></font> </div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;">sorry for the delay in responding. </span></font>
</div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;">Excellent work!</span></font> </div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;">SVN Version 1020 has your patch included.</span></font>
</div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;">I'm looking forward to more of this ...</span></font>
</div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;">Wolfgang</span></font> </div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Hello</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> This is patch for solve
issue with drupal's cookie</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> With best regards</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Serge Maslyukov </span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> From: Wolfgang Fahl <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-rfc2396E"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]"><[email protected]></a></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> To: Serge Maslyukov <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-rfc2396E"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]"><[email protected]></a></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Cc: <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-abbreviated"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]">[email protected]</a></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Sent: Thursday, February
12, 2009 11:28:26 AM</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Subject: Re: HttpUnit</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Serge,</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> thanks for the overview.
For a start you can send me your results
and </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> I'll commit them after
discussing details with you. After a while
of </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> doing so you' should be
familiar with the procedures and rules we
are </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> following and I assume
Russel will be more likely to give you
direct </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> committer right.</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> I'm looking forward to
your contribution</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Wolfgang</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Hello Wolfgang</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > I wrote to Russel,
but not receive response from him. Can you
ask him</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > about me?</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > My primary area of
elaboration is cookie, script-less
processing and</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > improve with maven
integration.</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > cookie - I use
httpunit to test my drupal site and I have
some problem</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > with processing of
cooke in httpunit. I already fix this
issue and can</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > post it as patch</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > script-less
processing - httpunit always upload script files
from </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> site.</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">>
>HttpUnitOptions.setScriptingEnabled(false) not control of this </span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> behavior.</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > maven - build
realeses with javadoc and source files. I use
IDEA and</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > after processing of
my pom.xml file, I lost manualy created
refs to </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> src</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > and javadoc.</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > With best regards</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Serge Maslyukov</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > From: Wolfgang Fahl <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-rfc2396E"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]"><[email protected]></a></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > To: Serge Maslyukov <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-rfc2396E"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]"><[email protected]></a></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Cc: <a
moz-do-not-send="true" rel="nofollow" class="moz-txt-link-abbreviated"
ymailto="mailto:[email protected]" target="_blank"
href="mailto:[email protected]">[email protected]</a></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Sent: Wednesday,
February 11, 2009 4:14:55 PM</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Subject: Re: HttpUnit</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Hi Serge,</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > thank you for your
interest in becoming a httpunit committer.</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > you wrote:</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > > Can you add me
as commiter to HttpUnit project?</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Russell is the
project administrator - you'd have to contact
him</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> >directly.</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > > My personal
page at sf.net - </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;"><span>> <a
moz-do-not-send="true" rel="nofollow" target="_blank"
href="https://sourceforge.net/users/serg_main/">https://sourceforge.net/users/serg_main/</a></span></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;"><span>> > > and main
project - <a moz-do-not-send="true" rel="nofollow" target="_blank"
href="https://sourceforge.net/projects/riverock/">https://sourceforge.net/projects/riverock/</a></span></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Would you please
elaborate a bit on what you intend to do
with </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> httpunit</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > comitter rights?</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> >Cheers</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> >Wolfgang</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > BITPlan - smart
solutions</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Pater-Delp-Str. 1,
D-47877 Willich Schiefbahn</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > Tel. +49 2154
811-480, Fax +49 2154 811-481</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;"><span>> > Web: <a
moz-do-not-send="true" rel="nofollow" target="_blank"
href="http://www.bitplan.de">http://www.bitplan.de</a></span></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> > bitplan GmbH,
Willich - HRB 6820 Krefeld, VAT-ID:
10258040548, </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Geschäftsführer: Wolfgang</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> >Fahl</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> ></span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> BITPlan - smart solutions</span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Pater-Delp-Str. 1,
D-47877 Willich Schiefbahn</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Tel. +49 2154 811-480,
Fax +49 2154 811-481</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;"><span>> Web: <a
moz-do-not-send="true" rel="nofollow" target="_blank"
href="http://www.bitplan.de">http://www.bitplan.de</a></span></span></font>
</div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> bitplan GmbH, Willich -
HRB 6820 Krefeld, VAT-ID: 10258040548,
Geschäftsführer: Wolfgang </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> Fahl</span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font color="#7f0000" face="Courier New"
size="2"><span style="font-size: 10pt;">> </span></font> </div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font face="Courier New" size="2"><span
style="font-size: 10pt;"> <br>
</span> </font></div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;"> <b><br>
</b> </span></font> </div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;"> <b>BITPlan</b> - smart solutions</span></font>
</div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;">Pater-Delp-Str. 1, D-47877 Willich Schiefbahn</span></font>
</div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;">Tel. +49 2154 811-480, Fax +49 2154 811-481</span></font>
</div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;"><span>Web: <a moz-do-not-send="true"
rel="nofollow" target="_blank" href="http://www.bitplan.de">http://www.bitplan.de</a></span></span></font>
</div>
<div align="left"> <font face="Arial" size="2"><span
style="font-size: 10pt;">bitplan GmbH, Willich - HRB 6820 Krefeld,
VAT-ID: 10258040548,
Geschäftsführer: Wolfgang Fahl</span></font> </div>
<div align="left"> </div>
</div>
</div>
</div>
<br>
</div>
</div>
</div>
<br>
</blockquote>
<br>
<br>
<pre class="moz-signature">--
BITPlan - smart solutions
Wolfgang Fahl
Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
Tel. +49 2154 811-480, Fax +49 2154 811-481
Web: <a moz-do-not-send="true" rel="nofollow"
class="moz-txt-link-freetext" target="_blank"
href="http://www.bitplan.de">http://www.bitplan.de</a>
BITPlan GmbH, Willich - HRB 6820 Krefeld, Steuer-Nr.: 10258040548, Geschäftsführer: Wolfgang Fahl </pre>
</div>
</div>
</div>
<br>
</div>
</div>
<!-- cg3.c2.mail.ac4.yahoo.com compressed/chunked Fri Jan 22 11:55:18 PST 2010 -->
</div>
<br>
</blockquote>
<br>
<br>
<pre class="moz-signature" cols="72">--
BITPlan - smart solutions
Wolfgang Fahl
Pater-Delp-Str. 1, D-47877 Willich Schiefbahn
Tel. +49 2154 811-480, Fax +49 2154 811-481
Web: <a class="moz-txt-link-freetext" href="http://www.bitplan.de">http://www.bitplan.de</a>
BITPlan GmbH, Willich - HRB 6820 Krefeld, Steuer-Nr.: 10258040548, Geschäftsführer: Wolfgang Fahl </pre>
</body>
</html>
--------------010902040806090702030303--
--===============0725438928518616853==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
------------------------------------------------------------------------------
--===============0725438928518616853==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
_______________________________________________
Httpunit-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/httpunit-develop
--===============0725438928518616853==--