Mon, 10 Jun 2024 10:22:23 +0200
Changed 'eric IDE server' to 'eric-ide server'.
--- a/src/eric7/VirtualEnv/VirtualenvAddEditDialog.py Mon Jun 10 10:19:54 2024 +0200 +++ b/src/eric7/VirtualEnv/VirtualenvAddEditDialog.py Mon Jun 10 10:22:23 2024 +0200 @@ -278,7 +278,7 @@ @pyqtSlot(bool) def on_serverRadioButton_toggled(self, checked): """ - Private slot handling a change of the eric IDE server radio button state. + Private slot handling a change of the eric-ide server radio button state. @param checked state of the radio button @type bool
--- a/src/eric7/VirtualEnv/VirtualenvAddEditDialog.ui Mon Jun 10 10:19:54 2024 +0200 +++ b/src/eric7/VirtualEnv/VirtualenvAddEditDialog.ui Mon Jun 10 10:22:23 2024 +0200 @@ -75,10 +75,10 @@ <item> <widget class="QRadioButton" name="serverRadioButton"> <property name="toolTip"> - <string>Select to indicate an eric IDE server environment.</string> + <string>Select to indicate an eric-ide server environment.</string> </property> <property name="text"> - <string>eric IDE Server</string> + <string>eric-ide server</string> </property> </widget> </item> @@ -184,7 +184,7 @@ <item row="6" column="1"> <widget class="QLineEdit" name="serverLineEdit"> <property name="toolTip"> - <string>Shows the host name of the server this entry belongs to (eric IDE Server environment only)</string> + <string>Shows the host name of the server this entry belongs to (eric-ide server environment only)</string> </property> <property name="readOnly"> <bool>true</bool>
--- a/src/eric7/VirtualEnv/VirtualenvManager.py Mon Jun 10 10:19:54 2024 +0200 +++ b/src/eric7/VirtualEnv/VirtualenvManager.py Mon Jun 10 10:22:23 2024 +0200 @@ -84,9 +84,9 @@ # is_global: a flag indicating a global environment # is_conda: a flag indicating an Anaconda environment # is_remote: a flag indicating a remotely accessed environment - # is_eric_server a flag indicating an eric IDE server environment + # is_eric_server a flag indicating an eric-ide server environment # eric_server a string giving the server name in case of an - # eric IDE server environment + # eric-ide server environment # exec_path: a string to be prefixed to the PATH environment # setting # description a description of the environment @@ -156,7 +156,7 @@ def __cleanEnvironments(self): """ - Private method to delete all non-existent local or eric IDE server environments. + Private method to delete all non-existent local or eric-ide server environments. """ removed = False @@ -166,7 +166,7 @@ venvPath = venvItem.path if venvPath: if venvItem.is_eric_server: - # It is an eric IDE server environment; check it is still valid. + # It is an eric-ide server environment; check it is still valid. ericServer = ericApp().getObject("EricServer") if ( ericServer.isServerConnected() @@ -722,13 +722,13 @@ def isEricServerEnvironment(self, venvName, host=""): """ Public method to test, if a given environment is an environment accessed - through an eric IDE server. + through an eric-ide server. @param venvName logical name of the virtual environment @type str @param host name of the host to check for or empty string to just check for - an eric IDE server environment - @return flag indicating an eric IDE server environment + an eric-ide server environment + @return flag indicating an eric-ide server environment @rtype bool """ try: @@ -746,11 +746,11 @@ def getEricServerEnvironmentNames(self, host=""): """ - Public method to get a list of defined eric IDE server environments. + Public method to get a list of defined eric-ide server environments. @param host host name to get environment names for (defaults to "") @type str (optional) - @return list of defined eric IDE server environments + @return list of defined eric-ide server environments @rtype list of str """ environments = [
--- a/src/eric7/VirtualEnv/VirtualenvMeta.py Mon Jun 10 10:19:54 2024 +0200 +++ b/src/eric7/VirtualEnv/VirtualenvMeta.py Mon Jun 10 10:22:23 2024 +0200 @@ -24,7 +24,7 @@ is_remote: bool = False # flag indicating a remotely accessed environment exec_path: str = "" # string to be prefixed to the PATH environment setting description: str = "" # description of the environment - is_eric_server: bool = False # flag indicating an eric IDE server environment + is_eric_server: bool = False # flag indicating an eric-ide server environment eric_server: str = "" # server name the environment belongs to def as_dict(self):