非推奨の E4X を使用するこのスクリプトを変換するにはどうすればよいですか?
私はプログラマーではありませんが、どこから始めればよいか説明していただければ、最善を尽くします。
最初は、CDATA の問題ではないようです...
ここに Buggzilla のリンクがあり、私の問題を説明しています: Firefox 17 は E4X に依存する Greasemonkey スクリプトを壊します (新規: Firefox 21 はそのサポートを完全に削除します)
ここで、E4x が使用されている最初のインデックスを取得します (コード「ricCB」で検索)。
requestImageComments: function( id ) {
if (!id) return;
var tkey = 'getComments';
// Set up ticket status queue if needed
if (!this.ticketStatus[tkey]) this.ticketStatus[tkey] = new Object();
return this.flickrApi
( { method: 'flickr.photos.comments.getList', photo_id: id },
'ricCB', {ticktype: tkey} );
},
ricCB: function(rsp) {
var hash = this.objects.comments;
for each (comments in rsp.comments) {
// for (var cs = 0; cs < rsp.comments.length; cs++) {
// var comments = rsp.comments[cs];
var pid = comments.@photo_id;
for each (com in comments.comment) {
var uname = com.@authorname;
var nsid = com.@author;
this.setTranslation( { uname: uname, nsid: nsid } );
// var create = new Date( com.@datecreate );
var ctxt = com + '';
// Strip out HTML tags:
ctxt = ctxt.replace(/(\<|\<\;).+?(\>|\>\;)/g,'');
// Collapse all whitespace runs to single spaces:
ctxt = ctxt.replace(/[\s\n\r\t]+/g, ' ');
// Store data under both authorname and photo ID (hash
// will collide only if someone is using a pure
// integer as a name AND a photo has same integer).
var info = { txt: ctxt, uname: uname, photo: pid };
if (!hash[uname]) hash[uname] = new Array();
if (!hash[pid]) hash[pid] = new Array();
hash[uname].push(info);
hash[pid].push(info);
}
}
最初にここに投稿 : 何かが更新された後、Greasemonkey スクリプトが機能しなくなった