Tue, 17 Jun 2014 19:46:24 +0200
Added code to the multi project 'Add Project' dialog to ensure, that the filename returned is absolute. If a relative one is entered it is concatenated with the path of the multi project file or the 'workspace', if it hasn't been saved yet.
# -*- coding: utf-8 -*- # Copyright (c) 2012 - 2014 Detlev Offenbach <detlev@die-offenbachs.de> # """ Module implementing a network reply class for an empty reply (i.e. request was handle other way). """ from __future__ import unicode_literals from PyQt4.QtCore import QTimer from PyQt4.QtNetwork import QNetworkReply, QNetworkAccessManager class EmptyNetworkReply(QNetworkReply): """ Class implementing an empty network reply. """ def __init__(self, parent=None): """ Constructor @param parent reference to the parent object (QObject) """ super(EmptyNetworkReply, self).__init__(parent) self.setOperation(QNetworkAccessManager.GetOperation) self.setError(QNetworkReply.OperationCanceledError, "eric5:No Error") QTimer.singleShot(0, lambda: self.finished.emit()) def abort(self): """ Public slot to abort the operation. """ # do nothing pass def readData(self, maxlen): """ Public method to retrieve data from the reply object. @param maxlen maximum number of bytes to read (integer) @return string containing the data (bytes) """ return bytes()