Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

subtlext(1) [debian man page]

SUBTLEXT(1)															       SUBTLEXT(1)

NAME
subtlext - a ruby extension for subtle SYNOPSIS
subtlext DESCRIPTION
subtlext is an extension that brings the power of subtler to Ruby. A compending list of the classes with it's functionality can be found in rdoc and informations about the available unit tests in the devel- opment section. EXAMPLE
require("subtle/subtlext") puts "subtle %s on %s" % [Subtlext::Subtle.version, Subtlext::Subtle.running? ? Subtlext::Subtle.display : "none"] puts "Tags: %s" % [Subtlext::Tag[:all].join(", ")] # Views views = [] Subtlext::View[:all].each do |v| views.push("%s (%s)" % [v.current? ? "[#{v}]" : v, v.tags.join(", ")]) end puts "Views: %s" % [views.join(", ")] # Clients clients = [] Subtlext::Client[:all].each do |c| clients.push("%s (%s)" % [c, c.tags.join(", ")]) end puts "Clients: %s" % [clients.join(", ")] OUTPUT
subtle 0.8.1684 on :0.0 Tags: default, test, void, terms, browser, editor, stick, float, eight, two, seven, one, bashrun, sakura, python Views: terms (terms, eight, two), [www] (browser, eight, two), void (default, void, eight, two), editor (test, editor, seven, one) Clients: urxvt2 (two, one), urxvt1 (eight, seven), subtle - Subtlext - Redmine - Vimperator (browser), Xephyr on :2.0 (ctrl+shift grabs mouse and keyboard) (test, float), event.c (~/projects/subtle/src/subtle) - GVIM (editor) BUGS
Report bugs at http://subforge.org/projects/subtle/issues Homepage: http://subtle.subforge.org COPYRIGHT
Copyright (c) Christoph Kappel unexist@subforge.org SEE ALSO
subtle(1), subtler(1), sur(1), surserver(1) October 2011 SUBTLEXT(1)

Check Out this Related Man Page

HTML::Filter(3) 					User Contributed Perl Documentation					   HTML::Filter(3)

NAME
HTML::Filter - Filter HTML text through the parser NOTE
This module is deprecated. The "HTML::Parser" now provides the functionally of "HTML::Filter" much more efficiently with the the "default" handler. SYNOPSIS
require HTML::Filter; $p = HTML::Filter->new->parse_file("index.html"); DESCRIPTION
"HTML::Filter" is an HTML parser that by default prints the original text of each HTML element (a slow version of cat(1) basically). The callback methods may be overridden to modify the filtering for some HTML elements and you can override output() method which is called to print the HTML text. "HTML::Filter" is a subclass of "HTML::Parser". This means that the document should be given to the parser by calling the $p->parse() or $p->parse_file() methods. EXAMPLES
The first example is a filter that will remove all comments from an HTML file. This is achieved by simply overriding the comment method to do nothing. package CommentStripper; require HTML::Filter; @ISA=qw(HTML::Filter); sub comment { } # ignore comments The second example shows a filter that will remove any <TABLE>s found in the HTML file. We specialize the start() and end() methods to count table tags and then make output not happen when inside a table. package TableStripper; require HTML::Filter; @ISA=qw(HTML::Filter); sub start { my $self = shift; $self->{table_seen}++ if $_[0] eq "table"; $self->SUPER::start(@_); } sub end { my $self = shift; $self->SUPER::end(@_); $self->{table_seen}-- if $_[0] eq "table"; } sub output { my $self = shift; unless ($self->{table_seen}) { $self->SUPER::output(@_); } } If you want to collect the parsed text internally you might want to do something like this: package FilterIntoString; require HTML::Filter; @ISA=qw(HTML::Filter); sub output { push(@{$_[0]->{fhtml}}, $_[1]) } sub filtered_html { join("", @{$_[0]->{fhtml}}) } SEE ALSO
HTML::Parser COPYRIGHT
Copyright 1997-1999 Gisle Aas. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.16.3 2013-03-25 HTML::Filter(3)
Man Page