[Seaside] Re: multilanguage (blog post)

Carlos Crosetti carlos.crosetti at mostar.com.ar
Tue Nov 16 23:52:57 UTC 2010


great!  I will come back with feedback soon, thanks so much
  ----- Original Message ----- 
  From: Sebastian Sastre 
  To: Seaside - general discussion 
  Sent: Tuesday, November 16, 2010 5:13 PM
  Subject: Re: [Seaside] Re: multilanguage (blog post)


  Okay, here: Multiligual web applications design ala Smalltalk

  sebastian


  o/




  On Nov 15, 2010, at 2:17 PM, Pablo Gancharov wrote:


    Yes me too!


    2010/11/15 <seaside-request at lists.squeakfoundation.org>

      Send seaside mailing list submissions to
             seaside at lists.squeakfoundation.org

      To subscribe or unsubscribe via the World Wide Web, visit
             http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
      or, via email, send a message with subject or body 'help' to
             seaside-request at lists.squeakfoundation.org

      You can reach the person managing the list at
             seaside-owner at lists.squeakfoundation.org

      When replying, please edit your Subject line so it is more specific
      than "Re: Contents of seaside digest..."


      Today's Topics:

        1. Re: multilanguage (AA)
        2. Re: making a read-only checkbox (Gilles Schtickzelle)
        3. Re: making a read-only checkbox (Diogenes Moreira)


      ----------------------------------------------------------------------

      Message: 1
      Date: Mon, 15 Nov 2010 12:04:21 +0000
      From: AA <aa at serendip.demon.co.uk>
      Subject: Re: [Seaside] multilanguage
      To: seaside at lists.squeakfoundation.org
      Message-ID: <20101115120421.d4580e44.aa at serendip.demon.co.uk>
      Content-Type: text/plain; charset=US-ASCII

      Yes, please! I'd love to hear details about how you did this...

      Amir


      On Sat, 13 Nov 2010 14:34:25 -0200
      Sebastian Sastre <sebastian at flowingconcept.com> wrote:

      > Hi Carlos,
      >
      > our apps are trilingual and we basically implemented #translated in String to delegate what to do to the session. Then the session decides the destination language and delegates the translation to the polyglot helper we've made.
      >
      > Once you have that, all you need is a little webapp that allows you to edit the phrases of each translation.
      >
      > I can promise you that this is not big deal, maybe I should blog details about it
      >
      > sebastian


      ------------------------------

      Message: 2
      Date: Mon, 15 Nov 2010 12:17:07 +0100
      From: Gilles Schtickzelle <gschtick at gmail.com>
      Subject: Re: [Seaside] making a read-only checkbox
      To: Seaside - general discussion <seaside at lists.squeakfoundation.org>
      Message-ID:
             <AANLkTi=T_Vy-y_h10EsATNUkXEK72VvDevLRZvzsFnqm at mail.gmail.com>
      Content-Type: text/plain; charset="iso-8859-1"

      Ah yes thank you!

      I had tried to add a 'disabled: true' but apparently I put it at the wrong
      place and it wasn't working.
      Now it's all good thanks.

      On Mon, Nov 15, 2010 at 11:51 AM, Nick Ager <nick.ager at gmail.com> wrote:

      > Hi Giles,
      >
      > I have a form with a bunch of checkboxes. I want some of them to be
      >> disabled depending on wether some other are checked or not.
      >> I just can't figure out how to make a read-only checkbox (so that it would
      >> still show but would be greyed out).
      >
      >
      > Try:
      >
      > html checkbox
      >  value: true;
      > disabled: true;
      > with: 'a disabled checkbox'
      >
      >
      > #disabled: works for all form elements.
      >
      >
      >
      >
      >> Is there such a thing in seaside (optimally with jquery so they can be
      >> updated on the fly when the user check/uncheck a box).
      >>
      >
      > html checkbox
      >  id: #myDisabledCheckbox;
      > value: true;
      > disabled: true;
      >  with: 'a disabled checkbox'.
      >  html checkbox
      >  value: true;
      > onClick: ((html jQuery: #myDisabledCheckbox) attributeAt: 'checked' put:
      > (html jQuery this attributeAt: 'checked'));
      >  with: 'mirror the other checkbox'
      >
      >
      > To put this example together I Googled 'jQuery checkbox' - found
      > http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/ then
      > translated the result into Seaside jQuery.
      >
      > Hope this helps
      >
      > Nick
      >
      >
      > _______________________________________________
      > seaside mailing list
      > seaside at lists.squeakfoundation.org
      > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
      >
      >
      -------------- next part --------------
      An HTML attachment was scrubbed...
      URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20101115/68ef2694/attachment.html

      ------------------------------

      Message: 3
      Date: Mon, 15 Nov 2010 08:53:12 -0300
      From: Diogenes Moreira <diogenes.moreira at gmail.com>
      Subject: Re: [Seaside] making a read-only checkbox
      To: Seaside - general discussion <seaside at lists.squeakfoundation.org>
      Message-ID:
             <AANLkTi=3aFRs-3vDi_m2v119SV527ZU5R++=L49EFGzn at mail.gmail.com>
      Content-Type: text/plain; charset=ISO-8859-1

      Here the net, not only the fish...
      The next when you need knows a property in a seaside object, take a
      look to WAHtmlCanvas and WARenderCanvas, in that objects methods
      seaside builds the htmls components. In your case, in your case the
      object whon represent to checkbox is WACheckboxTag.
      Otherwise, if the standars object don't have the properties/messages
      (that is very extrange, but may be happend) that you need, you can use
      message attributesAt:put: to set an other properties

      Best Regards

      2010/11/15, Gilles Schtickzelle <gschtick at gmail.com>:
      > Ah yes thank you!
      >
      > I had tried to add a 'disabled: true' but apparently I put it at the wrong
      > place and it wasn't working.
      > Now it's all good thanks.
      >
      > On Mon, Nov 15, 2010 at 11:51 AM, Nick Ager <nick.ager at gmail.com> wrote:
      >
      >> Hi Giles,
      >>
      >> I have a form with a bunch of checkboxes. I want some of them to be
      >>> disabled depending on wether some other are checked or not.
      >>> I just can't figure out how to make a read-only checkbox (so that it
      >>> would
      >>> still show but would be greyed out).
      >>
      >>
      >> Try:
      >>
      >> html checkbox
      >>  value: true;
      >> disabled: true;
      >> with: 'a disabled checkbox'
      >>
      >>
      >> #disabled: works for all form elements.
      >>
      >>
      >>
      >>
      >>> Is there such a thing in seaside (optimally with jquery so they can be
      >>> updated on the fly when the user check/uncheck a box).
      >>>
      >>
      >> html checkbox
      >>  id: #myDisabledCheckbox;
      >> value: true;
      >> disabled: true;
      >>  with: 'a disabled checkbox'.
      >>  html checkbox
      >>  value: true;
      >> onClick: ((html jQuery: #myDisabledCheckbox) attributeAt: 'checked' put:
      >> (html jQuery this attributeAt: 'checked'));
      >>  with: 'mirror the other checkbox'
      >>
      >>
      >> To put this example together I Googled 'jQuery checkbox' - found
      >> http://www.electrictoolbox.com/check-uncheck-checkbox-jquery/ then
      >> translated the result into Seaside jQuery.
      >>
      >> Hope this helps
      >>
      >> Nick
      >>
      >>
      >> _______________________________________________
      >> seaside mailing list
      >> seaside at lists.squeakfoundation.org
      >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
      >>
      >>
      >

      --
      Enviado desde mi dispositivo móvil


      ------------------------------

      _______________________________________________
      seaside mailing list
      seaside at lists.squeakfoundation.org
      http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside


      End of seaside Digest, Vol 95, Issue 30
      ***************************************


    _______________________________________________
    seaside mailing list
    seaside at lists.squeakfoundation.org
    http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside





------------------------------------------------------------------------------


  _______________________________________________
  seaside mailing list
  seaside at lists.squeakfoundation.org
  http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/seaside/attachments/20101116/b0506360/attachment-0001.htm


More information about the seaside mailing list