Hi, get the Django Plugin and use the menu options.
On Dienstag, 16. Februar 2010, David Ally wrote: > Hi All, > > How do i start Django in the eric4 environment on my ubuntu 9.10? > > David > > > > > > ________________________________ > From: "[email protected]" > <[email protected]> To: [email protected] > Sent: Tue, February 16, 2010 1:00:02 PM > Subject: Eric Digest, Vol 44, Issue 20 > > Send Eric mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://www.riverbankcomputing.com/mailman/listinfo/eric > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Eric digest..." > > > Today's Topics: > > 1. Re: How do you detect such an error? (Linos) > 2. Re: Icon Directory (detlev) > 3. Re: Switching source windows (detlev) > 4. Re: Paren matching highlighter (detlev) > 5. Adding a text file to project (Kirk Lowery) > 6. Completion popup (David Arnold) > 7. Auto-complete weird behaviour (NARCISO, Rui) > 8. Debugger crashes (Manuel Soukup) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Sun, 14 Feb 2010 10:22:45 +0100 > From: Linos <[email protected]> > To: David Arnold <[email protected]>, > [email protected] > Subject: Re: [Eric] How do you detect such an error? > Message-ID: <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hello David, > self.connect should return True if the connection has found the > signature, so when for first time i write a connect and i am not sure i > write "print self.connect(....)" > > Regards, > Miguel Angel. > > El 14/02/10 06:48, David Arnold escribi?: > > All, > > > > 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: > > > > self.connect(slider, QtCore.SIGNAL('valuechanged(int)'), lcd, > > QtCore.SLOT('display(int)')) > > > > Which should be: > > > > self.connect(slider, QtCore.SIGNAL('valueChanged(int)'), lcd, > > QtCore.SLOT('display(int)')) > > > > How can you find errors like this? > > > > David > > > > > > # sigslot.py > > > > import sys > > from PyQt4 import QtGui, QtCore > > > > class SigSlot(QtGui.QWidget): > > def __init__(self, parent=None): > > QtGui.QWidget.__init__(self, parent) > > > > self.setWindowTitle('Signals and Slots') > > > > lcd = QtGui.QLCDNumber(self) > > slider=QtGui.QSlider(QtCore.Qt.Horizontal, self) > > > > vbox=QtGui.QVBoxLayout() > > vbox.addWidget(lcd) > > vbox.addWidget(slider) > > > > self.setLayout(vbox) > > > > self.connect(slider, QtCore.SIGNAL('valuechanged(int)'), lcd, > > QtCore.SLOT('display(int)')) > > > > self.resize(250, 150) > > > > app=QtGui.QApplication(sys.argv) > > ss=SigSlot() > > ss.show() > > sys.exit(app.exec_()) > > > > _______________________________________________ > > Eric mailing list > > [email protected] > > http://www.riverbankcomputing.com/mailman/listinfo/eric > > ------------------------------ > > Message: 2 > Date: Sun, 14 Feb 2010 11:10:51 +0100 > From: detlev <[email protected]> > To: [email protected] > Subject: Re: [Eric] Icon Directory > Message-ID: <[email protected]> > Content-Type: Text/Plain; charset="iso-8859-1" > > On Sonntag, 14. Februar 2010, David Arnold wrote: > > All, > > > > What is the proper way to add a directory of icons to a project? > > In eric4/5 I added the icon directory via the Others tab of the project > viewer. > > Detlev > > > Hi, > > > > Say I have two files open in the editor pane, each with its own tab. Is > > there a keyboard shortcut to switch back and forth from one to the > > other? > > Yes (s. shortcuts dialog) > > > All, > > > > I made a setting some time back that changed the color of matching braces > > to green while typing. > > > > I cannot find that setting to make a change. > > > > Can someone point me in the right direction? > > Editor->Styles > -- Detlev Offenbach [email protected] _______________________________________________ Eric mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/eric
