text terminals
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3354
S-Terminal 0.5
S-terminal lets you create a secure X terminal over an ecrypted tunnel. more>>
S-terminal lets you create a secure X terminal over an ecrypted tunnel.
Regular X terminals pass unencrypted data between you the remote machine.
S-terminal creates an encrypted tunnel through which all X traffic passes.
It replaces the remote xdm login screen with a local application that collects username and password, then sets up an ssh tunnel to the remote host and starts a session.
It is highly configurable both in appearance and behavior, and deployed S-terminals can be remotely administered.
S-terminal was developed to run under Knoppix, but it should be portable to most Linux systems. With minor changes, it should work on any Unix-like system that has X, perl, tcl/tk and expect installed.
Best of all, it can be added to a KNOPPIX CD to create an instant, bootable, secure X terminal CD.
<<lessRegular X terminals pass unencrypted data between you the remote machine.
S-terminal creates an encrypted tunnel through which all X traffic passes.
It replaces the remote xdm login screen with a local application that collects username and password, then sets up an ssh tunnel to the remote host and starts a session.
It is highly configurable both in appearance and behavior, and deployed S-terminals can be remotely administered.
S-terminal was developed to run under Knoppix, but it should be portable to most Linux systems. With minor changes, it should work on any Unix-like system that has X, perl, tcl/tk and expect installed.
Best of all, it can be added to a KNOPPIX CD to create an instant, bootable, secure X terminal CD.
Download (0.051MB)
Added: 2006-09-07 License: GPL (GNU General Public License) Price:
1145 downloads
Multi Gnome Terminal 1.6.2
Multi Gnome Terminal is an enhanced Gnome Terminal more>>
Multi Gnome Terminal is an enhanced version of gnome-terminal, with many powerful new features and extensions. The most notable enhancement is the ability to run multiple terminals within the same window.
Each terminal may be accessed by its "tab", through keyboard shortcuts, or menu selections. Inactive terminals provide an alert when the buffer changes by changing the color of the tab labels.
Other enhancements include a toolbar, a buttonbar, flexible command options to launch new terminals, tabs, and shells from either the GUI or command line, customizable key bindings for MGT functions and other uses, font shadowing, the ability to "split" terminals so that each window can simultaneously multiple terminals, the ability to "view" or "bond" terminals with other terminals, and various other improvements
Main features:
- Multiple terminals may be opened within the same Window.
- Each terminal Window is "Tabbed" for easy navigation.
- The terminal Window may be "split" vertically and/or horizontally. And also unsplit, or the split terminal can be moved to its own "Tab", or even another Window.
- Terminals may be "bonded" so that the output of a command in one terminal is echoed to all the "bonded" terminals.
- Terminals may be moved from one Multi Gnome Terminal Window to another.
- Notification that an inactive terminal buffer has changed, or is in the process of changing, via colors on Tab labels.
- Extensive keyboard shortcuts for most Multi Gnome Terminal features, and configurable key bindings for these features and other uses.
- Shading, tinting and psuedo-transparency of the Multi Gnome Terminal Window background.
- Gamma corrrection and contrast controls for background pixmaps.
- Configurable "Commands" for initializing new terminals, accessible from within the Multi Gnome Terminal GUI interface, or as command line options.
- Adds a Toolbar and Buttonbar, which can be disabled like the other GUI components. The Toolbar can be repositioned too.
- Search the scrollback buffer.
- Font "shadowing" for better contrast on transparent or pixmapped backgrounds.
- Improved terminal emulation capabilities, including support for VT52.
- Improved support for launching URLs direct from the terminal Window.
- A flexible command line for creating new Windows and Tabs.
- Bold fonts can be a different font, and different color.
- Support for pseudo-graphics characters (like xterm).
- Greatly improved Class handling (configuration profiles) with many available configuration options.
<<lessEach terminal may be accessed by its "tab", through keyboard shortcuts, or menu selections. Inactive terminals provide an alert when the buffer changes by changing the color of the tab labels.
Other enhancements include a toolbar, a buttonbar, flexible command options to launch new terminals, tabs, and shells from either the GUI or command line, customizable key bindings for MGT functions and other uses, font shadowing, the ability to "split" terminals so that each window can simultaneously multiple terminals, the ability to "view" or "bond" terminals with other terminals, and various other improvements
Main features:
- Multiple terminals may be opened within the same Window.
- Each terminal Window is "Tabbed" for easy navigation.
- The terminal Window may be "split" vertically and/or horizontally. And also unsplit, or the split terminal can be moved to its own "Tab", or even another Window.
- Terminals may be "bonded" so that the output of a command in one terminal is echoed to all the "bonded" terminals.
- Terminals may be moved from one Multi Gnome Terminal Window to another.
- Notification that an inactive terminal buffer has changed, or is in the process of changing, via colors on Tab labels.
- Extensive keyboard shortcuts for most Multi Gnome Terminal features, and configurable key bindings for these features and other uses.
- Shading, tinting and psuedo-transparency of the Multi Gnome Terminal Window background.
- Gamma corrrection and contrast controls for background pixmaps.
- Configurable "Commands" for initializing new terminals, accessible from within the Multi Gnome Terminal GUI interface, or as command line options.
- Adds a Toolbar and Buttonbar, which can be disabled like the other GUI components. The Toolbar can be repositioned too.
- Search the scrollback buffer.
- Font "shadowing" for better contrast on transparent or pixmapped backgrounds.
- Improved terminal emulation capabilities, including support for VT52.
- Improved support for launching URLs direct from the terminal Window.
- A flexible command line for creating new Windows and Tabs.
- Bold fonts can be a different font, and different color.
- Support for pseudo-graphics characters (like xterm).
- Greatly improved Class handling (configuration profiles) with many available configuration options.
Download (1.46MB)
Added: 2005-04-03 License: GPL (GNU General Public License) Price:
1674 downloads
gnome-terminal 2.18.1
gnome-terminal is the GNOME terminal emulator application. more>>
gnome-terminal is the GNOME terminal emulator application. gnome-terminal is only the shell (menubar, prefs dialog); the terminal emulation ("stuff in the middle") comes from the VTE widget. Remember this when choosing a bugzilla component.
How it works:
Profiles:
all settings are stored in profiles. prefs dialog edits the current profile
Session:
just the number of open windows/tabs and their profile is stored per-session
Command line options:
do not overlap things that are preferences
<<lessHow it works:
Profiles:
all settings are stored in profiles. prefs dialog edits the current profile
Session:
just the number of open windows/tabs and their profile is stored per-session
Command line options:
do not overlap things that are preferences
Download (2.8MB)
Added: 2007-06-19 License: GPL (GNU General Public License) Price:
873 downloads
Text::Templar 2.43
Text::Templar is a document-generation object class. more>>
Text::Templar is a document-generation object class.
SYNOPSIS
use Text::Templar;
my $template = < title >This is the title: < % METHOD title % >< /title >< /head >
< body >
< % METHOD body % >
< address >
< % METHOD footer % >
< /address >
< /body >
< /html >
EOF
my $templateObject = new Text::Templar
[ $template ];
$templateObject->title( "The Rest of the Story" );
$templateObject->body( @content );
$templateObject->footer( "Page 1" );
print $templateObject->render;
<<lessSYNOPSIS
use Text::Templar;
my $template = < title >This is the title: < % METHOD title % >< /title >< /head >
< body >
< % METHOD body % >
< address >
< % METHOD footer % >
< /address >
< /body >
< /html >
EOF
my $templateObject = new Text::Templar
[ $template ];
$templateObject->title( "The Rest of the Story" );
$templateObject->body( @content );
$templateObject->footer( "Page 1" );
print $templateObject->render;
Download (0.072MB)
Added: 2007-01-05 License: Perl Artistic License Price:
1023 downloads
Text::Emoticon 0.04
Text::Emoticon is a factory class for Yahoo! and MSN emoticons. more>>
Text::Emoticon is a factory class for Yahoo! and MSN emoticons.
SYNOPSIS
use Text::Emoticon;
my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));
Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.
<<lessSYNOPSIS
use Text::Emoticon;
my $emoticon = Text::Emoticon->new(MSN, { strict => 1, xhtml => 0 });
print $emoticon->filter(Hello ;));
Text::Emoticon is a factory class to dispatch MSN/YIM emoticon set. Its made to become handy to be used in other applications like Kwiki/MT plugins.
Download (0.002MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1050 downloads
VT6530 Terminal Emulator 0.2
VT6530 is a Java implementation of the proprietary terminal used with Tandem mainframes. more>>
VT6530 Terminal Emulator is a Java implementation of the proprietary terminal used with Tandem mainframes.
The Tandem VT6530 is a proprietary terminal used with their Non-Stop(TM) series of mainframes. These high-reliability machines are popular in the banking industry. If youve ever used an ATM to get cash, youve probably used a VT6530.
The terminal itself can operate in three different mode: conversation, block, and ANSI (VT100). Conversation mode is a simple scrolling text mode with the addition key buffering and text attributes. In block mode, text is displayed in a formated screen with special edit fields. ANSI mode is only used with OSS, Tandems UNIX wanabe operating layer.
Enhancements:
- Autotools support (./configure, make, make check, and make install).
- New telnet and ANSI terminal implementations.
- Linux, Cygwin, and HP NonStop (tandem OSS) builds are not quite running yet.
<<lessThe Tandem VT6530 is a proprietary terminal used with their Non-Stop(TM) series of mainframes. These high-reliability machines are popular in the banking industry. If youve ever used an ATM to get cash, youve probably used a VT6530.
The terminal itself can operate in three different mode: conversation, block, and ANSI (VT100). Conversation mode is a simple scrolling text mode with the addition key buffering and text attributes. In block mode, text is displayed in a formated screen with special edit fields. ANSI mode is only used with OSS, Tandems UNIX wanabe operating layer.
Enhancements:
- Autotools support (./configure, make, make check, and make install).
- New telnet and ANSI terminal implementations.
- Linux, Cygwin, and HP NonStop (tandem OSS) builds are not quite running yet.
Download (0.36MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
1004 downloads
Text::Emoticon::MSN 0.04
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger. more>>
Text::Emoticon::MSN is a Perl module with emoticon filter of MSN Messenger.
SYNOPSIS
use Text::Emoticon::MSN;
my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx
METHODS
new
$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);
Constructs new Text::Emoticon::MSN object. It accepts two options:
imgbase
Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.
xhtml
Whether it uses XHTML style img tags. It defaults to 1.
class
CSS class used in img tags. It defaults to nothing.
$emoticon = Text::Emoticon::MSN->new(class => "emo");
will print:
< img src="blah.gif" class="emo" / >
strict
Whether it will disable smileys with space in them. defaults to 0.
filter
$filtered_text = $emoticon->filter($text);
Filters emoticons in text and returns img tagged text (HTML).
<<lessSYNOPSIS
use Text::Emoticon::MSN;
my $emoticon = Text::Emoticon::MSN->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;-)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::MSN is a text filter that replaces text emoticons like ":-)", ";-P", etc. to the icons of MSN Messenger, detailed in http://messenger.msn.com/Resource/Emoticons.aspx
METHODS
new
$emoticon = Text::Emoticon::MSN->new(
imgbase => "http://yourhost.example.com/images/emoticons",
xhtml => 1,
class => "emoticon",
);
Constructs new Text::Emoticon::MSN object. It accepts two options:
imgbase
Base URL where icon gif files are located. It defaults to "http://messenger.msn.com/Resource/emoticons" (the MSN site) but I dont recommend that, as theres a possibility MSN will ban your site.
xhtml
Whether it uses XHTML style img tags. It defaults to 1.
class
CSS class used in img tags. It defaults to nothing.
$emoticon = Text::Emoticon::MSN->new(class => "emo");
will print:
< img src="blah.gif" class="emo" / >
strict
Whether it will disable smileys with space in them. defaults to 0.
filter
$filtered_text = $emoticon->filter($text);
Filters emoticons in text and returns img tagged text (HTML).
Download (0.003MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1047 downloads
Terminal 0.2.5.8 RC2
Terminal is a modern terminal emulator for the Unix/Linux desktop more>>
Terminal project is a modern terminal emulator for the Unix/Linux desktop - primarly for the Xfce desktop environment.
We developed it because we saw the need for a lightweight and easy to use terminal emulator in the Xfce desktop environment, that doesnt require the user to install the GNOME plattform, but still provides a worthy alternative to the GNOME terminal emulator.
Enhancements:
- Add a new "Paste Selection" action to the "Edit" menu, which pastes the contents of the PRIMARY selection (#2242).
- Accept drops from the Thunar path bar (#2284).
- Fix installation in Win32 platforms (#2433).
- Fix incorrect english in usage text (#2381).
- Fix incorrectly handled SIGPIPE (#2349).
- Updated translations: Michal Varady (cs), Benedikt Meurer (de), Jarbas Araujo Jr. (eo), Piarres Beobide (eu), Jari Rahkonen (fi), Maximilian Schleiss (fr), Szymon Ka and #322;asz (pl), Adriano Winter Bess (pt_BR), Andrey Fedoseev (ru)
- New translations: Tenzin Dendup (dz)
<<lessWe developed it because we saw the need for a lightweight and easy to use terminal emulator in the Xfce desktop environment, that doesnt require the user to install the GNOME plattform, but still provides a worthy alternative to the GNOME terminal emulator.
Enhancements:
- Add a new "Paste Selection" action to the "Edit" menu, which pastes the contents of the PRIMARY selection (#2242).
- Accept drops from the Thunar path bar (#2284).
- Fix installation in Win32 platforms (#2433).
- Fix incorrect english in usage text (#2381).
- Fix incorrectly handled SIGPIPE (#2349).
- Updated translations: Michal Varady (cs), Benedikt Meurer (de), Jarbas Araujo Jr. (eo), Piarres Beobide (eu), Jari Rahkonen (fi), Maximilian Schleiss (fr), Szymon Ka and #322;asz (pl), Adriano Winter Bess (pt_BR), Andrey Fedoseev (ru)
- New translations: Tenzin Dendup (dz)
Download (1.5MB)
Added: 2006-11-05 License: GPL (GNU General Public License) Price:
1084 downloads
Text Text Revolution 0.11
Text Text Revolution project is a text-based ncurses DDR clone. more>>
Text Text Revolution project is a text-based ncurses DDR clone.
Text Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
<<lessText Text Revolution is a text-based Dance Dance Revolution clone.
It supports pyDDRs .step file format (which has now been superceeded by the .dance format), and plans to stream OGG, MP3, or WAV files.
Enhancements:
- Joystick (DDR mat) support is working now. use the -j switch. Its currently hardcoded to use /dev/input/js0.
- Some graphics code was cleaned up, and it is now possible to specify the difficulty (--light, --standard, --hard, or -ln, where n is 1, 2, or 3).
Download (0.044MB)
Added: 2006-12-08 License: GPL (GNU General Public License) Price:
1054 downloads
Text::Emoticon::Yahoo 0.02
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger. more>>
Text::Emoticon::Yahoo is a emoticon filter of Yahoo! Messenger.
SYNOPSIS
use Text::Emoticon::Yahoo;
my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php
<<lessSYNOPSIS
use Text::Emoticon::Yahoo;
my $emoticon = Text::Emoticon::Yahoo->new(
imgbase => "http://example.com/emo",
);
my $text = "Yet Another Perl Hacker ;)";
print $emoticon->filter($text);
# it prints
# Yet Another Perl Hacker
Text::Emoticon::Yahoo is a text filter that replaces text emoticons like ":)", ";P", etc. to the icons of Yahoo! Messenger, detailed in http://messenger.yahoo.com/emoticons.php
Download (0.003MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1069 downloads
Useful Terminal I/O Library 1.2
The Useful Terminal I/O library is a an alternative to ncurses for working with terminfo-defined terminals. more>>
The Useful Terminal I/O library is a an alternative to ncurses for working with terminfo-defined terminals.
Included are raw terminfo string access and output, an efficient buffered output system, and a keyboard driver.
Enhancements:
- This release fixes some problems when running under 2.6 kernels and some CGC crashes caused by incorrect clipping.
<<lessIncluded are raw terminfo string access and output, an efficient buffered output system, and a keyboard driver.
Enhancements:
- This release fixes some problems when running under 2.6 kernels and some CGC crashes caused by incorrect clipping.
Download (0.054MB)
Added: 2006-11-19 License: MIT/X Consortium License Price:
1071 downloads
Text::Emoticon::GoogleTalk 0.01
Text::Emoticon::GoogleTalk is a Perl module emoticon filter of GoogleTalk. more>>
Text::Emoticon::GoogleTalk is a Perl module emoticon filter of GoogleTalk.
SYNOPSIS
use Text::Emoticon::GoogleTalk;
my $emoticon = Text::Emoticon::GoogleTalk->new;
my $text = "I<<less
SYNOPSIS
use Text::Emoticon::GoogleTalk;
my $emoticon = Text::Emoticon::GoogleTalk->new;
my $text = "I<<less
Download (0.002MB)
Added: 2006-11-30 License: Perl Artistic License Price:
1062 downloads
Text::Convert::ToImage
Text::Convert::ToImage is a Perl module. more>>
Text::Convert::ToImage is a Perl module.
SYNOPSIS
use Text::Convert::ToImage;
my $tti = Text::Convert::ToImage->new();
my $length = length($email);
if ($length > 150) {
$email = "Your text length of $length is too large:";
}
my $config = {
TEXT => $email ? $email : "y@hn.org",
POINTSIZE => $point_size ? $point_size : 14,
LEVEL => $level ? $level : 0,
FONT => $font,
XSKEW => $xskew,
YSKEW => $yskew,
};
$tti->calculate($config);
print "Content-type: image/pngnn";
binmode STDOUT;
$tti->Write(png:-);
This was knocked up a long time ago and someone asked me if the source was available so I decided to put it on CPAN. There is very little documentation with it.
There are also very few tests. If more than me and the person who asked for the module use it then I will write some tests for it.
At the moment I have been using it top obfuscate emails and not much else. A demo can be found at http://www.hjackson.org/cgi-bin/tools/email.pl
There are some undocumented features to this module and they are this way because I have not tested to see if they work yet.
<<lessSYNOPSIS
use Text::Convert::ToImage;
my $tti = Text::Convert::ToImage->new();
my $length = length($email);
if ($length > 150) {
$email = "Your text length of $length is too large:";
}
my $config = {
TEXT => $email ? $email : "y@hn.org",
POINTSIZE => $point_size ? $point_size : 14,
LEVEL => $level ? $level : 0,
FONT => $font,
XSKEW => $xskew,
YSKEW => $yskew,
};
$tti->calculate($config);
print "Content-type: image/pngnn";
binmode STDOUT;
$tti->Write(png:-);
This was knocked up a long time ago and someone asked me if the source was available so I decided to put it on CPAN. There is very little documentation with it.
There are also very few tests. If more than me and the person who asked for the module use it then I will write some tests for it.
At the moment I have been using it top obfuscate emails and not much else. A demo can be found at http://www.hjackson.org/cgi-bin/tools/email.pl
There are some undocumented features to this module and they are this way because I have not tested to see if they work yet.
Download (0.011MB)
Added: 2006-08-22 License: Perl Artistic License Price:
1158 downloads
nautilus-open-terminal 0.8 Alive
nautilus-open-terminal is a nautilus plugin for opening terminals in arbitrary local paths through nautilus. more>>
nautilus-open-terminal project is a nautilus plugin for opening terminals in arbitrary local paths through nautilus.
<<less Download (0.33MB)
Added: 2007-03-04 License: GPL (GNU General Public License) Price:
968 downloads
Useful Terminal IO Library 1.0.0
Useful Terminal IO library is a C++ alternative to ncurses for working with terminfo-defined terminals. more>>
The Useful Terminal I/O library is a C++ alternative to ncurses for working with terminfo-defined terminals. Included are raw terminfo string access and output, an efficient buffered output system, and a keyboard driver.
Installation:
./configure
make
make install
./configure --help lists configuration options, like setting an installation path other than /usr/local. To use the library, include utio.h and link with -lutio. Look at the example programs in the demo directory to start with something that is known to work.
<<lessInstallation:
./configure
make
make install
./configure --help lists configuration options, like setting an installation path other than /usr/local. To use the library, include utio.h and link with -lutio. Look at the example programs in the demo directory to start with something that is known to work.
Download (0.040MB)
Added: 2005-10-06 License: MIT/X Consortium License Price:
1478 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above text terminals search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed