A tumblelog CMS built on AJAX, PHP and MySQL.

rails.php 21KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. <?php
  2. /*************************************************************************************
  3. * rails.php
  4. * ---------
  5. * Author: Moises Deniz
  6. * Copyright: (c) 2005 Moises Deniz
  7. * Release Version: 1.0.7.21
  8. * Date Started: 2007/03/21
  9. *
  10. * Ruby language and Ruby on Rails Framework file for GeSHi
  11. *
  12. *************************************************************************************
  13. *
  14. * This file is part of GeSHi.
  15. *
  16. * GeSHi is free software; you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License as published by
  18. * the Free Software Foundation; either version 2 of the License, or
  19. * (at your option) any later version.
  20. *
  21. * GeSHi is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with GeSHi; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  29. *
  30. ************************************************************************************/
  31. $language_data = array (
  32. 'LANG_NAME' => 'Rails',
  33. 'COMMENT_SINGLE' => array(1 => "#"),
  34. 'COMMENT_MULTI' => array("=begin" => "=end"),
  35. 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  36. 'QUOTEMARKS' => array('"', '`','\''),
  37. 'ESCAPE_CHAR' => '\\',
  38. 'KEYWORDS' => array(
  39. 1 => array(
  40. 'alias', 'and', 'begin', 'break', 'case', 'class',
  41. 'def', 'defined', 'do', 'else', 'elsif', 'end',
  42. 'ensure', 'for', 'if', 'in', 'module', 'while',
  43. 'next', 'not', 'or', 'redo', 'rescue', 'yield',
  44. 'retry', 'super', 'then', 'undef', 'unless',
  45. 'until', 'when', 'BEGIN', 'END', 'include'
  46. ),
  47. 2 => array(
  48. '__FILE__', '__LINE__', 'false', 'nil', 'self', 'true',
  49. 'return'
  50. ),
  51. 3 => array(
  52. 'Array', 'Float', 'Integer', 'String', 'at_exit',
  53. 'autoload', 'binding', 'caller', 'catch', 'chop', 'chop!',
  54. 'chomp', 'chomp!', 'eval', 'exec', 'exit', 'exit!', 'fail',
  55. 'fork', 'format', 'gets', 'global_variables', 'gsub', 'gsub!',
  56. 'iterator?', 'lambda', 'load', 'local_variables', 'loop',
  57. 'open', 'p', 'print', 'printf', 'proc', 'putc', 'puts',
  58. 'raise', 'rand', 'readline', 'readlines', 'require', 'select',
  59. 'sleep', 'split', 'sprintf', 'srand', 'sub', 'sub!', 'syscall',
  60. 'system', 'trace_var', 'trap', 'untrace_var'
  61. ),
  62. 4 => array(
  63. 'Abbrev', 'ArgumentError', 'Base64', 'Benchmark',
  64. 'Benchmark::Tms', 'Bignum', 'Binding', 'CGI', 'CGI::Cookie',
  65. 'CGI::HtmlExtension', 'CGI::QueryExtension',
  66. 'CGI::Session', 'CGI::Session::FileStore',
  67. 'CGI::Session::MemoryStore', 'Class', 'Comparable', 'Complex',
  68. 'ConditionVariable', 'Continuation', 'Data',
  69. 'Date', 'DateTime', 'Delegator', 'Dir', 'EOFError', 'ERB',
  70. 'ERB::Util', 'Enumerable', 'Enumerable::Enumerator', 'Errno',
  71. 'Exception', 'FalseClass', 'File',
  72. 'File::Constants', 'File::Stat', 'FileTest', 'FileUtils',
  73. 'FileUtils::DryRun', 'FileUtils::NoWrite',
  74. 'FileUtils::StreamUtils_', 'FileUtils::Verbose', 'Find',
  75. 'Fixnum', 'FloatDomainError', 'Forwardable', 'GC', 'Generator',
  76. 'Hash', 'IO', 'IOError', 'Iconv', 'Iconv::BrokenLibrary',
  77. 'Iconv::Failure', 'Iconv::IllegalSequence',
  78. 'Iconv::InvalidCharacter', 'Iconv::InvalidEncoding',
  79. 'Iconv::OutOfRange', 'IndexError', 'Interrupt', 'Kernel',
  80. 'LoadError', 'LocalJumpError', 'Logger', 'Logger::Application',
  81. 'Logger::Error', 'Logger::Formatter', 'Logger::LogDevice',
  82. 'Logger::LogDevice::LogDeviceMutex', 'Logger::Severity',
  83. 'Logger::ShiftingError', 'Marshal', 'MatchData',
  84. 'Math', 'Matrix', 'Method', 'Module', 'Mutex', 'NameError',
  85. 'NameError::message', 'NilClass', 'NoMemoryError',
  86. 'NoMethodError', 'NotImplementedError', 'Numeric', 'Object',
  87. 'ObjectSpace', 'Observable', 'PStore', 'PStore::Error',
  88. 'Pathname', 'Precision', 'Proc', 'Process', 'Process::GID',
  89. 'Process::Status', 'Process::Sys', 'Process::UID', 'Queue',
  90. 'Range', 'RangeError', 'Rational', 'Regexp', 'RegexpError',
  91. 'RuntimeError', 'ScriptError', 'SecurityError', 'Set',
  92. 'Shellwords', 'Signal', 'SignalException', 'SimpleDelegator',
  93. 'SingleForwardable', 'Singleton', 'SingletonClassMethods',
  94. 'SizedQueue', 'SortedSet', 'StandardError', 'StringIO',
  95. 'StringScanner', 'StringScanner::Error', 'Struct', 'Symbol',
  96. 'SyncEnumerator', 'SyntaxError', 'SystemCallError',
  97. 'SystemExit', 'SystemStackError', 'Tempfile',
  98. 'Test::Unit::TestCase', 'Test::Unit', 'Test', 'Thread',
  99. 'ThreadError', 'ThreadGroup',
  100. 'ThreadsWait', 'Time', 'TrueClass', 'TypeError', 'URI',
  101. 'URI::BadURIError', 'URI::Error', 'URI::Escape', 'URI::FTP',
  102. 'URI::Generic', 'URI::HTTP', 'URI::HTTPS',
  103. 'URI::InvalidComponentError', 'URI::InvalidURIError',
  104. 'URI::LDAP', 'URI::MailTo', 'URI::REGEXP',
  105. 'URI::REGEXP::PATTERN', 'UnboundMethod', 'Vector', 'YAML',
  106. 'ZeroDivisionError', 'Zlib',
  107. 'Zlib::BufError', 'Zlib::DataError', 'Zlib::Deflate',
  108. 'Zlib::Error', 'Zlib::GzipFile', 'Zlib::GzipFile::CRCError',
  109. 'Zlib::GzipFile::Error', 'Zlib::GzipFile::LengthError',
  110. 'Zlib::GzipFile::NoFooter', 'Zlib::GzipReader',
  111. 'Zlib::GzipWriter', 'Zlib::Inflate', 'Zlib::MemError',
  112. 'Zlib::NeedDict', 'Zlib::StreamEnd', 'Zlib::StreamError',
  113. 'Zlib::VersionError',
  114. 'Zlib::ZStream',
  115. 'ActionController::AbstractRequest',
  116. 'ActionController::Assertions::DomAssertions',
  117. 'ActionController::Assertions::ModelAssertions',
  118. 'ActionController::Assertions::ResponseAssertions',
  119. 'ActionController::Assertions::RoutingAssertions',
  120. 'ActionController::Assertions::SelectorAssertions',
  121. 'ActionController::Assertions::TagAssertions',
  122. 'ActionController::Base',
  123. 'ActionController::Benchmarking::ClassMethods',
  124. 'ActionController::Caching',
  125. 'ActionController::Caching::Actions',
  126. 'ActionController::Caching::Actions::ActionCachePath',
  127. 'ActionController::Caching::Fragments',
  128. 'ActionController::Caching::Pages',
  129. 'ActionController::Caching::Pages::ClassMethods',
  130. 'ActionController::Caching::Sweeping',
  131. 'ActionController::Components',
  132. 'ActionController::Components::ClassMethods',
  133. 'ActionController::Components::InstanceMethods',
  134. 'ActionController::Cookies',
  135. 'ActionController::Filters::ClassMethods',
  136. 'ActionController::Flash',
  137. 'ActionController::Flash::FlashHash',
  138. 'ActionController::Helpers::ClassMethods',
  139. 'ActionController::Integration::Session',
  140. 'ActionController::IntegrationTest',
  141. 'ActionController::Layout::ClassMethods',
  142. 'ActionController::Macros',
  143. 'ActionController::Macros::AutoComplete::ClassMethods',
  144. 'ActionController::Macros::InPlaceEditing::ClassMethods',
  145. 'ActionController::MimeResponds::InstanceMethods',
  146. 'ActionController::Pagination',
  147. 'ActionController::Pagination::ClassMethods',
  148. 'ActionController::Pagination::Paginator',
  149. 'ActionController::Pagination::Paginator::Page',
  150. 'ActionController::Pagination::Paginator::Window',
  151. 'ActionController::Rescue', 'ActionController::Resources',
  152. 'ActionController::Routing',
  153. 'ActionController::Scaffolding::ClassMethods',
  154. 'ActionController::SessionManagement::ClassMethods',
  155. 'ActionController::Streaming', 'ActionController::TestProcess',
  156. 'ActionController::TestUploadedFile',
  157. 'ActionController::UrlWriter',
  158. 'ActionController::Verification::ClassMethods',
  159. 'ActionMailer::Base', 'ActionView::Base',
  160. 'ActionView::Helpers::ActiveRecordHelper',
  161. 'ActionView::Helpers::AssetTagHelper',
  162. 'ActionView::Helpers::BenchmarkHelper',
  163. 'ActionView::Helpers::CacheHelper',
  164. 'ActionView::Helpers::CaptureHelper',
  165. 'ActionView::Helpers::DateHelper',
  166. 'ActionView::Helpers::DebugHelper',
  167. 'ActionView::Helpers::FormHelper',
  168. 'ActionView::Helpers::FormOptionsHelper',
  169. 'ActionView::Helpers::FormTagHelper',
  170. 'ActionView::Helpers::JavaScriptHelper',
  171. 'ActionView::Helpers::JavaScriptMacrosHelper',
  172. 'ActionView::Helpers::NumberHelper',
  173. 'ActionView::Helpers::PaginationHelper',
  174. 'ActionView::Helpers::PrototypeHelper',
  175. 'ActionView::Helpers::PrototypeHelper::JavaScriptGenerator::GeneratorMethods',
  176. 'ActionView::Helpers::ScriptaculousHelper',
  177. 'ActionView::Helpers::TagHelper',
  178. 'ActionView::Helpers::TextHelper',
  179. 'ActionView::Helpers::UrlHelper', 'ActionView::Partials',
  180. 'ActionWebService::API::Method', 'ActionWebService::Base',
  181. 'ActionWebService::Client::Soap',
  182. 'ActionWebService::Client::XmlRpc',
  183. 'ActionWebService::Container::ActionController::ClassMethods',
  184. 'ActionWebService::Container::Delegated::ClassMethods',
  185. 'ActionWebService::Container::Direct::ClassMethods',
  186. 'ActionWebService::Invocation::ClassMethods',
  187. 'ActionWebService::Scaffolding::ClassMethods',
  188. 'ActionWebService::SignatureTypes', 'ActionWebService::Struct',
  189. 'ActiveRecord::Acts::List::ClassMethods',
  190. 'ActiveRecord::Acts::List::InstanceMethods',
  191. 'ActiveRecord::Acts::NestedSet::ClassMethods',
  192. 'ActiveRecord::Acts::NestedSet::InstanceMethods',
  193. 'ActiveRecord::Acts::Tree::ClassMethods',
  194. 'ActiveRecord::Acts::Tree::InstanceMethods',
  195. 'ActiveRecord::Aggregations::ClassMethods',
  196. 'ActiveRecord::Associations::ClassMethods',
  197. 'ActiveRecord::AttributeMethods::ClassMethods',
  198. 'ActiveRecord::Base',
  199. 'ActiveRecord::Calculations::ClassMethods',
  200. 'ActiveRecord::Callbacks',
  201. 'ActiveRecord::ConnectionAdapters::AbstractAdapter',
  202. 'ActiveRecord::ConnectionAdapters::Column',
  203. 'ActiveRecord::ConnectionAdapters::DB2Adapter',
  204. 'ActiveRecord::ConnectionAdapters::DatabaseStatements',
  205. 'ActiveRecord::ConnectionAdapters::FirebirdAdapter',
  206. 'ActiveRecord::ConnectionAdapters::FrontBaseAdapter',
  207. 'ActiveRecord::ConnectionAdapters::MysqlAdapter',
  208. 'ActiveRecord::ConnectionAdapters::OpenBaseAdapter',
  209. 'ActiveRecord::ConnectionAdapters::OracleAdapter',
  210. 'ActiveRecord::ConnectionAdapters::PostgreSQLAdapter',
  211. 'ActiveRecord::ConnectionAdapters::Quoting',
  212. 'ActiveRecord::ConnectionAdapters::SQLServerAdapter',
  213. 'ActiveRecord::ConnectionAdapters::SQLiteAdapter',
  214. 'ActiveRecord::ConnectionAdapters::SchemaStatements',
  215. 'ActiveRecord::ConnectionAdapters::SybaseAdapter::ColumnWithIdentity',
  216. 'ActiveRecord::ConnectionAdapters::SybaseAdapterContext',
  217. 'ActiveRecord::ConnectionAdapters::TableDefinition',
  218. 'ActiveRecord::Errors', 'ActiveRecord::Locking',
  219. 'ActiveRecord::Locking::Optimistic',
  220. 'ActiveRecord::Locking::Optimistic::ClassMethods',
  221. 'ActiveRecord::Locking::Pessimistic',
  222. 'ActiveRecord::Migration', 'ActiveRecord::Observer',
  223. 'ActiveRecord::Observing::ClassMethods',
  224. 'ActiveRecord::Reflection::ClassMethods',
  225. 'ActiveRecord::Reflection::MacroReflection',
  226. 'ActiveRecord::Schema', 'ActiveRecord::Timestamp',
  227. 'ActiveRecord::Transactions::ClassMethods',
  228. 'ActiveRecord::Validations',
  229. 'ActiveRecord::Validations::ClassMethods',
  230. 'ActiveRecord::XmlSerialization',
  231. 'ActiveSupport::CachingTools::HashCaching',
  232. 'ActiveSupport::CoreExtensions::Array::Conversions',
  233. 'ActiveSupport::CoreExtensions::Array::Grouping',
  234. 'ActiveSupport::CoreExtensions::Date::Conversions',
  235. 'ActiveSupport::CoreExtensions::Hash::Conversions',
  236. 'ActiveSupport::CoreExtensions::Hash::Conversions::ClassMethods',
  237. 'ActiveSupport::CoreExtensions::Hash::Diff',
  238. 'ActiveSupport::CoreExtensions::Hash::Keys',
  239. 'ActiveSupport::CoreExtensions::Hash::ReverseMerge',
  240. 'ActiveSupport::CoreExtensions::Integer::EvenOdd',
  241. 'ActiveSupport::CoreExtensions::Integer::Inflections',
  242. 'ActiveSupport::CoreExtensions::Numeric::Bytes',
  243. 'ActiveSupport::CoreExtensions::Numeric::Time',
  244. 'ActiveSupport::CoreExtensions::Pathname::CleanWithin',
  245. 'ActiveSupport::CoreExtensions::Range::Conversions',
  246. 'ActiveSupport::CoreExtensions::String::Access',
  247. 'ActiveSupport::CoreExtensions::String::Conversions',
  248. 'ActiveSupport::CoreExtensions::String::Inflections',
  249. 'ActiveSupport::CoreExtensions::String::Iterators',
  250. 'ActiveSupport::CoreExtensions::String::StartsEndsWith',
  251. 'ActiveSupport::CoreExtensions::String::Unicode',
  252. 'ActiveSupport::CoreExtensions::Time::Calculations',
  253. 'ActiveSupport::CoreExtensions::Time::Calculations::ClassMethods',
  254. 'ActiveSupport::CoreExtensions::Time::Conversions',
  255. 'ActiveSupport::Multibyte::Chars',
  256. 'ActiveSupport::Multibyte::Handlers::UTF8Handler', 'Binding',
  257. 'Breakpoint', 'Builder::BlankSlate', 'Builder::XmlMarkup',
  258. 'Enumerable', 'Fixtures',
  259. 'HTML::Selector', 'HashWithIndifferentAccess', 'Inflector',
  260. 'Inflector::Inflections', 'Mime', 'Mime::Type',
  261. 'OCI8AutoRecover', 'Symbol', 'TimeZone', 'XmlSimple'
  262. ),
  263. 5 => array(
  264. 'image_tag', 'link_to', 'link_to_remote', 'javascript_include_tag',
  265. 'assert_equal', 'assert_not_equal', 'before_filter',
  266. 'after_filter', 'render', 'redirect_to', 'hide_action',
  267. 'render_to_string', 'url_for', 'controller_name',
  268. 'controller_class_name', 'controller_path', 'session',
  269. 'render_component', 'render_component_as_string', 'cookie',
  270. 'layout', 'flash', 'auto_complete_for', 'in_place_editor_for',
  271. 'respond_to', 'paginate', 'current_page', 'each', 'first',
  272. 'first_page', 'last_page', 'last', 'length', 'new', 'page_count',
  273. 'previous', 'next', 'scaffold', 'session', 'send_data',
  274. 'send_file', 'deliver', 'receive', 'error_messages_for',
  275. 'error_message_on', 'form', 'input', 'stylesheet_link_tag',
  276. 'stylesheet_path', 'content_for', 'select_date', 'select', 'ago',
  277. 'month', 'day', 'check_box', 'fields_for', 'file_field',
  278. 'form_for', 'hidden_field', 'text_area', 'password_field',
  279. 'collection_select', 'options_for_select',
  280. 'options_from_collection_for_select', 'file_field_tag',
  281. 'form_for_tag', 'hidden_field_tag', 'text_area_tag',
  282. 'password_field_tag', 'link_to_function', 'javascript_tag',
  283. 'human_size', 'number_to_currency', 'pagination_links',
  284. 'form_remote_tag', 'form_remote_for', 'link_to_remote',
  285. 'submit_to_remote', 'remote_function', 'observe_form',
  286. 'observe_field', 'remote_form_for', 'options_for_ajax', 'alert',
  287. 'call', 'assign', 'show', 'hide', 'insert_html', 'sortable',
  288. 'toggle', 'visual_effect', 'replace', 'replace_html', 'remove',
  289. 'save', 'save!', 'draggable', 'drop_receiving', 'literal',
  290. 'draggable_element', 'drop_receiving_element', 'sortable_element',
  291. 'content_tag', 'tag', 'link_to_image', 'link_to_if',
  292. 'link_to_unless', 'mail_to', 'link_image_to', 'button_to',
  293. 'current_page?', 'act_as_list', 'act_as_nested', 'act_as_tree',
  294. 'has_many', 'has_one', 'belongs_to', 'has_many_and_belogns_to',
  295. 'delete', 'destroy', 'destroy_all', 'clone', 'deep_clone', 'copy',
  296. 'update', 'table_name', 'primary_key', 'sum', 'maximun', 'minimum',
  297. 'count', 'size', 'after_save', 'after_create', 'before_save',
  298. 'before_create', 'add_to_base', 'errors', 'add', 'validate',
  299. 'validate', 'validates_presence_of', 'validates_format_of',
  300. 'validates_numericality_of', 'validates_uniqueness_of',
  301. 'validates_length_of', 'validates_format_of', 'validates_size_of',
  302. 'to_a', 'to_s', 'to_xml', 'to_i'
  303. )
  304. ),
  305. 'SYMBOLS' => array(
  306. '(', ')', '[', ']', '{', '}', '%', '&', '*', '|', '/', '<', '>',
  307. '+', '-', '=&gt;', '=>', '<<'
  308. ),
  309. 'CASE_SENSITIVE' => array(
  310. GESHI_COMMENTS => false,
  311. 1 => true,
  312. 2 => true,
  313. 3 => true,
  314. 4 => true,
  315. 5 => true
  316. ),
  317. 'STYLES' => array(
  318. 'KEYWORDS' => array(
  319. 1 => 'color:#9966CC; font-weight:bold;',
  320. 2 => 'color:#0000FF; font-weight:bold;',
  321. 3 => 'color:#CC0066; font-weight:bold;',
  322. 4 => 'color:#CC00FF; font-weight:bold;',
  323. 5 => 'color:#5A0A0A; font-weight:bold;'
  324. ),
  325. 'COMMENTS' => array(
  326. 1 => 'color:#008000; font-style:italic;',
  327. 'MULTI' => 'color:#000080; font-style:italic;'
  328. ),
  329. 'ESCAPE_CHAR' => array(
  330. 0 => 'color:#000099;'
  331. ),
  332. 'BRACKETS' => array(
  333. 0 => 'color:#006600; font-weight:bold;'
  334. ),
  335. 'STRINGS' => array(
  336. 0 => 'color:#996600;'
  337. ),
  338. 'NUMBERS' => array(
  339. 0 => 'color:#006666;'
  340. ),
  341. 'METHODS' => array(
  342. 1 => 'color:#9900CC;'
  343. ),
  344. 'SYMBOLS' => array(
  345. 0 => 'color:#006600; font-weight:bold;'
  346. ),
  347. 'REGEXPS' => array(
  348. 0 => 'color:#ff6633; font-weight:bold;',
  349. 1 => 'color:#0066ff; font-weight:bold;',
  350. 2 => 'color:#6666ff; font-weight:bold;',
  351. 3 => 'color:#ff3333; font-weight:bold;'
  352. ),
  353. 'SCRIPT' => array(
  354. 0 => '',
  355. 1 => '',
  356. 2 => '',
  357. )
  358. ),
  359. 'URLS' => array(
  360. 1 => '',
  361. 2 => '',
  362. 3 => ''
  363. ),
  364. 'OOLANG' => true,
  365. 'OBJECT_SPLITTERS' => array(
  366. 1 => '.'
  367. ),
  368. 'REGEXPS' => array(
  369. 0 => array(
  370. GESHI_SEARCH => "([[:space:]])(\\$[a-zA-Z_][a-zA-Z0-9_]*)",
  371. GESHI_REPLACE => '\\2',
  372. GESHI_MODIFIERS => '',
  373. GESHI_BEFORE => '\\1',
  374. GESHI_AFTER => ''
  375. ),
  376. 1 => array(
  377. GESHI_SEARCH => "([[:space:]])(@[a-zA-Z_][a-zA-Z0-9_]*)",
  378. GESHI_REPLACE => '\\2',
  379. GESHI_MODIFIERS => '',
  380. GESHI_BEFORE => '\\1',
  381. GESHI_AFTER => ''
  382. ),
  383. 2 => "([A-Z][a-zA-Z0-9_]*::)+[A-Z][a-zA-Z0-9_]*",
  384. 3 => array(
  385. GESHI_SEARCH => "([[:space:]]|\[|\()(:[a-zA-Z_][a-zA-Z0-9_]*)",
  386. GESHI_REPLACE => '\\2',
  387. GESHI_MODIFIERS => '',
  388. GESHI_BEFORE => '\\1',
  389. GESHI_AFTER => ''
  390. )
  391. ),
  392. 'STRICT_MODE_APPLIES' => GESHI_MAYBE,
  393. 'SCRIPT_DELIMITERS' => array(
  394. 0 => array(
  395. '<%' => '%>'
  396. )
  397. ),
  398. 'HIGHLIGHT_STRICT_BLOCK' => array(
  399. 0 => true,
  400. )
  401. );
  402. ?>