<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel">
    <title>gmane.comp.python.enthought.devel</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30618"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30617"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30616"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30615"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30614"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30613"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30612"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30611"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30610"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30609"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30608"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30607"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30606"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30605"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30604"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30603"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30602"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30601"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30600"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30599"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30618">
    <title>Re: enaml - focusing a widget at initialization time</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30618</link>
    <description>&lt;pre&gt;
Oops!  Thank you for pointing this out.  :)

I can confirm that using this pattern works for focusing a different widget on initialization (if using the 'qt4' backend!), until focus manipulation is exposed in an enaml API as noted at https://github.com/enthought/enaml/issues/160:

enamldef Main(MainWindow):
    Container:
        Field:
            id: field1
        Field:
            id: field2
            initialized :: 
                toolkit_widget.setFocus()



&lt;/pre&gt;</description>
    <dc:creator>Matthew Scott</dc:creator>
    <dc:date>2012-05-25T15:32:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30617">
    <title>Re: enaml - focusing a widget at initialization time</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30617</link>
    <description>&lt;pre&gt;
Correct, we have not exposed any focus manipulation APIs yet. I have
entered a ticket to track this:

  https://github.com/enthought/enaml/issues/160


QWidget.focusWidget() does not set the focus. It just returns the
widget with the focus.

http://qt-project.org/doc/qt-4.7/qwidget.html#id-1578ce97-cec8-4e41-b88e-5f42bca169aa

You want QWidget.setFocus() instead:

http://qt-project.org/doc/qt-4.7/qwidget.html#id-884d6185-7064-48a7-b5a8-7ac7eda26092

&lt;/pre&gt;</description>
    <dc:creator>Robert Kern</dc:creator>
    <dc:date>2012-05-25T09:22:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30616">
    <title>enaml - focusing a widget at initialization time</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30616</link>
    <description>&lt;pre&gt;I'm trying to focus a widget at initialization time. 

For example, I have the following structure in my .enaml file.  The first widget to gain focus is 'csv_editor'.  However, I want 'field' to be focused.

enamldef Main(MainWindow):
    Container:
        Label:
            text = 'CSV editor'
        Label:
            text = '(first row is column name/title mapping)'
        TextEditor:
            id: csv_editor
            initialized :: 
                set_text(DEFAULT_CSV)
        Label:
            text = 'FilterField control'
        Field:
            id: field
        TableView:
            id: filter_table
            item_model = ListModel([])
            vertical_header_visible = False
            visible &amp;lt;&amp;lt; field.value.strip() != ''

I couldn't find anything in enaml.components that indicated an attribute or method that could be used to set focus.  

However I did track down 'toolkit_widget', and that lets me call upon Qt's 'focusWidget()' method:

            initialized ::
                &lt;/pre&gt;</description>
    <dc:creator>Matthew Scott</dc:creator>
    <dc:date>2012-05-25T06:13:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30615">
    <title>Re: problem getting panel or subpanel into existing qt app</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30615</link>
    <description>&lt;pre&gt;That fixed it. Thank you.
Chris

On Wed, May 23, 2012 at 11:01 AM, Robert Kern &amp;lt;rkern-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:
&lt;/pre&gt;</description>
    <dc:creator>Chris Kees</dc:creator>
    <dc:date>2012-05-24T21:04:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30614">
    <title>Re: problem getting panel or subpanel into existing qt app</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30614</link>
    <description>&lt;pre&gt;
Traits UI doesn't parent things properly when using kind='subpanel' on
Qt. This is how to work around it:

  ui = ns.edit_traits(parent=ns.frameWidget,kind='subpanel')
  ui.control.setParent(ns.frameWidget)

&lt;/pre&gt;</description>
    <dc:creator>Robert Kern</dc:creator>
    <dc:date>2012-05-23T16:01:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30613">
    <title>problem getting panel or subpanel into existing qtapp</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30613</link>
    <description>&lt;pre&gt;Hi,

I'm trying to add a traits editor to an existing qt tab widget. The
following bit of code adds a tab but the traits editor is not visible.
The line commented out pops up a standard editor separate from the
main window. Any idea what I'm doing wrong?

Thanks,
Chris

            ns =
NumericalSolution.NS_base(so,pList,nList,sList,opts,simFlagsList)
            ns.frameWidget = vtkViewers.QtGui.QFrame(vtkViewers.g.mainWindow)
            ns.hbox = vtkViewers.QtGui.QHBoxLayout()
            ns.frameWidget.setLayout(ns.hbox)
            vtkViewers.g.tabWidget.addTab(ns.frameWidget,"NumericalSolution")
            vtkViewers.g.tabWidget.setCurrentWidget(ns.frameWidget)
            ns.edit_traits(parent=ns.frameWidget,kind='subpanel')
            #ns.edit_traits()
&lt;/pre&gt;</description>
    <dc:creator>Chris Kees</dc:creator>
    <dc:date>2012-05-23T15:21:06</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30612">
    <title>Re: trait views</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30612</link>
    <description>&lt;pre&gt;Opps, actually found this in the archive
https://mail.enthought.com/pipermail/enthought-dev/2008-March/013446.html


Should have dug for a few more minutes before emailing, thought the hour I spent was enough to justify bugging everyone....

Ross



________________________________
 From: Adam Hughes &amp;lt;hugadams-X40cu4teqwPD0P1m9PE5KA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;
To: Ross Harder &amp;lt;brussel13-/E1597aS9LQAvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt;; enthought-dev-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org 
Sent: Thursday, May 17, 2012 5:43 PM
Subject: Re: [Enthought-Dev] trait views
 

Is this along the lines of what you're trying to do:

http://code.enthought.com/projects/traits/docs/html/TUIUG/advanced_view.html


On Thu, May 17, 2012 at 6:41 PM, Ross Harder &amp;lt;brussel13-/E1597aS9LQAvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

Hi,
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Ross Harder</dc:creator>
    <dc:date>2012-05-17T22:58:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30611">
    <title>Re: trait views</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30611</link>
    <description>&lt;pre&gt;Is this along the lines of what you're trying to do:

http://code.enthought.com/projects/traits/docs/html/TUIUG/advanced_view.html

On Thu, May 17, 2012 at 6:41 PM, Ross Harder &amp;lt;brussel13-/E1597aS9LQAvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-17T22:43:56</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30610">
    <title>trait views</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30610</link>
    <description>&lt;pre&gt;Hi,

I'd like to have a traited class define several different views of it's traits but also keep the default view of all of it's traits intact without explicitly defining that view (the real class I am trying to do this with has many traits).   Is there a simple way to keep the default, show everything, view around and also define custom views that can be incorporated into the view of a class that contains an instance of the class with tons of traits?

 Below is a simplification of what I have been trying.  

from traits.api import HasTraits, Float, Instance, Int
from traitsui.api import View, Item, InstanceEditor


class Params(HasTraits):
  thing1=Float(1.0)
  thing2=Float(2.0)
  thing3=Int(3)

  l=[Item('thing2')]
  view1=View(l)

  def default_traits_view(self):
    alltraits=[]
    for k,v in self.__dict__.iteritems():
      print k, type(self.__dict__[k]) , type(self.__dict__[k]).__name__=='int'
      alltraits.append(Item(str(k)))
    self.view_all=View(alltraits)
    return 'v&lt;/pre&gt;</description>
    <dc:creator>Ross Harder</dc:creator>
    <dc:date>2012-05-17T22:41:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30609">
    <title>Re: ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30609</link>
    <description>&lt;pre&gt;Thanks a lot to all of you for your effort to provide us with this amazing
set of tools ....
I'm eager to learn more about Enaml (mostly) and Encore .....

Just a bit more: for Enaml there is also the talk of Chris Colbert posted
in your blog:
http://blog.enthought.com/page/4/

while the webinar
http://www.enthought.com/repo/epd/webinars/2011-12DeclarativeUIsEnaML/ is
not accessible if
you don't have an epd account (I guess)

Cheers,
Eraldo


On Thu, May 17, 2012 at 4:38 AM, Adam Hughes &amp;lt;hugadams-X40cu4teqwPD0P1m9PE5KA&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Eraldo Pomponi</dc:creator>
    <dc:date>2012-05-17T08:11:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30608">
    <title>Re: ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30608</link>
    <description>&lt;pre&gt;Thanks guys.

On Wed, May 16, 2012 at 10:34 PM, Jonathan Rocher &amp;lt;jrocher-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-17T02:38:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30607">
    <title>Re: ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30607</link>
    <description>&lt;pre&gt;I would add that there is also a webinar about enaml though a few months
old as well:
http://www.enthought.com/repo/epd/webinars/2011-12DeclarativeUIsEnaML/

Jonathan

On Wed, May 16, 2012 at 9:18 PM, Corran Webster &amp;lt;cwebster-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:



&lt;/pre&gt;</description>
    <dc:creator>Jonathan Rocher</dc:creator>
    <dc:date>2012-05-17T02:34:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30606">
    <title>Re: ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30606</link>
    <description>&lt;pre&gt;The basic documentation for encore is on out docs site:

http://docs.enthought.com/encore/

There are docs on Enaml there as well, but they are about 3 months out of
date, and the API has changed a lot since then - the examples are a better
place to go for how-to.

&lt;/pre&gt;</description>
    <dc:creator>Corran Webster</dc:creator>
    <dc:date>2012-05-17T02:18:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30605">
    <title>Re: ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30605</link>
    <description>&lt;pre&gt;I'm looking forward to learning about encore and enami.  Besides the
examples on github, is there yet any form of tutorial on these new projects?

On Wed, May 16, 2012 at 9:39 PM, Ilan Schnell &amp;lt;ischnell-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-17T01:57:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30604">
    <title>ANN: ETS 4.2 released</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30604</link>
    <description>&lt;pre&gt;Hello all,

I'm happy to announce that ETS 4.2 is now released.
This release adds two new projects encore and enaml
to ETS.

As usual, for convenience, I've created a single (44MB)
tarball which contains the source tarballs of all proejcts:
http://www.enthought.com/repo/ets/ALLETS-4.2.0.tar

EPD 7.3, which will be released next Wednesday, May 23rd,
will feature this ETS release.

- Ilan
&lt;/pre&gt;</description>
    <dc:creator>Ilan Schnell</dc:creator>
    <dc:date>2012-05-17T01:39:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30603">
    <title>Re: enpkg error</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30603</link>
    <description>&lt;pre&gt;Oh I see, the hidden installers don't come with a subscription because the
subscription also gives access to the webinars and other features, correct?

On Wed, May 16, 2012 at 7:08 PM, Jonathan March &amp;lt;jmarch-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-16T23:48:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30602">
    <title>Re: enpkg error</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30602</link>
    <description>&lt;pre&gt;


Indeed. If you subscribe, you will receive a password which can be used
with your existing installation.

Parenthetically, let me also mention that many Linux EPD users simply
install EPD into a directory to which they have full permissions.


_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Jonathan March</dc:creator>
    <dc:date>2012-05-16T23:08:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30601">
    <title>Re: enpkg error</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30601</link>
    <description>&lt;pre&gt;Yes this is probably the problem.  When I installed EPD, I had put in a
request through academic use, and was sent a link to hidden installers.
Through this I never had to make an account for the repo.  Is it possible
to make a repo account after the fact?  If not, I can just reinstall EPD
7.2 fresh.

On Wed, May 16, 2012 at 4:57 PM, Robert Kern &amp;lt;rkern-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-16T21:56:43</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30600">
    <title>Re: enpkg error</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30600</link>
    <description>&lt;pre&gt;
Ah, you probably don't have a ~root/.enstallerrc, so it's just looking
at the free repos. You can re-enter your authentication information as
root:

  $ sudo /usr/local/EPD/bin/enpkg --userpass

Alternately, I think

  $ sudo -E enpkg epd

will keep your current environment, but I could be misreading the man page.

&lt;/pre&gt;</description>
    <dc:creator>Robert Kern</dc:creator>
    <dc:date>2012-05-16T20:57:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30599">
    <title>Re: enpkg error</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30599</link>
    <description>&lt;pre&gt;Thanks Robert.  I tried putting the full path in. Any idea why it would say
the following:

glue&amp;lt; at &amp;gt;glue-pc:~/Dropbox/Curve_Analysis_Traits/Curve_analysis_traits_v3$ sudo
/usr/local/EPD/bin/enpkg epd
prefix: /usr/local/EPD
No distribution found for requirement 'epd'.
EPD-7.1-2.egg was installed on: Fri Nov 11 14:28:27 2011


On Wed, May 16, 2012 at 4:35 PM, Robert Kern &amp;lt;rkern-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-16T20:44:00</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.python.enthought.devel/30598">
    <title>Re: Traits wrapper for pandas</title>
    <link>http://permalink.gmane.org/gmane.comp.python.enthought.devel/30598</link>
    <description>&lt;pre&gt;Ah I see.  Well, I'll read over the document Jonathan sent me and see how
feasible it would be to make a HasTraits subclass.  If there are any
developers that would be interested in helping and actually have spare
time, that would be great :)

On Wed, May 16, 2012 at 4:23 PM, Corran Webster &amp;lt;cwebster-SCgzsaguwNrby3iVrkZq2A&amp;lt; at &amp;gt;public.gmane.org&amp;gt;wrote:

_______________________________________________
Enthought-Dev mailing list
Enthought-Dev-oRDGkvazHdacsI7C1d+pp9BPR1lH4CV8&amp;lt; at &amp;gt;public.gmane.org
https://mail.enthought.com/mailman/listinfo/enthought-dev
&lt;/pre&gt;</description>
    <dc:creator>Adam Hughes</dc:creator>
    <dc:date>2012-05-16T20:38:08</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.python.enthought.devel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.python.enthought.devel</link>
  </textinput>
</rdf:RDF>

