Lines Matching refs:matches

401         var matches;        
416 if((matches=attrs[i].value.match(/(left|center|right)/))) {
417 this.current_row[this.col].align = matches[1];
473 matches = attrs[i].value.match(/font-family:\s*([\w\-\s,]+);?/);
474 if(matches){
475 this.font_family = matches[1];
478 //matches = attrs[i].value.match(/font-size:\s*(\d+(\w+|%));?/);
479 matches = attrs[i].value.match(/font-size:\s*(.*)/);
480 if(matches){
481 matches[1]=matches[1].replace(/;/,"");
482 this.font_size = matches[1];
484 matches = attrs[i].value.match(/font-weight:\s*(\w+);?/);
485 if(matches) {
486 this.font_weight = matches[1];
488 matches = attrs[i].value.match(/.*?color:\s*(.*)/);
490 if(matches) {
491 matches[1]=matches[1].replace(/;/,"");
492 if(matches[0].match(/background/)) {
493 this.font_bgcolor = matches[1];
496 this.font_color = matches[1];
500 matches = attrs[i].value.match(/background:\s*(\w+)/);
501 if(matches && matches[0].match(/background/)) {
502 this.font_bgcolor = matches[1];
519 matches = attrs[i].value.match(/\s*(\w+)align/);
520 if(matches) {
521 this.td_align = matches[1];
624 … else if(http && !media_type && (matches = attrs[i].escaped.match(/fetch\.php(.*)/)) ) {
625 if(matches[1].match(/media=/)) {
626 elems = matches[1].split(/=/);
630 matches[1] = matches[1].replace(/^\//,"");
631 this.attr = matches[1];
636 matches = attrs[i].escaped.match(regex);
637 if(matches && matches[1]) this.attr = matches[1];
652 matches = attrs[i].escaped.match(/doku.php\?id=(.*)/);
653 if(matches && save_url) {
658 matches = null;
661 if(!matches) {
662 matches = attrs[i].escaped.match(/doku.php\/(.*)/);
666 if(matches) {
667 if(!matches[1].match(/\?/) && matches[1].match(/&/)) {
669 matches[1] = matches[1].replace(/&/,'?')
672 if(matches && matches[1]) {
673 if(!matches[1].match(/^:/)) {
674 this.attr = ':' + matches[1];
677 this.attr = matches[1];
696 matches = attrs[i].value.match(/\\\\/); // Windows share
697 if(matches) {
712 if(matches = this.link_class.match(/media(.*)/)) {
715 var m = matches[1].split(/_/);
731 …if(this.attr.match && this.attr.match(/%[a-fA-F0-9]{2}/) && (matches = this.attr.match(/userfiles…
732 matches[1] = matches[1].replace(/\//g,':');
733 if(!matches[1].match(/^:/)) {
734 matches[1] = ':' + matches[1];
736 …this.attr = decodeURIComponent ? decodeURIComponent(matches[1]) : unescape(matches[1]); …
820 matches = attrs[i].value.split(/\s+/);
821 if(matches[0] == 'dwfcknote') {
822 this.attr = matches[0];
824 if(oDokuWiki_FCKEditorInstance.oinsertHtmlCodeObj.notes[matches[1]]) {
825 … dwfck_note = '(('+ oDokuWiki_FCKEditorInstance.oinsertHtmlCodeObj.notes[matches[1]] + '))';
868 if(matches = attrs[i].escaped.match(/fetch\.php.*?(media=.*)/)) {
869 var elems = matches[1].split('=');
871 if(matches = attrs[i].escaped.match(/(media.*)/)) {
872 var elems = matches[1].split('=');
883 … else if(matches = attrs[i].escaped.match(/\/_media\/(.*)/)) {
884 var elems = matches[1].split(/\?/);
890 else if(matches = attrs[i].escaped.match(/\/lib\/exe\/fetch.php\/(.*)/)) {
891 var elems = matches[1].split(/\?/);
898 matches = attrs[i].escaped.match(/^.*?\/userfiles\/image\/(.*)/);
899 if(!matches && typeof config_animal !== 'undefined') {
901matches = attrs[i].escaped.match(regex);
903 if(!matches) { // windows style
908 matches = attrs[i].escaped.match(regex);
910 if(matches && matches[1]) {
911 src = matches[1].replace(/\//g, ':');
1844 var matches = i.match(/_(\d+)/);
1845 var pattern = new RegExp('(\<sup\>)*[\(]+' + matches[1] + '[\)]+(<\/sup>)*');