dp.sh.Brushes.SVN = function()
{
	this.regexList = [
		{ regex: dp.sh.RegexLib.MultiLineCComments,					svn: 'comment' },	// multiline comments
		{ regex: dp.sh.RegexLib.DoubleQuotedString,					svn: 'string' },	// double quoted strings
		{ regex: dp.sh.RegexLib.SingleQuotedString,					svn: 'string' },	// single quoted strings
		{ regex: new RegExp('http://.*', 'g'),			css: 'colors' },	// html colors
		];

	this.CssClass = 'dp-svn';
	this.Style =	'.dp-svn .colors { color: darkred; }' +
					'.dp-svn .vars { color: #d00; }';
}

dp.sh.Brushes.SVN.prototype	= new dp.sh.Highlighter();
dp.sh.Brushes.SVN.Aliases	= ['svn'];
