SuikaWiki Bookmarklet - POST URL

SuikaWiki Bookmarklet - POST URL

[6]

javascript:%0A%28%28%29%20%3D%3E%20%7B%0A%0Afunction%20normalize%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5Cs%2B%2Fg%2C%20%27%20%27%29.replace%20%28%2F%5E%20%2F%2C%20%27%27%29.replace%20%28%2F%20%24%2F%2C%20%27%27%29%3B%0A%7D%20%2F%2F%20normalize%0A%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20url%20%3D%20location.href%3B%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20getElementLanguage%20%28document.body%20%7C%7C%20document.documentElement%20%7C%7C%20document%29%3B%0Avar%20lm%3B%0Avar%20documentTimeSW%20%3D%20null%3B%0Avar%20documentSource%20%3D%20null%3B%0Avar%20documentFragmentInfo%20%3D%20null%3B%0Avar%20ignoreNow%3B%0A%0Aif%20%28locationHost%20%3D%3D%3D%20%27github.com%27%29%20%7B%0A%20%20var%20commit%20%3D%20document.querySelector%20%28%27.full-commit%27%29%3B%0A%20%20if%20%28commit%29%20%7B%0A%20%20%20%20var%20eEl%20%3D%20commit.querySelector%20%28%27.commit-title%27%29%3B%0A%20%20%20%20if%20%28eEl%29%20%7B%0A%20%20%20%20%20%20title%20%3D%20normalize%20%28eEl.textContent%29%3B%0A%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28eEl%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20aEl%20%3D%20commit.querySelector%20%28%27.user-mention%27%29%3B%0A%20%20%20%20if%20%28aEl%29%20documentAuthor%20%3D%20aEl.textContent%3B%0A%20%20%20%20var%20tEl%20%3D%20commit.querySelector%20%28%27relative-time%27%29%3B%0A%20%20%20%20if%20%28tEl%29%20lm%20%3D%20new%20Date%20%28tEl.getAttribute%20%28%27datetime%27%29%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20h2El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20h1El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%0A%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jstage.jst.go.jp%27%29%20%7B%0A%20%20var%20hEl%20%3D%20document.querySelector%20%28%27h1.mod-page-heading%27%29%3B%0A%20%20if%20%28hEl%29%20documentSource%20%3D%20normalize%20%28hEl.textContent%29%3B%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20m%5B1%5D%3B%0A%20%20%20%20titleLang%20%3D%20%27en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27dl.ndl.go.jp%27%29%20%7B%0A%20%20var%20m%20%3D%20url.match%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fdl.ndl.go.jp%5C%2Finfo%3Andljp%5C%2Fpid%5C%2F%28%5Cd%2B%29%28%3F%3A%5C%2F%5Cd%2B%5C%3F.*%7C%29%24%2F%29%3B%0A%20%20if%20%28m%29%20%7B%0A%20%20%20%20var%20sel%20%3D%20document.querySelector%20%28%27%23sel-content-no%27%29%3B%0A%20%20%20%20url%20%3D%20%27http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F%27%20%2B%20m%5B1%5D%20%2B%20%27%2F%27%20%2B%20%28sel%20%3F%20sel.value%20%3A%20%27%27%29%3B%0A%20%20%20%20var%20dl%20%3D%20document.querySelector%20%28%27.detail-metadata-list%27%29%3B%0A%20%20%20%20var%20props%20%3D%20%7B%7D%3B%0A%20%20%20%20if%20%28dl%29%20%7B%0A%20%20%20%20%20%20var%20propName%20%3D%20null%3B%0A%20%20%20%20%20%20Array.prototype.forEach.call%20%28dl.children%2C%20function%20%28el%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28el.localName%20%3D%3D%3D%20%27dt%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20propName%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28el.localName%20%3D%3D%3D%20%27dd%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20props%5BpropName%5D%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20documentAuthor%20%3D%20props%5B%22%E8%91%97%E8%80%85%20%28creator%29%22%5D%3B%20%2F%2F%20or%20undefined%0A%20%20%20%20if%20%28documentAuthor%29%20documentAuthor%20%3D%20documentAuthor.replace%20%28%2F%20%5B%E8%91%97%E7%B7%A8%5D%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%7B%0A%20%20%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%29%20%7B%0A%20%20%20%20%20%20%20%20var%20t%20%3D%20props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28%2F%5E%5B0-9%5D%2B%24%2F.test%20%28t%29%29%20t%20%3D%20%27year%3A%27%20%2B%20t%3B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5B%22%20%2B%20swEscape%20%28t%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jacar.go.jp%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fwww.jacar.go.jp%5C%2FDAS%5C%2Fmeta%5C%2Fimage_%5Cw%2B%28%3F%3A%5C%3F.*%7C%29%24%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20url%20%3D%20url.replace%20%28%2F%5C%3F.*%2F%2C%20%27%27%29%3B%0A%20%20%20%20var%20frame%20%3D%20document.querySelector%20%28%27%23top_img_frame%27%29%3B%0A%20%20%20%20if%20%28frame%29%20%7B%0A%20%20%20%20%20%20var%20h3%20%3D%20frame.contentDocument.querySelector%20%28%27h3.image_title%27%29%3B%0A%20%20%20%20%20%20if%20%28h3%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28h3.textContent%29.replace%20%28%2F%5E%E6%A8%99%E9%A1%8C%EF%BC%9A%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28h3%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27mmis.hkpl.gov.hk%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3A%5C%2F%5C%2Fmmis.hkpl.gov.hk%5C%2Fcoverpage%5C%2F-%5C%2Fcoverpage%5C%2Fview%5C%3F%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20var%20m%20%3D%20url.match%20%28%2F%5B%26%3F%5D%28p_r_p_-%5B%5E%26%5D%2B%3D%5B%5E%26%5D%2B%29%2F%29%3B%0A%20%20%20%20if%20%28m%29%20%7B%0A%20%20%20%20%20%20url%20%3D%20%22https%3A%2F%2Fmmis.hkpl.gov.hk%2Fcoverpage%2F-%2Fcoverpage%2Fview%3F%22%20%2B%20m%5B1%5D%3B%0A%20%20%20%20%20%20var%20span%20%3D%20document.querySelector%20%28%27.header-title%27%29%3B%0A%20%20%20%20%20%20if%20%28span%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28span.textContent%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28span%29%3B%0A%0A%20%20%20%20%20%20%20%20var%20page%20%3D%20document.querySelector%20%28%22.header.page-links%20.page-link%20.sel%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28page%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20page%20%3D%20page.textContent.replace%20%28%2F%5C*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20documentFragmentInfo%20%3D%20%27Page%20%27%20%2B%20page%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27twitter.com%27%29%20%7B%0A%20%20var%20timeEls%20%3D%20Array.prototype.slice.call%20%28document.querySelectorAll%20%28%27article%20%5Bdata-testid%3D%22tweet%22%5D%20~%20*%20span%27%29%29.filter%20%28_%20%3D%3E%20_.children.length%20%3D%3D%3D%200%29.filter%20%28_%20%3D%3E%20_.textContent.match%20%28%2F20%5Cd%5Cd%2F%29%29%3B%0A%20%20var%20timeEl%20%3D%20timeEls%5BtimeEls.length-1%5D%3B%0A%20%20if%20%28timeEl%29%20%7B%0A%20%20%20%20documentTimeSW%20%3D%20swEscape%20%28normalize%20%28timeEl.textContent%29%29%3B%0A%20%20%20%20var%20tzo%20%3D%20%28new%20Date%29.getTimezoneOffset%20%28%29%3B%0A%20%20%20%20documentTimeSW%20%2B%3D%20%27%20%5BTZ%5B%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%20%20%20%20ignoreNow%20%3D%20true%3B%0A%20%20%7D%0A%7D%0A%0Aif%20%28titleLang%20!%3D%20%27%27%29%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0Avar%20cc%20%3D%20%5B%5D%3B%0Aif%20%28documentFragmentInfo%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentFragmentInfo%29%29%29%3B%0Aif%20%28documentSource%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentSource%29%29%29%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20var%20x%20%3D%20swEscape%20%28normalize%20%28documentAuthor%29%29%3B%0A%20%20if%20%28x%29%20cc.push%20%28%27%5B%5B%27%20%2B%20x%20%2B%20%27%5D%5D%27%29%3B%0A%7D%0Aif%20%28documentTimeSW%29%20cc.push%20%28documentTimeSW%29%3B%0Aif%20%28lm%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20var%20m%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%20%20cc.push%20%28m%29%3B%0A%7D%0A%7B%0A%20%20var%20dlm%20%3D%20new%20Date%20%28document.lastModified%29%3B%0A%20%20var%20now%20%3D%20new%20Date%3B%0A%20%20cc.push%20%28%27%5BTIME%5B%27%2Bdlm.toISOString%20%28%29%2B%27%5D%5D%27%29%3B%0A%20%20if%20%28!ignoreNow%20%26%26%20Math.abs%20%28dlm.valueOf%20%28%29%20-%20now.valueOf%20%28%29%29%20%3E%201000%29%20%7B%0A%20%20%20%20cc.push%20%28%27%5BTIME%5B%27%2Bnow.toISOString%20%28%29%2B%27%5D%5D%27%29%3B%0A%20%20%7D%0A%7D%0Acc%20%3D%20cc.filter%20%28function%20%28s%29%20%7B%20return%20s%20%26%26%20s.length%20%7D%29%3B%0Acredit%20%3D%20cc.length%20%3F%20cc.join%20%28%27%2C%20%27%29%20%3A%20%27%27%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28url%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%20%7C%7C%20%27%27%29%3B%0A%0Aif%20%28false%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0A%7D%29%20%28%29%3B%0Avoid%20%280%29%3B

[3]

javascript:%0A%0Afunction%20normalize%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5Cs%2B%2Fg%2C%20%27%20%27%29.replace%20%28%2F%5E%20%2F%2C%20%27%27%29.replace%20%28%2F%20%24%2F%2C%20%27%27%29%3B%0A%7D%20%2F%2F%20normalize%0A%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20url%20%3D%20location.href%3B%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20getElementLanguage%20%28document.body%20%7C%7C%20document.documentElement%20%7C%7C%20document%29%3B%0Avar%20lm%20%3D%20new%20Date%20%28document.lastModified%29%3B%0Avar%20documentTimeSW%20%3D%20null%3B%0Avar%20documentSource%20%3D%20null%3B%0Avar%20documentFragmentInfo%20%3D%20null%3B%0A%0Aif%20%28locationHost%20%3D%3D%3D%20%27github.com%27%29%20%7B%0A%20%20var%20commit%20%3D%20document.querySelector%20%28%27.full-commit%27%29%3B%0A%20%20if%20%28commit%29%20%7B%0A%20%20%20%20var%20eEl%20%3D%20commit.querySelector%20%28%27.commit-title%27%29%3B%0A%20%20%20%20if%20%28eEl%29%20%7B%0A%20%20%20%20%20%20title%20%3D%20normalize%20%28eEl.textContent%29%3B%0A%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28eEl%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20aEl%20%3D%20commit.querySelector%20%28%27.user-mention%27%29%3B%0A%20%20%20%20if%20%28aEl%29%20documentAuthor%20%3D%20aEl.textContent%3B%0A%20%20%20%20var%20tEl%20%3D%20commit.querySelector%20%28%27relative-time%27%29%3B%0A%20%20%20%20if%20%28tEl%29%20lm%20%3D%20new%20Date%20%28tEl.getAttribute%20%28%27datetime%27%29%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20h2El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20h1El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%0A%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jstage.jst.go.jp%27%29%20%7B%0A%20%20var%20hEl%20%3D%20document.querySelector%20%28%27h1.mod-page-heading%27%29%3B%0A%20%20if%20%28hEl%29%20documentSource%20%3D%20normalize%20%28hEl.textContent%29%3B%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20m%5B1%5D%3B%0A%20%20%20%20titleLang%20%3D%20%27en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27dl.ndl.go.jp%27%29%20%7B%0A%20%20var%20m%20%3D%20url.match%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fdl.ndl.go.jp%5C%2Finfo%3Andljp%5C%2Fpid%5C%2F%28%5Cd%2B%29%28%3F%3A%5C%2F%5Cd%2B%5C%3F.*%7C%29%24%2F%29%3B%0A%20%20if%20%28m%29%20%7B%0A%20%20%20%20var%20sel%20%3D%20document.querySelector%20%28%27%23sel-content-no%27%29%3B%0A%20%20%20%20url%20%3D%20%27http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F%27%20%2B%20m%5B1%5D%20%2B%20%27%2F%27%20%2B%20sel.value%3B%0A%20%20%20%20var%20dl%20%3D%20document.querySelector%20%28%27.detail-metadata-list%27%29%3B%0A%20%20%20%20var%20props%20%3D%20%7B%7D%3B%0A%20%20%20%20if%20%28dl%29%20%7B%0A%20%20%20%20%20%20var%20propName%20%3D%20null%3B%0A%20%20%20%20%20%20Array.prototype.forEach.call%20%28dl.children%2C%20function%20%28el%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28el.localName%20%3D%3D%3D%20%27dt%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20propName%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28el.localName%20%3D%3D%3D%20%27dd%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20props%5BpropName%5D%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20documentAuthor%20%3D%20props%5B%22%E8%91%97%E8%80%85%20%28creator%29%22%5D%3B%20%2F%2F%20or%20undefined%0A%20%20%20%20if%20%28documentAuthor%29%20documentAuthor%20%3D%20documentAuthor.replace%20%28%2F%20%5B%E8%91%97%E7%B7%A8%5D%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%7B%0A%20%20%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%29%20%7B%0A%20%20%20%20%20%20%20%20var%20t%20%3D%20props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28%2F%5E%5B0-9%5D%2B%24%2F.test%20%28t%29%29%20t%20%3D%20%27year%3A%27%20%2B%20t%3B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5B%22%20%2B%20swEscape%20%28t%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jacar.go.jp%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fwww.jacar.go.jp%5C%2FDAS%5C%2Fmeta%5C%2Fimage_%5Cw%2B%28%3F%3A%5C%3F.*%7C%29%24%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20url%20%3D%20url.replace%20%28%2F%5C%3F.*%2F%2C%20%27%27%29%3B%0A%20%20%20%20var%20frame%20%3D%20document.querySelector%20%28%27%23top_img_frame%27%29%3B%0A%20%20%20%20if%20%28frame%29%20%7B%0A%20%20%20%20%20%20var%20h3%20%3D%20frame.contentDocument.querySelector%20%28%27h3.image_title%27%29%3B%0A%20%20%20%20%20%20if%20%28h3%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28h3.textContent%29.replace%20%28%2F%5E%E6%A8%99%E9%A1%8C%EF%BC%9A%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28h3%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27mmis.hkpl.gov.hk%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3A%5C%2F%5C%2Fmmis.hkpl.gov.hk%5C%2Fcoverpage%5C%2F-%5C%2Fcoverpage%5C%2Fview%5C%3F%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20var%20m%20%3D%20url.match%20%28%2F%5B%26%3F%5D%28p_r_p_-%5B%5E%26%5D%2B%3D%5B%5E%26%5D%2B%29%2F%29%3B%0A%20%20%20%20if%20%28m%29%20%7B%0A%20%20%20%20%20%20url%20%3D%20%22https%3A%2F%2Fmmis.hkpl.gov.hk%2Fcoverpage%2F-%2Fcoverpage%2Fview%3F%22%20%2B%20m%5B1%5D%3B%0A%20%20%20%20%20%20var%20span%20%3D%20document.querySelector%20%28%27.header-title%27%29%3B%0A%20%20%20%20%20%20if%20%28span%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28span.textContent%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28span%29%3B%0A%0A%20%20%20%20%20%20%20%20var%20page%20%3D%20document.querySelector%20%28%22.header.page-links%20.page-link%20.sel%22%29%3B%0A%20%20%20%20%20%20%20%20if%20%28page%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20page%20%3D%20page.textContent.replace%20%28%2F%5C*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20%20%20documentFragmentInfo%20%3D%20%27Page%20%27%20%2B%20page%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Aif%20%28documentTimeSW%29%20%7B%0A%20%20lm%20%3D%20documentTimeSW%3B%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Aif%20%28titleLang%20!%3D%20%27%27%29%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0Avar%20cc%20%3D%20%5B%5D%3B%0Aif%20%28documentFragmentInfo%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentFragmentInfo%29%29%29%3B%0Aif%20%28documentSource%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentSource%29%29%29%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20var%20x%20%3D%20swEscape%20%28normalize%20%28documentAuthor%29%29%3B%0A%20%20if%20%28x%29%20cc.push%20%28%27%5B%5B%27%20%2B%20x%20%2B%20%27%5D%5D%E8%91%97%27%29%3B%0A%7D%0Aif%20%28lm%20!%3D%3D%20null%29%20cc.push%20%28lm%29%3B%0Acc%20%3D%20cc.filter%20%28function%20%28s%29%20%7B%20return%20s%20%26%26%20s.length%20%7D%29%3B%0Acredit%20%3D%20cc.length%20%3F%20cc.join%20%28%27%2C%20%27%29%20%3A%20%27%27%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28url%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%20%7C%7C%20%27%27%29%3B%0A%0Aif%20%28false%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

[2]

javascript:%0A%0Afunction%20normalize%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5Cs%2B%2Fg%2C%20%27%20%27%29.replace%20%28%2F%5E%20%2F%2C%20%27%27%29.replace%20%28%2F%20%24%2F%2C%20%27%27%29%3B%0A%7D%20%2F%2F%20normalize%0A%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20url%20%3D%20location.href%3B%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20getElementLanguage%20%28document.body%20%7C%7C%20document.documentElement%20%7C%7C%20document%29%3B%0Avar%20lm%20%3D%20new%20Date%20%28document.lastModified%29%3B%0Avar%20documentTimeSW%20%3D%20null%3B%0Avar%20documentSource%20%3D%20null%3B%0A%0Aif%20%28locationHost%20%3D%3D%3D%20%27github.com%27%29%20%7B%0A%20%20var%20commit%20%3D%20document.querySelector%20%28%27.full-commit%27%29%3B%0A%20%20if%20%28commit%29%20%7B%0A%20%20%20%20var%20eEl%20%3D%20commit.querySelector%20%28%27.commit-title%27%29%3B%0A%20%20%20%20if%20%28eEl%29%20%7B%0A%20%20%20%20%20%20title%20%3D%20normalize%20%28eEl.textContent%29%3B%0A%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28eEl%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20aEl%20%3D%20commit.querySelector%20%28%27.user-mention%27%29%3B%0A%20%20%20%20if%20%28aEl%29%20documentAuthor%20%3D%20aEl.textContent%3B%0A%20%20%20%20var%20tEl%20%3D%20commit.querySelector%20%28%27relative-time%27%29%3B%0A%20%20%20%20if%20%28tEl%29%20lm%20%3D%20new%20Date%20%28tEl.getAttribute%20%28%27datetime%27%29%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20h2El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20h1El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%0A%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jstage.jst.go.jp%27%29%20%7B%0A%20%20var%20hEl%20%3D%20document.querySelector%20%28%27h1.mod-page-heading%27%29%3B%0A%20%20if%20%28hEl%29%20documentSource%20%3D%20normalize%20%28hEl.textContent%29%3B%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20m%5B1%5D%3B%0A%20%20%20%20titleLang%20%3D%20%27en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27dl.ndl.go.jp%27%29%20%7B%0A%20%20var%20m%20%3D%20url.match%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fdl.ndl.go.jp%5C%2Finfo%3Andljp%5C%2Fpid%5C%2F%28%5Cd%2B%29%28%3F%3A%5C%2F%5Cd%2B%5C%3F.*%7C%29%24%2F%29%3B%0A%20%20if%20%28m%29%20%7B%0A%20%20%20%20var%20sel%20%3D%20document.querySelector%20%28%27%23sel-content-no%27%29%3B%0A%20%20%20%20url%20%3D%20%27http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F%27%20%2B%20m%5B1%5D%20%2B%20%27%2F%27%20%2B%20sel.value%3B%0A%20%20%20%20var%20dl%20%3D%20document.querySelector%20%28%27.detail-metadata-list%27%29%3B%0A%20%20%20%20var%20props%20%3D%20%7B%7D%3B%0A%20%20%20%20if%20%28dl%29%20%7B%0A%20%20%20%20%20%20var%20propName%20%3D%20null%3B%0A%20%20%20%20%20%20Array.prototype.forEach.call%20%28dl.children%2C%20function%20%28el%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28el.localName%20%3D%3D%3D%20%27dt%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20propName%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28el.localName%20%3D%3D%3D%20%27dd%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20props%5BpropName%5D%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20documentAuthor%20%3D%20props%5B%22%E8%91%97%E8%80%85%20%28creator%29%22%5D%3B%20%2F%2F%20or%20undefined%0A%20%20%20%20if%20%28documentAuthor%29%20documentAuthor%20%3D%20documentAuthor.replace%20%28%2F%20%5B%E8%91%97%E7%B7%A8%5D%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%7B%0A%20%20%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%29%20%7B%0A%20%20%20%20%20%20%20%20var%20t%20%3D%20props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28%2F%5E%5B0-9%5D%2B%24%2F.test%20%28t%29%29%20t%20%3D%20%27year%3A%27%20%2B%20t%3B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5B%22%20%2B%20swEscape%20%28t%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jacar.go.jp%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fwww.jacar.go.jp%5C%2FDAS%5C%2Fmeta%5C%2Fimage_%5Cw%2B%28%3F%3A%5C%3F.*%7C%29%24%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20url%20%3D%20url.replace%20%28%2F%5C%3F.*%2F%2C%20%27%27%29%3B%0A%20%20%20%20var%20frame%20%3D%20document.querySelector%20%28%27%23top_img_frame%27%29%3B%0A%20%20%20%20if%20%28frame%29%20%7B%0A%20%20%20%20%20%20var%20h3%20%3D%20frame.contentDocument.querySelector%20%28%27h3.image_title%27%29%3B%0A%20%20%20%20%20%20if%20%28h3%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28h3.textContent%29.replace%20%28%2F%5E%E6%A8%99%E9%A1%8C%EF%BC%9A%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28h3%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Aif%20%28documentTimeSW%29%20%7B%0A%20%20lm%20%3D%20documentTimeSW%3B%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Aif%20%28titleLang%20!%3D%20%27%27%29%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0Avar%20cc%20%3D%20%5B%5D%3B%0Aif%20%28documentSource%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentSource%29%29%29%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20var%20x%20%3D%20swEscape%20%28normalize%20%28documentAuthor%29%29%3B%0A%20%20if%20%28x%29%20cc.push%20%28%27%5B%5B%27%20%2B%20x%20%2B%20%27%5D%5D%E8%91%97%27%29%3B%0A%7D%0Aif%20%28lm%20!%3D%3D%20null%29%20cc.push%20%28lm%29%3B%0Acc%20%3D%20cc.filter%20%28function%20%28s%29%20%7B%20return%20s%20%26%26%20s.length%20%7D%29%3B%0Acredit%20%3D%20cc.length%20%3F%20cc.join%20%28%27%2C%20%27%29%20%3A%20%27%27%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28url%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%20%7C%7C%20%27%27%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%20%26%26%20document.contentType%20%3D%3D%3D%20%27text%2Fhtml%27%20%26%26%20document.body%20%26%26%20document.body.localName%20%3D%3D%3D%20%27body%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

javascript:%0A%0Afunction%20normalize%20%28s%29%20%7B%0A%20%20if%20%28!s%29%20return%20null%3B%0A%20%20return%20s.replace%20%28%2F%5Cs%2B%2Fg%2C%20%27%20%27%29.replace%20%28%2F%5E%20%2F%2C%20%27%27%29.replace%20%28%2F%20%24%2F%2C%20%27%27%29%3B%0A%7D%20%2F%2F%20normalize%0A%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20url%20%3D%20location.href%3B%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20getElementLanguage%20%28document.body%20%7C%7C%20document.documentElement%20%7C%7C%20document%29%3B%0Avar%20lm%20%3D%20new%20Date%20%28document.lastModified%29%3B%0Avar%20documentTimeSW%20%3D%20null%3B%0Avar%20documentSource%20%3D%20null%3B%0A%0Aif%20%28locationHost%20%3D%3D%3D%20%27github.com%27%29%20%7B%0A%20%20var%20commit%20%3D%20document.querySelector%20%28%27.full-commit%27%29%3B%0A%20%20if%20%28commit%29%20%7B%0A%20%20%20%20var%20eEl%20%3D%20commit.querySelector%20%28%27.commit-title%27%29%3B%0A%20%20%20%20if%20%28eEl%29%20%7B%0A%20%20%20%20%20%20title%20%3D%20normalize%20%28eEl.textContent%29%3B%0A%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28eEl%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20aEl%20%3D%20commit.querySelector%20%28%27.user-mention%27%29%3B%0A%20%20%20%20if%20%28aEl%29%20documentAuthor%20%3D%20aEl.textContent%3B%0A%20%20%20%20var%20tEl%20%3D%20commit.querySelector%20%28%27relative-time%27%29%3B%0A%20%20%20%20if%20%28tEl%29%20lm%20%3D%20new%20Date%20%28tEl.getAttribute%20%28%27datetime%27%29%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20h2El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20h1El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%0A%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jstage.jst.go.jp%27%29%20%7B%0A%20%20var%20hEl%20%3D%20document.querySelector%20%28%27h1.mod-page-heading%27%29%3B%0A%20%20if%20%28hEl%29%20documentSource%20%3D%20normalize%20%28hEl.textContent%29%3B%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20m%5B1%5D%3B%0A%20%20%20%20titleLang%20%3D%20%27en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27dl.ndl.go.jp%27%29%20%7B%0A%20%20var%20m%20%3D%20url.match%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fdl.ndl.go.jp%5C%2Finfo%3Andljp%5C%2Fpid%5C%2F%28%5Cd%2B%29%28%3F%3A%5C%2F%5Cd%2B%5C%3F.*%7C%29%24%2F%29%3B%0A%20%20if%20%28m%29%20%7B%0A%20%20%20%20var%20sel%20%3D%20document.querySelector%20%28%27%23sel-content-no%27%29%3B%0A%20%20%20%20url%20%3D%20%27http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F%27%20%2B%20m%5B1%5D%20%2B%20%27%2F%27%20%2B%20sel.value%3B%0A%20%20%20%20var%20dl%20%3D%20document.querySelector%20%28%27.detail-metadata-list%27%29%3B%0A%20%20%20%20var%20props%20%3D%20%7B%7D%3B%0A%20%20%20%20if%20%28dl%29%20%7B%0A%20%20%20%20%20%20var%20propName%20%3D%20null%3B%0A%20%20%20%20%20%20Array.prototype.forEach.call%20%28dl.children%2C%20function%20%28el%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28el.localName%20%3D%3D%3D%20%27dt%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20propName%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28el.localName%20%3D%3D%3D%20%27dd%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20props%5BpropName%5D%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20documentAuthor%20%3D%20props%5B%22%E8%91%97%E8%80%85%20%28creator%29%22%5D%3B%20%2F%2F%20or%20undefined%0A%20%20%20%20if%20%28documentAuthor%29%20documentAuthor%20%3D%20documentAuthor.replace%20%28%2F%20%5B%E8%91%97%E7%B7%A8%5D%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%7B%0A%20%20%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%29%20%7B%0A%20%20%20%20%20%20%20%20var%20t%20%3D%20props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28%2F%5E%5B0-9%5D%2B%24%2F.test%20%28t%29%29%20t%20%3D%20%27year%3A%27%20%2B%20t%3B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5B%22%20%2B%20swEscape%20%28t%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jacar.go.jp%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fwww.jacar.go.jp%5C%2FDAS%5C%2Fmeta%5C%2Fimage_%5Cw%2B%28%3F%3A%5C%3F.*%7C%29%24%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20url%20%3D%20url.replace%20%28%2F%5C%3F.*%2F%2C%20%27%27%29%3B%0A%20%20%20%20var%20frame%20%3D%20document.querySelector%20%28%27%23top_img_frame%27%29%3B%0A%20%20%20%20if%20%28frame%29%20%7B%0A%20%20%20%20%20%20var%20h3%20%3D%20frame.contentDocument.querySelector%20%28%27h3.image_title%27%29%3B%0A%20%20%20%20%20%20if%20%28h3%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28h3.textContent%29.replace%20%28%2F%5E%E6%A8%99%E9%A1%8C%EF%BC%9A%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28h3%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Aif%20%28documentTimeSW%29%20%7B%0A%20%20lm%20%3D%20documentTimeSW%3B%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Aif%20%28titleLang%20!%3D%20%27%27%29%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0Avar%20cc%20%3D%20%5B%5D%3B%0Aif%20%28documentSource%20!%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentSource%29%29%29%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20cc.push%20%28%27%5B%5B%27%20%2B%20swEscape%20%28normalize%20%28documentAuthor%29%29%20%2B%20%27%5D%5D%E8%91%97%27%29%3B%0Aif%20%28lm%20!%3D%3D%20null%29%20cc.push%20%28lm%29%3B%0Acredit%20%3D%20cc.length%20%3F%20%27%20%28%27%20%2B%20cc.join%20%28%27%2C%20%27%29%20%2B%20%27%29%27%20%3A%20%27%27%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28url%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%20%26%26%20document.contentType%20%3D%3D%3D%20%27text%2Fhtml%27%20%26%26%20document.body%20%26%26%20document.body.localName%20%3D%3D%3D%20%27body%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

javascript:%0A%0Afunction%20normalize%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5Cs%2B%2Fg%2C%20%27%20%27%29.replace%20%28%2F%5E%20%2F%2C%20%27%27%29.replace%20%28%2F%20%24%2F%2C%20%27%27%29%3B%0A%7D%20%2F%2F%20normalize%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20url%20%3D%20location.href%3B%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20getElementLanguage%20%28document.body%20%7C%7C%20document.documentElement%20%7C%7C%20document%29%3B%0Avar%20lm%20%3D%20new%20Date%20%28document.lastModified%29%3B%0Avar%20documentTimeSW%20%3D%20null%3B%0Avar%20documentSource%20%3D%20null%3B%0A%0Aif%20%28locationHost%20%3D%3D%3D%20%27github.com%27%29%20%7B%0A%20%20var%20commit%20%3D%20document.querySelector%20%28%27.full-commit%27%29%3B%0A%20%20if%20%28commit%29%20%7B%0A%20%20%20%20var%20eEl%20%3D%20commit.querySelector%20%28%27.commit-title%27%29%3B%0A%20%20%20%20if%20%28eEl%29%20%7B%0A%20%20%20%20%20%20title%20%3D%20normalize%20%28eEl.textContent%29%3B%0A%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28eEl%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20aEl%20%3D%20commit.querySelector%20%28%27.user-mention%27%29%3B%0A%20%20%20%20if%20%28aEl%29%20documentAuthor%20%3D%20aEl.textContent%3B%0A%20%20%20%20var%20tEl%20%3D%20commit.querySelector%20%28%27relative-time%27%29%3B%0A%20%20%20%20if%20%28tEl%29%20lm%20%3D%20new%20Date%20%28tEl.getAttribute%20%28%27datetime%27%29%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20h2El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20h1El.textContent%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%0A%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jstage.jst.go.jp%27%29%20%7B%0A%20%20var%20hEl%20%3D%20document.querySelector%20%28%27h1.mod-page-heading%27%29%3B%0A%20%20if%20%28hEl%29%20documentSource%20%3D%20normalize%20%28hEl.textContent%29%3B%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20m%5B1%5D%3B%0A%20%20%20%20titleLang%20%3D%20%27en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27dl.ndl.go.jp%27%29%20%7B%0A%20%20var%20m%20%3D%20url.match%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fdl.ndl.go.jp%5C%2Finfo%3Andljp%5C%2Fpid%5C%2F%28%5Cd%2B%29%28%3F%3A%5C%2F%5Cd%2B%5C%3F.*%7C%29%24%2F%29%3B%0A%20%20if%20%28m%29%20%7B%0A%20%20%20%20var%20sel%20%3D%20document.querySelector%20%28%27%23sel-content-no%27%29%3B%0A%20%20%20%20url%20%3D%20%27http%3A%2F%2Fdl.ndl.go.jp%2Finfo%3Andljp%2Fpid%2F%27%20%2B%20m%5B1%5D%20%2B%20%27%2F%27%20%2B%20sel.value%3B%0A%20%20%20%20var%20dl%20%3D%20document.querySelector%20%28%27.detail-metadata-list%27%29%3B%0A%20%20%20%20var%20props%20%3D%20%7B%7D%3B%0A%20%20%20%20if%20%28dl%29%20%7B%0A%20%20%20%20%20%20var%20propName%20%3D%20null%3B%0A%20%20%20%20%20%20Array.prototype.forEach.call%20%28dl.children%2C%20function%20%28el%29%20%7B%0A%20%20%20%20%20%20%20%20if%20%28el.localName%20%3D%3D%3D%20%27dt%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20propName%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28el.localName%20%3D%3D%3D%20%27dd%27%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20props%5BpropName%5D%20%3D%20normalize%20%28el.textContent%29%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20documentAuthor%20%3D%20props%5B%22%E8%91%97%E8%80%85%20%28creator%29%22%5D%3B%20%2F%2F%20or%20undefined%0A%20%20%20%20if%20%28documentAuthor%29%20documentAuthor%20%3D%20documentAuthor.replace%20%28%2F%20%E8%91%97%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%7B%0A%20%20%20%20%20%20if%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%29%20%7B%0A%20%20%20%20%20%20%20%20var%20t%20%3D%20props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%28W3CDTF%E5%BD%A2%E5%BC%8F%29%20%28issued%3AW3CDTF%29%22%5D%3B%0A%20%20%20%20%20%20%20%20if%20%28%2F%5E%5B0-9%5D%2B%24%2F.test%20%28t%29%29%20t%20%3D%20%27year%3A%27%20%2B%20t%3B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5B%22%20%2B%20swEscape%20%28t%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20documentTimeSW%20%3D%20%22%5BTIME%5B%22%20%2B%20swEscape%20%28props%5B%22%E5%87%BA%E7%89%88%E5%B9%B4%E6%9C%88%E6%97%A5%20%28issued%29%22%5D%29%20%2B%20%22%5D%5D%22%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%3D%20%27www.jacar.go.jp%27%29%20%7B%0A%20%20if%20%28%2F%5Ehttps%3F%3A%5C%2F%5C%2Fwww.jacar.go.jp%5C%2FDAS%5C%2Fmeta%5C%2Fimage_%5Cw%2B%28%3F%3A%5C%3F.*%7C%29%24%2F.test%20%28url%29%29%20%7B%0A%20%20%20%20url%20%3D%20url.replace%20%28%2F%5C%3F.*%2F%2C%20%27%27%29%3B%0A%20%20%20%20var%20frame%20%3D%20document.querySelector%20%28%27%23top_img_frame%27%29%3B%0A%20%20%20%20if%20%28frame%29%20%7B%0A%20%20%20%20%20%20var%20h3%20%3D%20frame.contentDocument.querySelector%20%28%27h3.image_title%27%29%3B%0A%20%20%20%20%20%20if%20%28h3%29%20%7B%0A%20%20%20%20%20%20%20%20title%20%3D%20normalize%20%28h3.textContent%29.replace%20%28%2F%5E%E6%A8%99%E9%A1%8C%EF%BC%9A%2F%2C%20%27%27%29%3B%0A%20%20%20%20%20%20%20%20titleEl%20%3D%20getElementLanguage%20%28h3%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A%0Aif%20%28documentTimeSW%29%20%7B%0A%20%20lm%20%3D%20documentTimeSW%3B%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Aif%20%28titleLang%20!%3D%20%27%27%29%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0Avar%20cc%20%3D%20%5B%5D%3B%0Aif%20%28documentSource%20!%3D%3D%20null%29%20cc.push%20%28swEscape%20%28normalize%20%28documentSource%29%29%29%3B%0Aif%20%28documentAuthor%20!%3D%3D%20null%29%20cc.push%20%28%27%5B%5B%27%20%2B%20swEscape%20%28normalize%20%28documentAuthor%29%29%20%2B%20%27%5D%5D%E8%91%97%27%29%3B%0Aif%20%28lm%20!%3D%3D%20null%29%20cc.push%20%28lm%29%3B%0Acredit%20%3D%20cc.length%20%3F%20%27%20%28%27%20%2B%20cc.join%20%28%27%2C%20%27%29%20%2B%20%27%29%27%20%3A%20%27%27%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28url%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%20%26%26%20document.contentType%20%3D%3D%3D%20%27text%2Fhtml%27%20%26%26%20document.body%20%26%26%20document.body.localName%20%3D%3D%3D%20%27body%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

旧版

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20iframe%20%3D%20document.createElement%20%28%27iframe%27%29%3B%0A%20%20document.body.appendChild%20%28iframe%29%3B%0A%20%20var%20sel%20%3D%20iframe.contentWindow.getSelection.apply%20%28window%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20if%20%28h2El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20if%20%28logEl%29%20%7B%0A%20var%20rows%20%3D%20logEl.rows%3B%0A%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20if%20%28revCell%29%20%7B%0A%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20if%20%28rev%29%20%7B%0A%20var%20titleCell%20%3D%20row.cells%5B2%5D%3B%0A%20if%20%28titleCell%29%20%7B%0A%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20H1EL%3A%20%7B%0A%20if%20%28h1El%29%20%7B%0A%20break%20H1EL%3B%0A%20%7D%0A%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20fontsLength%20%3D%20fonts.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20h1El%20%3D%20font%3B%0A%20break%20H1EL%3B%0A%20%7D%0A%20%7D%0A%20%7D%20%2F%2F%20H1EL%0A%20if%20%28h1El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%7D%20else%20%7B%0A%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%7D%0A%7D%20else%20%7B%0A%20title%20%3D%20swEscape%20%28title%29%3B%0A%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20if%20%28titleEl%29%20%7B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20if%20%28o1El%29%20%7B%0A%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20if%20%28nv%5B1%5D%29%20%7B%0A%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20if%20%28!o1Prop.from%29%20%7B%0A%20o1Prop.from%20%3D%20s%3B%0A%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20o1Prop.date%20%3D%20s%3B%0A%20%7D%0A%20%7D%0A%20%7D%29%3B%0A%20if%20%28o1Prop.from%29%20%7B%0A%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28o1Prop.date%29%20%7B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20documentAuthor%0A%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20if%20%28dateEl%29%20%7B%0A%20var%20m%20%3D%20dateEl.textContent%0A%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20titleLang%20%3D%20%27%40en%27%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20if%20%28m%20%3D%20documentAuthor.match%0A%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20%27%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28uri%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%20%26%26%20document.contentType%20%3D%3D%3D%20%27text%2Fhtml%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20sel%20%3D%20window.getSelection%20%28%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20if%20%28h2El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20if%20%28logEl%29%20%7B%0A%20var%20rows%20%3D%20logEl.rows%3B%0A%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20if%20%28revCell%29%20%7B%0A%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20if%20%28rev%29%20%7B%0A%20var%20titleCell%20%3D%20row.cells%5B2%5D%3B%0A%20if%20%28titleCell%29%20%7B%0A%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20H1EL%3A%20%7B%0A%20if%20%28h1El%29%20%7B%0A%20break%20H1EL%3B%0A%20%7D%0A%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20fontsLength%20%3D%20fonts.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20h1El%20%3D%20font%3B%0A%20break%20H1EL%3B%0A%20%7D%0A%20%7D%0A%20%7D%20%2F%2F%20H1EL%0A%20if%20%28h1El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%7D%20else%20%7B%0A%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%7D%0A%7D%20else%20%7B%0A%20title%20%3D%20swEscape%20%28title%29%3B%0A%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20if%20%28titleEl%29%20%7B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20if%20%28o1El%29%20%7B%0A%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20if%20%28nv%5B1%5D%29%20%7B%0A%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20if%20%28!o1Prop.from%29%20%7B%0A%20o1Prop.from%20%3D%20s%3B%0A%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20o1Prop.date%20%3D%20s%3B%0A%20%7D%0A%20%7D%0A%20%7D%29%3B%0A%20if%20%28o1Prop.from%29%20%7B%0A%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28o1Prop.date%29%20%7B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20documentAuthor%0A%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20if%20%28dateEl%29%20%7B%0A%20var%20m%20%3D%20dateEl.textContent%0A%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20titleLang%20%3D%20%27%40en%27%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20if%20%28m%20%3D%20documentAuthor.match%0A%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20%27%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20postURL%20%3D%20%27https%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28uri%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%20%26%26%20document.contentType%20%3D%3D%3D%20%27text%2Fhtml%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

[1] javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2Fg%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2Fg%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0Afunction%20getSelectedText%20%28%29%20%7B%0A%20%20var%20sel%20%3D%20window.getSelection%20%28%29%3B%0A%20%20return%20sel.toString%20%28%29%3B%0A%7D%20%2F%2F%20getSelectedText%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20if%20%28h2El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20if%20%28logEl%29%20%7B%0A%20var%20rows%20%3D%20logEl.rows%3B%0A%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20if%20%28revCell%29%20%7B%0A%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20if%20%28rev%29%20%7B%0A%20var%20titleCell%20%3D%20row.cells%5B2%5D%3B%0A%20if%20%28titleCell%29%20%7B%0A%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20H1EL%3A%20%7B%0A%20if%20%28h1El%29%20%7B%0A%20break%20H1EL%3B%0A%20%7D%0A%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20fontsLength%20%3D%20fonts.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20h1El%20%3D%20font%3B%0A%20break%20H1EL%3B%0A%20%7D%0A%20%7D%0A%20%7D%20%2F%2F%20H1EL%0A%20if%20%28h1El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%7D%20else%20%7B%0A%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%7D%0A%7D%20else%20%7B%0A%20title%20%3D%20swEscape%20%28title%29%3B%0A%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20if%20%28titleEl%29%20%7B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20if%20%28o1El%29%20%7B%0A%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20if%20%28nv%5B1%5D%29%20%7B%0A%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20if%20%28!o1Prop.from%29%20%7B%0A%20o1Prop.from%20%3D%20s%3B%0A%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20o1Prop.date%20%3D%20s%3B%0A%20%7D%0A%20%7D%0A%20%7D%29%3B%0A%20if%20%28o1Prop.from%29%20%7B%0A%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28o1Prop.date%29%20%7B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20documentAuthor%0A%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20if%20%28dateEl%29%20%7B%0A%20var%20m%20%3D%20dateEl.textContent%0A%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20titleLang%20%3D%20%27%40en%27%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20if%20%28m%20%3D%20documentAuthor.match%0A%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20%27%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20postURL%20%3D%20%27http%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28uri%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%20%2B%20%27%26quote%3D%27%20%2B%20encodeURIComponent%20%28swEscape%20%28getSelectedText%20%28%29%29%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

[105] javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20var%20metasLength%20%3D%20metas.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%7D%0A%20%7D%0A%0A%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20documentAuthor%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20documentLanguage%20%3D%20meta.content%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20while%20%28el%20!%3D%20null%29%20%7B%0A%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%7D%0A%20%7D%0A%20el%20%3D%20el.parentNode%3B%0A%20%7D%0A%0A%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20header%20fields.%20*%2F%0A%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20if%20%28h2El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20if%20%28logEl%29%20%7B%0A%20var%20rows%20%3D%20logEl.rows%3B%0A%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20if%20%28revCell%29%20%7B%0A%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20if%20%28rev%29%20%7B%0A%20var%20titleCell%20%3D%20row.cells%5B2%5D%3B%0A%20if%20%28titleCell%29%20%7B%0A%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20H1EL%3A%20%7B%0A%20if%20%28h1El%29%20%7B%0A%20break%20H1EL%3B%0A%20%7D%0A%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20fontsLength%20%3D%20fonts.length%3B%0A%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20h1El%20%3D%20font%3B%0A%20break%20H1EL%3B%0A%20%7D%0A%20%7D%0A%20%7D%20%2F%2F%20H1EL%0A%20if%20%28h1El%29%20%7B%0A%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%7D%20else%20%7B%0A%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%7D%0A%7D%20else%20%7B%0A%20title%20%3D%20swEscape%20%28title%29%3B%0A%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20if%20%28titleEl%29%20%7B%0A%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20if%20%28o1El%29%20%7B%0A%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20if%20%28nv%5B1%5D%29%20%7B%0A%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20if%20%28!o1Prop.from%29%20%7B%0A%20o1Prop.from%20%3D%20s%3B%0A%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20o1Prop.date%20%3D%20s%3B%0A%20%7D%0A%20%7D%0A%20%7D%29%3B%0A%20if%20%28o1Prop.from%29%20%7B%0A%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28o1Prop.date%29%20%7B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%7D%0A%20%7D%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20documentAuthor%0A%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20if%20%28dateEl%29%20%7B%0A%20var%20m%20%3D%20dateEl.textContent%0A%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20var%20m%3B%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20titleLang%20%3D%20%27%40en%27%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20if%20%28m%20%3D%20documentAuthor.match%0A%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%7D%20else%20%7B%0A%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%7D%0A%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%7D%0A%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%7D%0A%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%3A%27%0A%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20%27%20%28%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20credit%20%3D%20%27%20%28%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20postURL%20%3D%20%27http%3A%2F%2Fwiki.suikawiki.org%2Fposturl%3Furl%3D%27%20%2B%20encodeURIComponent%20%28uri%29%20%2B%20%27%26title%3D%27%20%2B%20encodeURIComponent%20%28title%29%20%2B%20%27%26title-lang%3D%27%20%2B%20encodeURIComponent%20%28titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%29%20%2B%20%27%26credit%3D%27%20%2B%20encodeURIComponent%20%28credit%29%3B%0A%0Aif%20%28location.protocol%20%3D%3D%20%27http%3A%27%29%20%7B%0A%20%20var%20form%20%3D%20document.createElement%20%28%27div%27%29%3B%0A%20%20form.lang%20%3D%20%27en%27%3B%0A%20%20form.innerHTML%20%3D%20%27%3Cbutton%20onclick%3D%22this.parentNode.parentNode.removeChild%20%28this.parentNode%29%22%3EClose%3C%2Fbutton%3E%3Cbr%3E%3Ciframe%20src%3D%22%22%20style%3D%22width%3A100%25%3B%20height%3A%2020em%22%3E%3C%2Fiframe%3E%27%3B%0A%20%20form.lastChild.src%20%3D%20postURL%3B%0A%20%20form.lastChild.focus%20%28%29%3B%0A%20%20form.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%20%20document.body.appendChild%20%28form%29%3B%0A%7D%20else%20%7B%0A%20%20window.open%20%28postURL%29%3B%0A%7D%0A%0Avoid%20%280%29%3B

[99] HTML5 Tracker の変更に追随。

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20%20if%20%28logEl%29%20%7B%0A%20%20%20%20var%20rows%20%3D%20logEl.rows%3B%0A%20%20%20%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20%20%20%20%20%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20%20%20%20%20%20if%20%28revCell%29%20%7B%0A%20%20%20%20%20%20%20%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20if%20%28rev%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20titleCell%20%3D%20row.cells%5B1%5D%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28titleCell%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

[98] 言語タグに「@」が含まれる不具合を修正。

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20%20if%20%28logEl%29%20%7B%0A%20%20%20%20var%20rows%20%3D%20logEl.rows%3B%0A%20%20%20%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20%20%20%20%20%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20%20%20%20%20%20if%20%28revCell%29%20%7B%0A%20%20%20%20%20%20%20%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20if%20%28rev%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20titleCell%20%3D%20row.cells%5B1%5D%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28titleCell%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20m%20%3D%20row.cells%5B2%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

[97] gmane の変更に追随、html5.org 対応

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20%20if%20%28logEl%29%20%7B%0A%20%20%20%20var%20rows%20%3D%20logEl.rows%3B%0A%20%20%20%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20%20%20%20%20%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20%20%20%20%20%20if%20%28revCell%29%20%7B%0A%20%20%20%20%20%20%20%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20if%20%28rev%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20titleCell%20%3D%20row.cells%5B1%5D%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28titleCell%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20m%20%3D%20row.cells%5B2%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

[95] z-index 設定した javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%2F%2F%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0A%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%5B%5D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20m%3B%0A%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

[94] javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%2F%2F%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0A%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%5B%5D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20m%3B%0A%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20%2F*swEscape*%2F%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20lm%20%2B%20%27%20%E7%89%88%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

[102] WA1 Tracker 追随

javascript:%0A%0Afunction%20swEscape%20%28s%29%20%7B%0A%20%20return%20s.replace%20%28%2F%5C%5B%2F%2C%20%22%27%27%27%5B%27%27%27%22%29.replace%20%28%2F%5C%5D%2F%2C%20%22%27%27%27%5D%27%27%27%22%29%3B%0A%7D%20%2F%2F%20swEscape%0A%0Afunction%20setTimeZoneToUTC%20%28d%29%20%7B%0A%20%20d.setUTCFullYear%20%28d.getFullYear%20%28%29%2C%20d.getMonth%20%28%29%2C%20d.getDate%20%28%29%29%3B%0A%20%20d.setUTCHours%20%28d.getHours%20%28%29%2C%20d.getMinutes%20%28%29%2C%20d.getSeconds%20%28%29%29%3B%0A%20%20return%20d%3B%0A%7D%20%2F%2F%20setTimeZoneToUTC%0A%0Avar%20documentLanguage%20%3D%20null%3B%0Avar%20documentAuthor%20%3D%20null%3B%0Afunction%20scanMeta%20%28%29%20%7B%0A%20%20var%20metas%20%3D%20document.getElementsByTagName%20%28%27meta%27%29%3B%0A%20%20var%20metasLength%20%3D%20metas.length%3B%0A%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20metasLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20var%20meta%20%3D%20metas%5Bi%5D%3B%0A%20%20%20%20var%20metaFieldName%20%3D%20meta.httpEquiv.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaFieldName%20%3D%3D%20%27content-language%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content.split%20%28%2F%5Cs*%2C%5Cs*%2F%29%5B0%5D%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%0A%20%20%20%20var%20metaName%20%3D%20meta.name.toLowerCase%20%28%29%3B%0A%20%20%20%20if%20%28metaName%20%3D%3D%20%27author%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentAuthor%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentAuthor%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20else%20if%20%28metaName%20%3D%3D%20%27ms.locale%27%29%20%7B%0A%20%20%20%20%20%20if%20%28documentLanguage%20%3D%3D%20null%29%20%7B%0A%20%20%20%20%20%20%20%20documentLanguage%20%3D%20meta.content%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20%2F%2F%20scanMeta%0A%0Afunction%20getElementLanguage%20%28el%29%20%7B%0A%20%20var%20xmlNS%20%3D%20%27http%3A%2F%2Fwww.w3.org%2FXML%2F1998%2Fnamespace%27%3B%0A%20%20while%20%28el%20!%3D%20null%29%20%7B%0A%20%20%20%20if%20%28el.nodeType%20%3D%3D%20el.ELEMENT_NODE%29%20%7B%0A%20%20%20%20%20%20if%20%28el.hasAttributeNS%20%28xmlNS%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28xmlNS%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%20else%20if%20%28%28el.namespaceURI%20%3D%3D%20null%20%7C%7C%0A%20%20%20%20%20%20%20%20%20%20el.namespaceURI%20%3D%3D%20%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxhtml%27%29%20%26%26%0A%20%20%20%20%20%20%20%20%20%20el.hasAttributeNS%20%28null%2C%20%27lang%27%29%29%20%7B%0A%20%20%20%20%20%20%20%20return%20el.getAttributeNS%20%28null%2C%20%27lang%27%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%20%20el%20%3D%20el.parentNode%3B%0A%20%20%7D%0A%0A%20%20%2F*%20NOTE%3A%20%7CContent-Language%7C%20is%20not%20supported%0A%20%20%20%20%20%20since%20DOM%20provides%20no%20access%20to%20HTTP%0A%20%20%20%20%20%20header%20fields.%20*%2F%0A%20%20return%20documentLanguage%20!%3D%20null%20%3F%20documentLanguage%20%3A%20%27%27%3B%0A%7D%20%2F%2F%20getElementLanguage%0A%0AscanMeta%20%28%29%3B%0A%0Avar%20locationHost%3B%0Atry%20%7B%0A%20%20locationHost%20%3D%20location.host%3B%0A%7D%20catch%20%28e%29%20%7B%0A%20%20locationHost%20%3D%20null%3B%0A%7D%0A%0Avar%20title%20%3D%20document.title%3B%0Avar%20titleLang%20%3D%20%27%27%3B%0Avar%20lm%20%3D%20document.lastModified%3B%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20h2El%20%3D%20document.getElementsByTagName%20%28%27h2%27%29%5B0%5D%3B%0A%20%20if%20%28h2El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h2El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h2El%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28locationHost%20%3D%3D%20%27html5.org%27%29%20%7B%0A%20%20var%20logEl%20%3D%20document.getElementById%20%28%27log%27%29%3B%0A%20%20if%20%28logEl%29%20%7B%0A%20%20%20%20var%20rows%20%3D%20logEl.rows%3B%0A%20%20%20%20if%20%28rows.length%20%3D%3D%202%29%20%7B%0A%20%20%20%20%20%20var%20row%20%3D%20rows%5B1%5D%3B%0A%20%20%20%20%20%20var%20revCell%20%3D%20row.cells%5B0%5D%3B%0A%20%20%20%20%20%20if%20%28revCell%29%20%7B%0A%20%20%20%20%20%20%20%20var%20rev%20%3D%20parseInt%20%28revCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20if%20%28rev%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20var%20titleCell%20%3D%20row.cells%5B2%5D%3B%0A%20%20%20%20%20%20%20%20%20%20if%20%28titleCell%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20title%20%3D%20%27Web%20Applications%201.0%20r%27%20%2B%20rev%20%2B%20%27%20%27%20%2B%20swEscape%20%28titleCell.textContent%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleCell%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20m%20%3D%20row.cells%5B3%5D.textContent.match%20%28%2F%5E%28%5B0-9%5D%7B4%7D%29-%28%5B0-9%5D%7B2%7D%29-%28%5B0-9%5D%7B2%7D%29%5Cs%2B%28%5B0-9%5D%7B2%7D%29%3A%28%5B0-9%5D%7B2%7D%29%24%2F%29%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20%28m%29%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%29%29%3B%0A%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28title%20%3D%3D%20null%20%7C%7C%20title%20%3D%3D%20%27%27%20%7C%7C%0A%20%20%20%20locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20var%20h1El%20%3D%20document.getElementsByTagName%20%28%27h1%27%29%5B0%5D%3B%0A%20%20H1EL%3A%20%7B%0A%20%20%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%7D%0A%20%20%20%20var%20fonts%20%3D%20document.getElementsByTagName%20%28%27font%27%29%3B%0A%20%20%20%20fontsLength%20%3D%20fonts.length%3B%0A%20%20%20%20for%20%28var%20i%20%3D%200%3B%20i%20%3C%20fontsLength%3B%20i%2B%2B%29%20%7B%0A%20%20%20%20%20%20var%20font%20%3D%20fonts%5Bi%5D%3B%0A%20%20%20%20%20%20if%20%28font.size%20%3D%3D%20%277%27%20%7C%7C%20font.size%20%3D%3D%20%27%2B4%27%29%20%7B%0A%20%20%20%20%20%20%20%20h1El%20%3D%20font%3B%0A%20%20%20%20%20%20%20%20break%20H1EL%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%20%2F%2F%20H1EL%0A%20%20if%20%28h1El%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28h1El.textContent%29%3B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28h1El%29%3B%0A%20%20%7D%20else%20%7B%0A%20%20%20%20title%20%3D%20title%20%3D%3D%20null%20%3F%20%27%27%20%3A%20title%3B%0A%20%20%7D%0A%7D%20else%20%7B%0A%20%20title%20%3D%20swEscape%20%28title%29%3B%0A%20%20var%20titleEl%20%3D%20document.getElementsByTagName%20%28%27title%27%29%5B0%5D%3B%0A%20%20if%20%28titleEl%29%20%7B%0A%20%20%20%20titleLang%20%3D%20getElementLanguage%20%28titleEl%29%3B%0A%20%20%7D%0A%7D%0Aif%20%28titleLang%20!%3D%20%27%27%29%20%7B%0A%20%20titleLang%20%3D%20%27%40%27%20%2B%20titleLang%3B%0A%7D%0A%0Aif%20%28locationHost%20%3D%3D%20%27permalink.gmane.org%27%29%20%7B%0A%20%20var%20o1El%20%3D%20document.getElementById%20%28%27o1%27%29%3B%0A%20%20if%20%28o1El%29%20%7B%0A%20%20%20%20var%20o1Prop%20%3D%20%7B%7D%3B%0A%20%20%20%20o1El.textContent.split%20%28%22%5Cn%22%29.forEach%20%28function%20%28s%29%20%7B%0A%20%20%20%20%20%20var%20nv%20%3D%20s.split%20%28%27%3A%20%27%2C%202%29%3B%0A%20%20%20%20%20%20if%20%28nv%5B1%5D%29%20%7B%0A%20%20%20%20%20%20%20%20o1Prop%5Bnv%5B0%5D.toLowerCase%20%28%29%5D%20%3D%20nv%5B1%5D%3B%0A%20%20%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20%20%20if%20%28!o1Prop.from%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.from%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%20else%20if%20%28!o1Prop.date%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20o1Prop.date%20%3D%20s%3B%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%29%3B%0A%20%20%20%20if%20%28o1Prop.from%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20o1Prop.from.replace%20%28%2F%5Cs*%3C%5B%5E%3C%3E%5D%2B%3Cat%3E%5B%5E%3C%3E%5D%2B%3E%5Cs*%24%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28o1Prop.date%29%20%7B%0A%20%20%20%20%20%20var%20m%3B%0A%20%20%20%20%20%20if%20%28m%20%3D%20o1Prop.date.match%20%28%2F%5E%28%5Cd%2B%29-%28%5Cd%2B%29-%28%5Cd%2B%29%5Cs%2B%28%5Cd%2B%29%3A%28%5Cd%2B%29%3A%28%5Cd%2B%29%5Cs%2BGMT%24%2F%29%29%20%7B%0A%20%20%20%20%20%20%20%20lm%20%3D%20setTimeZoneToUTC%20%28new%20Date%20%28m%5B1%5D%2C%20m%5B2%5D%20-%201%2C%20m%5B3%5D%2C%20m%5B4%5D%2C%20m%5B5%5D%2C%20m%5B6%5D%29%29%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27lists.w3.org%27%29%20%7B%0A%20%20if%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20%20%20documentAuthor%0A%20%20%20%20%20%20%20%20%3D%20documentAuthor.replace%20%28%2F%5Cs%2B%5C%28%5B%5E%28%29%5D%2B%5C%29%24%2F%2C%20%27%27%29%3B%0A%20%20%7D%0A%20%20var%20dateEl%20%3D%20document.getElementById%20%28%27date%27%29%3B%0A%20%20if%20%28dateEl%29%20%7B%0A%20%20%20%20var%20m%20%3D%20dateEl.textContent%0A%20%20%20%20%20%20%20%20.replace%20%28%2F%5EDate%3A%5Cs%2B%2F%2C%20%27%27%29%3B%0A%20%20%20%20lm%20%3D%20new%20Date%20%28m%29%3B%0A%20%20%7D%0A%7D%20else%20if%20%28locationHost%20%3D%3D%20%27listserv.heanet.ie%27%29%20%7B%0A%20%20var%20docText%20%3D%20document.documentElement.textContent%3B%0A%20%20var%20m%3B%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbSubject%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20title%20%3D%20swEscape%20%28m%5B1%5D%29%3B%0A%20%20%20%20titleLang%20%3D%20%27%40en%27%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbFrom%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20var%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20if%20%28m%20%3D%20documentAuthor.match%0A%20%20%20%20%20%20%20%20%28%2F%5E%5C%5Blog%20in%20to%20unmask%5C%5D%5Cs*%5C%28%28%5B%5E%28%29%5D%2B%29%5C%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20m%5B1%5D%3B%0A%20%20%20%20%7D%20else%20%7B%0A%20%20%20%20%20%20documentAuthor%20%3D%20documentAuthor.replace%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%28%2F%5Cs*%3C%5C%5Blog%20in%20to%20unmask%5C%5D%3E%2F%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%22%2Fg%2C%20%27%27%29%0A%20%20%20%20%20%20%20%20%20%20.replace%20%28%2F%5C%5Blog%20in%20to%20unmask%5C%5D%2F%2C%20%27%27%29%3B%0A%20%20%20%20%7D%0A%20%20%20%20if%20%28!documentAuthor%29%20documentAuthor%20%3D%20null%3B%0A%20%20%7D%0A%20%20if%20%28m%20%3D%20docText.match%20%28%2F%5CbDate%3A%5Cs*%28%5B%5E%5Cn%5D%2B%29%2F%29%29%20%7B%0A%20%20%20%20if%20%28m%20%3D%20m%5B1%5D.match%20%28%2F%5E%5BA-Za-z%5D%2B%2C%20%28%5Cd%2B%29%20%28%5CS%2B%29%20%28%5Cd%2B%20%5Cd%2B%3A%5Cd%2B%3A%5Cd%2B%20E%5BSD%5DT%29%24%2F%29%29%20%7B%0A%20%20%20%20%20%20lm%20%3D%20new%20Date%20%28m%5B2%5D%20%2B%20%27%20%27%20%2B%20m%5B1%5D%20%2B%20%27%2C%20%27%20%2B%20m%5B3%5D%29%3B%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0Aif%20%28lm%20!%3D%20null%20%26%26%20lm%20!%3D%20%27%27%29%20%7B%0A%20%20lm%20%3D%20new%20Date%20%28lm%29%3B%0A%7D%20else%20%7B%0A%20%20lm%20%3D%20null%3B%0A%7D%0Aif%20%28lm%20!%3D%20null%29%20%7B%0A%20%20var%20tzo%20%3D%20lm.getTimezoneOffset%20%28%29%3B%0A%20%20lm%20%3D%20%27%5BTIME%5B%27%20%2B%20lm.getFullYear%20%28%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20%28lm.getMonth%20%28%29%20%2B%201%29%29.substr%20%28-2%2C%202%29%20%2B%20%27-%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getDate%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getHours%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getMinutes%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20lm.getSeconds%20%28%29%29.substr%20%28-2%2C%202%29%20%2B%20%27%20%27%0A%20%20%20%20%20%20%2B%20%28tzo%20%3E%200%20%3F%20%27-%27%20%3A%20%27%2B%27%29%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%2F%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%3A%27%0A%20%20%20%20%20%20%2B%20%28%270%27%20%2B%20Math.floor%20%28Math.abs%20%28tzo%29%20%25%2060%29%29.substr%20%28-2%2C%202%29%0A%20%20%20%20%20%20%2B%20%27%5D%5D%27%3B%0A%7D%0A%0Avar%20credit%20%3D%20%27%27%3B%0Aif%20%28documentAuthor%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%5B%5B%27%20%2B%20swEscape%20%28documentAuthor%29%20%2B%20%27%5D%5D%20%E8%91%97%27%3B%0A%20%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20%20%20credit%20%2B%3D%20%27%2C%20%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%20%20%7D%0A%7D%20else%20if%20%28lm%20!%3D%20null%29%20%7B%0A%20%20credit%20%3D%20%27%20%28%27%20%2B%20lm%20%2B%20%27%20%E7%89%88%29%27%3B%0A%7D%0A%0Avar%20uri%20%3D%20location.href%3B%0A%0Avar%20form%20%3D%20document.createElement%20%28%27form%27%29%3B%0Aform.method%20%3D%20%27post%27%3B%0Aform.acceptCharset%20%3D%20%27utf-8%27%3B%0Aform.lang%20%3D%20%27en%27%3B%0Aform.innerHTML%20%3D%20%27%3Cdiv%20class%3Dsuikawiki-bookmarklet-post%3E%3Cstyle%20scoped%3E.suikawiki-bookmarklet-post%20%7B%20padding%3A%200.3em%200.6em%20%7D%20.suikawiki-bookmarklet-post%20input%3Anot%28%5Btype%3Dcheckbox%5D%29%20%7B%20width%3A%20100%25%20%7D%20.suikawiki-bookmarklet-post%20p%20%7B%20text-align%3A%20left%20%7D%20.suikawiki-bookmarklet-post%20.buttons%20%7B%20margin-top%3A%201em%3B%20text-align%3A%20center%20%7D%20.suikawiki-bookmarklet-post%20h1%20%7B%20background%3A%20none%3B%20padding%3A%200%3B%20font-weight%3A%20bolder%3B%20font-size%3A%20150%25%3B%20text-align%3A%20left%3B%20color%3A%20%23004000%20%7D%20.suikawiki-bookmarklet-post%20%5Bname%3Dtitle-lang%5D%20%7B%20width%3A%205em%20!important%20%7D%20.suikawiki-bookmarklet-post%20button%20%7B%20min-width%3A%206em%20%7D%20.suikawiki-bookmarklet-post%20.ok%20%7B%20font-weight%3A%20bolder%20%7D%20.suikawiki-bookmarklet-post%20.cancel%20%7B%20font-size%3A%20smaller%20%7D%3C%2Fstyle%3E%3Ch1%3E%3Cimg%20src%3D%22http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2F-temp%2F2004%2Fsw%22%20alt%3D%5BSuikaWiki%5D%3E%20Post%20a%20URL%3C%2Fh1%3E%20%3Cp%3E%3Clabel%3EPage%3A%20%3Cinput%20name%3DpageName%20onchange%3D%22%20form%5B%26quot%3Bsubmit-button%26quot%3B%5D.disabled%20%3D%20this.value.length%20%3D%3D%200%20%22%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3EURL%3A%20%3Cinput%20type%3Durl%20name%3Durl%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%20for%3Dsuikawiki-bookmarklet-post-title%3ETitle%3C%2Flabel%3E%3A%20%28%3Clabel%3ELanguage%3A%20%3Cinput%20name%3Dtitle-lang%3E%3C%2Flabel%3E%29%20%3Cinput%20name%3Dtitle%20id%3Dsuikawiki-bookmarklet-post-title%3E%3Cp%3E%3Clabel%3ECredit%3A%20%3Cinput%20name%3Dcredit%3E%3C%2Flabel%3E%3Cp%3E%3Clabel%3E%3Cinput%20type%3Dcheckbox%20name%3Dredirect%3E%20Open%20the%20posted%20page%3C%2Flabel%3E%3Cp%20class%3Dbuttons%3E%3Cbutton%20type%3Dsubmit%20class%3Dok%20name%3Dsubmit-button%20disabled%3EOK%3C%2Fbutton%3E%20%3Cbutton%20type%3Dbutton%20onclick%3D%22%20form.parentNode.removeChild%20%28form%29%20%22%20class%3Dcancel%3ECancel%3C%2Fbutton%3E%3C%2Fdiv%3E%27%3B%0Aform.url.value%20%3D%20uri%3B%0Aform.elements.title.value%20%3D%20title%3B%0Aform%5B%27title-lang%27%5D.value%20%3D%20titleLang.replace%28%2F%5C%40%2F%2C%20%27%27%29%3B%0Aform.credit.value%20%3D%20credit%3B%0Aform.onsubmit%20%3D%20function%20%28%29%20%7B%0A%20%20if%20%28form.title.length%20%3D%3D%200%29%20return%3B%0A%20%20form.action%20%3D%20%27http%3A%2F%2Fsuika.fam.cx%2F~wakaba%2Fwiki%2Fsw%2Fn%2F%27%20%2B%20encodeURIComponent%20%28form.pageName.value%29.replace%20%28%2F%252F%2Fg%2C%20%27%2B%27%29%20%2B%20%27%3Bposturl%27%3B%0A%20%20setTimeout%20%28function%20%28%29%20%7B%0A%20%20%20%20form.parentNode.removeChild%20%28form%29%3B%0A%20%20%7D%2C%201000%29%3B%0A%7D%3B%0Aform.setAttribute%28%27style%27%2C%20%27display%3A%20block%3B%20position%3A%20fixed%3B%20top%3A%201em%3B%20left%3A%201em%3B%20width%3A%2040em%3B%20min-height%3A%2020em%3B%20background%3A%20white%3B%20color%3A%20black%3B%20border%3A%20gray%201px%20solid%3B%20text-indent%3A%201.5%3B%20z-index%3A%2010000000%27%29%3B%0A%0Adocument.body.appendChild%20%28form%29%3B%0Aform.pageName.focus%20%28%29%3B%0A%0Avoid%20%280%29%3B

License

[4] この WikiPage 内にある bookmarklet 及び関連 code は、特に注記の無い限り Public Domain (著作権を主張しない。) とします。