旧站的内容可能已过时。您可以前往“真魂”分站查看本页面,那里的内容将会定期同步。
“个人维基:首页/模板/最近更改”的版本间的差异
来自个人维基
小 |
小 (fix) |
||
(未显示1个用户的7个中间版本) | |||
第21行: | 第21行: | ||
list: "recentchanges", | list: "recentchanges", | ||
rctype: "new|edit|log", | rctype: "new|edit|log", | ||
− | rcshow: " | + | rcshow: "!minor", |
rcnamespace: "0|4", | rcnamespace: "0|4", | ||
rclimit: 200, | rclimit: 200, | ||
− | rcprop: "title|timestamp|loginfo" | + | rcprop: "title|timestamp|loginfo|redirect" |
} ) | } ) | ||
.done( function ( data ) { | .done( function ( data ) { | ||
第43行: | 第43行: | ||
for ( var i = 0; i < rc.length; ++i ) { | for ( var i = 0; i < rc.length; ++i ) { | ||
var title = rc[ i ].title | var title = rc[ i ].title | ||
− | if ( | + | if ( rc[ i ].type === "log" ) { |
+ | if ( rc[ i ].logtype !== "move" ) continue | ||
+ | map[ title ] = true | ||
+ | title = rc[ i ].move.new_title | ||
+ | } | ||
+ | if ( /\/模板(\/|$)/.test( title ) ) continue | ||
if ( map.hasOwnProperty( title ) ) continue | if ( map.hasOwnProperty( title ) ) continue | ||
− | |||
− | |||
− | |||
map[ title ] = true | map[ title ] = true | ||
− | if ( rc[ i ].type | + | |
+ | if ( rc[ i ].type !== "log" ) | ||
+ | if ( "redirect" in rc[ i ] ) continue | ||
var ts = rc[ i ].timestamp | var ts = rc[ i ].timestamp | ||
第65行: | 第69行: | ||
} ) | } ) | ||
</script> | </script> | ||
− | </html>}} | + | </html>}} |
2022年11月16日 (三) 20:23的最后版本
- Ajax加载...