<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:verdana,helvetica,sans-serif;font-size:10pt">Hi All,<br><br>How do i start Django in the eric4 environment on my ubuntu 9.10?<br><br>David<br><div><br></div><div style="font-family: verdana,helvetica,sans-serif; font-size: 10pt;"><br><div style="font-family: verdana,helvetica,sans-serif; font-size: 10pt;"><font face="Tahoma" size="2"><hr size="1"><b><span style="font-weight: bold;">From:</span></b> "eric-request@riverbankcomputing.com" &lt;eric-request@riverbankcomputing.com&gt;<br><b><span style="font-weight: bold;">To:</span></b> eric@riverbankcomputing.com<br><b><span style="font-weight: bold;">Sent:</span></b> Tue, February 16, 2010 1:00:02 PM<br><b><span style="font-weight: bold;">Subject:</span></b> Eric Digest, Vol 44, Issue 20<br></font><br>
Send Eric mailing list submissions to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br><span>&nbsp;&nbsp;&nbsp; <a target="_blank" href="http://www.riverbankcomputing.com/mailman/listinfo/eric">http://www.riverbankcomputing.com/mailman/listinfo/eric</a></span><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:eric-request@riverbankcomputing.com" href="mailto:eric-request@riverbankcomputing.com">eric-request@riverbankcomputing.com</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:eric-owner@riverbankcomputing.com" href="mailto:eric-owner@riverbankcomputing.com">eric-owner@riverbankcomputing.com</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents
 of Eric digest..."<br><br><br>Today's Topics:<br><br>&nbsp;  1. Re: How do you detect such an error? (Linos)<br>&nbsp;  2. Re: Icon Directory (detlev)<br>&nbsp;  3. Re: Switching source windows (detlev)<br>&nbsp;  4. Re: Paren matching highlighter (detlev)<br>&nbsp;  5. Adding a text file to project (Kirk Lowery)<br>&nbsp;  6. Completion popup (David Arnold)<br>&nbsp;  7. Auto-complete weird behaviour (NARCISO, Rui)<br>&nbsp;  8. Debugger crashes (Manuel Soukup)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Sun, 14 Feb 2010 10:22:45 +0100<br>From: Linos &lt;<a ymailto="mailto:info@linos.es" href="mailto:info@linos.es">info@linos.es</a>&gt;<br>To: David Arnold &lt;<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>&gt;,<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:eric@riverbankcomputing.com"
 href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: Re: [Eric] How do you detect such an error?<br>Message-ID: &lt;<a ymailto="mailto:4B77C0E5.7030604@linos.es" href="mailto:4B77C0E5.7030604@linos.es">4B77C0E5.7030604@linos.es</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br><br>Hello David,<br>&nbsp;&nbsp;&nbsp; self.connect should return True if the connection has found the signature, so <br>when for first time i write a connect and i am not sure i write "print <br>self.connect(....)"<br><br>Regards,<br>Miguel Angel.<br><br>El 14/02/10 06:48, David Arnold escribi?:<br>&gt; All,<br>&gt;<br>&gt; What do you do when your code doesn't seem to throw any errors but does not work as expected? In this case, the error lies in:<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.connect(slider, QtCore.SIGNAL('valuechanged(int)'), lcd,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
 &nbsp; QtCore.SLOT('display(int)'))<br>&gt;<br>&gt; Which should be:<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.connect(slider, QtCore.SIGNAL('valueChanged(int)'), lcd,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; QtCore.SLOT('display(int)'))<br>&gt;<br>&gt; How can you find errors like this?<br>&gt;<br>&gt; David<br>&gt;<br>&gt;<br>&gt; # <a target="_blank" href="http://sigslot.py">sigslot.py</a><br>&gt;<br>&gt; import sys<br>&gt; from PyQt4 import QtGui, QtCore<br>&gt;<br>&gt; class SigSlot(QtGui.QWidget):<br>&gt;&nbsp; &nbsp; &nbsp; def __init__(self, parent=None):<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; QtGui.QWidget.__init__(self, parent)<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.setWindowTitle('Signals and Slots')<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; lcd = QtGui.QLCDNumber(self)<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; slider=QtGui.QSlider(QtCore.Qt.Horizontal,
 self)<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vbox=QtGui.QVBoxLayout()<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vbox.addWidget(lcd)<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vbox.addWidget(slider)<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.setLayout(vbox)<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.connect(slider, QtCore.SIGNAL('valuechanged(int)'), lcd,<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; QtCore.SLOT('display(int)'))<br>&gt;<br>&gt;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.resize(250, 150)<br>&gt;<br>&gt; app=QtGui.QApplication(sys.argv)<br>&gt; ss=SigSlot()<br>&gt; ss.show()<br>&gt; sys.exit(app.exec_())<br>&gt;<br>&gt; _______________________________________________<br>&gt; Eric mailing list<br>&gt; <a ymailto="mailto:Eric@riverbankcomputing.com" href="mailto:Eric@riverbankcomputing.com">Eric@riverbankcomputing.com</a><br>&gt; <a
 href="http://www.riverbankcomputing.com/mailman/listinfo/eric" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/eric</a><br>&gt;<br><br><br><br>------------------------------<br><br>Message: 2<br>Date: Sun, 14 Feb 2010 11:10:51 +0100<br>From: detlev &lt;<a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a>&gt;<br>To: <a ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: Re: [Eric] Icon Directory<br>Message-ID: &lt;<a ymailto="mailto:201002141110.51137.detlev@die-offenbachs.de" href="mailto:201002141110.51137.detlev@die-offenbachs.de">201002141110.51137.detlev@die-offenbachs.de</a>&gt;<br>Content-Type: Text/Plain;&nbsp; charset="iso-8859-1"<br><br>On Sonntag, 14. Februar 2010, David Arnold wrote:<br>&gt; All,<br>&gt; <br>&gt; What is the proper way to add a directory of icons to a project?<br>&gt;
 <br><br>In eric4/5 I added the icon directory via the Others tab of the project <br>viewer.<br><br>Detlev<br>-- <br>Detlev Offenbach<br><a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a><br><br><br>------------------------------<br><br>Message: 3<br>Date: Sun, 14 Feb 2010 11:11:36 +0100<br>From: detlev &lt;<a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a>&gt;<br>To: <a ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: Re: [Eric] Switching source windows<br>Message-ID: &lt;<a ymailto="mailto:201002141111.36551.detlev@die-offenbachs.de" href="mailto:201002141111.36551.detlev@die-offenbachs.de">201002141111.36551.detlev@die-offenbachs.de</a>&gt;<br>Content-Type: Text/Plain;&nbsp; charset="iso-8859-1"<br><br>On Sonntag, 14. Februar 2010, David Arnold
 wrote:<br>&gt; Hi,<br>&gt; <br>&gt; Say I have two files open in the editor pane, each with its own tab. Is<br>&gt;&nbsp; there a keyboard shortcut to switch back and forth from one to the other?<br>&gt; <br><br>Yes (s. shortcuts dialog)<br><br>-- <br>Detlev Offenbach<br><a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a><br><br><br>------------------------------<br><br>Message: 4<br>Date: Sun, 14 Feb 2010 11:12:36 +0100<br>From: detlev &lt;<a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a>&gt;<br>To: <a ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: Re: [Eric] Paren matching highlighter<br>Message-ID: &lt;<a ymailto="mailto:201002141112.36360.detlev@die-offenbachs.de"
 href="mailto:201002141112.36360.detlev@die-offenbachs.de">201002141112.36360.detlev@die-offenbachs.de</a>&gt;<br>Content-Type: Text/Plain;&nbsp; charset="iso-8859-1"<br><br>On Sonntag, 14. Februar 2010, David Arnold wrote:<br>&gt; All,<br>&gt; <br>&gt; I made a setting some time back that changed the color of matching braces<br>&gt;&nbsp; to green while typing.<br>&gt; <br>&gt; I cannot find that setting to make a change.<br>&gt; <br>&gt; Can someone point me in the right direction?<br>&gt; <br><br>Editor-&gt;Styles<br><br><br>-- <br>Detlev Offenbach<br><a ymailto="mailto:detlev@die-offenbachs.de" href="mailto:detlev@die-offenbachs.de">detlev@die-offenbachs.de</a><br><br><br>------------------------------<br><br>Message: 5<br>Date: Sun, 14 Feb 2010 10:21:29 -0500<br>From: Kirk Lowery &lt;<a ymailto="mailto:empirical.humanist@gmail.com" href="mailto:empirical.humanist@gmail.com">empirical.humanist@gmail.com</a>&gt;<br>To: <a
 ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: [Eric] Adding a text file to project<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:e74dfca61002140721i29c359ffk5a84b890bec63da0@mail.gmail.com" href="mailto:e74dfca61002140721i29c359ffk5a84b890bec63da0@mail.gmail.com">e74dfca61002140721i29c359ffk5a84b890bec63da0@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset=UTF-8<br><br>I'd like to add a *.txt file to a project (I'm keeping notes about<br>things as I go). But eric won't let me add the file to the project<br>file list.<br><br>What am I missing?<br><br>Kirk<br><br><br>------------------------------<br><br>Message: 6<br>Date: Sun, 14 Feb 2010 20:41:14 -0800<br>From: David Arnold &lt;<a ymailto="mailto:dwarnold45@suddenlink.net" href="mailto:dwarnold45@suddenlink.net">dwarnold45@suddenlink.net</a>&gt;<br>To: <a
 ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: [Eric] Completion popup<br>Message-ID: &lt;<a ymailto="mailto:9B382893-84C5-4BC9-B80F-080B7FCEA326@suddenlink.net" href="mailto:9B382893-84C5-4BC9-B80F-080B7FCEA326@suddenlink.net">9B382893-84C5-4BC9-B80F-080B7FCEA326@suddenlink.net</a>&gt;<br>Content-Type: text/plain; charset=us-ascii<br><br>All,<br><br>It would be a nice feature if the completion popup box would automatically close if you use Alt+Tab or the mouse to switch applications. It's a pain when it stays open when you switch applications and covers what you might need to read.<br><br>D.<br><br>------------------------------<br><br>Message: 7<br>Date: Mon, 15 Feb 2010 20:09:48 +0100<br>From: "NARCISO, Rui" &lt;<a ymailto="mailto:RUI.NARCISO@airbus.com" href="mailto:RUI.NARCISO@airbus.com">RUI.NARCISO@airbus.com</a>&gt;<br>To: "Eric \(E-mail\)" &lt;<a
 ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a>&gt;<br>Subject: [Eric] Auto-complete weird behaviour<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:24784_1266260994_4B799C02_24784_103_1_041722AB1B763F4A93A9208ED7FB8D4C0720B48D@fr0-mailmb19.res.airbus.corp" href="mailto:24784_1266260994_4B799C02_24784_103_1_041722AB1B763F4A93A9208ED7FB8D4C0720B48D@fr0-mailmb19.res.airbus.corp">24784_1266260994_4B799C02_24784_103_1_041722AB1B763F4A93A9208ED7FB8D4C0720B48D@fr0-mailmb19.res.airbus.corp</a>&gt;<br>&nbsp;&nbsp;&nbsp; <br>Content-Type: text/plain;&nbsp;&nbsp;&nbsp; charset="iso-8859-1"<br><br><br>Hi all,<br><br>I'm using Eric for a python project (by the way, amazing tool!!).<br><br>I have auto-complete activated, however, when a list is presented with several choices, if I continue typing until only one suggesiton exists, the box remains open and if I want to continue typeing
 (ie, ignore the suggestion) I'm am blocked until I type "Enter" or "Escape". Cannot "Space" be also recognised so as to close the box and allow to continue the sentence ?<br><br>Cheers<br>Rui<br><br>The information in this e-mail is confidential. The contents may not be disclosed or used by anyone other than the addressee. Access to this e-mail by anyone else is unauthorised.<br>If you are not the intended recipient, please notify Airbus immediately and delete this e-mail.<br>Airbus cannot accept any responsibility for the accuracy or completeness of this e-mail as it has been sent over public networks. If you have any concerns over the content of this message or its Accuracy or Integrity, please contact Airbus immediately.<br>All outgoing e-mails from Airbus are checked using regularly updated virus scanning software but you should take whatever measures you deem to be appropriate to ensure that this message and any attachments are virus
 free.<br><br><br><br>------------------------------<br><br>Message: 8<br>Date: Tue, 16 Feb 2010 03:15:08 +0000<br>From: Manuel Soukup &lt;<a ymailto="mailto:linuxuser-sky@gmx.de" href="mailto:linuxuser-sky@gmx.de">linuxuser-sky@gmx.de</a>&gt;<br>To: <a ymailto="mailto:eric@riverbankcomputing.com" href="mailto:eric@riverbankcomputing.com">eric@riverbankcomputing.com</a><br>Subject: [Eric] Debugger crashes<br>Message-ID: &lt;<a ymailto="mailto:4B7A0DBC.4000907@gmx.de" href="mailto:4B7A0DBC.4000907@gmx.de">4B7A0DBC.4000907@gmx.de</a>&gt;<br>Content-Type: text/plain; charset=ISO-8859-15; format=flowed<br><br>Hi<br><br>When i try to debug my project the debugger crashes after graphic init with:<br><br>/home/manuel/Python/new/workspace/mySoko/Main.py has terminated with an<br>exit status of 0.<br><br>The Debugger window is closed and im back in the editor view.<br><br>Other debugger like winpdb work.<br><br>My code can be seen here for
 reproducing:<br><br><span><a target="_blank" href="http://pastebin.com/mc79efb">http://pastebin.com/mc79efb</a></span><br><br>All is one file.<br><br>As well you need the following:<br><br>data/img/bg.png<br>data/img/box.png<br>data/img/target.png<br>data/img/palyer.png<br><br>and a file called level2.data<br><br>With this content:<br><br>!Test<br>#######<br>* @ $ .<br>########<br>%<br>########<br>** @ ..$$<br><br><br>At first there wehre some errors in the console about eric***.py but now<br>i cant reproduce it anymore. *very strange*<br><br>I use the latest stable eric4.<br><br>I deleted .eric4 already but does not help.<br><br>I think eric is a great IDE but whithout a working debugger useless.<br><br>Please help<br><br>Thanks<br><br><br><br>------------------------------<br><br>_______________________________________________<br>Eric mailing list<br><a ymailto="mailto:Eric@riverbankcomputing.com"
 href="mailto:Eric@riverbankcomputing.com">Eric@riverbankcomputing.com</a><br><a href="http://www.riverbankcomputing.com/mailman/listinfo/eric" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/eric</a><br><br><br>End of Eric Digest, Vol 44, Issue 20<br>************************************<br></div></div>
</div><br>

      </body></html>