It could be that the encoding in VW is handled differently on VW causing the subStrings method not to recognize the &#39;/&#39; as tokenizer. Maybe upgrading to vw771 would solve this. I&#39;ll give it a go<div><br><div class="gmail_quote">

2010/8/27 Julian Fitzell <span dir="ltr">&lt;<a href="mailto:jfitzell@gmail.com" target="_blank">jfitzell@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

The &#39;,&#39; is correct by ANSI and also tested for in Grease...<br>
<br>
 ----- Method: GRStringTest&gt;&gt;testSubStrings (in category &#39;tests&#39;) -----<br>
 testSubStrings<br>
       &quot;#subStrings: is defined by ANSI <a href="http://5.7.10.15" target="_blank">5.7.10.15</a>:<br>
       Answer an array containing the substrings in the receiver<br>
separated by the elements of separators.&quot;<br>
       | mimeType tokens |<br>
       mimeType := &#39;application/xhtml+xml&#39;.<br>
       tokens := mimeType subStrings: &#39;/&#39;.<br>
       self assert: tokens size = 2.<br>
       self assert: tokens first = &#39;application&#39;.<br>
       self assert: tokens second = &#39;xhtml+xml&#39;.<br>
<div><div></div><div><br>
On Fri, Aug 27, 2010 at 9:48 AM, Bart Veenstra &lt;<a href="mailto:bart.veenstra@gmail.com" target="_blank">bart.veenstra@gmail.com</a>&gt; wrote:<br>
&gt; I am on vw 77 with the latest seaside 3.0 from the public repos (87 i<br>
&gt; think). I checked the seaside one click image as well, and it also used a<br>
&gt; &#39;/&#39; instead of a /$ for tokenizing a String.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; 2010/8/27 Lukas Renggli &lt;<a href="mailto:renggli@gmail.com" target="_blank">renggli@gmail.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; This is strange. What platform are you on? What version?<br>
&gt;&gt;<br>
&gt;&gt; On Thursday, August 26, 2010, Bart Veenstra &lt;<a href="mailto:bart.veenstra@gmail.com" target="_blank">bart.veenstra@gmail.com</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; &gt; Hi all,<br>
&gt;&gt; &gt; While registring applications seaside other than root, my applications<br>
&gt;&gt; &gt; where not accessible at their paths. It seemd that the dispatcher was not<br>
&gt;&gt; &gt; tokenzing the path correctly, because the it takes the &#39;/&#39; as argument<br>
&gt;&gt; &gt; instead of the $/ causing the applications to be registered at the whole<br>
&gt;&gt; &gt; path, instead of registering a WADispatcher for the sub paths.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Don&#39;t know of this is the right list for it, but it caused me some<br>
&gt;&gt; &gt; headaches yesterday evening :)<br>
&gt;&gt; &gt; Possible fix:<br>
&gt;&gt; &gt; WAAdmin register: aRequestHandlerClass at: aString in: aDispatcher<br>
&gt;&gt; &gt;       | path dispatcher |     path := aString subStrings: $/. dispatcher<br>
&gt;&gt; &gt; := path allButLast<br>
&gt;&gt; &gt;               inject: aDispatcher             into: [ :result :each |<br>
&gt;&gt; &gt;               result handlers<br>
&gt;&gt; &gt;                               at: each<br>
&gt;&gt; &gt;  ifAbsent: [ result register: WADispatcher new at: each ] ].<br>
&gt;&gt; &gt;       ^ dispatcher register: aRequestHandlerClass new at: path last<br>
&gt;&gt; &gt; Regards,<br>
&gt;&gt; &gt; Bart<br>
&gt;&gt; &gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; Lukas Renggli<br>
&gt;&gt; <a href="http://www.lukas-renggli.ch" target="_blank">www.lukas-renggli.ch</a><br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; seaside mailing list<br>
&gt;&gt; <a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
&gt;&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; seaside mailing list<br>
&gt; <a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
&gt; <a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
seaside mailing list<br>
<a href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a><br>
</div></div></blockquote></div><br></div>