The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Copyright (c) 2005 - 2006 Hans Jeuken. All rights reserved.
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

# This file was generated from the 'katexml/php-html.xml' file of the syntax highlight
# engine of the kate text editor (http://kate.kde.org

#kate xml version 1.98
#kate version 2.4
#kate author Wilbert Berendsen (wilbert@kde.nl)
#generated: Wed Nov  1 21:17:51 2006, localtime

package Syntax::Highlight::Engine::Kate::PHP_HTML;

use vars qw($VERSION);
$VERSION = '0.02';

use strict;
use warnings;
use base('Syntax::Highlight::Engine::Kate::Template');

sub new {
	my $proto = shift;
	my $class = ref($proto) || $proto;
	my $self = $class->SUPER::new(@_);
	$self->attributes({
		'Attribute' => 'Others',
		'CDATA' => 'Operator',
		'Comment' => 'Comment',
		'Doctype' => 'DataType',
		'Element' => 'Keyword',
		'EntityRef' => 'DecVal',
		'Error' => 'Error',
		'Normal Text' => 'Normal',
		'PEntityRef' => 'DecVal',
		'Processing Instruction' => 'Keyword',
		'Value' => 'String',
	});
	$self->contextdata({
		'CDATA' => {
			callback => \&parseCDATA,
			attribute => 'Normal Text',
		},
		'CSS' => {
			callback => \&parseCSS,
			attribute => 'Normal Text',
		},
		'CSS content' => {
			callback => \&parseCSScontent,
			attribute => 'Normal Text',
		},
		'Comment' => {
			callback => \&parseComment,
			attribute => 'Comment',
		},
		'Doctype' => {
			callback => \&parseDoctype,
			attribute => 'Normal Text',
		},
		'Doctype Internal Subset' => {
			callback => \&parseDoctypeInternalSubset,
			attribute => 'Normal Text',
		},
		'Doctype Markupdecl' => {
			callback => \&parseDoctypeMarkupdecl,
			attribute => 'Normal Text',
		},
		'Doctype Markupdecl DQ' => {
			callback => \&parseDoctypeMarkupdeclDQ,
			attribute => 'Value',
		},
		'Doctype Markupdecl SQ' => {
			callback => \&parseDoctypeMarkupdeclSQ,
			attribute => 'Value',
		},
		'El Close' => {
			callback => \&parseElClose,
			attribute => 'Normal Text',
		},
		'El Close 2' => {
			callback => \&parseElClose2,
			attribute => 'Normal Text',
		},
		'El Close 3' => {
			callback => \&parseElClose3,
			attribute => 'Normal Text',
		},
		'El Open' => {
			callback => \&parseElOpen,
			attribute => 'Normal Text',
		},
		'FindAttributes' => {
			callback => \&parseFindAttributes,
			attribute => 'Normal Text',
		},
		'FindDTDRules' => {
			callback => \&parseFindDTDRules,
			attribute => 'Normal Text',
		},
		'FindEntityRefs' => {
			callback => \&parseFindEntityRefs,
			attribute => 'Normal Text',
		},
		'FindHTML' => {
			callback => \&parseFindHTML,
			attribute => 'Normal Text',
		},
		'FindPEntityRefs' => {
			callback => \&parseFindPEntityRefs,
			attribute => 'Normal Text',
		},
		'FindPHP' => {
			callback => \&parseFindPHP,
		},
		'JS' => {
			callback => \&parseJS,
			attribute => 'Normal Text',
		},
		'JS comment close' => {
			callback => \&parseJScommentclose,
			attribute => 'Comment',
			lineending => '#pop',
		},
		'JS content' => {
			callback => \&parseJScontent,
			attribute => 'Normal Text',
		},
		'PI' => {
			callback => \&parsePI,
			attribute => 'Normal Text',
		},
		'Start' => {
			callback => \&parseStart,
			attribute => 'Normal Text',
		},
		'Value' => {
			callback => \&parseValue,
			attribute => 'Normal Text',
			fallthrough => 'Value NQ',
		},
		'Value DQ' => {
			callback => \&parseValueDQ,
			attribute => 'Value',
		},
		'Value NQ' => {
			callback => \&parseValueNQ,
			attribute => 'Normal Text',
			lineending => '#pop#pop',
			fallthrough => '#pop#pop',
		},
		'Value SQ' => {
			callback => \&parseValueSQ,
			attribute => 'Value',
		},
	});
	$self->deliminators('.():!+,-<=>%&*/;?[]^{|}~\\');
	$self->basecontext('Start');
	$self->keywordscase(1);
	$self->initialize;
	bless ($self, $class);
	return $self;
}

sub language {
	return 'PHP (HTML)';
}

sub parseCDATA {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectSpaces
	if ($self->testDetectSpaces($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => DetectIdentifier
	if ($self->testDetectIdentifier($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, ']]>', 0, 0, 0, undef, 0, '#pop', 'CDATA')) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, ']]&gt;', 0, 0, 0, undef, 0, '#stay', 'EntityRef')) {
		return 1
	}
	return 0;
};

sub parseCSS {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => Detect2Chars
	if ($self->testDetect2Chars($text, '/', '>', 0, 0, 0, undef, 0, '#pop', 'Element')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, 'CSS content', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindAttributes', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseCSScontent {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</style\\b', 1, 0, 0, undef, 0, 'El Close 2', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includePlugin('CSS/PHP', $text)) {
		return 1
	}
	return 0;
};

sub parseComment {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectSpaces
	if ($self->testDetectSpaces($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => IncludeRules
	if ($self->includePlugin('Alerts', $text)) {
		return 1
	}
	# type => DetectIdentifier
	if ($self->testDetectIdentifier($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, '-->', 0, 0, 0, undef, 0, '#pop', 'Comment')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '-(-(?!->))+', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseDoctype {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop', 'Doctype')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '[', 0, 0, 0, undef, 0, 'Doctype Internal Subset', 'Doctype')) {
		return 1
	}
	return 0;
};

sub parseDoctypeInternalSubset {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, ']', 0, 0, 0, undef, 0, '#pop', 'Doctype')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindDTDRules', $text)) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, '<!--', 0, 0, 0, undef, 0, 'Comment', 'Comment')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<\\?[\\w:-]*', 0, 0, 0, undef, 0, 'PI', 'Processing Instruction')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindPEntityRefs', $text)) {
		return 1
	}
	return 0;
};

sub parseDoctypeMarkupdecl {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop', 'Doctype')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '"', 0, 0, 0, undef, 0, 'Doctype Markupdecl DQ', 'Value')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '\'', 0, 0, 0, undef, 0, 'Doctype Markupdecl SQ', 'Value')) {
		return 1
	}
	return 0;
};

sub parseDoctypeMarkupdeclDQ {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '"', 0, 0, 0, undef, 0, '#pop', 'Value')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindPEntityRefs', $text)) {
		return 1
	}
	return 0;
};

sub parseDoctypeMarkupdeclSQ {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '\'', 0, 0, 0, undef, 0, '#pop', 'Value')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindPEntityRefs', $text)) {
		return 1
	}
	return 0;
};

sub parseElClose {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseElClose2 {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop#pop#pop', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseElClose3 {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop#pop#pop#pop', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseElOpen {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => Detect2Chars
	if ($self->testDetect2Chars($text, '/', '>', 0, 0, 0, undef, 0, '#pop', 'Element')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, '#pop', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindAttributes', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseFindAttributes {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '[A-Za-z_:][\\w.:_-]*', 0, 0, 0, 0, 0, '#stay', 'Attribute')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\s+[A-Za-z_:][\\w.:_-]*', 0, 0, 0, undef, 0, '#stay', 'Attribute')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '=', 0, 0, 0, undef, 0, 'Value', 'Attribute')) {
		return 1
	}
	return 0;
};

sub parseFindDTDRules {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<!(ELEMENT|ENTITY|ATTLIST|NOTATION)\\b', 0, 0, 0, undef, 0, 'Doctype Markupdecl', 'Doctype')) {
		return 1
	}
	return 0;
};

sub parseFindEntityRefs {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '&(#[0-9]+|#[xX][0-9A-Fa-f]+|[A-Za-z_:][\\w.:_-]*);', 0, 0, 0, undef, 0, '#stay', 'EntityRef')) {
		return 1
	}
	# type => AnyChar
	if ($self->testAnyChar($text, '&<', 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseFindHTML {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectSpaces
	if ($self->testDetectSpaces($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => DetectIdentifier
	if ($self->testDetectIdentifier($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, '<!--', 0, 0, 0, undef, 0, 'Comment', 'Comment')) {
		return 1
	}
	# type => StringDetect
	if ($self->testStringDetect($text, '<![CDATA[', 0, 0, 0, undef, 0, 'CDATA', 'CDATA')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<!DOCTYPE\\s+', 0, 0, 0, undef, 0, 'Doctype', 'Doctype')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<\\?[\\w:-]*', 0, 0, 0, undef, 0, 'PI', 'Processing Instruction')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<style\\b', 1, 0, 0, undef, 0, 'CSS', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<script\\b', 1, 0, 0, undef, 0, 'JS', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<pre\\b', 1, 0, 0, undef, 0, 'El Open', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<div\\b', 1, 0, 0, undef, 0, 'El Open', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<table\\b', 1, 0, 0, undef, 0, 'El Open', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '<[A-Za-z_:][\\w.:_-]*', 0, 0, 0, undef, 0, 'El Open', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</pre\\b', 1, 0, 0, undef, 0, 'El Close', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</div\\b', 1, 0, 0, undef, 0, 'El Close', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</table\\b', 1, 0, 0, undef, 0, 'El Close', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</[A-Za-z_:][\\w.:_-]*', 0, 0, 0, undef, 0, 'El Close', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindDTDRules', $text)) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindEntityRefs', $text)) {
		return 1
	}
	return 0;
};

sub parseFindPEntityRefs {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '&(#[0-9]+|#[xX][0-9A-Fa-f]+|[A-Za-z_:][\\w.:_-]*);', 0, 0, 0, undef, 0, '#stay', 'EntityRef')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '%[A-Za-z_:][\\w.:_-]*;', 0, 0, 0, undef, 0, '#stay', 'PEntityRef')) {
		return 1
	}
	# type => AnyChar
	if ($self->testAnyChar($text, '&%', 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseFindPHP {
	my ($self, $text) = @_;
	# type => RegExpr
	if ($self->testRegExpr($text, '<\\?(?:=|php)?', 0, 0, 1, undef, 0, '##PHP/PHP', undef)) {
		return 1
	}
	return 0;
};

sub parseJS {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => Detect2Chars
	if ($self->testDetect2Chars($text, '/', '>', 0, 0, 0, undef, 0, '#pop', 'Element')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '>', 0, 0, 0, undef, 0, 'JS content', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindAttributes', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '\\S', 0, 0, 0, undef, 0, '#stay', 'Error')) {
		return 1
	}
	return 0;
};

sub parseJScommentclose {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</script\\b', 1, 0, 0, undef, 0, 'El Close 3', 'Element')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includePlugin('Alerts', $text)) {
		return 1
	}
	return 0;
};

sub parseJScontent {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '</script\\b', 1, 0, 0, undef, 0, 'El Close 2', 'Element')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '//(?=.*</script\\b)', 1, 0, 0, undef, 0, 'JS comment close', 'Comment')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includePlugin('JavaScript/PHP', $text)) {
		return 1
	}
	return 0;
};

sub parsePI {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => Detect2Chars
	if ($self->testDetect2Chars($text, '?', '>', 0, 0, 0, undef, 0, '#pop', 'Processing Instruction')) {
		return 1
	}
	return 0;
};

sub parseStart {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindHTML', $text)) {
		return 1
	}
	return 0;
};

sub parseValue {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '"', 0, 0, 0, undef, 0, 'Value DQ', 'Value')) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '\'', 0, 0, 0, undef, 0, 'Value SQ', 'Value')) {
		return 1
	}
	# type => DetectSpaces
	if ($self->testDetectSpaces($text, 0, undef, 0, '#stay', undef)) {
		return 1
	}
	return 0;
};

sub parseValueDQ {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '"', 0, 0, 0, undef, 0, '#pop#pop', 'Value')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindEntityRefs', $text)) {
		return 1
	}
	return 0;
};

sub parseValueNQ {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindEntityRefs', $text)) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '/(?!>)', 0, 0, 0, undef, 0, '#stay', 'Value')) {
		return 1
	}
	# type => RegExpr
	if ($self->testRegExpr($text, '[^/><"\'\\s]', 0, 0, 0, undef, 0, '#stay', 'Value')) {
		return 1
	}
	return 0;
};

sub parseValueSQ {
	my ($self, $text) = @_;
	# type => IncludeRules
	if ($self->includeRules('FindPHP', $text)) {
		return 1
	}
	# type => DetectChar
	if ($self->testDetectChar($text, '\'', 0, 0, 0, undef, 0, '#pop#pop', 'Value')) {
		return 1
	}
	# type => IncludeRules
	if ($self->includeRules('FindEntityRefs', $text)) {
		return 1
	}
	return 0;
};


1;

__END__

=head1 NAME

Syntax::Highlight::Engine::Kate::PHP_HTML - a Plugin for PHP (HTML) syntax highlighting

=head1 SYNOPSIS

 require Syntax::Highlight::Engine::Kate::PHP_HTML;
 my $sh = new Syntax::Highlight::Engine::Kate::PHP_HTML([
 ]);

=head1 DESCRIPTION

Syntax::Highlight::Engine::Kate::PHP_HTML is a  plugin module that provides syntax highlighting
for PHP (HTML) to the Syntax::Haghlight::Engine::Kate highlighting engine.

This code is generated from the syntax definition files used
by the Kate project.
It works quite fine, but can use refinement and optimization.

It inherits Syntax::Higlight::Engine::Kate::Template. See also there.

=cut

=head1 AUTHOR

Hans Jeuken (haje <at> toneel <dot> demon <dot> nl)

=cut

=head1 BUGS

Unknown. If you find any, please contact the author

=cut