Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
330 views

Is there a Python equivalent for the Perl module Term::VT102?

In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
5
votes
4answers
1k views

VT100 Terminal Emulation in Windows WPF or Silverlight

I'm pondering creating a WPF or Silverlight app that acts just like a terminal window. Except, since it is in WPF/Silverlight, it will be able to 'enhance' the terminal experience with effects, ...
4
votes
3answers
2k views

AJAX console window with ANSI/VT100 support?

I'm planning to write gateway web application, which would need "terminal window" with VT100/ANSI escape code support. Are there any AJAX based alternatives for such a task? I'm thinking something ...
3
votes
1answer
158 views

Python regex to match VT100 escape sequences

I'm writing a Python program that logs terminal interaction (similar to the script program), and I'd like to filter out the VT100 escape sequences before writing to disk. I'd like to use a function ...
3
votes
1answer
399 views

Send “C-(” to Emacs in VT100/xterm terminal (Mac OS X's Terminal)?

Is it possible in any way to send the key "C-(" to Emacs over a VT100/xterm terminal (Mac OS X Terminal)? Is there an escape sequence that could be sent to achieve the equivalent? I suspect the ...
2
votes
1answer
77 views

VT100 escape sequence to remove already printed newline?

Is there a combination of VT100 escape sequences that will allow my C program to print something like: Waiting...... to a console, in such a way that the dots appear one by one? Essentially, I ...
2
votes
2answers
536 views

VT100 Emulation LIbrary in C# with SharpSSH

I'm messing around with Tamir.SharpSsh and wanted to see if it was possible to use it to implement a console SSH client fully in C#. I do not mean something like putty where it's actually running in ...
2
votes
1answer
258 views

Java framework for text- & console-based forms?

Are there any Java-based frameworks for defining and managing text-, VT100- or console-based forms systems?
2
votes
3answers
2k views

How does Telnet server communicate to the client?

I want to write a C# application where it connects to a telnet server and communicates to the server. I was wondering how a telnet server sends information to the client. I have looked (skimmed) over ...
1
vote
1answer
197 views

vt100 terminal emulation with python / browser

I am trying to build a SSH client for the web browser (similar to ajaxterm). I have built a python backend that uses Paramiko's SSHClient.invoke_shell(term='vt100') and a web server which communicates ...
1
vote
0answers
82 views

How to output vt100 format text to unix socket from windows in Perl?

The text will be mis-aligned if displayed in windows prompt directly. Is there a module for converting vt100 format so that it can display normally in windows? UPDATE Environment: client: telnet ...
1
vote
1answer
188 views

VT Terminal - Disable local editing and echo

I am writing a console application that should run in VT compatible data collectors. After trying some emulators i found they have a different standard behavior. My concern is that most of the ...
1
vote
1answer
188 views

Can I determine if the terminal interprets the C1 control codes?

ISO/IEC 2022 defines the C0 and C1 control codes. The C0 set are the familiar codes between 0x00 and 0x1f in ASCII, ISO-8859-1 and UTF-8 (eg. ESC, CR, LF). Some VT100 terminal emulators (eg. ...
0
votes
0answers
33 views

How to check if DECCKM (Cursor Keys Mode) is set for the cursor sequences in vt100? (or any other terminals)

I would like to know if there is a way to know if DECCKM function (specifying whether or not to use ANSI cursor sequences) has been set or not. I'm connecting to a process via ptrace so I have no way ...
0
votes
3answers
72 views

Storing VT100 escape codes in an XML file

I'm writing a Python program that logs terminal interaction (similar to the script program), and I'd like to store the log in XML format. The problem is that the terminal interaction includes VT100 ...
0
votes
3answers
161 views

what is terminal escape sequence for ctrl + arrow (left, right,…) in TERM=linux

I am building a terminal window in a browser (sth. like ajaxterm) and don't know which escape sequence to send to ssh tunnel (opened via paramiko.SSHClient().invoke_shell(term='linux')). I have ...
0
votes
0answers
144 views

JavaScript based ANSI terminal

Is there a JavaScript based console with fluid design, meaning that the size is not fixed (X*Y) but can change as the user resizes the window?
0
votes
2answers
424 views

Standard C header for ANSI VT100 escape sequences

Is there a standard C header containing ansi escape sequences for say vt100 ?
0
votes
1answer
184 views

Detect console prompt in VT100 SSH Session stream

I'm working on a wrapper library (in C#, but not really important to the issue here) to open an SSH connection and then allow for sending commands to the server and receiving the response. The main ...
0
votes
3answers
1k views

Open source C# vt100 server

Does anyone know of an open source C# vt100 server? I'm looking to create a C# server that understands the escape sequences from a vt100 client.