to help in
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2489
Tk::Help 0.2
Tk::Help is simple widget for creating a help system for Perl/Tk applications. more>>
Tk::Help is simple widget for creating a help system for Perl/Tk applications.
SYNOPSIS
use Tk::Help;
my $help = $main->Help(-variable => @array);
This is an answer to a personal need to be able to create help systems for my Perl/Tk applications. Originally, I just created a really big dialog and formatted all the text, which was tedious and clumsy.
I wanted to create something that looked similar to the Windows help. This is by no means as featured or fluid as the Windows help, but it should provide a (somewhat) simple means to create a help dialog where all someone should need to do is create the array with their help content.
<<lessSYNOPSIS
use Tk::Help;
my $help = $main->Help(-variable => @array);
This is an answer to a personal need to be able to create help systems for my Perl/Tk applications. Originally, I just created a really big dialog and formatted all the text, which was tedious and clumsy.
I wanted to create something that looked similar to the Windows help. This is by no means as featured or fluid as the Windows help, but it should provide a (somewhat) simple means to create a help dialog where all someone should need to do is create the array with their help content.
Download (0.005MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Tk::ContextHelp 0.10
Tk::ContextHelp is a context-sensitive help with perl/Tk. more>>
Tk::ContextHelp is a context-sensitive help with perl/Tk.
SYNOPSIS
use Tk::ContextHelp;
$ch = $top->ContextHelp;
$ch->attach($widget, -msg => ...);
$ch->HelpButton($top)->pack;
$ch2 = $top->ContextHelp(-podfile => "perlfaq");
$ch2->attach($widget2, -pod => description);
ContextHelp provides a context-sensitive help system. By activating the help system (either by clicking on a HelpButton or calling the activate method, the cursor changes to a left pointer with a question mark and the user may click on any widget in the window to get a help message or jump to the corresponding pod entry.
<<lessSYNOPSIS
use Tk::ContextHelp;
$ch = $top->ContextHelp;
$ch->attach($widget, -msg => ...);
$ch->HelpButton($top)->pack;
$ch2 = $top->ContextHelp(-podfile => "perlfaq");
$ch2->attach($widget2, -pod => description);
ContextHelp provides a context-sensitive help system. By activating the help system (either by clicking on a HelpButton or calling the activate method, the cursor changes to a left pointer with a question mark and the user may click on any widget in the window to get a help message or jump to the corresponding pod entry.
Download (0.010MB)
Added: 2006-10-28 License: Perl Artistic License Price:
1091 downloads
PHD Help Desk 1.3
PHD Help Desk provides help desk registry and follow-up software. more>>
PHD Help Desk provides help desk registry and follow-up software.
PHD Help Desk is software conceived for the registry and follow-up of help desks incidents. Registry of incidents allows classification in two levels (type and subtype), the state of the incident, a description, ticket assignment and priority, historical registry, and an audit.
Information can be reported in consultation format, to give reports or export the information for later processing in a database or spreadsheet.
Enhancements:
- Now the operators belong to a sector, in the same way that the users belong an area.
- The database update proccess will insert the sector table with the areas that belong to the operators in version 1.21.
- The ticket is now initialized as "private" by default.
- Only the operators can change this state.
- Two bugs in the support request that prevented the input of the request into the ticket database were corrected.
<<lessPHD Help Desk is software conceived for the registry and follow-up of help desks incidents. Registry of incidents allows classification in two levels (type and subtype), the state of the incident, a description, ticket assignment and priority, historical registry, and an audit.
Information can be reported in consultation format, to give reports or export the information for later processing in a database or spreadsheet.
Enhancements:
- Now the operators belong to a sector, in the same way that the users belong an area.
- The database update proccess will insert the sector table with the areas that belong to the operators in version 1.21.
- The ticket is now initialized as "private" by default.
- Only the operators can change this state.
- Two bugs in the support request that prevented the input of the request into the ticket database were corrected.
Download (0.16MB)
Added: 2007-07-13 License: GPL (GNU General Public License) Price:
839 downloads
IRC::Bot::Help 0.07
IRC::Bot::Help is a module to dispatch help for IRC::Bot. more>>
IRC::Bot::Help is a module to dispatch help for IRC::Bot.
SYNOPSIS
use IRC::Bot::Help;
my $seen = IRC::Bot::Help->new();
# later on...
# User asks for help in DCC CHAT
sub on_dcc_chat {
my ( $kernel, $id, $who, $msg ) = @_[ KERNEL, ARG0, ARG1, ARG3 ];
my $nick = ( split /!/, $who )[0];
# Do Stuff...
if ( $msg =~ m/^.help/i ) {
my $topic = $help->ask_help(all);
$kernel->post( NICK, dcc_chat, $id, $topic );
}
}
Basically holds a list of help topics and dispatches them on demand.
<<lessSYNOPSIS
use IRC::Bot::Help;
my $seen = IRC::Bot::Help->new();
# later on...
# User asks for help in DCC CHAT
sub on_dcc_chat {
my ( $kernel, $id, $who, $msg ) = @_[ KERNEL, ARG0, ARG1, ARG3 ];
my $nick = ( split /!/, $who )[0];
# Do Stuff...
if ( $msg =~ m/^.help/i ) {
my $topic = $help->ask_help(all);
$kernel->post( NICK, dcc_chat, $id, $topic );
}
}
Basically holds a list of help topics and dispatches them on demand.
Download (0.011MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1099 downloads
Getopt::Mixed::Help 0.18
Getopt::Mixed::Help Perl module can combine Getopt::Mixed with usage and help. more>>
Getopt::Mixed::Help Perl module can combine Getopt::Mixed with usage and help.
SYNOPSIS
use Getopt::Mixed::Help
(< filenames >... => filenames to be processed,
ENV => SCRIPT_OPT_,
ENV_ => SCRIPT_OPT_,
d>debug:i number => turn on debugging information (*),
e>execute => do it without asking for confirmation,
f>force => override all safety checks,
i>interactive => asks for confirmation before doing it,
n>no-execute => just print what would be done without doing it,
q>quiet => suppress all information,
s>summary => print summary information on exit,
v>verbose:i number => turn on verbose information (*),
(*) => (*) You may add a positive integer for a higher level.
);
if ($opt_...
export SCRIPT_OPT_INTERACTIVE=1
test_script -d -v 2 --summary some_file.ext other_file.ext
ABSTRACT
Getopt::Mixed::Help is a simplified interface to Getopt::Mixed adding usage (help) functionality. It automatically adds the options -?, -h and --help (the last two configurable) to print the usage text. It allows to get option values from the environment (if the operating system it runs on supports environment variables). It can also add different flavours of support for multiple options. Finally it supports debugging output of the options used.
The module uses a direct import mechanism called with a hash as parameter. The structure of the hash is as follows:
The key is a combined (SHORT > LONG [ARGUMENT SPECIFIER [VALUE IDENTIFIER]]) option description for Getopt::Mixed, except for the VALUE IDENTIFIER which is simply included into the help text. The value following the key is simply the help text for this option.
If the second character of the first key is not >, the first key is taken as descriptive identifiers for additional parameters and the help for them.
Any key starting with ( and ending with ) will be interpreted as a footnote (additional help text) to the real options. They should be used at the end of the list only.
A key equal to ENV is used to get default values for the remaining options from the environment. For any option not initialised on the command line an environment variable with the prefix of the value following ENV and a rest of the name identical to the uppercase long option name (e.g. SCRIPT_OPT_DEBUG) will be checked. If this environment variable exists, it will be used to set the option. Note that in the name of the rest of the environment variable uppercase is used and hyphens are relaced with underlines.
A key equal to ENV_ is used in the same way as the key ENV. In addition it allows for a special environment variable with the prefix of the value following ENV followed by a single underline (_) as combined initialiser (for more than one option, e.g. export SCRIPT_OPT__=debug verbose=2). Note that no whitespaces are allowed in the values of the options initialised this way as the string in the environment variable is parsed in a simple way.
The module defines the variable $optUsage containing the complete help text.
If an option debug exists and is choosen on the command line, this module will print all option values and all remaining parameters to standard error. The name of this option may be changed, see "changing the debug option" below in the "CHANGING DEFAULT BEHAVIOUR" section.
<<lessSYNOPSIS
use Getopt::Mixed::Help
(< filenames >... => filenames to be processed,
ENV => SCRIPT_OPT_,
ENV_ => SCRIPT_OPT_,
d>debug:i number => turn on debugging information (*),
e>execute => do it without asking for confirmation,
f>force => override all safety checks,
i>interactive => asks for confirmation before doing it,
n>no-execute => just print what would be done without doing it,
q>quiet => suppress all information,
s>summary => print summary information on exit,
v>verbose:i number => turn on verbose information (*),
(*) => (*) You may add a positive integer for a higher level.
);
if ($opt_...
export SCRIPT_OPT_INTERACTIVE=1
test_script -d -v 2 --summary some_file.ext other_file.ext
ABSTRACT
Getopt::Mixed::Help is a simplified interface to Getopt::Mixed adding usage (help) functionality. It automatically adds the options -?, -h and --help (the last two configurable) to print the usage text. It allows to get option values from the environment (if the operating system it runs on supports environment variables). It can also add different flavours of support for multiple options. Finally it supports debugging output of the options used.
The module uses a direct import mechanism called with a hash as parameter. The structure of the hash is as follows:
The key is a combined (SHORT > LONG [ARGUMENT SPECIFIER [VALUE IDENTIFIER]]) option description for Getopt::Mixed, except for the VALUE IDENTIFIER which is simply included into the help text. The value following the key is simply the help text for this option.
If the second character of the first key is not >, the first key is taken as descriptive identifiers for additional parameters and the help for them.
Any key starting with ( and ending with ) will be interpreted as a footnote (additional help text) to the real options. They should be used at the end of the list only.
A key equal to ENV is used to get default values for the remaining options from the environment. For any option not initialised on the command line an environment variable with the prefix of the value following ENV and a rest of the name identical to the uppercase long option name (e.g. SCRIPT_OPT_DEBUG) will be checked. If this environment variable exists, it will be used to set the option. Note that in the name of the rest of the environment variable uppercase is used and hyphens are relaced with underlines.
A key equal to ENV_ is used in the same way as the key ENV. In addition it allows for a special environment variable with the prefix of the value following ENV followed by a single underline (_) as combined initialiser (for more than one option, e.g. export SCRIPT_OPT__=debug verbose=2). Note that no whitespaces are allowed in the values of the options initialised this way as the string in the environment variable is parsed in a simple way.
The module defines the variable $optUsage containing the complete help text.
If an option debug exists and is choosen on the command line, this module will print all option values and all remaining parameters to standard error. The name of this option may be changed, see "changing the debug option" below in the "CHANGING DEFAULT BEHAVIOUR" section.
Download (0.014MB)
Added: 2007-07-16 License: Perl Artistic License Price:
830 downloads
Free Help Desk 1.08a
Help desk software is vital to the success of your help desk and customer support staff. more>>
Help desk software is vital to the success of your help desk and customer support staff. Tracking and responding to help desk calls is faster and more efficient when using well designed help desk software.
The design of this software comes from many years of help desk experience working in a help desk environment. All the basic tools for running a successful help desk are included in this help desk software package.
Help desk software should be used in any organization whether its a large corporation or a small startup company. Why should my company implement a helpdesk software solution? Some of the benefits of helpdesk software are improved customer service, faster response times and lower information technology costs. Lets outline these three areas in greater detail.
When a user contacts the computer support professional in your organization, what steps are taken? Does it depend on who answered the phone? Do the immediately drop any task and visit your desk? Do they jot your information down on a note pad? Do they attempt to resolve the issue on the phone at great length? What criteria merits the call be moved to another member of the IT staff, or merits a call the software vendor?
All these questions can be answered in some way within the use of help desk software. Helpdesk software forces your IT staff to handle help desk calls in a structured manner that can be counted on each time. When a helpdesk call is received, it should be immediately be entered into the help desk software database, even if it is easily answered.
At this point there is now a record of the call, and this allows other IT staff to view the contents of the problem and makes it a simple task for other IT staff members to offer solutions. This also prevents the call from being lost in the shuffle if staff is busy when the call is received. Your general staff will have much more confidence that when they place that call to your help desk staff, their call will be handled in a structured method to ensure their satisfaction.
If they can continue to work, they will not feel the need to keep calling or checking with IT staff on the progress, or worry that their call will not be answered in a reasonable amount of time. This allows them to focus on their tasks, and not be concerned with the status of their call.
Many help desk software solutions offer a self-help method, allowing the staff members in your company to submit a helpdesk request directly into the help desk system. (granted their computer is functioning enough for this) This feature greatly streamlines the process, and can increase response time for all users. Help desk support staff will not be interrupted by the phone call and have to stop working on another issue to record the call information.
In fact, it should be encouraged by the IT staff to submit all request possible with this method. When a request is entered into the system, it allows any available support personnel to respond to the request. It also allows support personnel to diversify calls, so if a calls is shown to be about a particular problem that a staff member has greater expertise with, that staff member will likely be able to solve the problem much quicker. Once each calls is resolved, the solution will then become available for future reference.
This is one of the greatest benefits an organization will receive from using a help desk system. This allows newer support staff to be able to answer many questions by simply searching the database for other calls. Also prevent 2 support staff from having to research for the same solution, this benefits in much faster response time for the end user.
Everything mentioned above will contribute to the overall quality of service in your organization, happier staff and faster response time will mean lower costs and higher productivity for your organization.
Enhancements:
- This release fixes a bug found in the main form that caused some performance problems in certain system configurations.
<<lessThe design of this software comes from many years of help desk experience working in a help desk environment. All the basic tools for running a successful help desk are included in this help desk software package.
Help desk software should be used in any organization whether its a large corporation or a small startup company. Why should my company implement a helpdesk software solution? Some of the benefits of helpdesk software are improved customer service, faster response times and lower information technology costs. Lets outline these three areas in greater detail.
When a user contacts the computer support professional in your organization, what steps are taken? Does it depend on who answered the phone? Do the immediately drop any task and visit your desk? Do they jot your information down on a note pad? Do they attempt to resolve the issue on the phone at great length? What criteria merits the call be moved to another member of the IT staff, or merits a call the software vendor?
All these questions can be answered in some way within the use of help desk software. Helpdesk software forces your IT staff to handle help desk calls in a structured manner that can be counted on each time. When a helpdesk call is received, it should be immediately be entered into the help desk software database, even if it is easily answered.
At this point there is now a record of the call, and this allows other IT staff to view the contents of the problem and makes it a simple task for other IT staff members to offer solutions. This also prevents the call from being lost in the shuffle if staff is busy when the call is received. Your general staff will have much more confidence that when they place that call to your help desk staff, their call will be handled in a structured method to ensure their satisfaction.
If they can continue to work, they will not feel the need to keep calling or checking with IT staff on the progress, or worry that their call will not be answered in a reasonable amount of time. This allows them to focus on their tasks, and not be concerned with the status of their call.
Many help desk software solutions offer a self-help method, allowing the staff members in your company to submit a helpdesk request directly into the help desk system. (granted their computer is functioning enough for this) This feature greatly streamlines the process, and can increase response time for all users. Help desk support staff will not be interrupted by the phone call and have to stop working on another issue to record the call information.
In fact, it should be encouraged by the IT staff to submit all request possible with this method. When a request is entered into the system, it allows any available support personnel to respond to the request. It also allows support personnel to diversify calls, so if a calls is shown to be about a particular problem that a staff member has greater expertise with, that staff member will likely be able to solve the problem much quicker. Once each calls is resolved, the solution will then become available for future reference.
This is one of the greatest benefits an organization will receive from using a help desk system. This allows newer support staff to be able to answer many questions by simply searching the database for other calls. Also prevent 2 support staff from having to research for the same solution, this benefits in much faster response time for the end user.
Everything mentioned above will contribute to the overall quality of service in your organization, happier staff and faster response time will mean lower costs and higher productivity for your organization.
Enhancements:
- This release fixes a bug found in the main form that caused some performance problems in certain system configurations.
Download (0.19MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1150 downloads
SVK::Help::Intro 1.08
SVK::Help::Intro is a introduction to svk. more>>
SVK::Help::Intro is a introduction to svk.
svk is an open source distributed version control system which is designed to interoperate with Subversion. Like other version control systems, it keeps track of each change you make to a project and allows you to maintain multiple parallel tracks of development. svk also has a number of powerful features which are rarely found in other version control systems.
svk has been designed from the ground up to support development models that are simple and intuitive for software developers. It has advanced smart branching and merging semantics that make it easy to maintain multiple parallel lines of development and painless to merge changes across branches. svks built in patch manager makes it easy for non-committers to share changes among themselves and with project maintainers.
svk provides powerful support for distributed development. Every svk client is capable of fully mirroring remote Subversion repositories so that you have full access to a projects history at any time, even when they are off the network or on the wrong side of a firewall. You can branch a remote project at any point in that projects history, whether or not you have write access to that projects repository. Later, you can integrate changes from the projects master server (usually with a single command) or push your branch up to another Subversion repository.
<<lesssvk is an open source distributed version control system which is designed to interoperate with Subversion. Like other version control systems, it keeps track of each change you make to a project and allows you to maintain multiple parallel tracks of development. svk also has a number of powerful features which are rarely found in other version control systems.
svk has been designed from the ground up to support development models that are simple and intuitive for software developers. It has advanced smart branching and merging semantics that make it easy to maintain multiple parallel lines of development and painless to merge changes across branches. svks built in patch manager makes it easy for non-committers to share changes among themselves and with project maintainers.
svk provides powerful support for distributed development. Every svk client is capable of fully mirroring remote Subversion repositories so that you have full access to a projects history at any time, even when they are off the network or on the wrong side of a firewall. You can branch a remote project at any point in that projects history, whether or not you have write access to that projects repository. Later, you can integrate changes from the projects master server (usually with a single command) or push your branch up to another Subversion repository.
Download (0.26MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1089 downloads
iPodDB::Menu::Help 0.03
iPodDB::Menu::Help is the help menu. more>>
iPodDB::Menu::Help is the help menu.
SYNOPSIS
my $help = iPodDB::Menu::Help->new( $frame );
This is the Help menu portion of the menu bar.
<<lessSYNOPSIS
my $help = iPodDB::Menu::Help->new( $frame );
This is the Help menu portion of the menu bar.
Download (0.009MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads

Crafty Syntax Live Help (linux) 2.4.16
Live help functionality that can be proactively pushed to visitors to your site. more>> Crafty Syntax Live Help (CSLH) is an open source live support solution that helps customer support with live help functionality that can be proactively pushed to visitors to your site or requested by the consumer. Crafty Syntax includes a large range of features to allow multiple operators, multiple departments and multiple languages to be used.
Crafty Syntax Live Help is free and is progammed in PHP with Mysql for the datatabase. Other highlighted features include the ability to create your own questions, auto inviting visitors, referer tracking, page tracking, ability to view what the customer is typing as they type, multiple chat sessions, sound alert, leave a message if offline, push urls, quick responses, Customizable graphics, and multiple operators. runs on your server and is open source GPL.<<less
Download (1.17MB)
Added: 2009-04-23 License: Freeware Price: Free
183 downloads
SVK::Command::Help 1.08
SVK::Command::Help is a Perl module to show help. more>>
SVK::Command::Help is a Perl module to show help.
OPTIONS
Optionally svk helps can pipe through a pager, for it is easier to read if the output is too long. For using this feature, please set environment variable SVKPAGER to some pager program. For example:
# bash, zsh users
export SVKPAGER=/usr/bin/less
# tcsh users
setenv SVKPAGER /usr/bin/less
<<lessOPTIONS
Optionally svk helps can pipe through a pager, for it is easier to read if the output is too long. For using this feature, please set environment variable SVKPAGER to some pager program. For example:
# bash, zsh users
export SVKPAGER=/usr/bin/less
# tcsh users
setenv SVKPAGER /usr/bin/less
Download (0.26MB)
Added: 2006-10-27 License: Perl Artistic License Price:
1092 downloads
Fantasy Chess v2 Revision 11
Fantasy Chess is a chess game environment with a game server. more>>
Fantasy Chess is a chess game environment with a game server, GTK GUI, private and public AI, and a lot of libraries to help developers.
<<less Download (1.7MB)
Added: 2006-06-16 License: GPL (GNU General Public License) Price:
1234 downloads
Help Center Live 2.1.3a
Help Center Live strives to be the best on-line customer service application available. more>>
Help Center Live software strives to be the best on-line customer service application available. The modular construction allows add-ons to be crafted for most any situation.
HCL has a strong following due to its speed and robust capability. Current goals are to enhance administration and further enhance the module system of HCL, to bring it to the forefront of live CRM.
Enhancements:
- Provided work around for PHP 5.2.2 bug in core.
- An issue with initiated chats not working was fixed by putting more real-world timeouts into the configuration.
- More bots were added to the bot killer.
- An issue with setup was fixed wherein setup would fail at stage four in some situations.
- Some SQL issues were fixed.
- A bug in the Portuguese language file was fixed.
- A couple of bugs in setup were fixed.
- A bug in the saving of transcripts which affected certain character maps was fixed.
- A config option to prevent operators from being able to delete transcripts was added.
- The Smart template system was updated.
- The phpmailer class was updated.
<<lessHCL has a strong following due to its speed and robust capability. Current goals are to enhance administration and further enhance the module system of HCL, to bring it to the forefront of live CRM.
Enhancements:
- Provided work around for PHP 5.2.2 bug in core.
- An issue with initiated chats not working was fixed by putting more real-world timeouts into the configuration.
- More bots were added to the bot killer.
- An issue with setup was fixed wherein setup would fail at stage four in some situations.
- Some SQL issues were fixed.
- A bug in the Portuguese language file was fixed.
- A couple of bugs in setup were fixed.
- A bug in the saving of transcripts which affected certain character maps was fixed.
- A config option to prevent operators from being able to delete transcripts was added.
- The Smart template system was updated.
- The phpmailer class was updated.
Download (0.73MB)
Added: 2007-07-11 License: GPL (GNU General Public License) Price:
841 downloads
Sort MP3 0.1
Sort MP3 is a script was made to help in organizing MP3s. more>>
Sort MP3 is a script was made to help in organizing MP3s. If you have one directory with allot of mp3s and the names are not very readable you can run this script against them. It will read the id tag of a mp3 and rename the file to the title of the song but with _ instead of spaces. It can also create a directory structure from the id tag if the -c option is used. The structure will be put in the same directory the mp3s are in. It will be something like: "/BANDNAME/CDTITLE/SONG.mp3"
Usage: sort_mp3.pl [options]
Options should be separated by a space and my be
in any order.
-c Create a directory structure from the mp3 tag.
It is made inside the directory holding the un-named mp3s.
If not set the files will just be renamed.
Example: "/BANDNAME/CDTITLE/SONG.mp3"
-d= Path to the directory where mp3s can be found.
There should be no / at the end and no spaces.
Example: "-d=/unsorted_mp3s"
<<lessUsage: sort_mp3.pl [options]
Options should be separated by a space and my be
in any order.
-c Create a directory structure from the mp3 tag.
It is made inside the directory holding the un-named mp3s.
If not set the files will just be renamed.
Example: "/BANDNAME/CDTITLE/SONG.mp3"
-d= Path to the directory where mp3s can be found.
There should be no / at the end and no spaces.
Example: "-d=/unsorted_mp3s"
Download (0.002MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1196 downloads
Yelp 2.19.90
Yelp is a help browser for GNOME 2.4 which supports DocBook documents, man and info. more>>
Yelp is a help browser for GNOME 2.4 which supports DocBook documents, man and info.
Yelp provides a simple graphical interface for viewing DocBook, HTML, man, and info formatted documentation. The name Yelp was suggested by Daniel Lundin. Yelp is pronounced the same as the swedish word for help.
<<lessYelp provides a simple graphical interface for viewing DocBook, HTML, man, and info formatted documentation. The name Yelp was suggested by Daniel Lundin. Yelp is pronounced the same as the swedish word for help.
Download (1.1MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
815 downloads
Html To Xhtml Convertor 0.7.7
Html to Xhtml Convertor is a straight-forward Perl script to convert HTML pages into XHTML pages. more>>
Html to Xhtml Convertor is a straight-forward Perl script to convert HTML pages into XHTML pages.
It can process batches of files, convert Windows/Unix/Mac line breaks, and deal with attribute minimization, quoting of attribute values, and more.
Installation:
To install, simply run the following command as root: make install
Alternatively, simply move the htx file to wherever you would like. The command above installs it to /usr/local/bin/
Usage:
Use the following command to get usage information after installing:
htx --help
or if the htx file is in the current directory, try:
./htx --help
Example use:
htx --dos --verbose index.html index2.html
That will take a file with DOS line breaks, index.html, convert it
to XHTML as best it can and save the result as index2.html
Version restrictions:
- oes not check for closing < /p >, < /li > or other block-level tags.
- Assumes there are no < or > which are not part of tags, use < and >
- Does not distingish between block and inline tags.
Enhancements:
- Added the --tty option to dump output to STDOUT rather than a file
- Added detection of old ICRA data
- Improved handling of single quoted attribute values
- Removed updating of Pico version
- Fixed a typo with the years in the Changelog file
- Did a couple of very minor internal changes
<<lessIt can process batches of files, convert Windows/Unix/Mac line breaks, and deal with attribute minimization, quoting of attribute values, and more.
Installation:
To install, simply run the following command as root: make install
Alternatively, simply move the htx file to wherever you would like. The command above installs it to /usr/local/bin/
Usage:
Use the following command to get usage information after installing:
htx --help
or if the htx file is in the current directory, try:
./htx --help
Example use:
htx --dos --verbose index.html index2.html
That will take a file with DOS line breaks, index.html, convert it
to XHTML as best it can and save the result as index2.html
Version restrictions:
- oes not check for closing < /p >, < /li > or other block-level tags.
- Assumes there are no < or > which are not part of tags, use < and >
- Does not distingish between block and inline tags.
Enhancements:
- Added the --tty option to dump output to STDOUT rather than a file
- Added detection of old ICRA data
- Improved handling of single quoted attribute values
- Removed updating of Pico version
- Fixed a typo with the years in the Changelog file
- Did a couple of very minor internal changes
Download (0.010MB)
Added: 2005-08-06 License: GPL (GNU General Public License) Price:
1543 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 to help in 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