~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/mtwin/templo/Preprocessor.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2009-03-18 23:09:50 UTC
  • mfrom: (3.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090318230950-pgfuxg2ucolps74t
Tags: 1:2.2-2
* Use ocamlfind to locate and use the libraries xml-light and extlib
  which already exist in Debian as separate packages.
  (Closes: #519630)
* Fixed compile error with camlp4 3.11, thanks to Stéphane Glondu.
  (Closes: #519627)
* Use quilt instead of dpatch for patches, and describe how to use
  quilt in Debian.source (thanks to Russ Allbery).
* Added a Vcs-Hg control filed to indicate the location of the public
  repository.
* Bumped Standards-Version to 3.8.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
        static var r_if      = ~/::if([^_a-zA-Z0-9].*?)::/gs;
31
31
        static var r_elseif  = ~/::elseif([^_a-zA-Z0-9].*?)::/gs;
32
 
        static var r_else    = ~/::else *?::/;
33
 
        static var r_foreach = ~/::foreach (.*?)::/gs;
34
 
        static var r_fill    = ~/::fill (.*?)::/gs;
35
 
        static var r_use     = ~/::use (.*?)::/gs;
36
 
        static var r_set     = ~/::set (.*?)::/gs;
 
32
        static var r_else    = ~/::else\s*?::/;
 
33
        static var r_foreach = ~/::foreach\s+(.*?)::/gs;
 
34
        static var r_fill    = ~/::fill\s+(.*?)::/gs;
 
35
        static var r_use     = ~/::use\s+(.*?)::/gs;
 
36
        static var r_set     = ~/::set\s+(.*?)::/gs;
37
37
 
38
 
        static var r_cond    = ~/::cond (.*?)::/gs;
39
 
        static var r_repeat  = ~/::repeat (.*?)::/gs;
40
 
        static var r_attr    = ~/::attr (.*?)::/gs;
 
38
        static var r_cond    = ~/::cond\s+(.*?)::/gs;
 
39
        static var r_repeat  = ~/::repeat\s+(.*?)::/gs;
 
40
        static var r_attr    = ~/::attr\s+(.*?)::/gs;
41
41
 
42
42
        static var r_cdata     = ~/<!\[CDATA\[([^\0]*?)]]>/g;
43
43
        static var r_comment   = ~/<!--([^\0]*?)-->/g;