<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-size:small">Hi Christoph,<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Sun, Dec 26, 2021 at 6:52 AM <<a href="mailto:christoph.thiede@student.hpi.uni-potsdam.de">christoph.thiede@student.hpi.uni-potsdam.de</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">Hi all,<br>
<br>
<br>
<b>Ad discussion theme #1:<br>
</b><br>
> If you really want to mess around with this kind of thing I'd suggest making a proper config tool that let's you configure every available key and meta combination, with saveable mappings attached to the prefs so you can have whatever you personally want.<br>
<br>
Sure, why not? But definitely not before the release. :D<br>
<br>
> That's why I would vote for showing off all the bells and whistles by default, and make it easy to disable them if they are annoying.<br>
<br>
+1<br>
<br>
> "Did you find that useful? If not you can disable it in the preferences _here_ ..."<br>
<br>
+1, but only if it can be turned off, and only after the release, of course. :D<br>
<br>
<br>
<b>Ad discussion theme #2:<br>
</b><br>
> Just a remark: out of the box, Cmd-[ is not accessible on a German Windows-type quertz keyboard because we have to use Alt Gr (which is equivalent to Ctrl+Alt) + 8 to type [ in the first place, so all modifiers that could possibly map to Cmd are already held down. Same issue with curly braces.<br>
<br>
Just to note what I have already written to Jakob in private: Even when switching my keyboard layout from Qwertz to Qwerty, I was not able to make use of Ctrl-[ or Alt+[ (Win32, VM 202112201228). Is this feature only available on Linux/macOS?<br>
<br>
<br>
<b>Ad discussion theme #3:<br>
</b><br>
> General purpose, programmable, mumble, see above. It seems as if you are making the mistake of assuming there can only be one editor setup. Currently in Squeak we do rather do that, with the editors for pretty much all text-things being the same with the same menu even when inappropriate. We should do better.<br>
<br>
+1. We already have #pluggableTextSpec vs #pluggableCodePaneSpec but something like a #contentType flag would not harm, too. :-)<br>
<br>
> > I did *not* request to remove this shortcut because I understand that some long-standing Squeakers might have gotten used to it. My argument was only not to cement this kind of "leaky abstractions". IMHO the editor should be a tool that is suitable for all applications or domains in the same way, without putting advantages or disadvantages to certain domains.<br>
> <br>
> But the editor is explicitly divided into a domain-independent TextEditor and a domain-specific SmalltalkEditor anyway.  So your objection is not relevant.  We?re discussing (I hope) the accelerator keys for the SmalltalkEditor.<br>
<br>
IMO this should rather be part of a separate subclass of SmalltalkEditor:<br>
<br>
Editor: Minimal tool for editing strings (e.g., backspace).<br>
TextEditor: Tool for editing formatted strings (e.g., adding/removing attributes).<br>
SmalltalkEditor: Tool for editing Smalltalk code (e.g., <opt>1 for adding method parameters).<br>
ControlFlowStyleSmalltalkEditor: Tool for editing Smalltalk code in the style of low-level control-flow operations such as #whileTrue, #ifTrue:/#ifFalse:, etc.<br>
<br>
> > A developer working in another domain (that abstracts from booleans/for instance, a query DSL) will be less likely interested in special shortcuts for ifTrue:/ifFalse: but more likely interested in shortcuts for message sends such as #collect:, #select:, etc. I only wanted to present this perspective before we start occupying even more shortcuts for randomly chosen selectors that might be of increased importance for a subset of users of the Smalltalk workspace.<br>
> <br>
> ifTrue:/ifFalse: are hardly randomly selected selectors, now are they?<br>
<br>
They don't play a special role in the Smalltalk syntax, do they? Booleans are just objects like Collections or Morphs. #ifTrue: is just a selector like #select: or #openInWorld. They are only handled differently by the VM/interpreter for the sake of optimization (value types, inlined special selectors, ...). But conceptually, they are nothing special in our beautifully minimal Smalltalk grammar. They do not need to be mentioned on the Smalltalk Postcard.<br>
<br>
Statistically, you are right of course that #ifTrue: might be one of the most popular selectors in most Smalltalk programs. But that is not an intrinsic property of Smalltalk <span class="gmail_default" style="font-size:small">[...]</span></blockquote><div><br></div><div class="gmail_default" style="font-size:small">but it is.  In fact, it is a general property of programming languages.  Choice is intrinsic in general purpose programming (less so in stream oriented programming), so much so that it is available in many different forms.  Smalltalk provides polymorphic dispatch and closures, from which we derive ifTrue:ifFalse: et al.  In functional languages one sees pattern matching.  In machine languages one sees conditional jumps and conditional skips.  In fact it is definitional that interesting programs involve choice.  Even the Mandelbrot set depends on choice: the typical implementation is to ask how many iterations of <img src="https://wikimedia.org/api/rest_v1/media/math/render/svg/191627a3eebdd6608c9b226786defc468b747502" class="gmail-mwe-math-fallback-image-inline" aria-hidden="true" alt="{\displaystyle f_{c}(z)=z^{2}+c}" style="border: 0px; vertical-align: -0.838ex; margin: 0px; display: inline-block; caret-color: rgb(32, 33, 34); color: rgb(32, 33, 34); font-family: sans-serif; font-size: 14px; width: 14.071ex; height: 3.176ex;"> does it take for z to converge or diverge to infinity.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">So you can rail against ifTrue:/ifFalse: but you are pissing in the rain.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Now let's have a look at the numbers.  One might think one could could keywords using:</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default"><font color="#000000" style="font-size:small">    </font><font color="#808080" style="font-size:small">|</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080" style="font-size:small">keywordCounts</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080" style="font-size:small">|</font><font color="#000000" style="font-size:small"><br>    </font><font color="#808080" style="font-size:small">keywordCounts</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><b style="font-size:small;color:rgb(0,0,0)">:=</b><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000000" style="font-size:small">Bag</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">new</font><font color="#000000" style="font-size:small">.</font><font color="#000000" style="font-size:small"><br>    </font><font color="#000000" style="font-size:small">CurrentReadOnlySourceFiles</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">cacheDuring:</font><font color="#000000" style="font-size:small"><br>        </font><font color="#008000" style="font-size:small">[</font><font color="#800000" style="font-size:small">self</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">systemNavigation</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">allSelect:</font><font color="#000000" style="font-size:small"><br>            </font><font color="#800080" style="font-size:small">[</font><font color="#000000" style="font-size:small">:</font><font color="#000080" style="font-size:small">cm</font><font color="#808080" style="font-size:small">|</font><font color="#000000" style="font-size:small"><br>            </font><font color="#000080" style="font-size:small">cm</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">selectorsDo:</font><font color="#000000" style="font-size:small"><br>                </font><font color="#800000" style="font-size:small">[</font><font color="#000000" style="font-size:small">:</font><font color="#000080" style="font-size:small">s</font><font color="#808080" style="font-size:small">|</font><font color="#000000" style="font-size:small"><br>                </font><font color="#000080" style="font-size:small">s</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">isKeyword</font><font color="#000000" style="font-size:small"><br>                    </font><font color="#000080" style="font-size:small">ifTrue:</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#00EB00" style="font-size:small">[</font><font color="#808080" style="font-size:small">keywordCounts</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">addAll:</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">s</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">keywords</font><font color="#00EB00" style="font-size:small">]</font><font color="#000000" style="font-size:small"><br>                    </font><font color="#000080" style="font-size:small">ifFalse:</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#00EB00" style="font-size:small">[</font><font color="#808080" style="font-size:small">keywordCounts</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">add:</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">s</font><font color="#00EB00" style="font-size:small">]</font><font color="#800000" style="font-size:small">]</font><font color="#000000" style="font-size:small">.</font><font color="#000000" style="font-size:small"><br>            </font><font color="#800000" style="font-size:small">false</font><font color="#800080" style="font-size:small">]</font><font color="#008000" style="font-size:small">]</font><font color="#000000" style="font-size:small">.</font><font color="#000000" style="font-size:small"><br>    </font><font color="#808080" style="font-size:small">keywordCounts</font><font color="#000000" style="font-size:small"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080" style="font-size:small">sortedCounts</font><br><br>but of course this doesn't count inlined messages.  So we have to decompile; amd let's generate a report in percentage terms:</div><div class="gmail_default"><br></div><div class="gmail_default"><font color="#000000">    </font><font color="#808080">|</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080">keywordCount</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080">|</font><font color="#000000"><br>    </font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><b style="color:rgb(0,0,0)">:=</b><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000000">Bag</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">new</font><font color="#000000">.</font><font color="#000000"><br>    </font><font color="#000000">CurrentReadOnlySourceFiles</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">cacheDuring:</font><font color="#000000"><br>        </font><font color="#008000">[</font><font color="#800000">self</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">systemNavigation</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">allSelect:</font><font color="#000000"><br>            </font><font color="#800080">[</font><font color="#000000">:</font><font color="#000080">cm</font><font color="#808080">|</font><font color="#000000"><br>            </font><font color="#000080">cm</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">methodNode</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">nodesDo:</font><font color="#000000"><br>                </font><font color="#800000">[</font><font color="#000000">:</font><font color="#000080">n</font><font color="#808080">|</font><font color="#000000"><br>                </font><font color="#000080">n</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">isMessageNode</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">ifTrue:</font><font color="#000000"><br>                    </font><font color="#00EB00">[</font><font color="#000080">n</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">selector</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">key</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">isKeyword</font><font color="#000000"><br>                        </font><font color="#000080">ifTrue:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#EB8D00">[</font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">addAll:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">n</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">selector</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">key</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">keywords</font><font color="#EB8D00">]</font><font color="#000000"><br>                        </font><font color="#000080">ifFalse:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#EB8D00">[</font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">add:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">n</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">selector</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">key</font><font color="#EB8D00">]</font><font color="#00EB00">]</font><font color="#800000">]</font><font color="#000000">.</font><font color="#000000"><br>            </font><font color="#800000">false</font><font color="#800080">]</font><font color="#008000">]</font><font color="#000000">.</font><font color="#000000"><br>    </font><font color="#808080">keywordCount</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><b style="color:rgb(0,0,0)">:=</b><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">size</font><font color="#000000">.</font><font color="#000000"><br>    </font><font color="#000000">String</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">streamContents:</font><font color="#000000"><br>        </font><font color="#008000">[</font><font color="#000000">:</font><font color="#000080">s</font><font color="#808080">|</font><font color="#000000"><br>        </font><font color="#800080">(</font><font color="#808080">keywordCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">sortedCounts</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">first:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">100</font><font color="#800080">)</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">do:</font><font color="#000000"><br>            </font><font color="#800080">[</font><font color="#000000">:</font><font color="#000080">assoc</font><font color="#808080">|</font><font color="#000000"><br>            </font><font color="#000080">s</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">nextPutAll:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">assoc</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">value</font><font color="#000000">;</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">space</font><font color="#000000">;</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">print:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">assoc</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">key</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">*</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">100.0</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">/</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#808080">keywordCount</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">maxDecimalPlaces:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">2</font><font color="#000000">;</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#000080">cr</font><font color="#800080">]</font><font color="#008000">]</font><font color="#000000">]</font><font color="#000000">.</font></div><div class="gmail_default"><font color="#000000"><br></font><font color="#000080">#</font><font color="#000000">(</font><font color="#000080">ifTrue:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">5.31</font><font color="#000000"><br></font><font color="#000080">ifFalse:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">3.13</font><font color="#000000"><br></font><font color="#000080">=</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">2.65</font><font color="#000000"><br></font><font color="#000080">at:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">2.5</font><font color="#000000"><br></font><font color="#000080">+</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">2.36</font><font color="#000000"><br></font><font color="#000080">assert:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.98</font><font color="#000000"><br></font><font color="#000080">==</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.82</font><font color="#000000"><br></font><font color="#000080">new:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.57</font><font color="#000000"><br></font><font color="#000080">to:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.41</font><font color="#000000"><br></font><font color="#000080">,</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.41</font><font color="#000000"><br></font><font color="#000080">-</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.35</font><font color="#000000"><br></font><font color="#000080">do:</font><font color="#000000"><span class="gmail-Apple-converted-space"> </span></font><font color="#800000">1.32</font><font color="#000000"><span style="caret-color: rgb(0, 0, 0);">...</span></font><br></div><div class="gmail_default"><font color="#000000"><span style="caret-color: rgb(0, 0, 0);"><br></span></font></div><div class="gmail_default"><font color="#000000"><span style="caret-color: rgb(0, 0, 0);">So ifTrue: and ifFalse: are more popular than the next three combined, almost the next four.  ifTrue: is twice as likely as the third (=).  And lest you think this is my style, the percentages in a VMMaker image are slightly less: ifTrue: 5.24%, ifFalse: 3.05%.</span></font></div><div class="gmail_default" style="font-size:small"><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex"><span class="gmail_default" style="font-size:small">[...] </span>and personally I dislike the idea of coupling statistic insights about API usage to globally predefined shortcuts in the default Trunk image. It is possible to write Smalltalk programs that use alternative APIs (the Collection API would just be one example) that never make use of the Boolean protocol.<br></blockquote><div><br></div><div class="gmail_default" style="font-size:small">Personal preference is no argument for changing the behaviour of a community-developed programming system, is it?</div><div class="gmail_default" style="font-size:small"><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">
<br>
<br>
Best,<br>
Christoph<br>
<br>
<font color="#808080">---<br>
</font><font color="#808080"><i>Sent from </i></font><font color="#808080"><i><a href="https://github.com/hpi-swa-lab/squeak-inbox-talk" target="_blank"><u><font color="#808080">Squeak Inbox Talk</font></u></a></i></font><br>
<br>
On 2021-12-25T16:03:32+01:00, <a href="mailto:marcel.taeumel@hpi.de" target="_blank">marcel.taeumel@hpi.de</a> wrote:<br>
<br>
> Hi all --<br>
> <br>
> Done. See Morphic-mt.1829. cmd+[ etc. is back if you enable the "legacy shortcuts" preference.<br>
> <br>
> Best,<br>
> Marcel<br>
> Am 25.12.2021 12:47:15 schrieb Marcel Taeumel <marcel.taeumel at <a href="http://hpi.de" target="_blank">hpi.de</a>>:<br>
> Hi all --<br>
> <br>
> I am currently collecting the US-specific TextEditor shortcuts that got lost since Squeak 5.3 to make them available again as a preference-driven event filter on instances of TextEditor. Shouldn't be that hard. I will call the preference "Legacy keyboard shortcuts (US only)" or something like that.<br>
> <br>
> You can help me do that by answering here:<br>
> <a href="http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217783.html" target="_blank">http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217783.html</a> [<a href="http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217783.html" target="_blank">http://lists.squeakfoundation.org/pipermail/squeak-dev/2021-December/217783.html</a>]<br>
> <br>
> <br>
> Thanks. :-)<br>
> <br>
> Best,<br>
> Marcel<br>
> Am 23.12.2021 21:09:53 schrieb tim Rowledge <tim at <a href="http://rowledge.org" target="_blank">rowledge.org</a>>:<br>
> <br>
> <br>
> > On 2021-12-23, at 4:39 AM, Jakob Reschke wrote:<br>
> ><br>
> > I believe that because Squeak does not have a<br>
> > reputation of being a state of the art, customizable code editor, as<br>
> > far as I am aware. (Admittedly, no hard facts in this paragraph.)<br>
> <br>
> Which is kind of sad because of course all the code is right there and is almost infinitely customizable. :-(<br>
> <br>
> tim<br>
> --<br>
> tim Rowledge; tim at <a href="http://rowledge.org" target="_blank">rowledge.org</a>; <a href="http://www.rowledge.org/tim" target="_blank">http://www.rowledge.org/tim</a><br>
> Eagles may soar, but weasels aren't sucked into jet engines.<br>
> <br>
> <br>
> <br>
> -------------- next part --------------<br>
> An HTML attachment was scrubbed...<br>
> URL: <<a href="http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20211225/321ca36f/attachment.html" target="_blank">http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20211225/321ca36f/attachment.html</a>><br>
> <br>
> <br>
</blockquote></div><br clear="all"><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div><span style="font-size:small;border-collapse:separate"><div>_,,,^..^,,,_<br></div><div>best, Eliot</div></span></div></div></div></div>