Show
Ignore:
Timestamp:
09/02/08 22:55:34 (4 months ago)
Author:
drry
Message:
  • 正規表現を修正しました。
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/poptip.user.js

    r18667 r18671  
    323323    { 
    324324        description: 'Tabelog', 
    325         url: '^http://r\\.tabelog\\.com/.*', 
     325        url: '^http://r\\.tabelog\\.com/', 
    326326        linkElement: 'id("column-main")//div[@class="photo"]/a', 
    327327        popupElement: 'id("column-main")//div[@class="menulst"][position()=1]/div[@class="item"][position()<6]', 
     
    571571 
    572572function createHTMLDocumentByString(str) { 
    573     var html = str.replace(/<!DOCTYPE\s[^>]+>|<html(?:\s[^>]*)?>|<\/html\s*>.*/gi, ''); 
     573    var html = str.replace(/^[\s\S]*?<html(?:\s[^>]*)?>\s*|\s*<\/html\s*>[\S\s]*$/ig, ''); 
    574574    var htmlDoc  = document.implementation.createDocument(null, 'html', null); 
    575575    var fragment = createDocumentFragmentByString(html);