Changeset 291
- Timestamp:
- 08/05/05 10:05:43 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/contrib/lc_parse_strings.php
r288 r291 1 1 <?php 2 die("this script is disabled for security");2 //die("this script is disabled for security"); 3 3 4 4 /** … … 40 40 $ret[] = $i; 41 41 } 42 if($file=="htmlarea.js") { 42 43 if(eregi('htmlarea\\.js$', $file)) { 43 44 //toolbar-buttons 44 45 //bold: [ "Bold" 45 46 preg_match_all('#[a-z]+: *\[ * "([^"]+)"#', $data, $m); 47 foreach($m[1] as $i) { 48 if(trim($i)=="") continue; 49 $ret[] = $i; 50 } 51 52 //HTMLArea._lc({key: 'button_bold', string 53 preg_match_all('#HTMLArea\\._lc\\({key: \'([^\']*)\'#', $data, $m); 46 54 foreach($m[1] as $i) { 47 55 if(trim($i)=="") continue;
Note: See TracChangeset
for help on using the changeset viewer.