[Eric] Eric Digest, Vol 44, Issue 20
detlev
detlev at die-offenbachs.de
Fri Feb 19 20:52:10 GMT 2010
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: "eric-request at riverbankcomputing.com"
> <eric-request at riverbankcomputing.com> To: eric at riverbankcomputing.com
> Sent: Tue, February 16, 2010 1:00:02 PM
> Subject: Eric Digest, Vol 44, Issue 20
>
> Send Eric mailing list submissions to
> eric at riverbankcomputing.com
>
> 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
> eric-request at riverbankcomputing.com
>
> You can reach the person managing the list at
> eric-owner at riverbankcomputing.com
>
> 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 <info at linos.es>
> To: David Arnold <dwarnold45 at suddenlink.net>,
> eric at riverbankcomputing.com
> Subject: Re: [Eric] How do you detect such an error?
> Message-ID: <4B77C0E5.7030604 at linos.es>
> 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
> > Eric at riverbankcomputing.com
> > http://www.riverbankcomputing.com/mailman/listinfo/eric
>
> ------------------------------
>
> Message: 2
> Date: Sun, 14 Feb 2010 11:10:51 +0100
> From: detlev <detlev at die-offenbachs.de>
> To: eric at riverbankcomputing.com
> Subject: Re: [Eric] Icon Directory
> Message-ID: <201002141110.51137.detlev at die-offenbachs.de>
> 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
detlev at die-offenbachs.de
More information about the Eric
mailing list