[97] gmane の変更に追随、html5.org 対応
[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
[4] この WikiPage 内にある bookmarklet 及び関連 code は、特に注記の無い限り
Public Domain (著作権を主張しない。) とします。