aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexHTML.cxx
AgeCommit message (Collapse)AuthorFilesLines
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
2003-02-15Updating version numbers and copyright.nyamatongwe1-1/+1
2003-01-27Patch from Steve Schoettler for case sensitive tags.nyamatongwe1-10/+13
2002-11-28Patch from Bernd Kreuss to optionally turn off folding of preprocessingnyamatongwe1-29/+59
tags.
2002-11-23Fix to PHP folding from Bernd.nyamatongwe1-3/+3
2002-11-17Fixed warnings.nyamatongwe1-4/+4
2002-11-17Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla.nyamatongwe1-16/+26
This is separate to the HTML lexer and is only invoked for stand-alone CSS files, not for the STYLE section of HTML files. He also made some other additions. There is a Line Duplicate command which is bound to Ctrl+D. PHP lexing has been improved.
2002-06-08Stopped switching out of JavaScript state when </ inside regex.nyamatongwe1-0/+1
2002-04-22Script tag recognised in XML mode.nyamatongwe1-1/+3
2002-04-03Patch from Brian Quinlan to include metdata about keyword lists withinnyamatongwe1-4/+14
lexers.
2002-02-20Patch from Steve to fix SGML handling and to be more type safe.nyamatongwe1-28/+37
2002-02-12Made LexerModule objects not be const again as that was impairing staticnyamatongwe1-4/+4
linking.
2002-02-12Made lexer objects const so they do not show up in map as static / globals.nyamatongwe1-8/+8
File specific inline functions marker as static to ensure no bad linking.
2002-01-18Updated copyrights for 2002.nyamatongwe1-1/+1
2002-01-14Made buffer for PHP keywords larger as some of the predefined functionsnyamatongwe1-2/+2
have long names.
2002-01-10Made code bool-safe and turned Visual C++ warning 4800 back on.nyamatongwe1-4/+4
2001-11-15Fixed warnings from Borland.nyamatongwe1-3/+3
2001-11-14Made PHP keyword detection case insensitive.nyamatongwe1-1/+1
2001-11-13Handling '=' inside tags better.nyamatongwe1-0/+2
2001-11-10The PHP and ASP lexers process some HTML now.nyamatongwe1-4/+108
2001-10-28Removed platform-specific headers from Platform.h and thus stoppednyamatongwe1-0/+197
visibility of these headers to most code.
2001-09-19Removed line with no effect to avoid Borland warning.nyamatongwe1-1/+0
2001-09-19Patch from Steve to make CDATA sections include their surrounding SGMLnyamatongwe1-16/+24
"<!" and ">".
2001-09-18Additional SGML functionality from Steve.nyamatongwe1-137/+227
2001-09-14Addition of more SGML styles from Steve.nyamatongwe1-13/+92
2001-09-12Patch from Steve to make folding work with HTML scripting.nyamatongwe1-10/+15
2001-09-02Fixed Borland warning.nyamatongwe1-1/+1
2001-08-29Changed ASP default language option to asp.default.language which cannyamatongwe1-5/+3
be 1 for JavaScript, 2 for VBScript, or 3 for Python with JavaScript as the default.
2001-08-29Separated client and ASP default script language settings andnyamatongwe1-31/+37
added asp.default.to.vbs property to choose VBScript as the default for ASP language
2001-08-09Patch from Steve for recognising a SGML <! lexical state.nyamatongwe1-4/+12