Main > Free Download Search >

Free netflow highlights software for linux

netflow highlights

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 418
HTML::FormHighlight 0.03

HTML::FormHighlight 0.03


HTML::FormHighlight Perl module can help you to highlights fields in an HTML form. more>>
HTML::FormHighlight Perl module can help you to highlights fields in an HTML form.

SYNOPSIS

use HTML::FormHighlight;

my $h = new HTML::FormHighlight;

print $h->highlight(
scalarref => $form,
fields => [ A, B, C ],
);

print $h->highlight(
scalarref => $form,
fields => [ A, B, C ],
highlight => *,
mark => ,
all_in_group => 1,
);

HTML::FormHighlight can be used to highlight fields in an HTML form. It uses HTML::Parser to parse the HTML form, and then places text somewhere before each field to highlight the field. You can specify which fields to highlight, and optionally supply a CGI object for it to check whether or not an input value exists before highlighting the field.

It can be used when displaying forms where a user hasnt filled out a required field. The indicator can make it easier for a user to locate the fields that theyve missed. If youre interested in more advanced form validation, see HTML::FormValidator. HTML::FillInForm can also be used to fill form fields with values that have already been submitted.

METHODS

new()

Create a new HTML::FormHighlight object. Example:

$h = new HTML::FormHighlight;

highlight()

Parse through the HTML form and highlight fields. The method returns a scalar containing the parsed form. Here are a few examples:

To highlight the fields A, B and C (form on disk):

$h->highlight(
file => form.html,
fields => [ A, B, C ],
);

To highlight the fields A and B with a smiley face
(form as a scalar):

$h->highlight(
scalarref => $form,
fields => [ A, B ],
highlight =>,
);

To highlight the fields A and B if they havent been supplied
by form input (form as an array of lines):

$q = new CGI;

$h->highlight(
arrayref => @form,
fields => [ A, B ],
fobject => $q,
);

Note: highlight() will only highlight the first option in a radio or select group unless the all_in_group flag is set to a true value.

Heres a list of possible parameters for highlight() and their descriptions:
scalarref - a reference to a scalar that contains the text of the form.
arrayref - a reference to an array of lines that contain the text of the form.
file - a scalar that contains the file name where the form is kept.

fields - a reference to an array that lists the fields to be highlighted. If used in conjunction with "fobject" or "fdat", only the fields listed that are empty will be highlighted.

highlight - a scalar that contains the highlight indicator. Defaults to a red asterisk (< font color="#FF0000" size="+1" >< b >*< /b >< /font >).

mark - a regex specifying where to place the highlight indicator. If this is empty, the indicator will be inserted directly before the form field. The HTML form does not need to contain the text specified in the regex before each form field. highlight() will only use a mark for a field if there is no other form field before the field its highlighting. If there is more than one mark before a field, it will only highlight the last mark. If it doesnt find a mark, it will insert the indicator directly before the form field

<<less
Download (0.005MB)
Added: 2007-07-12 License: Perl Artistic License Price:
834 downloads
JHighlight 1.0

JHighlight 1.0


JHighlight is an embeddable Java syntax highlighting library that supports Java, C++, HTML, XHTML, XML. more>>
JHighlight is an embeddable Java syntax highlighting library that supports Java, Groovy, C++, HTML, XHTML, XML, and LZX languages and outputs to XHTML.
The library can be used in several ways: embedded into another tool (for instance a blog or forum), through the command-line to generate highlighted files locally, or as a servlet filter to highlight source files on your server on-the- fly.
JHighlight project also supports RIFE templates tags and highlights them clearly so that you can easily identify the difference between your RIFE markup and the actual marked up source.
The library can be used in several ways:
- embedded into another tool (for instance a blog or forum)
- through the commandline to generate highlighted files locally
- as a servlet filter to highlight source files on your server on-the-fly
On the commandline, you should call it like this (on one line):
java com.uwyn.jhighlight.JHighlight
[--verbose] [--fragment]
[-d destdir] [-e encoding] file|dir ...
--verbose Output messages about what the parser is doing.
--fragment Output fragments instead of complete documents.
-d Specify the destination directory
-e Specify the encoding of the files
Enhancements:
- Finalizes the API, adds support for Groovy and C++ highlighting, and has various contributions to improve embedability.
<<less
Download (0.091MB)
Added: 2006-03-14 License: LGPL (GNU Lesser General Public License) Price:
1319 downloads
Highlight 2.6.2

Highlight 2.6.2


Highlight is a universal converter from source code to HTML, XHTML, RTF, TeX, LaTeX, XSL-FO, and XML. more>>
Highlight is a universal converter from source code to HTML, XHTML, RTF, TeX, XSL-FO, LaTeX and XML. (X)HTML output is formatted by Cascading Style Sheets.
It supports 100 programming languages and includes 50 highlighting color themes. Its possible to easily enhance the parsing database. The converter includes some features to provide a consistent layout of the input code.
Main features:
- Coloured output in HTML, XHTML, RTF, TeX, LaTeX, XSL-FO and XML format
- Supports 100+ programming languages
- Includes 50 colour themes
- Platform independent
- Customizable and easy to use
Enhancements:
- Keywords may be outputted in lower or upper case, if syntax is not case sensitive.
- A new option to mark lines in HTML output was added.
- Artistic Style code was updated.
- Input files can be tested for various binary file formats to avoid invalid parsing attempts.
- Support for Open Object Rexx was added.
<<less
Download (0.35MB)
Added: 2007-07-21 License: GPL (GNU General Public License) Price:
830 downloads
mod_highlight 0.1.0

mod_highlight 0.1.0


mod_highlight provdes syntax highlighting as an Apache 2.0 Filter Module. more>>
mod_highlight is an Apache module provides syntax highlighting. By Embeding the Colorer-Take5 library the module can process just about any programing language.

<<less
Download (1.7MB)
Added: 2006-05-15 License: The Apache License 2.0 Price:
1257 downloads
Picsearch Highlight 1.6

Picsearch Highlight 1.6


Picsearch Highlight allows you to conveniently search for images with text that you highlight. more>>
Picsearch Highlight allows you to conveniently search for images with text that you highlight.

Use this extension to conveniently search for images with text that you highlight. This is extremely useful for visualizing results for text phrases. Your search results pop open in a new tab. Very similar to the "Search Web For..." feature.

<<less
Download (0.006MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
930 downloads
Text::Highlight 0.04

Text::Highlight 0.04


Text::Highlight is a syntax highlighting framework. more>>
Text::Highlight is a syntax highlighting framework.

SYNOPSIS

use Text::Highlight preload;
my $th = new Text::Highlight(wrapper => "
 %s 
n");
print $th->highlight(Perl, $code);

Text::Highlight is a flexible and extensible tool for highlighting the syntax in programming code. The markup used and languages supported are completely customizable. It can output highlighted code for embedding in HTML, terminal escapes for an ANSI-capable display, or even posting on an online forum. Bundled support includes C/C++, CSS, HTML, Java, Perl, PHP and SQL.

INSTALLATION

In order to install and use this package you will need Perl version 5.005 or better.

Installation as usual:

% perl Makefile.PL
% make
% make test
% su
Password: *******
% make install

<<less
Download (0.048MB)
Added: 2007-06-14 License: Perl Artistic License Price:
862 downloads
GNU Source-highlight 2.7

GNU Source-highlight 2.7


GNU Source-highlight produces a document with syntax highlighting when given a source file. more>>
GNU Source-highlight produces a document with syntax highlighting when given a source file.

Source-highlight reads source language specifications dynamically, thus it can be easily extended (without recompiling the sources) for handling new languages.

GNU Source-highlight also reads output format specifications dynamically, and thus it can be easily extended (without recompiling the sources) for handling new output formats. The syntax for these specifications is quite easy (take a look at the manual).

Since version 2.2, source-highlight can also generate cross references; in order to do this it relies on GNU Ctags.

These are the output formats already supported:

HTML
XHTML
LATEX
TEXINFO
ANSI color escape sequences (you can use this feature with less)

These are the input languages (or input formats) already supported (in alphabetical order):

C/C++
Bison
Caml
Changelog
Diff
Flex
Fortran
Html
Java
Javascript
Latex
Logtalk
Log files
Lua
ML
Pascal
Perl
PHP
Prolog
Python
Ruby
<<less
Download (0.60MB)
Added: 2007-06-10 License: GPL (GNU General Public License) Price:
867 downloads
Highlighter 0.1.4

Highlighter 0.1.4


Highlighter allows you to highlight text on a webpage by selecting it and clicking Highlight on the popup menu. more>>
Highlighter is a Firefox extension that allows you to highlight text on a webpage by selecting it and clicking "Highlight" on the popup menu. If you hold down the Shift key while opening the popup menu, a sub-menu appears with more advanced options.

Major features include an "Instant Highlight" function, a tracker system to keep count of how many highlights were made, a warning dialog when trying to leave a page with highlights and more.

"Instant Highlight" means that as soon as you select any text on the webpage, it automatically gets highlighted. There is no need to access the popup menu or press any shortcut keys.

Please see the screenshots in the "View more screenshots" link above or visit my homepage for more information.

<<less
Download (0.012MB)
Added: 2007-06-02 License: MPL (Mozilla Public License) Price:
911 downloads
Syntax::Highlight::Shell 0.04

Syntax::Highlight::Shell 0.04


Syntax::Highlight::Shell is a Perl module to highlight shell scripts. more>>
Syntax::Highlight::Shell is a Perl module to highlight shell scripts.

SYNOPSIS

use Syntax::Highlight::Shell;

my $highlighter = new Syntax::Highlight::Shell;
$output = $highlighter->parse($script);
If $script contains the following shell code:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi
then the resulting HTML contained in $output will render like this:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi

This module is designed to take shell scripts and highlight them in HTML with meaningful colours using CSS. The resulting HTML output is ready for inclusion in a web page. Note that no reformating is done, all spaces are preserved.

<<less
Download (0.015MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
935 downloads
Locale file highlighter for Vim

Locale file highlighter for Vim


Locale file highlighter for Vim is highlights ISO TR 14652-style locale input files. more>>
Glibc uses locale (or fdcc) files to define cultural conventions. The files are usualy named
xx_ZZ where xx is the ISO language code and ZZ is the ISO country code.
Main features:
- highlights only valid keys with various LC_ sections
- Shows bad < UNNNN > unicode as an error
Installation
- Copy the file to your .vim/syntax directory in a locale file type: set syntax=fdcc
Filetype detection
Slightly harder as locale files do not have any specific suffix - but heres what to do
Insert this after the Diff section in your scripts.vim file. It does initial patern matching and then looks within the file to determine if it is a locale file.
The double quotes below are escaped on this site so remove those escapes. In fact it will probably mess up all back slashes aswell.
" CVS diff
else
let lnum = 1
while getline(lnum) =~ "^? " && lnum < line("$")
let lnum = lnum + 1
endwhile
if getline(lnum) =~ ^Index:s+f+$
set ft=diff
" locale input files: Formal Definitions of Cultural Conventions
" filename must be like en_US, fr_FR@euro or en_US.UTF-8
"elseif expand("%") =~ (ll_uu($|[.@])|i18n|POSIX|translit_*)
elseif expand("%") =~ aa_aa($|[.@])|i18n$|POSIX$|translit_
let lnum = 1
while lnum < 100 && lnum < line("$")
if getline(lnum) =~ ^LC_(IDENTIFICATION|CTYPE|COLLATE|MONETARY|NUMERIC|TIME|MESSAGES|PAPER|TELEPHONE|MEASUREMENT|NAME|ADDRESS)$
setf fdcc
break
endif
let lnum = lnum + 1
endwhile
endif
endif
unlet s:line2 s:line3 s:line4 s:line5
endif
<<less
Download (0.001MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1654 downloads
Syntax::Highlight::Perl 1.0

Syntax::Highlight::Perl 1.0


Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures. more>>
Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures.

SYNOPSIS

# simple procedural
use Syntax::Highlight::Perl :BASIC; # or :FULL

print format_string($my_string);


# OO
use Syntax::Highlight::Perl;

my $formatter = new Syntax::Highlight::Perl;
print $formatter->format_string($my_string);

This module provides syntax highlighting for Perl code. The design bias is roughly line-oriented and streamed (ie, processing a file line-by-line in a single pass). Provisions may be made in the future for tasks related to "back-tracking" (ie, re-doing a single line in the middle of a stream) such as speeding up state copying.

<<less
Download (0.033MB)
Added: 2007-04-03 License: Perl Artistic License Price:
935 downloads
Syntax::Highlight::Universal 0.4

Syntax::Highlight::Universal 0.4


Syntax::Highlight::Universal is a Perl module for syntax highlighting based on the Colorer library. more>>
Syntax::Highlight::Universal is a Perl module for syntax highlighting based on the Colorer library.

SYNOPSIS

use Syntax::Highlight::Universal;
my $highlighter = Syntax::Highlight::Universal->new;

$highlighter->addConfig("hrc/proto.hrc");
$highlighter->setPrecompiledConfig("precompiled.hrcc");
$highlighter->setCacheDir("/tmp/highlighter");
$highlighter->setCachePrefixLen(2);

my $result = $highlighter->highlight("perl", "print Hello, World!");

my $callbacks = {
initParsing => &myInitHandler,
addRegion => &myRegionHandler,
enterScheme => &mySchemeStartHandler,
leaveScheme => &mySchemeEndHandler,
finalizeParsing => &myFinalizeHandler,
};
$highlighter->highlight("perl", "print Hello, World!", $callbacks);

$highlighter->precompile("precompiled.hrcc");

ABSTRACT

This module can process text of any format and produce a syntax highlighted version of it. The default output format is (X)HTML, custom formats are also possible. It uses parts of the Colorer library (http://colorer.sf.net/) and supports its HRC configuration files (http://colorer.sf.net/hrc-ref/). Configuration files for about 100 file formats are included.

<<less
Download (0.67MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Syntax::Highlight::HTML 0.04

Syntax::Highlight::HTML 0.04


Syntax::Highlight::HTML is a Perl module to highlight a HTML syntax. more>>
Syntax::Highlight::HTML is a Perl module to highlight a HTML syntax.

SYNOPSIS

use Syntax::Highlight::HTML;

my $highlighter = new Syntax::Highlight::HTML;
$output = $highlighter->parse($html);
If $html contains the following HTML fragment:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>
then the resulting HTML contained in $output will render like this:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>

This module is designed to take raw HTML input and highlight it (using a CSS stylesheet, see "Notes" for the classes). The returned HTML code is ready for inclusion in a web page.
It is intented to be used as an highlighting filter, and as such does not reformat or reindent the original HTML code.

<<less
Download (0.016MB)
Added: 2007-04-03 License: Perl Artistic License Price:
935 downloads
Lucene::Search::Highlight 0.01

Lucene::Search::Highlight 0.01


Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results. more>>
Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results.

SYNOPSIS

Load highlight classes into namespace

use Lucene::Search::Highlight;

Create Formatter and Query Scorer

my $formatter = new

Lucene::Search::Highlight::SimpleHTMLFormatter("< b >", "< /b >");

my $scorer = new

Lucene::Search::Highlight::QueryScorer($query);

Create Highlighter

my $highlighter = new

Lucene::Search::Highlight::Highlighter($formatter, $scorer);

Get best fragements with highlighted terms

my $fragement = $highlighter->getBestFragment($analyzer, $field, $text);

my $fragements = $highlighter->getBestFragments($analyzer, $field, $text, $num_fragements, $separator);

<<less
Download (0.006MB)
Added: 2007-04-03 License: Perl Artistic License Price:
936 downloads
DB based NetFlow Collector 1.0

DB based NetFlow Collector 1.0


DB based NetFLow Collector aims to collect Cisco NetFlow data and store it to a database. more>>
DB based NetFLow Collector aims to collect Cisco NetFlow data and store it to a database.
DB based NetFlow Collector has a plugin interface, which makes it flexible for fitting in particular tasks.
Enhancements:
- First release. post your comments/bug reports.
<<less
Download (0.47MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1231 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5