aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexHTML.cxx
AgeCommit message (Collapse)AuthorFilesLines
2009-10-09Support for the Mako template language implemented.nyamatongwe1-6/+133
From Stephan Deibel at Wingware.
2009-06-12Fix for bug #2804760nyamatongwe1-1/+4
— is a 3 byte character in UTF-8 and the XML lexer decided it wasn't a valid entity after the first byte leading to drawing broken part characters. Fixed in the lexer by not including the initial byte in the entity def style.
2009-05-15Removed code not needed due to removal of deprecated lexers.nyamatongwe1-155/+0
2009-05-15Removed deprecated symbolsnyamatongwe1-141/+0
SCI_SETCARETPOLICY CARET_CENTER CARET_XEVEN CARET_XJUMPS SC_FOLDFLAG_BOX SC_FOLDLEVELBOXHEADERFLAG SC_FOLDLEVELBOXFOOTERFLAG SC_FOLDLEVELCONTRACTED SC_FOLDLEVELUNINDENT SCN_POSCHANGED SCN_CHECKBRACE SCLEX_ASP SCLEX_PHP
2009-04-12Using comments in lexer code to document meaning of properties.nyamatongwe1-0/+28
Automatically extract into SciTE doumentation.
2009-02-15Bug #2532774 Wrong folding of comments in HTML/XML lexer fixed.nyamatongwe1-1/+1
2009-02-15Bug #1843242 partial fix from Kai Liu prevents script state when script tagnyamatongwe1-3/+16
is self closed.
2008-10-14Feature Request #2143007 by Jason Oster added fold.hypertext.comment andnyamatongwe1-4/+16
fold.hypertext.heredoc.
2008-07-26From bug #1776285 by Jason Oster limits scope of checking for "php".nyamatongwe1-1/+1
2008-07-19Bug #2016218 from Jason Oster fixes problems caused by notnyamatongwe1-5/+9
backtracking far enough when start of lexing is within a PHP string.
2008-07-19Patch from Jason Oster in bug #2015354 where PHP stringnyamatongwe1-6/+3
variable followed immediately by comment.
2008-07-06Patches from Jason Oster in bug #2010095.nyamatongwe1-41/+113
2008-06-02Bug #1945003 corrects styling of PHP heredocs.nyamatongwe1-3/+8
2008-06-01Bug #1776285 allow "src" near "<?php".nyamatongwe1-1/+1
2008-06-01Feature request #1978041 adds IE-specific <comment> tag.nyamatongwe1-30/+32
2008-05-26Bug 1971086. Add property to disable scripts within XML.nyamatongwe1-3/+4
2007-10-15More non-ASCII safety.nyamatongwe1-15/+14
2007-10-15Safety with non-ASCII.nyamatongwe1-1/+1
2007-10-15Patch from Iago Rubio to allow </ inside a VB comment within HTML.nyamatongwe1-0/+3
2007-07-28Fix for bug #1762727. Use an int rather than char to hold character valuesnyamatongwe1-46/+60
as that is expected by CharacterSet.
2007-07-26XML script indicator is only active if only whitespace before it.nyamatongwe1-1/+8
2007-06-25Allow use of all 8 bits for lexical styles and LexHTML set to use 8 buts.nyamatongwe1-12/+12
2007-06-02Moving CharacterSet class into own header so can be used by morenyamatongwe1-15/+20
lexers. Updated LexCPP to match changes. Added use of CharacterSet to LexHTML.
2007-06-01integrate OS X support for scintilla. a big patch with a little commit ↵scaraveo1-0/+4
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable
2007-05-07Fix for bug #1709848 by Ariden01 allows folding of all tags innyamatongwe1-9/+22
XML and only terminates script mode with script end tag rather than any tag in XML.
2007-03-16Using extra variable to simplify expressions.nyamatongwe1-2/+3
2007-03-14Fix bug #1680012 by not styling past range when PHP heredocnyamatongwe1-1/+1
end encountered.
2007-02-28Fix bug #1670851 by checking that not trying to style backwards.nyamatongwe1-1/+3
2006-12-19Fix for comment terminating for ?> in VB ASP.nyamatongwe1-0/+1
2006-05-02Fix for bug #1476445.nyamatongwe1-1/+1
Changed extraction of language when a <? is found so that it doesn't look at the whole line but just after the <? for the case where PHP is used to fill in a script URL.
2006-02-23Recognise more scripting states as strings or comments that do not allownyamatongwe1-3/+20
termination of server side scripts with "?>" or "%>".
2005-12-02Using isascii rather than < 0x80 as argument char, not int.nyamatongwe1-1/+1
2005-11-29Patch from Kein-Hong Man improves regular expression detectionnyamatongwe1-2/+27
when disambiguating character on previous line or separated from '/' by a comment. Includes trailing lowercase regex flags in the regex style.
2005-11-15Fix negative fold levels caused by <?xml?> header tag.nyamatongwe1-7/+6
2005-10-08Terminate ASP scripting when a ?> is seen outside a string. This allows usenyamatongwe1-1/+1
with the Kid template language.
2005-08-30Added StyleBitsNeeded property and implemented to return 5 for all lexersnyamatongwe1-5/+5
except HTML, XML, ... (7) and Ruby (6).
2005-07-19Patch from Kamen Stanev allows <% inside PHP strings.nyamatongwe1-1/+1
2005-06-23Patch from Jakub allows there to be a space after '<<<' in PHP.nyamatongwe1-0/+2
2005-05-16Patch from Robert Roessler allows hexadecimal literals in PHP.nyamatongwe1-1/+4
2005-04-01PHPScript is for standalone PHP scripts not part of web pages.nyamatongwe1-1/+18
2005-03-03Deprecated SCLEX_PHP and SCLEX_ASP.nyamatongwe1-0/+1
2005-03-03Fix from Iago Rubio to make the text <!--> start a comment but not end it.nyamatongwe1-5/+6
2005-03-01Patch from Iago Rubio to fix problem with end of script detection.nyamatongwe1-33/+40
Extracted into a function some common code for copying from document into a string for checking and changed to use safer lower casing.
2005-02-07Fix for three bugs from Iago Rubio. Mailing list thread "Scite ↵nyamatongwe1-3/+11
HTML/ASP/JScript again".
2004-10-29Patch from Iago Rubio to allow <?xml to be included inside stringsnyamatongwe1-1/+2
without triggering xml recognition.
2004-07-23Patch from Jakub Vrana to allow 'e' inside numbers in PHP.nyamatongwe1-3/+3
2004-05-02Fix for folding of PHP when braces inside strings.nyamatongwe1-0/+2
2004-03-02Patches from Jakub for PHP complex variables and here docs.nyamatongwe1-5/+36
2004-02-26PHP variables inside strings.nyamatongwe1-3/+16
2003-07-27Made safe with non-ASCII data by guarding is* calls with isascii.nyamatongwe1-15/+17