<HTML><HEAD><META http-equiv="Content-Type" content="text/html; charset=utf-8"></HEAD><BODY>I even had the table defined in my stylesheet method! Thanks. I am getting stupider and stupider with old age :-).<br><div></div><br><div></div>Come back WebConnection all is forgiven :-)<br><div></div>David<br><br><br>--------- Original Message ---------<br><b>From:</b> "jtuchel@objektfabrik.de" <jtuchel@objektfabrik.de><br><b>To:</b> "David Pennington" <david@totallyobjects.com>, "Seaside - general discussion" <seaside@lists.squeakfoundation.org><br><b>Subject:</b> Re: [Seaside] How do I find a REST request in a URL?<br><b>Date:</b> 02/10/2017 15:19:40 (Fri)<br><br>
  
    
  
  
    <div class="moz-cite-prefix">David,<br>
      <br>
      <br>
      welcome to the web ;-)<br>
      <br>
      You need style information for the table. The easiest and best
      maintainable thing is a WAFileLibrary with CSS files that define
      your table's visuel appearance.<br>
      <br>
      You can use the #style: method of your WATableTag as a start,
      however.<br>
      <br>
      something along the lines of:<br>
      <br>
      html table<br>
          style: 'border-width: 0':<br>
          with: [<br>
              html tableData: ....<br>
      <br>
      (Untested)<br>
      <br>
      HTH<br>
      <br>
      Joachim<br>
      <br>
      <br>
      <br>
      <br>
      Am 10.02.17 um 16:08 schrieb David Pennington:<br>
    </div>
    <blockquote cite="mid:04ad616a741b8d91fae665c6f553f532@totallyobjects.com" type="cite">
      
      OK so moving on, I want to put an image on the screen with the
      text to the right of it. The following code works but had a border
      to the table.<br>
      <br>
      html table: [ <br>
          html tableRow: [<br>
                  html tableData: [html image url: anImageURL'].<br>
                  html tableData:  [html text: pictureBlurb]]]<br>
      <br>
      I need t put html table frame: 'void'. somewhere to remove the
      border but I can't seem to work how to do this.<br>
      <br>
      Can anyone tell me the hidden secret?<br>
      David<br>
      <br>
      --------- Original Message ---------<br>
      <b>From:</b> <a class="moz-txt-link-rfc2396E" href="mailto:jtuchel@objektfabrik.de" target="_blank">"jtuchel@objektfabrik.de"</a>
      <a class="moz-txt-link-rfc2396E" href="mailto:jtuchel@objektfabrik.de" target="_blank"><jtuchel@objektfabrik.de></jtuchel@objektfabrik.de></a><br>
      <b>To:</b> "David Pennington" <a class="moz-txt-link-rfc2396E" href="mailto:david@totallyobjects.com" target="_blank"><david@totallyobjects.com></david@totallyobjects.com></a>,
      "Seaside - general discussion"
      <a class="moz-txt-link-rfc2396E" href="mailto:seaside@lists.squeakfoundation.org" target="_blank"><seaside@lists.squeakfoundation.org></seaside@lists.squeakfoundation.org></a><br>
      <b>Subject:</b> Re: [Seaside] How do I find a REST request in a
      URL?<br>
      <b>Date:</b> 02/10/2017 12:21:47 (Fri)<br>
      <br>
      <div class="moz-cite-prefix">David,<br>
        <br>
        you override initialRequest: in your WACompnent subclass which
        was registered as your entry point. <br>
        Don't forget to delegate to super.<br>
        <br>
        Joachim<br>
        <br>
        <br>
        Am 10.02.17 um 13:04 schrieb David Pennington:<br>
      </div>
      <blockquote cite="mid:8f0f3aec65fd8392425a81d337cea31f@totallyobjects.com" type="cite">
        <pre style="white-space: pre-wrap; word-wrap: break-word;">WAPresenter>>#initialRequest: aRequest worked for me although I would like to make a call in my code rather than having to alter the base code. Any thought on how I would do that? At the moment I am just copying the uri out to one of my instance variables in that method, which isn't very nice.<div>
</div><div><div><div>
</div>David</div>FYI, I don't have a class WABrowser in my VisualAge implementation so that line was no good to me.</div></pre>
        <br>
        --------- Original Message ---------<br>
        <b>From:</b> "Norbert Hartl" <a moz-do-not-send="true" class="moz-txt-link-rfc2396E" href="mailto:norbert@hartl.name" target="_blank"></a><br>
        <b>To:</b> "David Pennington" <a moz-do-not-send="true" class="moz-txt-link-rfc2396E" href="mailto:david@totallyobjects.com" target="_blank"></a>,
        "Seaside - general discussion" <a moz-do-not-send="true" class="moz-txt-link-rfc2396E" href="mailto:seaside@lists.squeakfoundation.org" target="_blank"></a><br>
        <b>Subject:</b> Re: [Seaside] How do I find a REST request in a
        URL?<br>
        <b>Date:</b> 02/10/2017 10:51:45 (Fri)<br>
        <br>
        <pre style="white-space:pre-wrap; white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; word-wrap:break-word;">Have a look at 

WAPresenter>>#initialRequest: aRequest
        "When a new session is started, all visible presenters (components or tasks) receive this message with the request as argument.

        A common usage for this is to initialize their state depending on the URL of the request. This is one building block for bookmarkable URL. The other is updateUrl: where you can manipulate the anchor urls generated by Seaside.

        You can not use #call: in here. Consider using a WATask instead and sending #call: in #go.

        See WABrowser for examples.
        You may want to access the WAPathConsumer (self requestContext consumer) to get a hold of the unconsumed path."


Norbert

> Am 10.02.2017 um 11:39 schrieb David Pennington :

> Hi there. I want to start a Seaside page from a standard web page. 
> I want to use a standard REST format such as <a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://www.myseasideweb.com:8080/mySeasidePage?oneSpecialImage" target="_blank">http://www.myseasideweb.com:8080/mySeasidePage?oneSpecialImage</a>.
> in mySpecialPage, I want to recover the 'oneSpecialImage' to display a chose image on the page.

> How would I do that in mySeasidePage please?
> David

> Message sent using Winmail Mail Server
> _______________________________________________
> seaside mailing list
> <a moz-do-not-send="true" class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a>
> <a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a>
</pre>
        <br>
        <hr>
        <pre>Message sent using Winmail Mail Server</pre>
        <br>
        <fieldset class="mimeAttachmentHeader"></fieldset>
        <br>
        <pre wrap="">_______________________________________________
seaside mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated" href="mailto:seaside@lists.squeakfoundation.org" target="_blank">seaside@lists.squeakfoundation.org</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside" target="_blank">http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside</a>
</pre>
      </blockquote>
      <br>
      <p><br>
      </p>
      <pre class="moz-signature" cols="72">-- 
-----------------------------------------------------------------------
Objektfabrik Joachim Tuchel          <a moz-do-not-send="true" class="moz-txt-link-freetext" href="mailto:jtuchel@objektfabrik.de" target="_blank">mailto:jtuchel@objektfabrik.de</a>
Fliederweg 1                         <a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://www.objektfabrik.de" target="_blank">http://www.objektfabrik.de</a>
D-71640 Ludwigsburg                  <a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://joachimtuchel.wordpress.com" target="_blank">http://joachimtuchel.wordpress.com</a>
Telefon: +49 7141 56 10 86 0         Fax: +49 7141 56 10 86 1

</pre>
      <br>
      <hr>
      <pre>Message sent using Winmail Mail Server</pre>
    </blockquote>
    <br>
    <p><br>
    </p>
    <pre class="moz-signature" cols="72">-- 
-----------------------------------------------------------------------
Objektfabrik Joachim Tuchel          <a class="moz-txt-link-freetext" href="mailto:jtuchel@objektfabrik.de" target="_blank">mailto:jtuchel@objektfabrik.de</a>
Fliederweg 1                         <a class="moz-txt-link-freetext" href="http://www.objektfabrik.de" target="_blank">http://www.objektfabrik.de</a>
D-71640 Ludwigsburg                  <a class="moz-txt-link-freetext" href="http://joachimtuchel.wordpress.com" target="_blank">http://joachimtuchel.wordpress.com</a>
Telefon: +49 7141 56 10 86 0         Fax: +49 7141 56 10 86 1

</pre>
  

</BODY></HTML>
<br><hr><pre>Message sent using Winmail Mail Server</pre>