| Summary: | konsole / dcop lag miss some keyboard validation | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Blindauer Emmanuel <bugs.kde.org> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED INTENTIONAL | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.6.4 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
I can confirm this one, really annoying; It'd be nice if you could include some dcop function to spawn a session with a specified command, instead of the default shell. Confirmed on Konsole 1.6.6, KDE 3.5.8, Kubuntu 7.10 (Gutsy). This happens for me with only one tab open. Script to reproduce: KONSOLE=`dcopclient $KONSOLE_DCOP` CURSESSION=$KONSOLE_DCOP_SESSION NEWSESSION=`dcop $KONSOLE konsole newSession server1` dcop $KONSOLE $NEWSESSION renameSession server1 dcop $KONSOLE $NEWSESSION sendSession "echo Hello" KDE 3.5.x is no longer being worked on. KDE 4 doesn't use DCOP. |
Version: 1.6.4 (using KDE 3.5.4, compiled sources) Compiler: Target: i586-mandriva-linux-gnu OS: Linux (i686) release 2.6.17-6mdv I'm using konsole to send to several sessions the same command on several hosts, using the tabbed konsole. To open all tabs and launch an ssh connexion I use dcop. using one or two tabs is ok, but when creating a large nomber a tabs with dcop and sending them the entry "ssh root@ip", nothing is displayed nor executed in the tab, and I need to press enter to see the entry sent via dcop and is executed only at that moment. Here follow a simplified script to reproduce it. KONSOLE=`dcopclient $KONSOLE_DCOP` for A in $(seq 1 50); do NEWSESSION=`dcop $KONSOLE konsole newSession $A` dcop $KONSOLE $NEWSESSION renameSession $A dcop $KONSOLE $NEWSESSION sendSession "ssh root@XXX.YYY.ZZZ.$A" done